-
Notifications
You must be signed in to change notification settings - Fork 1
/
bestPredictionsTable.json
2270 lines (2270 loc) · 587 KB
/
bestPredictionsTable.json
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
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3224,"vbatLatestV":1.592053,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3224,"vbatLatestV":1.590545,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3224,"vbatLatestV":1.587187,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3224,"vbatLatestV":1.588696,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1505,"GPSspeedkph":216.3224,"vbatLatestV":1.5861,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1505,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1606,"GPSspeedkph":216.3224,"vbatLatestV":1.629311,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1606,"GPSspeedkph":216.3224,"vbatLatestV":1.619202,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.583564,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1707,"GPSspeedkph":216.3224,"vbatLatestV":1.596208,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1808,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.59099,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3224,"vbatLatestV":1.595676,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3224,"vbatLatestV":1.621271,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1808,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1202,"GPSspeedkph":216.3224,"vbatLatestV":1.577686,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1909,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1202,"GPSspeedkph":216.3224,"vbatLatestV":1.588251,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3224,"vbatLatestV":1.57645,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1909,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1303,"GPSspeedkph":216.3224,"vbatLatestV":1.637725,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":2010,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1303,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.580816,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3224,"vbatLatestV":1.63896,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":2010,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1404,"GPSspeedkph":216.3224,"vbatLatestV":1.590734,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3224,"vbatLatestV":1.647385,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.3224,"vbatLatestV":1.614087,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.605488,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.3224,"vbatLatestV":1.632143,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.643705,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1505,"GPSspeedkph":216.3224,"vbatLatestV":1.588506,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.570589,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.3224,"vbatLatestV":1.568026,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.620888,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.603618,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.599844,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.3224,"vbatLatestV":1.601324,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1404,"GPSspeedkph":216.3224,"vbatLatestV":1.637816,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.630637,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1606,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1606,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1303,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.564893,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.610665,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3224,"vbatLatestV":1.589481,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1606,"GPSspeedkph":216.3224,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.575623,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.579397,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1707,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.633898,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1303,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.591003,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.62032,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.614345,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.58976,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1707,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.566227,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.607618,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.621898,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1808,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.570698,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1606,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.598264,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.627727,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1808,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.614026,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1808,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1000,"GPSspeedkph":216.3225,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3226,"vbatLatestV":1.602338,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3226,"vbatLatestV":1.627594,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3226,"vbatLatestV":1.563445,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3226,"vbatLatestV":1.624585,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3226,"vbatLatestV":1.591011,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1505,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3226,"vbatLatestV":1.568908,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3226,"vbatLatestV":1.617924,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3226,"vbatLatestV":1.606947,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1606,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1808,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1000,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1101,"GPSspeedkph":216.3226,"vbatLatestV":1.609,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3226,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3227,"vbatLatestV":1.612961,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1505,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1101,"GPSspeedkph":216.3227,"vbatLatestV":1.62749,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1909,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1000,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3227,"vbatLatestV":1.617693,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1404,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1707,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1000,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3227,"vbatLatestV":1.615251,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3227,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3227,"vbatLatestV":1.600268,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3228,"vbatLatestV":1.62663,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3228,"vbatLatestV":1.577049,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.3228,"vbatLatestV":1.617147,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3228,"vbatLatestV":1.609552,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3228,"vbatLatestV":1.625834,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1909,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1101,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1909,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1101,"GPSspeedkph":216.3228,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3229,"vbatLatestV":1.613072,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3229,"vbatLatestV":1.57503,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3229,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3229,"vbatLatestV":1.582654,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3229,"vbatLatestV":1.616601,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3229,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3229,"vbatLatestV":1.616713,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3229,"vbatLatestV":1.651961,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3229,"vbatLatestV":1.62927,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.3229,"vbatLatestV":1.615136,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3229,"vbatLatestV":1.626587,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3229,"vbatLatestV":1.62998,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3229,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3229,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3229,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1606,"GPSspeedkph":216.323,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.323,"vbatLatestV":1.610927,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.323,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.323,"vbatLatestV":1.610819,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.323,"vbatLatestV":1.613003,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3231,"vbatLatestV":1.653572,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3231,"vbatLatestV":1.660839,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3231,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3231,"vbatLatestV":1.597486,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3231,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3231,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1707,"GPSspeedkph":216.3231,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1909,"GPSspeedkph":216.3231,"vbatLatestV":1.562346,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1303,"GPSspeedkph":216.3231,"vbatLatestV":1.60854,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3232,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3232,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3232,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3232,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3232,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3232,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3232,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3232,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3232,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3233,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3233,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3233,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3233,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.3233,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1202,"GPSspeedkph":216.3233,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":2010,"GPSspeedkph":216.3234,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1101,"GPSspeedkph":216.3234,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3234,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3234,"vbatLatestV":1.569363,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3234,"vbatLatestV":1.678735,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3234,"vbatLatestV":1.597717,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1606,"GPSspeedkph":216.3234,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1303,"GPSspeedkph":216.3235,"vbatLatestV":1.656066,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1808,"GPSspeedkph":216.3235,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1505,"GPSspeedkph":216.3235,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3235,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3236,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3236,"vbatLatestV":1.581732,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3236,"vbatLatestV":1.56399,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3236,"vbatLatestV":1.634156,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3236,"vbatLatestV":1.622817,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1505,"GPSspeedkph":216.3236,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3236,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3237,"vbatLatestV":1.583346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3237,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3237,"vbatLatestV":1.602092,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3237,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3237,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.3237,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3237,"vbatLatestV":1.603573,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3237,"vbatLatestV":1.600786,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3238,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3238,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.3238,"vbatLatestV":1.592003,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3238,"vbatLatestV":1.572465,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3238,"vbatLatestV":1.605859,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3238,"vbatLatestV":1.645898,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3238,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":2010,"GPSspeedkph":216.3238,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1101,"GPSspeedkph":216.3239,"vbatLatestV":1.618886,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3239,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3239,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3239,"vbatLatestV":1.669545,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3239,"vbatLatestV":1.571079,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3239,"vbatLatestV":1.681695,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.324,"vbatLatestV":1.621168,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.324,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":2010,"GPSspeedkph":216.324,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1202,"GPSspeedkph":216.324,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.324,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3241,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3241,"vbatLatestV":1.57847,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.3241,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1404,"GPSspeedkph":216.3241,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3241,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3241,"vbatLatestV":1.640381,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3242,"vbatLatestV":1.608273,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1606,"GPSspeedkph":216.3242,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1202,"GPSspeedkph":216.3242,"vbatLatestV":1.588967,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3242,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1505,"GPSspeedkph":216.3242,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1202,"GPSspeedkph":216.3242,"vbatLatestV":1.586141,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3243,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3243,"vbatLatestV":1.600105,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1303,"GPSspeedkph":216.3243,"vbatLatestV":1.614707,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3243,"vbatLatestV":1.636756,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3243,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3243,"vbatLatestV":1.575946,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3244,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.3244,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1101,"GPSspeedkph":216.3245,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3245,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3245,"vbatLatestV":1.566295,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3245,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3245,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3246,"vbatLatestV":1.701969,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3246,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3246,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3246,"vbatLatestV":1.604779,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3248,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3248,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3248,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3249,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1808,"GPSspeedkph":216.3249,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1000,"GPSspeedkph":216.325,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.325,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":2010,"GPSspeedkph":216.325,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1707,"GPSspeedkph":216.325,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1000,"GPSspeedkph":216.3251,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.3251,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3252,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3252,"vbatLatestV":1.590679,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3252,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3252,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3253,"vbatLatestV":1.663281,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3253,"vbatLatestV":1.625188,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3254,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.3254,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3255,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3255,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3256,"vbatLatestV":1.59196,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3256,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3256,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3257,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3258,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1707,"GPSspeedkph":216.3258,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1000,"GPSspeedkph":216.3258,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3258,"vbatLatestV":1.640082,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3258,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.326,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.326,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.326,"vbatLatestV":1.607726,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.326,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3261,"vbatLatestV":1.62769,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1808,"GPSspeedkph":216.3261,"vbatLatestV":1.594316,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1404,"GPSspeedkph":216.3261,"vbatLatestV":1.601944,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.3262,"vbatLatestV":1.621327,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1707,"GPSspeedkph":216.3263,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1000,"GPSspeedkph":216.3263,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3264,"vbatLatestV":1.618132,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3264,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3264,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3264,"vbatLatestV":1.620968,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3264,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1909,"GPSspeedkph":216.3265,"vbatLatestV":1.562346,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1202,"GPSspeedkph":216.3266,"vbatLatestV":1.606676,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.3267,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3267,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3267,"vbatLatestV":1.660324,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3267,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3267,"vbatLatestV":1.699435,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3268,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3268,"vbatLatestV":1.600323,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.3268,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.3268,"vbatLatestV":1.58393,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.3269,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.3269,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3269,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.327,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3271,"vbatLatestV":1.564166,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1404,"GPSspeedkph":216.3271,"vbatLatestV":1.632042,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3271,"vbatLatestV":1.592746,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3271,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3271,"vbatLatestV":1.632756,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3272,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3272,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1606,"GPSspeedkph":216.3272,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.3273,"vbatLatestV":1.570421,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3273,"vbatLatestV":1.578454,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3273,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3274,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1303,"GPSspeedkph":216.3274,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3275,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.3275,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1404,"GPSspeedkph":216.3275,"vbatLatestV":1.623405,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1606,"GPSspeedkph":216.3276,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1303,"GPSspeedkph":216.3276,"vbatLatestV":1.590665,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.3276,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.3276,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3277,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3279,"vbatLatestV":1.591923,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.328,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3281,"vbatLatestV":1.667168,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.3281,"vbatLatestV":1.59167,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3281,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3283,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1303,"GPSspeedkph":216.3283,"vbatLatestV":1.570332,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3284,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3286,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3287,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3287,"vbatLatestV":1.601892,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.3288,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1303,"GPSspeedkph":216.3289,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.329,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3291,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3291,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3292,"vbatLatestV":1.618794,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3292,"vbatLatestV":1.571653,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3292,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3293,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.3293,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1303,"GPSspeedkph":216.3293,"vbatLatestV":1.607073,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3294,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1505,"GPSspeedkph":216.3296,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1404,"GPSspeedkph":216.3296,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1505,"GPSspeedkph":216.3299,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3299,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3299,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1808,"GPSspeedkph":216.33,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1101,"GPSspeedkph":216.3302,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3303,"vbatLatestV":1.648991,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3303,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3303,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3303,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3304,"vbatLatestV":1.578929,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3304,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1606,"GPSspeedkph":216.3305,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1404,"GPSspeedkph":216.3307,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3307,"vbatLatestV":1.662988,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3307,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3308,"vbatLatestV":1.598071,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3312,"vbatLatestV":1.580935,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3312,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3313,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3313,"vbatLatestV":1.596059,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3313,"vbatLatestV":1.578654,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3313,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3313,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3314,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.3317,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3317,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3318,"vbatLatestV":1.57298,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1909,"GPSspeedkph":216.332,"vbatLatestV":1.562346,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1101,"GPSspeedkph":216.332,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.332,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3321,"vbatLatestV":1.633648,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3325,"vbatLatestV":1.617693,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3325,"vbatLatestV":1.621885,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.333,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1606,"GPSspeedkph":216.3331,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1202,"GPSspeedkph":216.3334,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.3335,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1505,"GPSspeedkph":216.3337,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1101,"GPSspeedkph":216.3337,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1909,"GPSspeedkph":216.3338,"vbatLatestV":1.621094,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1101,"GPSspeedkph":216.334,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.334,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3341,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.3342,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1202,"GPSspeedkph":216.3343,"vbatLatestV":1.651261,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.3343,"vbatLatestV":1.593573,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3344,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3346,"vbatLatestV":1.566753,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.335,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.3351,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1808,"GPSspeedkph":216.3352,"vbatLatestV":1.622307,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1404,"GPSspeedkph":216.3355,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3356,"vbatLatestV":1.585102,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3356,"vbatLatestV":1.666163,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3356,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3358,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3359,"vbatLatestV":1.631238,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3359,"vbatLatestV":1.594841,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.336,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3364,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1505,"GPSspeedkph":216.3365,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1303,"GPSspeedkph":216.3366,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1505,"GPSspeedkph":216.3367,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1808,"GPSspeedkph":216.3369,"vbatLatestV":1.603909,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1303,"GPSspeedkph":216.3371,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3371,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1505,"GPSspeedkph":216.3373,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1404,"GPSspeedkph":216.3375,"vbatLatestV":1.575216,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3376,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3376,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":2010,"GPSspeedkph":216.3377,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1000,"GPSspeedkph":216.3379,"vbatLatestV":1.598329,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3382,"vbatLatestV":1.692506,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3386,"vbatLatestV":1.577945,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.3386,"vbatLatestV":1.609635,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.3387,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3388,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3389,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.339,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3391,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.3391,"vbatLatestV":1.597826,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1505,"GPSspeedkph":216.3391,"vbatLatestV":1.654096,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1707,"GPSspeedkph":216.3392,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1202,"GPSspeedkph":216.3393,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.3394,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.3394,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1505,"GPSspeedkph":216.3394,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1101,"GPSspeedkph":216.3395,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3395,"vbatLatestV":1.578785,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3396,"vbatLatestV":1.668065,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.34,"vbatLatestV":1.597571,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.3402,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1505,"GPSspeedkph":216.3402,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1202,"GPSspeedkph":216.3403,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1404,"GPSspeedkph":216.3403,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.3407,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1707,"GPSspeedkph":216.3407,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1202,"GPSspeedkph":216.3407,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.3407,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.341,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.3413,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1101,"GPSspeedkph":216.3416,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1505,"GPSspeedkph":216.3417,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1404,"GPSspeedkph":216.3418,"vbatLatestV":1.645148,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.342,"vbatLatestV":1.588576,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1505,"GPSspeedkph":216.3421,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1101,"GPSspeedkph":216.3423,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3425,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3427,"vbatLatestV":1.592469,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3428,"vbatLatestV":1.611779,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3428,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3434,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.3439,"vbatLatestV":1.594058,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1505,"GPSspeedkph":216.344,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3441,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3447,"vbatLatestV":1.620326,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3447,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3451,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3461,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.3467,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1707,"GPSspeedkph":216.3467,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1404,"GPSspeedkph":216.347,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1303,"GPSspeedkph":216.3471,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3475,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3476,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3477,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1404,"GPSspeedkph":216.3481,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1303,"GPSspeedkph":216.3483,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1707,"GPSspeedkph":216.3484,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1404,"GPSspeedkph":216.3485,"vbatLatestV":1.572167,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1606,"GPSspeedkph":216.3491,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1606,"GPSspeedkph":216.3493,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1505,"GPSspeedkph":216.3494,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1202,"GPSspeedkph":216.3495,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.35,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3504,"vbatLatestV":1.583915,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3505,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3505,"vbatLatestV":1.626278,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3505,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1909,"GPSspeedkph":216.3511,"vbatLatestV":1.562346,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1202,"GPSspeedkph":216.3517,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3519,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.352,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1404,"GPSspeedkph":216.3521,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1707,"GPSspeedkph":216.3529,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1505,"GPSspeedkph":216.3533,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1505,"GPSspeedkph":216.3536,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1202,"GPSspeedkph":216.3537,"vbatLatestV":1.606962,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3538,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3541,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1505,"GPSspeedkph":216.3542,"vbatLatestV":1.592316,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3543,"vbatLatestV":1.591368,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3545,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3545,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3545,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3548,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3552,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3553,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3556,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3557,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3557,"vbatLatestV":1.598927,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3559,"vbatLatestV":1.581112,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.356,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3563,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3573,"vbatLatestV":1.571612,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3574,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.3575,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3576,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":2010,"GPSspeedkph":216.3584,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1101,"GPSspeedkph":216.3584,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3585,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3585,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3586,"vbatLatestV":1.62611,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3587,"vbatLatestV":1.581762,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.359,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.3591,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.3591,"vbatLatestV":1.5998,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3596,"vbatLatestV":1.586809,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3599,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3601,"vbatLatestV":1.622664,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3602,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3603,"vbatLatestV":1.648861,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.361,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.3612,"vbatLatestV":1.591799,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3615,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.3616,"vbatLatestV":1.639609,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1101,"GPSspeedkph":216.3617,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3621,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1707,"GPSspeedkph":216.3622,"vbatLatestV":1.610068,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1202,"GPSspeedkph":216.363,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1404,"GPSspeedkph":216.3632,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3633,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3636,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3641,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1707,"GPSspeedkph":216.3641,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1000,"GPSspeedkph":216.3644,"vbatLatestV":1.584962,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3645,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3648,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":2010,"GPSspeedkph":216.3653,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1404,"GPSspeedkph":216.3654,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.3661,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3671,"vbatLatestV":1.589083,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1606,"GPSspeedkph":216.3671,"vbatLatestV":1.621683,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1202,"GPSspeedkph":216.3683,"vbatLatestV":1.686054,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3695,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.3696,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1606,"GPSspeedkph":216.3698,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1505,"GPSspeedkph":216.37,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3701,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1909,"GPSspeedkph":216.3705,"vbatLatestV":1.593103,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1000,"GPSspeedkph":216.371,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.3717,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3719,"vbatLatestV":1.614067,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.3722,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3727,"vbatLatestV":1.609693,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.3729,"vbatLatestV":1.566084,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3731,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.3732,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3734,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.3747,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1404,"GPSspeedkph":216.3749,"vbatLatestV":1.57944,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.375,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.3751,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1202,"GPSspeedkph":216.3753,"vbatLatestV":1.599883,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.3758,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1505,"GPSspeedkph":216.3759,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1606,"GPSspeedkph":216.3762,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1202,"GPSspeedkph":216.3762,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3763,"vbatLatestV":1.643752,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3764,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1909,"GPSspeedkph":216.3767,"vbatLatestV":1.611501,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1000,"GPSspeedkph":216.3769,"vbatLatestV":1.598105,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.3773,"vbatLatestV":1.577903,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.3778,"vbatLatestV":1.673614,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1606,"GPSspeedkph":216.3781,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.3788,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3794,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1707,"GPSspeedkph":216.3796,"vbatLatestV":1.597321,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1202,"GPSspeedkph":216.3801,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1404,"GPSspeedkph":216.3804,"vbatLatestV":1.64897,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1303,"GPSspeedkph":216.3804,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3805,"vbatLatestV":1.617082,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.3824,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.3828,"vbatLatestV":1.641581,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1404,"GPSspeedkph":216.3829,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1505,"GPSspeedkph":216.3834,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1101,"GPSspeedkph":216.3839,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.3843,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.3847,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1505,"GPSspeedkph":216.3848,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1606,"GPSspeedkph":216.3848,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1808,"GPSspeedkph":216.3851,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1303,"GPSspeedkph":216.3853,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.3858,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3881,"vbatLatestV":1.572559,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1606,"GPSspeedkph":216.3888,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1000,"GPSspeedkph":216.389,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.3892,"vbatLatestV":1.648647,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1202,"GPSspeedkph":216.3894,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.3896,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1808,"GPSspeedkph":216.3905,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1000,"GPSspeedkph":216.3905,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.3905,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.3906,"vbatLatestV":1.579814,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1606,"GPSspeedkph":216.3906,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.3915,"vbatLatestV":1.691836,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1505,"GPSspeedkph":216.3923,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3941,"vbatLatestV":1.593776,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1606,"GPSspeedkph":216.3942,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1000,"GPSspeedkph":216.3946,"vbatLatestV":1.582312,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.3952,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.3953,"vbatLatestV":1.563876,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3953,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1606,"GPSspeedkph":216.3955,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1303,"GPSspeedkph":216.3956,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.396,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3962,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.3972,"vbatLatestV":1.57669,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1505,"GPSspeedkph":216.3972,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1303,"GPSspeedkph":216.3974,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.3978,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.3978,"vbatLatestV":1.622925,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1606,"GPSspeedkph":216.3979,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1202,"GPSspeedkph":216.3981,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3983,"vbatLatestV":1.623127,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.3985,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.3997,"vbatLatestV":1.569173,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.4004,"vbatLatestV":1.647629,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.4006,"vbatLatestV":1.626558,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.4012,"vbatLatestV":1.636606,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1505,"GPSspeedkph":216.4021,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1606,"GPSspeedkph":216.4024,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.4027,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.4028,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.4036,"vbatLatestV":1.615752,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4036,"vbatLatestV":1.615752,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1808,"GPSspeedkph":216.4038,"vbatLatestV":1.618089,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1000,"GPSspeedkph":216.4044,"vbatLatestV":1.626772,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.4045,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.4052,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.4054,"vbatLatestV":1.623609,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.406,"vbatLatestV":1.577687,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4096,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4097,"vbatLatestV":1.590299,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4102,"vbatLatestV":1.626934,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4111,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4116,"vbatLatestV":1.632282,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1808,"GPSspeedkph":216.4122,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1000,"GPSspeedkph":216.4124,"vbatLatestV":1.646432,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.4137,"vbatLatestV":1.628605,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.415,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1303,"GPSspeedkph":216.4153,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.4154,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.4157,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.4158,"vbatLatestV":1.61579,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.4159,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1505,"GPSspeedkph":216.4172,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1404,"GPSspeedkph":216.418,"vbatLatestV":1.571896,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.4183,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1808,"GPSspeedkph":216.4184,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1505,"GPSspeedkph":216.4188,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.4195,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.4218,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1606,"GPSspeedkph":216.4219,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1000,"GPSspeedkph":216.4223,"vbatLatestV":1.586969,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.4242,"vbatLatestV":1.658174,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.4242,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1404,"GPSspeedkph":216.4242,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.4249,"vbatLatestV":1.603747,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.4257,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.4258,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.4259,"vbatLatestV":1.616045,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.4265,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4269,"vbatLatestV":1.588132,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":2010,"GPSspeedkph":216.428,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1000,"GPSspeedkph":216.4295,"vbatLatestV":1.563903,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.4296,"vbatLatestV":1.56786,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1303,"GPSspeedkph":216.4302,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.4303,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1606,"GPSspeedkph":216.431,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1000,"GPSspeedkph":216.4311,"vbatLatestV":1.626507,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.4315,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1808,"GPSspeedkph":216.4329,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1202,"GPSspeedkph":216.4339,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.434,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.4342,"vbatLatestV":1.696952,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1808,"GPSspeedkph":216.4345,"vbatLatestV":1.650505,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1000,"GPSspeedkph":216.4347,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4357,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1606,"GPSspeedkph":216.4368,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1303,"GPSspeedkph":216.4373,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.4375,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.4388,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1606,"GPSspeedkph":216.4389,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1000,"GPSspeedkph":216.4391,"vbatLatestV":1.59371,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4393,"vbatLatestV":1.611711,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.4396,"vbatLatestV":1.60482,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.4404,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.4405,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.441,"vbatLatestV":1.622259,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.4421,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4426,"vbatLatestV":1.601916,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.4431,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1202,"GPSspeedkph":216.444,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.4441,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.4443,"vbatLatestV":1.631909,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.4443,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.445,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1404,"GPSspeedkph":216.4454,"vbatLatestV":1.605012,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.4457,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.4462,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1808,"GPSspeedkph":216.4475,"vbatLatestV":1.562346,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1303,"GPSspeedkph":216.4475,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.4476,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4485,"vbatLatestV":1.599801,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.4491,"vbatLatestV":1.591525,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1505,"GPSspeedkph":216.4494,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1505,"GPSspeedkph":216.4499,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1101,"GPSspeedkph":216.45,"vbatLatestV":1.607607,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1505,"GPSspeedkph":216.45,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1505,"GPSspeedkph":216.4505,"vbatLatestV":1.627595,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1303,"GPSspeedkph":216.4508,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.4508,"vbatLatestV":1.619055,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.451,"vbatLatestV":1.617561,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4518,"vbatLatestV":1.600305,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.4542,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.4543,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.4543,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.4544,"vbatLatestV":1.638175,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.4548,"vbatLatestV":1.595842,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.4556,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1202,"GPSspeedkph":216.4562,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.4571,"vbatLatestV":1.643568,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.4588,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.4599,"vbatLatestV":1.654735,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.4604,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.4614,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.4622,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.4628,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.4634,"vbatLatestV":1.569043,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.4635,"vbatLatestV":1.584124,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1808,"GPSspeedkph":216.4647,"vbatLatestV":1.575802,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1404,"GPSspeedkph":216.4661,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.4661,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.4666,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.4666,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1808,"GPSspeedkph":216.4669,"vbatLatestV":1.605342,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1505,"GPSspeedkph":216.4697,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1101,"GPSspeedkph":216.4699,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.4703,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.4708,"vbatLatestV":1.600692,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.4709,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.4714,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.4715,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1404,"GPSspeedkph":216.4719,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.4719,"vbatLatestV":1.577445,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1808,"GPSspeedkph":216.4735,"vbatLatestV":1.652377,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1000,"GPSspeedkph":216.4736,"vbatLatestV":1.587107,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4738,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.4747,"vbatLatestV":1.678008,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.4754,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.477,"vbatLatestV":1.563794,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.4773,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.4785,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.4837,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.4839,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1707,"GPSspeedkph":216.484,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1000,"GPSspeedkph":216.4841,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4848,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.4868,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.4879,"vbatLatestV":1.578735,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.4879,"vbatLatestV":1.640295,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1303,"GPSspeedkph":216.4882,"vbatLatestV":1.589979,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.4885,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.4897,"vbatLatestV":1.56947,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.4921,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1707,"GPSspeedkph":216.4922,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1606,"GPSspeedkph":216.4922,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1000,"GPSspeedkph":216.493,"vbatLatestV":1.61356,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.493,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1606,"GPSspeedkph":216.4937,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.494,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.4944,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":2010,"GPSspeedkph":216.4953,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1101,"GPSspeedkph":216.4969,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.4995,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.5,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.5002,"vbatLatestV":1.566892,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.5007,"vbatLatestV":1.572423,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.5011,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1606,"GPSspeedkph":216.5016,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1000,"GPSspeedkph":216.5021,"vbatLatestV":1.627063,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1505,"GPSspeedkph":216.5029,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1101,"GPSspeedkph":216.5036,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1303,"GPSspeedkph":216.5041,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.5044,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.5053,"vbatLatestV":1.612924,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1404,"GPSspeedkph":216.5057,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1000,"GPSspeedkph":216.5067,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.507,"vbatLatestV":1.585704,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.5072,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.5075,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.5077,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.5108,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1000,"GPSspeedkph":216.5112,"vbatLatestV":1.612705,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.5126,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1707,"GPSspeedkph":216.5132,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1606,"GPSspeedkph":216.5135,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1909,"GPSspeedkph":216.5135,"vbatLatestV":1.562346,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":2010,"GPSspeedkph":216.5164,"vbatLatestV":1.562346,"previousThrottleSequence":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000],"throttleInputHistory":[2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2000,2010,2010,2010,2010,2010,2010,2010]}
{"currentThrottle":1101,"GPSspeedkph":216.517,"vbatLatestV":1.581126,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.5184,"vbatLatestV":1.583727,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.5204,"vbatLatestV":1.58433,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1707,"GPSspeedkph":216.5211,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1000,"GPSspeedkph":216.5227,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.5251,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.5253,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.5271,"vbatLatestV":1.567228,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.5272,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.5288,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.5289,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.5309,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1505,"GPSspeedkph":216.5324,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1303,"GPSspeedkph":216.5366,"vbatLatestV":1.612779,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1505,"GPSspeedkph":216.5368,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1303,"GPSspeedkph":216.5384,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1606,"GPSspeedkph":216.5385,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1202,"GPSspeedkph":216.5402,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.5404,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.5404,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.5416,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1404,"GPSspeedkph":216.5424,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1606,"GPSspeedkph":216.5432,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1707,"GPSspeedkph":216.5432,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1505,"GPSspeedkph":216.5436,"vbatLatestV":1.562346,"previousThrottleSequence":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500],"throttleInputHistory":[1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1500,1505,1505,1505,1505,1505,1505,1505]}
{"currentThrottle":1000,"GPSspeedkph":216.5439,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1909,"GPSspeedkph":216.5442,"vbatLatestV":1.562346,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1303,"GPSspeedkph":216.5464,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1303,"GPSspeedkph":216.5486,"vbatLatestV":1.59491,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1000,"GPSspeedkph":216.5523,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.554,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1808,"GPSspeedkph":216.5549,"vbatLatestV":1.64755,"previousThrottleSequence":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800],"throttleInputHistory":[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1800,1808,1808,1808,1808,1808,1808,1808]}
{"currentThrottle":1101,"GPSspeedkph":216.5569,"vbatLatestV":1.624165,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1606,"GPSspeedkph":216.5576,"vbatLatestV":1.566469,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1000,"GPSspeedkph":216.5587,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.5587,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1606,"GPSspeedkph":216.56,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1909,"GPSspeedkph":216.5617,"vbatLatestV":1.636294,"previousThrottleSequence":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900],"throttleInputHistory":[1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1900,1909,1909,1909,1909,1909,1909,1909]}
{"currentThrottle":1404,"GPSspeedkph":216.5618,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1101,"GPSspeedkph":216.562,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1707,"GPSspeedkph":216.5621,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1404,"GPSspeedkph":216.5636,"vbatLatestV":1.623606,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.565,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.5668,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1202,"GPSspeedkph":216.5681,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1202,"GPSspeedkph":216.5703,"vbatLatestV":1.562346,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1101,"GPSspeedkph":216.5708,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.5726,"vbatLatestV":1.607133,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.5726,"vbatLatestV":1.571619,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.5727,"vbatLatestV":1.581598,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1101,"GPSspeedkph":216.5732,"vbatLatestV":1.582785,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1707,"GPSspeedkph":216.5737,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1101,"GPSspeedkph":216.5748,"vbatLatestV":1.6405,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.5752,"vbatLatestV":1.614989,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1000,"GPSspeedkph":216.5763,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1606,"GPSspeedkph":216.5767,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.5771,"vbatLatestV":1.61369,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1101,"GPSspeedkph":216.5775,"vbatLatestV":1.568977,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1707,"GPSspeedkph":216.5777,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1101,"GPSspeedkph":216.5793,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1000,"GPSspeedkph":216.5801,"vbatLatestV":1.562346,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1303,"GPSspeedkph":216.5802,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1404,"GPSspeedkph":216.5802,"vbatLatestV":1.562346,"previousThrottleSequence":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400],"throttleInputHistory":[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1400,1404,1404,1404,1404,1404,1404,1404]}
{"currentThrottle":1202,"GPSspeedkph":216.5831,"vbatLatestV":1.677727,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1707,"GPSspeedkph":216.5843,"vbatLatestV":1.562346,"previousThrottleSequence":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700],"throttleInputHistory":[1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1700,1707,1707,1707,1707,1707,1707,1707]}
{"currentThrottle":1202,"GPSspeedkph":216.5853,"vbatLatestV":1.568072,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1303,"GPSspeedkph":216.5861,"vbatLatestV":1.562346,"previousThrottleSequence":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300],"throttleInputHistory":[1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1300,1303,1303,1303,1303,1303,1303,1303]}
{"currentThrottle":1101,"GPSspeedkph":216.5862,"vbatLatestV":1.577612,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1202,"GPSspeedkph":216.59,"vbatLatestV":1.609518,"previousThrottleSequence":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200],"throttleInputHistory":[1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1200,1202,1202,1202,1202,1202,1202,1202]}
{"currentThrottle":1000,"GPSspeedkph":216.5905,"vbatLatestV":1.624306,"previousThrottleSequence":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000],"throttleInputHistory":[1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000,1000]}
{"currentThrottle":1606,"GPSspeedkph":216.5935,"vbatLatestV":1.567781,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}
{"currentThrottle":1101,"GPSspeedkph":216.5941,"vbatLatestV":1.562346,"previousThrottleSequence":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100],"throttleInputHistory":[1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1100,1101,1101,1101,1101,1101,1101,1101]}
{"currentThrottle":1606,"GPSspeedkph":216.5987,"vbatLatestV":1.562346,"previousThrottleSequence":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600],"throttleInputHistory":[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1600,1606,1606,1606,1606,1606,1606,1606]}