-
Notifications
You must be signed in to change notification settings - Fork 0
/
testsett2.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 222 should actually have 6 columns, instead of 8 in line 221.
1407 lines (1407 loc) · 208 KB
/
testsett2.csv
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
25/11/2020,12:06:31,14.543309211730957,27.421951293945312,997.080810546875,13.834840517199039
25/11/2020,12:06:32,29.70357894897461,28.66585350036621,996.771240234375,11.26814177122116
25/11/2020,12:06:33,29.61474323272705,27.13292694091797,996.794921875,10.93356261060834
25/11/2020,12:06:35,29.563255310058594,27.418292999267578,996.86181640625,11.542973442357777
25/11/2020,12:06:36,29.445405960083008,27.539024353027344,996.840087890625,9.361040906441211
25/11/2020,12:06:37,29.399126052856445,27.824390411376953,996.814208984375,8.849613479059935
25/11/2020,12:06:38,29.362966537475586,27.765853881835938,996.806396484375,9.000174042883515
25/11/2020,12:06:39,29.27591609954834,27.33414649963379,996.839111328125,7.642739442986249
25/11/2020,12:06:40,29.19094944000244,27.282926559448242,996.858154296875,7.611670935505628
25/11/2020,12:06:41,29.159400939941406,27.081707000732422,996.85791015625,7.695316017919779
25/11/2020,12:06:42,29.085891723632812,27.49146270751953,996.818359375,6.457374058887362
25/11/2020,12:06:43,29.052857398986816,27.154878616333008,996.838134765625,6.741766170051694
25/11/2020,12:06:44,28.952861785888672,26.93170738220215,996.771484375,8.094421134456992
25/11/2020,12:06:46,29.019225120544434,27.385366439819336,996.757568359375,9.138785225716232
25/11/2020,12:06:47,29.066990852355957,27.59024429321289,996.620361328125,9.107716718235611
25/11/2020,12:06:48,29.05330181121826,27.33414649963379,996.7666015625,9.795993581429123
25/11/2020,12:06:49,29.111186027526855,27.685365676879883,996.781982421875,7.821978404283523
25/11/2020,12:06:50,29.105831146240234,27.79146385192871,996.803955078125,7.0357175521999595
25/11/2020,12:06:51,29.174874305725098,27.56829261779785,996.796630859375,4.796428221336007
25/11/2020,12:06:52,29.14407444000244,27.762195587158203,996.80712890625,5.494264355513454
25/11/2020,12:06:53,29.218029022216797,27.765853881835938,996.802734375,5.941166411492228
25/11/2020,12:06:54,29.20404052734375,27.956096649169922,996.770263671875,10.37433765926361
25/11/2020,12:06:56,29.234396934509277,28.091463088989258,996.7890625,9.49965208927393
25/11/2020,12:06:57,29.216243743896484,27.04878044128418,996.765625,7.998826671051979
25/11/2020,12:06:58,29.169963836669922,28.06219482421875,996.796875,7.9749284935921425
25/11/2020,12:06:59,29.161185264587402,28.391464233398438,996.809326171875,8.749239380162955
25/11/2020,12:07:00,29.250466346740723,27.8756103515625,996.7763671875,9.169853148674964
25/11/2020,12:07:01,29.24793815612793,28.636585235595703,996.768310546875,9.325193932512402
25/11/2020,12:07:02,29.253146171569824,28.768291473388672,996.763671875,9.134005005702376
25/11/2020,12:07:03,29.315940856933594,28.89634132385254,996.770751953125,8.307117544198036
25/11/2020,12:07:04,29.334391593933105,28.55609703063965,996.78955078125,8.77074861665964
25/11/2020,12:07:05,29.298084259033203,28.585365295410156,996.88720703125,9.769705878484249
25/11/2020,12:07:07,29.33781623840332,28.91097640991211,997.07666015625,10.085166497129201
25/11/2020,12:07:08,29.38141441345215,28.870731353759766,997.20556640625,8.579560274371504
25/11/2020,12:07:09,29.370850563049316,29.07560920715332,997.207275390625,9.769705878484249
25/11/2020,12:07:10,29.407455444335938,29.671951293945312,997.21923828125,9.776875039461254
25/11/2020,12:07:11,29.40671157836914,29.829267501831055,997.224365234375,9.779264564946294
25/11/2020,12:07:12,29.46772003173828,30.063413619995117,997.2392578125,9.279786518555879
25/11/2020,12:07:13,29.435282707214355,30.169511795043945,997.212646484375,9.004953678375482
25/11/2020,12:07:14,29.477540969848633,30.052438735961914,997.19970703125,9.537890342253446
25/11/2020,12:07:15,29.44019317626953,29.697561264038086,997.193115234375,9.349092109972238
25/11/2020,12:07:17,29.45581817626953,29.514633178710938,997.176513671875,9.41122854041159
25/11/2020,12:07:18,29.474268913269043,29.920730590820312,997.17529296875,9.473363801807164
25/11/2020,12:07:19,29.49480438232422,30.1256103515625,997.1748046875,8.65364608580172
25/11/2020,12:13:43,29.52025032043457,29.990243911743164,997.218017578125,8.290388527715205
25/11/2020,12:13:44,29.502394676208496,30.206096649169922,997.3154296875,8.8902406730026
25/11/2020,12:13:45,29.542868614196777,28.406097412109375,997.508056640625,9.341922364473342
25/11/2020,12:13:47,29.489449501037598,30.059755325317383,997.7412109375,9.963283161735534
25/11/2020,12:13:48,29.538999557495117,29.928049087524414,997.9267578125,9.776875039461254
25/11/2020,12:13:49,29.5138521194458,29.960975646972656,998.037841796875,9.320413712498546
25/11/2020,12:13:50,29.62515640258789,29.858535766601562,998.061279296875,9.404058794912695
25/11/2020,12:13:51,29.55774974822998,29.7560977935791,998.042236328125,9.461415005338191
25/11/2020,12:13:52,29.574118614196777,29.799999237060547,998.0703125,9.502042199280858
25/11/2020,12:13:53,29.596736907958984,29.69390296936035,998.074462890625,9.602416298177838
25/11/2020,12:13:54,29.658489227294922,30.037805557250977,998.073486328125,9.461415005338191
25/11/2020,12:13:55,29.642417907714844,29.774389266967773,998.06005859375,9.215260562631487
25/11/2020,12:13:57,29.661614418029785,29.104877471923828,998.051513671875,9.255887756574154
25/11/2020,12:13:58,29.60090446472168,32.349998474121094,998.05322265625,9.32997298348248
25/11/2020,12:13:59,29.630515098571777,29.851219177246094,998.057861328125,9.420787226873635
25/11/2020,12:14:00,29.689440727233887,30.184146881103516,998.062744140625,8.871122131034731
25/11/2020,12:14:01,29.684531211853027,30.213415145874023,998.057373046875,8.949986993435024
25/11/2020,12:14:02,29.713844299316406,29.898780822753906,998.16650390625,9.420787226873635
25/11/2020,12:14:03,29.712059020996094,29.935365676879883,998.382080078125,9.392109413921833
25/11/2020,12:14:04,29.71860694885254,30.067073822021484,998.589599609375,9.724298464527726
25/11/2020,12:14:05,29.757295608520508,30.140243530273438,998.80029296875,9.571348375219106
25/11/2020,12:14:07,29.747475624084473,29.781707763671875,999.007080078125,9.90114731581807
25/11/2020,12:14:08,29.780956268310547,30.52073097229004,999.217041015625,10.49383030012846
25/11/2020,12:14:09,29.852529525756836,30.531707763671875,999.29443359375,9.788824420452118
25/11/2020,12:14:10,29.777831077575684,31.04024314880371,999.35107421875,9.56417862972021
25/11/2020,12:14:11,29.81131076812744,30.57560920715332,999.36181640625,9.609585459154843
25/11/2020,12:14:12,29.844791412353516,30.224390029907227,999.35302734375,9.423177336880563
25/11/2020,12:14:13,29.82559585571289,30.963415145874023,999.380859375,9.889197350305318
25/11/2020,12:14:14,29.821728706359863,30.063413619995117,999.33447265625,9.583297171688079
25/11/2020,12:14:15,29.83601188659668,30.224390029907227,999.333984375,9.49487303830385
25/11/2020,12:14:16,29.858333587646484,30.184146881103516,999.348876953125,9.284566154047846
25/11/2020,12:14:18,29.879910469055176,30.121950149536133,999.3681640625,9.208090817132591
25/11/2020,12:14:19,29.86488151550293,30.143901824951172,999.384033203125,9.275006298542023
25/11/2020,12:14:20,29.878422737121582,30.385366439819336,999.382568359375,7.9581994771093125
25/11/2020,12:14:21,29.87247085571289,30.72195053100586,999.3955078125,8.500695411971211
25/11/2020,12:14:22,29.9191951751709,30.418292999267578,999.487060546875,9.21048092713952
25/11/2020,12:14:23,29.97573947906494,30.65243911743164,999.654052734375,9.435126717871427
25/11/2020,12:14:24,29.94077205657959,29.979267120361328,999.8857421875,9.487703292804955
25/11/2020,12:14:25,29.947022438049316,31.036584854125977,1000.0673828125,9.595246552678942
25/11/2020,12:14:26,29.974550247192383,30.952438354492188,1000.167236328125,9.220040198123455
25/11/2020,12:14:28,30.00074005126953,31.20853614807129,1000.236572265625,9.196141436141728
25/11/2020,12:14:29,29.97767448425293,30.703659057617188,1000.25927734375,9.762536132985353
25/11/2020,12:14:30,29.98571014404297,30.052438735961914,1000.265625,8.572391113394499
25/11/2020,12:14:31,29.979758262634277,30.86097526550293,1000.244140625,9.231989579114318
25/11/2020,12:14:32,30.09597110748291,31.003658294677734,1000.262451171875,9.781654674953222
25/11/2020,12:14:33,30.010412216186523,31.029268264770508,1000.27099609375,9.141174751201271
25/11/2020,12:14:34,30.050886154174805,30.670730590820312,1000.25634765625,10.388677150261401
25/11/2020,12:14:35,29.960119247436523,30.531707763671875,1000.25048828125,7.482619608178735
25/11/2020,12:14:36,29.846580505371094,30.49146270751953,1000.27490234375,4.476188551720977
25/11/2020,12:14:38,29.868603706359863,30.53536605834961,1000.267333984375,11.562093153369426
25/11/2020,12:14:39,29.778281211853027,30.29024314880371,1000.281005859375,11.086512115395069
25/11/2020,12:14:40,29.860713958740234,30.224390029907227,1000.265380859375,9.669331779587269
25/11/2020,12:14:41,29.812950134277344,30.813413619995117,1000.25341796875,9.588076807180046
25/11/2020,12:14:42,29.833186149597168,30.02682876586914,1000.251953125,10.111454784595965
25/11/2020,12:14:43,29.849108695983887,30.51341438293457,1000.188232421875,10.522508113080262
25/11/2020,12:14:44,29.901487350463867,30.39634132385254,1000.018310546875,9.893977570319175
25/11/2020,12:14:45,29.909820556640625,30.495121002197266,999.763671875,9.337142728981375
25/11/2020,12:14:46,29.89583396911621,30.392683029174805,999.615966796875,9.798383691436051
25/11/2020,12:14:47,29.893750190734863,30.293901443481445,999.39501953125,9.48053354730606
25/11/2020,12:14:49,29.89583396911621,30.31951141357422,999.240234375,9.313244551521539
25/11/2020,12:14:50,29.934223175048828,29.97195053100586,999.049072265625,9.805553436934947
25/11/2020,12:14:51,29.966662406921387,29.58414649963379,998.8203125,9.382550142937898
25/11/2020,12:14:52,29.972912788391113,30.100000381469727,998.63818359375,8.658425721293687
25/11/2020,12:14:53,30.021421432495117,29.862194061279297,998.5146484375,9.122056209233403
25/11/2020,12:14:54,29.948806762695312,28.450000762939453,998.47998046875,10.314591338831185
25/11/2020,12:14:55,29.95684242248535,29.737804412841797,998.521240234375,9.726687990012765
25/11/2020,12:14:56,29.977079391479492,29.613414764404297,998.497314453125,8.8902406730026
25/11/2020,12:14:57,29.97529411315918,29.49268341064453,998.483642578125,10.092335073584318
25/11/2020,12:14:59,29.96725845336914,29.42317008972168,998.50244140625,9.645433602127433
25/11/2020,12:15:00,30.003864288330078,29.595121383666992,998.499267578125,9.671721889594197
25/11/2020,12:15:01,29.97946071624756,30.315853118896484,998.49169921875,9.432737192386389
25/11/2020,12:15:02,30.03630256652832,29.200000762939453,998.499267578125,9.590466917186975
25/11/2020,12:15:03,30.041510581970215,29.273170471191406,998.48974609375,9.621534840145706
25/11/2020,12:15:04,29.990175247192383,29.441463470458984,998.48779296875,9.693229957047103
25/11/2020,12:15:05,30.01636505126953,28.99146270751953,998.490478515625,9.616755204653739
25/11/2020,12:15:06,30.04180908203125,28.980487823486328,998.480224609375,9.60002618817091
25/11/2020,12:15:07,30.03273296356201,29.03536605834961,998.471435546875,9.882028773850202
25/11/2020,12:15:09,30.077373504638672,29.90243911743164,998.44775390625,10.30742159333229
25/11/2020,12:15:10,29.96845245361328,28.88170623779297,998.339111328125,9.461415005338191
25/11/2020,12:15:11,30.059219360351562,27.970731735229492,998.153076171875,9.27739640854895
25/11/2020,12:15:12,30.095526695251465,29.426828384399414,997.943603515625,9.365821126455067
25/11/2020,12:15:13,30.02812099456787,29.2439022064209,997.765380859375,7.965369222608208
25/11/2020,12:15:14,30.029162406921387,28.724390029907227,997.6806640625,8.77074861665964
25/11/2020,12:15:15,30.07037925720215,29.28414535522461,997.642578125,9.502042199280858
25/11/2020,12:15:16,30.109067916870117,29.295122146606445,997.635498046875,9.748196641987562
25/11/2020,12:15:17,30.068891525268555,29.210975646972656,997.610595703125,9.418397701388598
25/11/2020,12:15:18,30.089574813842773,29.335365295410156,997.60009765625,9.905926366788147
25/11/2020,12:15:20,30.015174865722656,29.547561645507812,997.623779296875,9.535500232246518
25/11/2020,12:15:21,30.04761505126953,29.47804832458496,997.63427734375,9.298905645045638
25/11/2020,12:15:22,30.09121322631836,29.210975646972656,997.6357421875,9.442295878848434
25/11/2020,12:15:23,30.05594825744629,29.42317008972168,997.6552734375,9.509211944779754
25/11/2020,12:15:24,30.08600425720215,29.606098175048828,997.63232421875,9.454245259839295
25/11/2020,12:15:25,30.116060256958008,29.814634323120117,997.6494140625,9.611975569161773
25/11/2020,12:15:26,30.073802947998047,29.660974502563477,997.662353515625,10.288301882320642
25/11/2020,12:15:27,30.046573638916016,29.467073440551758,997.62158203125,10.051707295119762
25/11/2020,12:15:28,30.058475494384766,30.824390411376953,997.455078125,9.442295878848434
25/11/2020,12:15:30,30.072760581970215,29.57682991027832,997.2451171875,9.253497646567224
25/11/2020,12:15:31,30.072760581970215,29.63170623779297,997.058837890625,8.65364608580172
25/11/2020,12:15:32,30.11635971069336,29.514633178710938,996.860595703125,8.761189345675707
25/11/2020,12:15:33,30.159958839416504,29.44512176513672,996.77197265625,9.294125425031782
25/11/2020,12:15:34,30.14701271057129,29.2439022064209,996.732666015625,9.188972275164723
25/11/2020,12:15:35,30.09359359741211,29.185365676879883,996.744384765625,10.806900224244593
25/11/2020,12:15:36,30.19343852996826,29.858535766601562,996.762939453125,8.754019600176811
25/11/2020,12:15:37,30.026037216186523,29.350000381469727,996.74609375,11.5381943913877
25/11/2020,12:15:38,29.882144927978516,29.32073211669922,996.7724609375,13.93521344705224
25/11/2020,12:15:40,29.78080940246582,29.156097412109375,996.74462890625,10.618103161007165
25/11/2020,12:15:41,29.7251558303833,29.039024353027344,996.711669921875,11.552532713341712
25/11/2020,12:15:42,29.659829139709473,27.678049087524414,996.794921875,10.558355671530961
25/11/2020,12:15:43,29.48692035675049,28.903657913208008,996.777587890625,7.241244800963997
25/11/2020,12:15:44,29.417280197143555,28.797561645507812,996.78564453125,6.1777615832149975
25/11/2020,12:15:45,29.39614963531494,30.063413619995117,996.811767578125,7.195837387007474
25/11/2020,12:15:46,29.395551681518555,28.54878044128418,996.771240234375,6.208829506173729
25/11/2020,12:15:47,29.323383331298828,28.658536911010742,996.793701171875,9.071869744306802
25/11/2020,12:15:48,29.314453125,28.63292694091797,996.79541015625,11.765229707604647
25/11/2020,12:15:49,29.244070053100586,28.029268264770508,996.941162109375,14.224384609186648
25/11/2020,12:15:51,29.190797805786133,28.574390411376953,996.808349609375,12.924307388758658
25/11/2020,12:15:52,29.160887718200684,28.391464233398438,996.7060546875,10.302641373318433
25/11/2020,12:15:53,29.12279510498047,29.72317123413086,996.78564453125,7.896063631191849
25/11/2020,12:15:54,29.07205295562744,28.46463394165039,996.8173828125,5.910097904011606
25/11/2020,12:15:55,28.986342430114746,28.67317008972168,996.827392578125,6.751325441035628
25/11/2020,12:15:56,28.924290657043457,28.63292694091797,996.81298828125,6.431085771420598
25/11/2020,12:15:57,28.970417976379395,31.658536911010742,996.776123046875,8.29994779869914
25/11/2020,12:15:58,28.915658950805664,28.676828384399414,996.7783203125,7.148040447565913
25/11/2020,12:15:59,28.89616584777832,28.446340560913086,996.8125,7.750282702860236
25/11/2020,12:16:01,28.968780517578125,28.61097526550293,996.761962890625,8.139827963891625
25/11/2020,12:16:02,28.940953254699707,28.468292236328125,996.70947265625,7.9916575100749725
25/11/2020,12:16:03,28.882326126098633,28.391464233398438,996.77587890625,9.583297171688079
25/11/2020,12:16:04,28.93039035797119,28.823169708251953,996.77587890625,8.67037451776266
25/11/2020,12:16:05,28.875778198242188,28.482927322387695,996.810546875,9.119666683748363
25/11/2020,12:16:06,28.953600883483887,28.20853614807129,996.84521484375,7.597332613551616
25/11/2020,12:16:07,28.91372299194336,28.292682647705078,996.810302734375,9.702789812552929
25/11/2020,12:16:08,28.932918548583984,28.190242767333984,996.798095703125,9.846181215399502
25/11/2020,12:16:09,28.97577476501465,28.26341438293457,996.78759765625,9.862909062838554
25/11/2020,12:16:11,29.017586708068848,28.537803649902344,996.77001953125,9.874859028351306
25/11/2020,12:16:12,29.033211708068848,27.941463470458984,996.775146484375,9.884418299335241
25/11/2020,12:16:13,29.164751052856445,28.6256103515625,996.79443359375,9.920265857785939
25/11/2020,12:16:14,29.118623733520508,28.497560501098633,996.82177734375,9.882028773850202
25/11/2020,12:16:15,29.14406967163086,29.935365676879883,996.788330078125,9.874859028351306
25/11/2020,12:16:16,29.146451950073242,28.647560119628906,996.8056640625,9.870079977381229
25/11/2020,12:16:17,29.145708084106445,28.581707000732422,996.82763671875,9.877248553836345
25/11/2020,12:16:18,29.150172233581543,28.845121383666992,996.805908203125,9.882028773850202
25/11/2020,12:16:19,29.10300350189209,28.614633560180664,996.801513671875,9.886808993864058
25/11/2020,12:16:21,29.287961959838867,28.468292236328125,996.791015625,9.932214654254913
25/11/2020,12:16:22,29.249126434326172,27.678049087524414,996.7880859375,9.886808993864058
25/11/2020,12:16:23,29.258203506469727,28.296340942382812,996.77587890625,9.889197350305318
25/11/2020,12:16:24,29.278738975524902,28.63292694091797,996.817138671875,9.896368264847993
25/11/2020,12:16:25,29.3073091506958,28.57073211669922,996.768798828125,9.896368264847993
25/11/2020,12:16:26,29.31564235687256,28.530487060546875,996.7578125,9.896368264847993
25/11/2020,12:16:27,29.330225944519043,28.450000762939453,996.7548828125,9.893977570319175
25/11/2020,12:16:28,29.303293228149414,28.343902587890625,996.773193359375,9.886808993864058
25/11/2020,12:16:29,29.357009887695312,28.899999618530273,996.75439453125,9.882028773850202
25/11/2020,12:16:30,29.385581016540527,28.42439079284668,996.75,9.896368264847993
25/11/2020,12:16:32,29.392871856689453,28.329267501831055,996.793701171875,9.889197350305318
25/11/2020,12:16:33,29.443464279174805,28.406097412109375,996.78271484375,9.893977570319175
25/11/2020,12:16:34,29.405372619628906,28.3804874420166,996.77685546875,9.879638079321383
25/11/2020,12:16:35,29.465041160583496,28.376829147338867,996.77490234375,9.822281284373998
25/11/2020,12:16:36,29.474416732788086,26.525609970092773,996.765380859375,9.86768928285241
25/11/2020,12:16:37,29.492570877075195,29.41585350036621,996.760009765625,9.886808993864058
25/11/2020,12:16:38,29.427248001098633,28.358535766601562,996.77099609375,9.879638079321383
25/11/2020,12:16:39,29.461770057678223,28.468292236328125,996.7412109375,9.886808993864058
25/11/2020,12:16:40,29.526646614074707,27.425609588623047,996.759521484375,9.893977570319175
25/11/2020,12:16:42,29.588398933410645,28.091463088989258,996.749267578125,9.733857735511661
25/11/2020,12:16:43,29.50105381011963,28.34024429321289,996.790771484375,10.056487515133618
25/11/2020,12:16:44,29.577091217041016,28.245121002197266,996.782470703125,9.889197350305318
25/11/2020,12:16:45,29.613697052001953,28.22317123413086,996.783203125,9.882028773850202
25/11/2020,12:16:46,29.604918479919434,28.047561645507812,996.76611328125,9.90353684130311
25/11/2020,12:16:47,29.647475242614746,28.53414535522461,996.76416015625,9.886808993864058
25/11/2020,12:16:48,29.64777374267578,28.52682876586914,996.77587890625,9.90114731581807
25/11/2020,12:16:49,29.670093536376953,28.043901443481445,996.763427734375,9.831841724401713
25/11/2020,12:16:50,29.69062900543213,27.634145736694336,996.752685546875,9.886808993864058
25/11/2020,12:16:51,29.694795608520508,28.16097640991211,996.77685546875,9.90114731581807
25/11/2020,12:16:53,29.68601703643799,28.314634323120117,996.756103515625,9.908317061316966
25/11/2020,12:16:54,29.72366428375244,28.080488204956055,996.736083984375,9.90353684130311
25/11/2020,12:16:55,29.764137268066406,28.20121955871582,996.750244140625,9.925046077799797
25/11/2020,12:16:56,29.745241165161133,28.226829528808594,996.73095703125,9.948944839781522
25/11/2020,12:16:57,29.766818046569824,28.27804946899414,996.72607421875,9.882028773850202
25/11/2020,12:16:58,29.711316108703613,26.80365753173828,996.736572265625,9.865299757367373
25/11/2020,14:04:11,32.15022087097168,31.59180450439453,32.77708435058594,24.3743896484375,998.21435546875,9.925046077799797
25/11/2020,14:07:10,32.22164535522461,31.700725555419922,32.83124923706055,24.49146270751953,998.287353515625,9.913097281330824
25/11/2020,14:11:13,32.26524353027344,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.634145736694336,998.2841796875,9.870079977381229
25/11/2020,14:11:14,32.263160705566406,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.30487823486328,998.27783203125,9.879638079321383
25/11/2020,14:11:15,32.263160705566406,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.476829528808594,998.303466796875,9.877248553836345
25/11/2020,14:11:17,32.247090339660645,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.38170623779297,998.257080078125,9.886808993864058
25/11/2020,14:11:18,32.29039192199707,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.49146270751953,998.291748046875,9.891588044834137
25/11/2020,14:11:20,32.25408458709717,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.498779296875,998.28466796875,9.884418299335241
25/11/2020,14:11:21,32.247090339660645,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.56829261779785,998.285400390625,9.877248553836345
25/11/2020,14:11:22,32.25408458709717,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.21341323852539,998.297119140625,9.90353684130311
25/11/2020,14:11:24,32.27744674682617,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.121952056884766,998.278076171875,9.874859028351306
25/11/2020,14:11:25,32.31479549407959,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.246341705322266,998.306640625,9.86768928285241
25/11/2020,14:11:26,32.250216484069824,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.469512939453125,998.292724609375,9.927435603284835
25/11/2020,14:11:28,32.2795295715332,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.546340942382812,998.291259765625,9.889197350305318
25/11/2020,14:11:29,32.27744674682617,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.1256103515625,998.283447265625,9.941773925238847
25/11/2020,14:11:30,32.30854511260986,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.17317008972168,998.287109375,9.90114731581807
25/11/2020,14:11:32,32.30363464355469,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.206096649169922,998.289794921875,9.879638079321383
25/11/2020,14:11:33,32.30676078796387,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.77682876586914,998.28955078125,9.891588044834137
25/11/2020,14:11:34,32.330121994018555,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.579267501831055,998.260986328125,9.877248553836345
25/11/2020,14:11:36,32.26658535003662,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.253658294677734,998.275146484375,9.865299757367373
25/11/2020,14:11:37,32.26524353027344,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.3743896484375,998.27197265625,9.889197350305318
25/11/2020,14:11:39,32.30780220031738,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.385364532470703,998.236328125,9.896368264847993
25/11/2020,14:11:40,32.31687831878662,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.484146118164062,998.253662109375,9.917876332300901
25/11/2020,14:11:41,32.32803726196289,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.524391174316406,998.2666015625,9.853349791854619
25/11/2020,14:11:43,32.27640342712402,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.425609588623047,998.286865234375,9.896368264847993
25/11/2020,14:11:44,32.27045249938965,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.279268264770508,998.279296875,9.893977570319175
25/11/2020,14:11:45,32.26137638092041,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.275609970092773,998.283203125,9.884418299335241
25/11/2020,14:11:47,32.28860664367676,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.560976028442383,998.28271484375,9.886808993864058
25/11/2020,14:11:48,32.241140365600586,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.260974884033203,998.285400390625,9.889197350305318
25/11/2020,14:11:49,32.34202575683594,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.308536529541016,998.253662109375,9.879638079321383
25/11/2020,14:11:51,32.30080795288086,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.42926788330078,998.248291015625,9.877248553836345
25/11/2020,14:11:52,32.2958984375,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.23536491394043,998.265380859375,9.879638079321383
25/11/2020,14:11:54,32.32908058166504,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.31219482421875,998.2509765625,9.879638079321383
25/11/2020,14:11:55,32.27566146850586,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.604877471923828,998.23876953125,9.884418299335241
25/11/2020,14:11:56,32.2958984375,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.246341705322266,998.237060546875,9.870079977381229
25/11/2020,14:11:58,32.30185127258301,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.33414649963379,998.22021484375,9.884418299335241
25/11/2020,14:11:59,32.29277420043945,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.239025115966797,998.267822265625,9.920265857785939
25/11/2020,14:12:00,32.30601692199707,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.524391174316406,998.25244140625,9.905926366788147
25/11/2020,14:12:02,32.32908058166504,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.564634323120117,998.271240234375,9.944164619767665
25/11/2020,14:12:03,32.31196975708008,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.502437591552734,998.2275390625,10.027809702181816
25/11/2020,14:12:04,32.31092834472656,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.359756469726562,998.271728515625,11.339836888122559
25/11/2020,14:12:06,32.304975509643555,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.27195167541504,998.2578125,9.855740486383437
25/11/2020,14:12:07,32.32729434967041,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.780487060546875,998.236572265625,9.872469502866268
25/11/2020,14:12:08,32.33428764343262,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.38902473449707,998.23486328125,9.893977570319175
25/11/2020,14:12:10,32.29798126220703,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.469512939453125,998.25,9.870079977381229
25/11/2020,14:12:11,32.257508277893066,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.79146385192871,998.254150390625,9.215260562631487
25/11/2020,14:12:13,32.24739074707031,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.57560920715332,998.255615234375,9.855740486383437
25/11/2020,14:12:14,32.28860664367676,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.239025115966797,998.23291015625,9.841400995385646
25/11/2020,14:12:15,32.271493911743164,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.51341438293457,998.237060546875,9.822281284373998
25/11/2020,14:12:17,32.31479549407959,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.55365753173828,998.2197265625,9.83423241893053
25/11/2020,14:12:18,32.249473571777344,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.224390029907227,998.2373046875,9.908317061316966
25/11/2020,14:12:19,32.30289268493652,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.370731353759766,998.253173828125,9.839011469900607
25/11/2020,14:12:21,32.29068946838379,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.52804946899414,998.232177734375,9.889197350305318
25/11/2020,14:12:22,32.309885025024414,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.59024429321289,998.2392578125,9.17941300418079
25/11/2020,14:12:23,32.313011169433594,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.39634132385254,998.2587890625,9.872469502866268
25/11/2020,14:12:25,32.30601692199707,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.623170852661133,998.243896484375,9.927435603284835
25/11/2020,14:12:26,32.29202842712402,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.3743896484375,998.24609375,9.795993581429123
25/11/2020,14:12:27,32.31018257141113,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.39634132385254,998.24609375,9.870079977381229
25/11/2020,14:12:29,32.33042049407959,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.286584854125977,998.248046875,9.956113416236638
25/11/2020,14:12:30,32.307355880737305,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.557315826416016,998.225341796875,9.913097281330824
25/11/2020,14:12:32,32.26301574707031,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.476829528808594,998.248046875,9.905926366788147
25/11/2020,14:12:33,32.37506103515625,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.421951293945312,998.24365234375,9.898757790333033
25/11/2020,14:12:34,32.32967758178711,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.308536529541016,998.21337890625,9.812723182433842
25/11/2020,14:12:36,32.272390365600586,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.65975570678711,998.241943359375,9.83423241893053
25/11/2020,14:12:37,32.36419868469238,<function temp_hum at 0x74fe07c8>,<function temp_pres at 0x74fe0d20>,24.363414764404297,998.265869140625,9.855740486383437
25/11/2020,13:52:04,15.850362777709961,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.465852737426758,998.28515625,9.798383691436051
25/11/2020,13:52:05,32.265841484069824,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.33414649963379,998.273193359375,9.846181215399502
25/11/2020,13:52:07,32.262715339660645,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.773170471191406,998.280029296875,9.855740486383437
25/11/2020,13:52:08,32.29902267456055,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,25.018291473388672,998.2294921875,9.846181215399502
25/11/2020,13:52:09,32.33458614349365,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.61585235595703,998.298828125,9.874859028351306
25/11/2020,13:52:11,32.267181396484375,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.96341323852539,998.24658203125,9.877248553836345
25/11/2020,13:52:12,32.345004081726074,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.502437591552734,998.221435546875,9.886808993864058
25/11/2020,13:52:14,32.22596263885498,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.47317123413086,998.24169921875,9.891588044834137
25/11/2020,13:52:15,32.29991817474365,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.52073097229004,998.254638671875,9.886808993864058
25/11/2020,13:52:16,32.27060508728027,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.63780403137207,998.26708984375,9.877248553836345
25/11/2020,13:52:18,32.37282943725586,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.696340560913086,998.2470703125,9.927435603284835
25/11/2020,13:52:19,32.362711906433105,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.59024429321289,998.243408203125,9.877248553836345
25/11/2020,13:52:20,32.379079818725586,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.549999237060547,998.28271484375,9.891588044834137
25/11/2020,13:52:22,32.34589767456055,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.542682647705078,998.2373046875,9.898757790333033
25/11/2020,13:52:23,32.38533020019531,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.268291473388672,998.250244140625,9.889197350305318
25/11/2020,14:14:37,32.38637161254883,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.191463470458984,998.244140625,9.891588044834137
25/11/2020,14:14:38,32.36821937561035,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.282926559448242,998.242919921875,9.896368264847993
25/11/2020,14:14:39,32.36018371582031,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.425609588623047,998.23291015625,9.891588044834137
25/11/2020,14:14:41,32.38041973114014,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.57560920715332,998.22314453125,9.886808993864058
25/11/2020,14:14:42,32.35527420043945,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.78414535522461,998.236328125,9.879638079321383
25/11/2020,14:14:43,32.38458728790283,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.52804946899414,998.23681640625,9.860520706397294
25/11/2020,14:14:45,32.369558334350586,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.498779296875,998.231689453125,9.858130011868477
25/11/2020,14:14:46,32.41598320007324,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.56829261779785,998.259033203125,9.793604055944085
25/11/2020,14:14:48,32.41003227233887,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.469512939453125,998.259765625,9.882028773850202
25/11/2020,14:14:49,32.39678764343262,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.52804946899414,998.25830078125,9.982401703703403
25/11/2020,14:14:50,32.35557174682617,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.509756088256836,998.287353515625,9.905926366788147
25/11/2020,14:14:52,32.36256408691406,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.546340942382812,998.281494140625,9.846181215399502
25/11/2020,14:14:53,32.3957462310791,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.30487823486328,998.2861328125,9.858130011868477
25/11/2020,14:14:54,32.41910934448242,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.59024429321289,998.2890625,9.848570740884542
25/11/2020,14:14:56,32.40407943725586,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.59024429321289,998.24951171875,9.877248553836345
25/11/2020,14:14:57,32.43235206604004,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.557315826416016,998.259765625,9.839011469900607
25/11/2020,14:14:58,32.42148971557617,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.564634323120117,998.273193359375,9.951334365266561
25/11/2020,14:15:00,32.42669868469238,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.51341438293457,998.252685546875,9.891588044834137
25/11/2020,14:15:01,32.44693565368652,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.253658294677734,998.253173828125,9.882028773850202
25/11/2020,14:15:02,32.4277400970459,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.65243911743164,998.232666015625,9.891588044834137
25/11/2020,14:15:04,32.468214988708496,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.476829528808594,998.26904296875,9.893977570319175
25/11/2020,14:15:05,32.442026138305664,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.129268646240234,998.276123046875,9.884418299335241
25/11/2020,14:15:06,32.45526885986328,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.11097526550293,998.288330078125,9.841400995385646
25/11/2020,14:15:08,32.42803764343262,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.33414649963379,998.281982421875,9.898757790333033
25/11/2020,14:15:09,32.48041534423828,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.184146881103516,998.2587890625,9.819892927932738
25/11/2020,14:15:11,32.497528076171875,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,23.671951293945312,998.285400390625,9.889197350305318
25/11/2020,14:15:12,32.46642875671387,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.502437591552734,998.28369140625,9.86768928285241
25/11/2020,14:15:13,32.420002937316895,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.19512176513672,998.2705078125,9.891588044834137
25/11/2020,14:15:15,32.45392990112305,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.531707763671875,998.286865234375,9.83423241893053
25/11/2020,14:15:16,32.406460762023926,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.469512939453125,998.290771484375,9.83423241893053
25/11/2020,14:15:17,32.3499174118042,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.601219177246094,998.302490234375,9.896368264847993
25/11/2020,14:15:19,32.45883846282959,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.363414764404297,998.30322265625,9.86768928285241
25/11/2020,14:15:20,32.45571422576904,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,21.315853118896484,998.283935546875,9.889197350305318
25/11/2020,14:15:21,32.40333652496338,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,23.946340560913086,998.2724609375,9.870079977381229
25/11/2020,14:15:23,32.44767951965332,<function temp_hum at 0x750357c8>,<function temp_pres at 0x75035d20>,24.260974884033203,998.25439453125,9.879638079321383