-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsugar.log
1627 lines (1627 loc) · 526 KB
/
sugar.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
{"v":0,"name":"sugar","msg":"Lend me some sugar, I am your neighbor.","level":30,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:37.444595Z","target":"sugar","line":117,"file":"src/main.rs"}
{"v":0,"name":"sugar","msg":"Validation complete, your metadata file(s) look good.","level":30,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:49.4095061Z","target":"sugar_cli::validate::process","line":154,"file":"src\\validate\\process.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:49.6003663Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:49.607308Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:49.6111391Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:49.7132047Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:49.8728376Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.5565803Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.5567009Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.5597124Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.5599207Z","target":"hyper::client::pool","line":680,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.5612603Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(64))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.563732Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.5658669Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 64","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.5674624Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.567581Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","self.len":178,"buf.len":64}
{"v":0,"name":"sugar","msg":"flushed 242 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.5678719Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.5679372Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7622179Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 628 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7623808Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7624172Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7624496Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":628}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7625011Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7625755Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7626071Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7626673Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7628697Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.762909Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7629338Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7629508Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 98","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7629746Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x62 (98 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7641784Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=98","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7642612Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.764318Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7921353Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7922486Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.7922806Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.8118064Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.8119617Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.8127573Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 104.26.13.50:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.8784384Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"connected to 104.26.13.50:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.8829204Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.9426448Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.9427759Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.9431563Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.9432652Z","target":"hyper::client::pool","line":680,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.9435881Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.943695Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.9437454Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"flushed 100 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.9454199Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:50.9456652Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3760058Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 1008 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3763093Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3763879Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3764564Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":1008}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(608)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3765109Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3765767Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3766206Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3766523Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3767207Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3767526Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3767842Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3768131Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3768583Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 393","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.376899Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x189 (393 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3769315Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=393","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.376971Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3770172Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3791428Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3792849Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3794434Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3793043Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"received 5 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3795408Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3795825Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3796237Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3796725Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3795706Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3797168Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3800712Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3801554Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3802016Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"pool dropped, dropping pooled ((\"https\", devnet.bundlr.network))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3803061Z","target":"hyper::client::pool","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3803504Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3804698Z","target":"hyper::proto::h1::dispatch","line":590,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3805091Z","target":"hyper::proto::h1::conn","line":950,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3805375Z","target":"hyper::proto::h1::conn","line":956,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3805705Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3823917Z","target":"hyper::proto::h1::conn","line":739,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Total upload size: 164000","level":30,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3888886Z","target":"sugar_cli::upload::methods::bundlr","line":271,"file":"src\\upload\\methods\\bundlr.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3891053Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3891957Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3894004Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 104.26.13.50:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3907727Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"connected to 104.26.13.50:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:51.3960249Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.2689785Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.2690791Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.2693397Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.269398Z","target":"hyper::client::pool","line":680,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.269717Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.2698329Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.2700351Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"flushed 115 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.2703572Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.2704238Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7069606Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 574 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7072392Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7073251Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7074061Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":574}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(569)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7090974Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7092592Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7093216Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (5 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7093578Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(5)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7094494Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7095216Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7096468Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7097803Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7098861Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7098737Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7109098Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:52.7112608Z","target":"hyper::client::pool","line":767,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:53.9711156Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 4F286yyQwgFYgMoh3fXLdJKYta1xwKm37eKotEzs1tBa","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.0058667Z","target":"sugar_cli::upload::methods::bundlr","line":150,"file":"src\\upload\\methods\\bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.0060668Z","target":"hyper::client::pool","line":612,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.0061536Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.0064202Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.0065977Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.0066779Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"flushed 172 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.0070723Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.0071408Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2428193Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 596 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2430424Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2430972Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2431444Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":596}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(578)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2431951Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2432582Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2433027Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2433393Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2434071Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2434555Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2435517Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2436158Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2436589Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2437322Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.2438299Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.244167Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Bundlr balance 1290 lamports, require 26040 lamports","level":30,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.3156381Z","target":"sugar_cli::upload::methods::bundlr","line":281,"file":"src\\upload\\methods\\bundlr.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.3185427Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.318759Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.319944Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.3215542Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.5057758Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.8592284Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.8593399Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.859458Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.8595985Z","target":"hyper::client::pool","line":680,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.8596892Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.8597408Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.8597845Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.8598246Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.8598529Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","buf.len":60,"self.len":178}
{"v":0,"name":"sugar","msg":"flushed 238 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.8600709Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:54.8601193Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0610752Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 628 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0612698Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0613245Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.061374Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":628}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0614278Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0615708Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0616172Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0616488Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0617038Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0617325Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0617586Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0617854Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 98","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0618132Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x62 (98 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0618725Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=98","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0619104Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0619561Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0622727Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0623185Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0623478Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.065351Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0655071Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0656068Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0656576Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.06569Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0657228Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0657803Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0658311Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0657173Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0658678Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0661134Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0661757Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0662358Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0662772Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0663292Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"put; found waiter for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0663808Z","target":"hyper::client::pool","line":388,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0665145Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0666374Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.066914Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0670118Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0670608Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0670924Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","buf.len":92,"self.len":178}
{"v":0,"name":"sugar","msg":"flushed 270 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0673536Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0674102Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.0674669Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.266345Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 715 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2665484Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2665955Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2666425Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":715}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2666882Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2667833Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2668372Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2668651Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2669138Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.26694Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2669663Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2669903Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 185","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2670152Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0xB9 (185 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2670557Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=185","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2670833Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.267123Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2674084Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2674533Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2674885Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2740575Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2742156Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2744083Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2744906Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2762023Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2763271Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2763727Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.276398Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2764242Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2764484Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2764733Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2765327Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2765665Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2766165Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2766622Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2767051Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"put; found waiter for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2767507Z","target":"hyper::client::pool","line":388,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2768728Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2769645Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.277738Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(471))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2778207Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2778814Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 471","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.277931Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2779699Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","self.len":179,"buf.len":471}
{"v":0,"name":"sugar","msg":"flushed 650 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2781438Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.2781925Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4796785Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4810089Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 672 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4811343Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4811838Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4812352Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":672}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4812894Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4813935Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4814405Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4814714Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.481526Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4815746Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4816122Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4816388Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 142","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4816669Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x8E (142 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.481711Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=142","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4817432Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4817882Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4820307Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4820767Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4821288Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4866659Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4868298Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4869726Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4870388Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.487058Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4872891Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4873313Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4873597Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4873833Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4874079Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4874697Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4875003Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4875498Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4875883Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4876367Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"put; found waiter for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.487693Z","target":"hyper::client::pool","line":388,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4878344Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4879566Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4880437Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4881142Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4881776Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4882219Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","self.len":179,"buf.len":160}
{"v":0,"name":"sugar","msg":"flushed 339 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4885308Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4885934Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.4886481Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6976139Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6977294Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6977972Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 642 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6978672Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6979048Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.697961Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":642}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6980072Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6980995Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.698137Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6981633Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6982394Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6982809Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6983348Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6983844Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 112","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6984236Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x70 (112 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6984661Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=112","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6984975Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6985378Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6985953Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6986439Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6986778Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6990138Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6990584Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.6990845Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7004927Z","target":"hyper::client::pool","line":612,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7005935Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7007377Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7020898Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7022063Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7022534Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.702306Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7023591Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.702397Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7024472Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7025189Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7025601Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7026319Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.702696Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7027913Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7028797Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7029893Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7030646Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7031218Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","buf.len":137,"self.len":179}
{"v":0,"name":"sugar","msg":"flushed 316 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7033849Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7034905Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.703598Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7037025Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.7039052Z","target":"hyper::client::pool","line":767,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8406011Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.84075Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8408697Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8411615Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8413437Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.878522Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 638 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8786615Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8787056Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8787478Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":638}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.878796Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8788771Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8789154Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8789422Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8789929Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8790407Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8790806Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.879147Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 108","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8791944Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x6C (108 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.879253Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=108","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8792804Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8793771Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8796989Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8797416Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8797672Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8798854Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8799218Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8799465Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.879971Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8800049Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8800402Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8800643Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8801044Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8801307Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8801711Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8802065Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8802473Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:55.8802807Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.0345144Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.0346415Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.0347443Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.0348168Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.0348579Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.3871995Z","target":"hyper::client::pool","line":612,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.3873594Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.3874768Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.3875406Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.3876119Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.3876551Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.3876903Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","self.len":179,"buf.len":160}
{"v":0,"name":"sugar","msg":"flushed 339 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.3880492Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.3881292Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6032398Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 691 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6036815Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6037859Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.603868Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":691}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6039561Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6040875Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6041661Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6042094Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.604271Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6043185Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6043779Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6044364Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 161","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6044792Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0xA1 (161 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6045307Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=161","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6045835Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6046618Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6049799Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6050277Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6050572Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6053653Z","target":"hyper::client::pool","line":612,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6054226Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6055438Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6055814Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.605608Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6056345Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6056609Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6057149Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6057459Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6057948Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6058241Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.605872Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6059096Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6059542Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6060227Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6060705Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6061106Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6061405Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","buf.len":160,"self.len":179}
{"v":0,"name":"sugar","msg":"flushed 339 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6064969Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6065482Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6065978Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.6066378Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7477563Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 691 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7479286Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7479852Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.748035Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":691}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7480873Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7482137Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7482637Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7482958Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.74837Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7484187Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7484942Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.748558Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 161","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7486012Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0xA1 (161 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7486507Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=161","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7486846Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7487516Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7490772Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7491486Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7491812Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7525749Z","target":"hyper::client::pool","line":612,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7526735Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7529677Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(100))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.753091Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7531682Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 100","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7532584Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7532955Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","buf.len":100,"self.len":172}
{"v":0,"name":"sugar","msg":"flushed 272 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7535805Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:56.7536402Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5191465Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 594 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5193367Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5193871Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5194453Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":594}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(576)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5194992Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5195609Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.519604Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5196697Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5197513Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5197874Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5198589Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5199207Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.519986Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5199783Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5201832Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.523198Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 4F286yyQwgFYgMoh3fXLdJKYta1xwKm37eKotEzs1tBa","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.526319Z","target":"sugar_cli::upload::methods::bundlr","line":150,"file":"src\\upload\\methods\\bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5265231Z","target":"hyper::client::pool","line":612,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5265814Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5268267Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5269407Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5270127Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"flushed 172 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.527316Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.5273818Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7253506Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 595 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7255137Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.725597Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7256984Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":595}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(576)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7257551Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.725821Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7258638Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (19 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7258998Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(19)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7260053Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7260557Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7261353Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7262306Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7263024Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7263749Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7264233Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7267301Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7273735Z","target":"hyper::proto::h1::dispatch","line":590,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"pool closed, canceling idle interval","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7274189Z","target":"hyper::client::pool","line":758,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7274737Z","target":"hyper::proto::h1::conn","line":950,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7276401Z","target":"hyper::proto::h1::conn","line":956,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.7276986Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.729699Z","target":"hyper::proto::h1::conn","line":739,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8277798Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8280173Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8282276Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 104.26.13.50:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8297267Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"connected to 104.26.13.50:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8426745Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8838664Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.883977Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8841094Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8841823Z","target":"hyper::client::pool","line":680,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8842706Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(62556))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8843423Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8845213Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 62556","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8845698Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8846038Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","self.len":169,"buf.len":62556}
{"v":0,"name":"sugar","msg":"flushed 16384 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8851198Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed 16384 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8852267Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed 16384 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8853175Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed 13573 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8854346Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:57.8854814Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5437437Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 806 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5439593Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5440132Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5440653Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":806}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(696)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5441355Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5442257Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 14 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5442757Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5443089Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5443591Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5443893Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5444304Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5444564Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 104","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5445635Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x68 (104 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5445976Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=104","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5446305Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5446766Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5448715Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5449172Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5449447Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.574916Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5750566Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5751021Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"received 5 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5751717Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.575206Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5752397Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.575267Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5752967Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5753873Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.575445Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.575529Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5756057Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5756687Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5757128Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.5787132Z","target":"hyper::client::pool","line":767,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.6008434Z","target":"hyper::client::pool","line":612,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.600949Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.601055Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(532))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.6011157Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.6011656Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 532","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.6012092Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.6012456Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","self.len":167,"buf.len":532}
{"v":0,"name":"sugar","msg":"flushed 699 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.6015615Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.6016319Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8507501Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 808 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8509272Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8509773Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8510252Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":808}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(698)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8510757Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8511442Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 14 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8511903Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8512236Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8512726Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.851301Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8513714Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8514174Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 104","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8514464Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x68 (104 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8514807Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=104","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8515202Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8515675Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8517547Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8517952Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8518234Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8519303Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8519757Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8520064Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"received 5 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8520492Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.85222Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8522606Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8523051Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.852337Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8524079Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8524413Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8524891Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.852537Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8525874Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.852628Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8612622Z","target":"hyper::proto::h1::dispatch","line":590,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"pool closed, canceling idle interval","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8613031Z","target":"hyper::client::pool","line":758,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8621698Z","target":"hyper::proto::h1::conn","line":950,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8625056Z","target":"hyper::proto::h1::conn","line":956,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8625777Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8645844Z","target":"hyper::proto::h1::conn","line":739,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Cache exists, loading...","level":30,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.8791453Z","target":"sugar_cli::cache","line":157,"file":"src\\cache.rs"}
{"v":0,"name":"sugar","msg":"Initializing candy machine with account size of: 967 and address of: Cv8SN3kS9dVXAgywR3dWH2wBueWwDDdx72EndEwur77X","level":30,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.9323006Z","target":"sugar_cli::deploy::initialize","line":122,"file":"src\\deploy\\initialize.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.932695Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.9327803Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.9336442Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:58.9353691Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.2489012Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.8259123Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.8260111Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.8262899Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.8264781Z","target":"hyper::client::pool","line":680,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.8265872Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(84))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.8266448Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.8266944Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 84","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.8267387Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.8267738Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","buf.len":84,"self.len":178}
{"v":0,"name":"sugar","msg":"flushed 262 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.8270388Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:50:59.8270954Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.1409019Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 592 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.1410775Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.1411298Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.885274Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":592}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.885456Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8856262Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8857788Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8859696Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8861176Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8862092Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8862841Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8863397Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 62","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8864505Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x3E (62 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8865309Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=62","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8866474Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8867361Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8876504Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8877686Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8878177Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8898581Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8900431Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8909437Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:00.8923667Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.1553687Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.6304537Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.6305809Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.6307171Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.6308733Z","target":"hyper::client::pool","line":680,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.6311555Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.6312322Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.6313029Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.6313504Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.6313831Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","self.len":178,"buf.len":60}
{"v":0,"name":"sugar","msg":"flushed 238 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.6316632Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.6317222Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8201582Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 628 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8203615Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8204197Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8204732Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":628}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8205283Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8208006Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8208903Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8209289Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8210042Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8210546Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8211043Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8211486Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 98","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8211832Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x62 (98 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8212382Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=98","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8212739Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.821325Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8215543Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8215975Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8217334Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8220414Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8221481Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8222335Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8222941Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8223228Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8223553Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8223965Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8224492Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.822342Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8224872Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8227624Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8229884Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8230673Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8231113Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8231649Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"put; found waiter for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8232135Z","target":"hyper::client::pool","line":388,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.823358Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8235342Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(199))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8236258Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.823706Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 199","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8237771Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8238285Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","buf.len":199,"self.len":179}
{"v":0,"name":"sugar","msg":"flushed 378 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8241491Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8243517Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:01.8244296Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0248143Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 723 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0250422Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0250951Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0251429Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":723}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0251959Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0252939Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0253416Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0253753Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0254318Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0254771Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0255202Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0255738Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 193","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0256261Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0xC1 (193 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0257042Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=193","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0257384Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0258169Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0259245Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0277665Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0278487Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.0278802Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.6917991Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.69198Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.6929271Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.719293Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:02.8834658Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.2684849Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.2686171Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.2687532Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.2689131Z","target":"hyper::client::pool","line":680,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.2690178Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.2690851Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.2691363Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.2691788Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.2692097Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","buf.len":60,"self.len":178}
{"v":0,"name":"sugar","msg":"flushed 238 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.2694583Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.2695283Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4592106Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 628 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4594442Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4594953Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.459539Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":628}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4595855Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.459649Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4596906Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4597207Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4598191Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4598468Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4598725Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4598952Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 98","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4599328Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x62 (98 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4599971Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=98","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4600315Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4600756Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.460421Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4608454Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4608921Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4614818Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4615943Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4616854Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4617252Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4617712Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4618495Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4618542Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.46246Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4626092Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4626566Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4627935Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4628428Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4631415Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4632234Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4633604Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"put; found waiter for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4634507Z","target":"hyper::client::pool","line":388,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.463617Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4672927Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4684946Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4686075Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.468682Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4687301Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4687651Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","buf.len":92,"self.len":178}
{"v":0,"name":"sugar","msg":"flushed 270 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4689591Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.4690223Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6649259Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 712 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6651178Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6651709Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6652237Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":712}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6653982Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6654753Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6655191Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.665549Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6656124Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6656452Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.665674Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6657431Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 182","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6657729Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0xB6 (182 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6658191Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=182","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6658509Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6658951Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6659595Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6679008Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6679892Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6680284Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6845389Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6846928Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.684791Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6848437Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6848777Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6849061Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6849093Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6849363Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6852385Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6853072Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6853848Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6854174Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6854709Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6855113Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6855568Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"put; found waiter for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6856122Z","target":"hyper::client::pool","line":388,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.685753Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.685917Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(847))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6859837Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6860348Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 847","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6860767Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6861147Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","self.len":179,"buf.len":847}
{"v":0,"name":"sugar","msg":"flushed 1026 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6864275Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6864865Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.6865431Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8766684Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8780055Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 672 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8781196Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8781693Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8782159Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":672}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8782758Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8783447Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8783893Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8784205Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8784884Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8785223Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8785512Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8785772Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 142","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8786053Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x8E (142 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8786502Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=142","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8786809Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8787249Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8789997Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8790467Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8790975Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.880982Z","target":"hyper::client::pool","line":638,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8811598Z","target":"hyper::client::connect::http","line":278,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.881269Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8813203Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8813576Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8813728Z","target":"hyper::client::connect::dns","line":122,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\dns.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8813876Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8816674Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8817532Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8817916Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8818686Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8819027Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.881957Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.881998Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8820633Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"put; found waiter for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.882121Z","target":"hyper::client::pool","line":388,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8822493Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.882354Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8824178Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8824681Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.882512Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8825429Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","self.len":179,"buf.len":160}
{"v":0,"name":"sugar","msg":"flushed 339 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8828247Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8828833Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:03.8829393Z","target":"hyper::client::connect::http","line":537,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1003218Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1006983Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1008157Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 642 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1009074Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1009528Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1010015Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":642}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1010519Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1011597Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1012175Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1012679Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1013612Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1014173Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1014832Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1015824Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 112","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1016649Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x70 (112 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1017463Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=112","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1018101Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1018753Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.101974Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1020792Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1021736Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1025357Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1026041Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1026353Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1028893Z","target":"hyper::client::pool","line":612,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1029715Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1030612Z","target":"hyper::client::connect::http","line":540,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\connect\\http.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1046295Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1047085Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1047435Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1047716Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1047979Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1048233Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1048545Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1049005Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.104928Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1050029Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.105046Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1051134Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1051739Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1052247Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1052688Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1053016Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","buf.len":137,"self.len":179}
{"v":0,"name":"sugar","msg":"flushed 316 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1054859Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1055568Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1056134Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.1056706Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.105913Z","target":"hyper::client::pool","line":767,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2378446Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2379932Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2381381Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2382261Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2382808Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2537397Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 638 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2538751Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2539261Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2539999Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":638}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2540528Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2541583Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2542064Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2542402Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.254293Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2543245Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2543663Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2544001Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 108","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2544313Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0x6C (108 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2544658Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=108","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2544987Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2545441Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2548166Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2548694Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2548976Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2549993Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2550408Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2550696Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.255127Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 0","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2551634Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"end of chunked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2551937Z","target":"hyper::proto::h1::decode","line":134,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2552216Z","target":"hyper::proto::h1::conn","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2552679Z","target":"hyper::proto::h1::conn","line":472,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"body drained","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.255314Z","target":"hyper::proto::h1::conn","line":755,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2553588Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2554005Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2554468Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.2554847Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.4086385Z","target":"hyper::client::conn","line":952,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.408752Z","target":"hyper::client::client","line":487,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.4088979Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.4090136Z","target":"hyper::client::pool","line":329,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.4090709Z","target":"hyper::client::pool","line":376,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.7640769Z","target":"hyper::client::pool","line":612,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.764233Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.7643979Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.7644827Z","target":"hyper::proto::h1::role","line":1110,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.7645635Z","target":"hyper::proto::h1::role","line":107,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.7646165Z","target":"hyper::proto::h1::encode","line":159,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.7646658Z","target":"hyper::proto::h1::io","line":577,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs","self.len":179,"buf.len":160}
{"v":0,"name":"sugar","msg":"flushed 339 bytes","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.7649547Z","target":"hyper::proto::h1::io","line":342,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.7650161Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9939345Z","target":"hyper::proto::h1::conn","line":191,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"received 692 bytes","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9942016Z","target":"hyper::proto::h1::io","line":269,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9942593Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9943082Z","target":"hyper::proto::h1::role","line":946,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs","bytes":692}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(519)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9943582Z","target":"hyper::proto::h1::role","line":955,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9944514Z","target":"hyper::proto::h1::role","line":75,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\role.rs"}
{"v":0,"name":"sugar","msg":"parsed 16 headers","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9945136Z","target":"hyper::proto::h1::io","line":207,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is chunked encoding","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9947056Z","target":"hyper::proto::h1::conn","line":222,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(Size, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9947799Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9948239Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.994866Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9949061Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunk size is 162","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.994951Z","target":"hyper::proto::h1::decode","line":292,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"incoming chunked header: 0xA2 (162 bytes)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9951538Z","target":"hyper::proto::h1::decode","line":298,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Chunked read, remaining=162","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9952186Z","target":"hyper::proto::h1::decode","line":315,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Chunked(BodyCr, 0)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9952817Z","target":"hyper::proto::h1::conn","line":732,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\conn.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9956145Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"frame decoded from buffer","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9956932Z","target":"tokio_util::codec::framed_impl","line":204,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"attempting to decode a frame","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9957383Z","target":"tokio_util::codec::framed_impl","line":197,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\tokio-util-0.7.2\\src\\codec\\framed_impl.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9959992Z","target":"hyper::client::pool","line":612,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9960493Z","target":"hyper::client::pool","line":250,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\client\\pool.rs"}
{"v":0,"name":"sugar","msg":"body receiver dropped before eof, draining or closing","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9961115Z","target":"hyper::proto::h1::dispatch","line":200,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\dispatch.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Chunked(BodyCr, 0)","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9961513Z","target":"hyper::proto::h1::decode","line":106,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}
{"v":0,"name":"sugar","msg":"Read chunk hex size","level":10,"hostname":"Aviniers-Desktop","pid":21304,"time":"2022-12-23T14:51:04.9961811Z","target":"hyper::proto::h1::decode","line":211,"file":"C:\\Users\\runneradmin\\.cargo\\registry\\src\\github.com-1ecc6299db9ec823\\hyper-0.14.20\\src\\proto\\h1\\decode.rs"}