-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollected.txt
1662 lines (1662 loc) · 358 KB
/
collected.txt
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
[
{"wind": {"speed": 3.65, "deg": 143.509}, "weather": {"pressure": 981.23, "temp_min": 295.56, "temp_max": 295.56, "temp": 295.56, "humidity": 70}, "state": "Afonso Claudio", "coord": {"lat": -20.07, "lon": -41.12}},
{"wind": {"speed": 5.4, "deg": 153.009}, "weather": {"pressure": 992.49, "temp_min": 293.31, "temp_max": 293.31, "temp": 293.31, "humidity": 96}, "state": "Barra de Sao Francisco", "coord": {"lat": -18.75, "lon": -40.89}},
{"wind": {"speed": 3.8, "deg": 147.509}, "weather": {"pressure": 989.57, "temp_min": 292.81, "temp_max": 292.81, "temp": 292.81, "humidity": 95}, "state": "Aguia Branca", "coord": {"lat": -18.98, "lon": -40.74}},
{"wind": {"speed": 2.15, "deg": 163.509}, "weather": {"pressure": 995.25, "temp_min": 291.61, "temp_max": 291.61, "temp": 291.61, "humidity": 99}, "state": "Alegre", "coord": {"lat": -20.76, "lon": -41.53}},
{"wind": {"speed": 4.6, "deg": 220}, "weather": {"pressure": 1020, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Alfredo Chaves", "coord": {"lat": -20.64, "lon": -40.75}},
{"wind": {"speed": 3.8, "deg": 147.509}, "weather": {"pressure": 989.57, "temp_min": 292.81, "temp_max": 292.81, "temp": 292.81, "humidity": 95}, "state": "Alto Rio Novo", "coord": {"lat": -19.06, "lon": -41.02}},
{"wind": {"speed": 2.95, "deg": 146.009}, "weather": {"pressure": 960.07, "temp_min": 290.26, "temp_max": 290.26, "temp": 290.26, "humidity": 52}, "state": "Anchieta", "coord": {"lat": -26.53, "lon": -53.33}},
{"wind": {"speed": 2.15, "deg": 163.509}, "weather": {"pressure": 995.25, "temp_min": 291.61, "temp_max": 291.61, "temp": 291.61, "humidity": 99}, "state": "Bom Jesus do Norte", "coord": {"lat": -21.13, "lon": -41.68}},
{"wind": {"speed": 4.6, "deg": 220}, "weather": {"pressure": 1020, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Aracruz", "coord": {"lat": -19.82, "lon": -40.27}},
{"wind": {"speed": 2.15, "deg": 163.509}, "weather": {"pressure": 995.25, "temp_min": 291.61, "temp_max": 291.61, "temp": 291.61, "humidity": 99}, "state": "Cachoeiro de Itapemirim", "coord": {"lat": -20.85, "lon": -41.11}},
{"wind": {"speed": 4.4, "deg": 155.009}, "weather": {"pressure": 978.06, "temp_min": 292.66, "temp_max": 292.66, "temp": 292.66, "humidity": 92}, "state": "Baixo Guand", "coord": {"lat": -19.52, "lon": -41.02}},
{"wind": {"speed": 5.4, "deg": 153.009}, "weather": {"pressure": 992.49, "temp_min": 293.31, "temp_max": 293.31, "temp": 293.31, "humidity": 96}, "state": "Barra de Sao Francisco", "coord": {"lat": -18.75, "lon": -40.89}},
{"wind": {"speed": 3.55, "deg": 106.509}, "weather": {"pressure": 932.83, "temp_min": 290.76, "temp_max": 290.76, "temp": 290.76, "humidity": 97}, "state": "Boa Esperanca", "coord": {"lat": -21.09, "lon": -45.57}},
{"wind": {"speed": 2.15, "deg": 163.509}, "weather": {"pressure": 995.25, "temp_min": 291.61, "temp_max": 291.61, "temp": 291.61, "humidity": 99}, "state": "Bom Jesus do Norte", "coord": {"lat": -21.13, "lon": -41.68}},
{"wind": {"speed": 1.95, "deg": 173.009}, "weather": {"pressure": 936.89, "temp_min": 290.01, "temp_max": 290.01, "temp": 290.01, "humidity": 97}, "state": "Brejetuba", "coord": {"lat": -20.15, "lon": -41.29}},
{"wind": {"speed": 2.15, "deg": 163.509}, "weather": {"pressure": 995.25, "temp_min": 291.61, "temp_max": 291.61, "temp": 291.61, "humidity": 99}, "state": "Cachoeiro de Itapemirim", "coord": {"lat": -20.85, "lon": -41.11}},
{"wind": {"speed": 4.6, "deg": 220}, "weather": {"pressure": 1020, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Cariacica", "coord": {"lat": -20.26, "lon": -40.42}},
{"wind": {"speed": 1.95, "deg": 173.009}, "weather": {"pressure": 936.89, "temp_min": 290.01, "temp_max": 290.01, "temp": 290.01, "humidity": 97}, "state": "Castelo", "coord": {"lat": -20.6, "lon": -41.18}},
{"wind": {"speed": 4.4, "deg": 155.009}, "weather": {"pressure": 978.06, "temp_min": 292.66, "temp_max": 292.66, "temp": 292.66, "humidity": 92}, "state": "Colatina", "coord": {"lat": -19.54, "lon": -40.63}},
{"wind": {"speed": 6.7, "deg": 167.509}, "weather": {"pressure": 1030.75, "temp_min": 296.66, "temp_max": 296.66, "temp": 296.66, "humidity": 100}, "state": "Conceicao da Barra", "coord": {"lat": -18.59, "lon": -39.73}},
{"wind": {"speed": 1.95, "deg": 173.009}, "weather": {"pressure": 936.89, "temp_min": 290.01, "temp_max": 290.01, "temp": 290.01, "humidity": 97}, "state": "Conceicao do Castelo", "coord": {"lat": -20.37, "lon": -41.24}},
{"wind": {"speed": 1.95, "deg": 173.009}, "weather": {"pressure": 936.89, "temp_min": 290.01, "temp_max": 290.01, "temp": 290.01, "humidity": 97}, "state": "Ibitirama", "coord": {"lat": -20.54, "lon": -41.67}},
{"wind": {"speed": 4.6, "deg": 220}, "weather": {"pressure": 1020, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Domingos Martins", "coord": {"lat": -20.36, "lon": -40.66}},
{"wind": {"speed": 2.6, "deg": 146.009}, "weather": {"pressure": 925.21, "temp_min": 290.96, "temp_max": 290.96, "temp": 290.96, "humidity": 82}, "state": "Dores do Rio Preto", "coord": {"lat": -20.69, "lon": -41.85}},
{"wind": {"speed": 5.4, "deg": 153.009}, "weather": {"pressure": 992.49, "temp_min": 293.31, "temp_max": 293.31, "temp": 293.31, "humidity": 96}, "state": "Ecoporanga", "coord": {"lat": -18.37, "lon": -40.83}},
{"wind": {"speed": 2.4, "deg": 257.509}, "weather": {"pressure": 956.75, "temp_min": 280.31, "temp_max": 280.31, "temp": 280.31, "humidity": 89}, "state": "Fundão", "coord": {"lat": 40.12, "lon": -7.5}},
{"wind": {"speed": 5.45, "deg": 168.009}, "weather": {"pressure": 1019.48, "temp_min": 294.16, "temp_max": 294.16, "temp": 294.16, "humidity": 99}, "state": "Rio Bananal", "coord": {"lat": -19.27, "lon": -40.33}},
{"wind": {"speed": 2.15, "deg": 163.509}, "weather": {"pressure": 995.25, "temp_min": 291.61, "temp_max": 291.61, "temp": 291.61, "humidity": 99}, "state": "Guacui", "coord": {"lat": -20.78, "lon": -41.68}},
{"wind": {"speed": 4.6, "deg": 220}, "weather": {"pressure": 1020, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Guarapari", "coord": {"lat": -20.67, "lon": -40.5}},
{"wind": {"speed": 1.95, "deg": 173.009}, "weather": {"pressure": 936.89, "temp_min": 290.01, "temp_max": 290.01, "temp": 290.01, "humidity": 97}, "state": "Ibatiba", "coord": {"lat": -20.23, "lon": -41.51}},
{"wind": {"speed": 5.1, "deg": 220}, "weather": {"pressure": 1021, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Ibirac", "coord": {"lat": -19.83, "lon": -40.37}},
{"wind": {"speed": 1.95, "deg": 173.009}, "weather": {"pressure": 936.89, "temp_min": 290.01, "temp_max": 290.01, "temp": 290.01, "humidity": 97}, "state": "Ibitirama", "coord": {"lat": -20.54, "lon": -41.67}},
{"wind": {"speed": 4.45, "deg": 177.509}, "weather": {"pressure": 1027.91, "temp_min": 295.56, "temp_max": 295.56, "temp": 295.56, "humidity": 100}, "state": "Iconha", "coord": {"lat": -20.79, "lon": -40.81}},
{"wind": {"speed": 1.95, "deg": 173.009}, "weather": {"pressure": 936.89, "temp_min": 290.01, "temp_max": 290.01, "temp": 290.01, "humidity": 97}, "state": "Irupi", "coord": {"lat": -20.35, "lon": -41.64}},
{"wind": {"speed": 4.4, "deg": 155.009}, "weather": {"pressure": 978.06, "temp_min": 292.66, "temp_max": 292.66, "temp": 292.66, "humidity": 92}, "state": "Itaguac", "coord": {"lat": -19.8, "lon": -40.86}},
{"wind": {"speed": 4.45, "deg": 177.509}, "weather": {"pressure": 1027.91, "temp_min": 295.56, "temp_max": 295.56, "temp": 295.56, "humidity": 100}, "state": "Itapemirim", "coord": {"lat": -21.01, "lon": -40.83}},
{"wind": {"speed": 4.4, "deg": 155.009}, "weather": {"pressure": 978.06, "temp_min": 292.66, "temp_max": 292.66, "temp": 292.66, "humidity": 92}, "state": "Itarana", "coord": {"lat": -19.87, "lon": -40.88}},
{"wind": {"speed": 1.95, "deg": 173.009}, "weather": {"pressure": 936.89, "temp_min": 290.01, "temp_max": 290.01, "temp": 290.01, "humidity": 97}, "state": "Iuna", "coord": {"lat": -20.35, "lon": -41.54}},
{"wind": {"speed": 6.7, "deg": 167.509}, "weather": {"pressure": 1030.75, "temp_min": 296.66, "temp_max": 296.66, "temp": 296.66, "humidity": 100}, "state": "Sao Mateus", "coord": {"lat": -18.72, "lon": -39.86}},
{"wind": {"speed": 2.15, "deg": 163.509}, "weather": {"pressure": 995.25, "temp_min": 291.61, "temp_max": 291.61, "temp": 291.61, "humidity": 99}, "state": "Jeronimo Monteiro", "coord": {"lat": -20.79, "lon": -41.4}},
{"wind": {"speed": 5.1, "deg": 220}, "weather": {"pressure": 1021, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Joao Neiva", "coord": {"lat": -19.76, "lon": -40.39}},
{"wind": {"speed": 4.4, "deg": 155.009}, "weather": {"pressure": 978.06, "temp_min": 292.66, "temp_max": 292.66, "temp": 292.66, "humidity": 92}, "state": "Laranja da Terra", "coord": {"lat": -19.9, "lon": -41.06}},
{"wind": {"speed": 5.45, "deg": 168.009}, "weather": {"pressure": 1019.48, "temp_min": 294.16, "temp_max": 294.16, "temp": 294.16, "humidity": 99}, "state": "Linhares", "coord": {"lat": -19.39, "lon": -40.07}},
{"wind": {"speed": 4.25, "deg": 131.009}, "weather": {"pressure": 978.31, "temp_min": 293.36, "temp_max": 293.36, "temp": 293.36, "humidity": 91}, "state": "Mantenopolis", "coord": {"lat": -18.86, "lon": -41.12}},
{"wind": {"speed": 4.45, "deg": 177.509}, "weather": {"pressure": 1027.91, "temp_min": 295.56, "temp_max": 295.56, "temp": 295.56, "humidity": 100}, "state": "Marataizes", "coord": {"lat": -21.04, "lon": -40.82}},
{"wind": {"speed": 5.1, "deg": 220}, "weather": {"pressure": 1021, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Marechal Floriano", "coord": {"lat": -20.41, "lon": -40.68}},
{"wind": {"speed": 3.8, "deg": 147.509}, "weather": {"pressure": 989.57, "temp_min": 292.81, "temp_max": 292.81, "temp": 292.81, "humidity": 95}, "state": "Marilandia", "coord": {"lat": -19.41, "lon": -40.54}},
{"wind": {"speed": 2.15, "deg": 163.509}, "weather": {"pressure": 995.25, "temp_min": 291.61, "temp_max": 291.61, "temp": 291.61, "humidity": 99}, "state": "Mimoso do Sul", "coord": {"lat": -21.06, "lon": -41.37}},
{"wind": {"speed": 6.15, "deg": 165.509}, "weather": {"pressure": 1015.75, "temp_min": 295.16, "temp_max": 295.16, "temp": 295.16, "humidity": 96}, "state": "Montanha", "coord": {"lat": -18.13, "lon": -40.36}},
{"wind": {"speed": 7.2, "deg": 152.009}, "weather": {"pressure": 994.6, "temp_min": 294.71, "temp_max": 294.71, "temp": 294.71, "humidity": 86}, "state": "Mucurici", "coord": {"lat": -18.09, "lon": -40.52}},
{"wind": {"speed": 1.95, "deg": 173.009}, "weather": {"pressure": 936.89, "temp_min": 290.01, "temp_max": 290.01, "temp": 290.01, "humidity": 97}, "state": "Muniz Freire", "coord": {"lat": -20.46, "lon": -41.41}},
{"wind": {"speed": 2.15, "deg": 163.509}, "weather": {"pressure": 995.25, "temp_min": 291.61, "temp_max": 291.61, "temp": 291.61, "humidity": 99}, "state": "Pratinha", "coord": {"lat": -20.95, "lon": -41.32}},
{"wind": {"speed": 6.4, "deg": 166.009}, "weather": {"pressure": 1019.81, "temp_min": 294.51, "temp_max": 294.51, "temp": 294.51, "humidity": 95}, "state": "Nova Venecia", "coord": {"lat": -18.71, "lon": -40.4}},
{"wind": {"speed": 3.5, "deg": 146.512}, "weather": {"pressure": 991.15, "temp_min": 292.711, "temp_max": 292.711, "temp": 292.711, "humidity": 95}, "state": "Pancas", "coord": {"lat": -19.23, "lon": -40.85}},
{"wind": {"speed": 6.22, "deg": 142.512}, "weather": {"pressure": 1032.48, "temp_min": 296.211, "temp_max": 296.211, "temp": 296.211, "humidity": 100}, "state": "Santana", "coord": {"lat": -18.57, "lon": -39.75}},
{"wind": {"speed": 5.1, "deg": 140}, "weather": {"pressure": 1025, "temp_min": 289.15, "temp_max": 289.15, "temp": 289.15, "humidity": 82}, "state": "Pinheiros", "coord": {"lat": -23.53, "lon": -46.62}},
{"wind": {"speed": 5.32, "deg": 166.512}, "weather": {"pressure": 1029.48, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 100}, "state": "Piuma", "coord": {"lat": -20.84, "lon": -40.72}},
{"wind": {"speed": 6.42, "deg": 153.012}, "weather": {"pressure": 996.33, "temp_min": 294.011, "temp_max": 294.011, "temp": 294.011, "humidity": 88}, "state": "Mucurici", "coord": {"lat": -18.09, "lon": -40.52}},
{"wind": {"speed": 2.6, "deg": 80}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Fortaleza", "coord": {"lat": -3.72, "lon": -38.54}},
{"wind": {"speed": 5.45, "deg": 168.009}, "weather": {"pressure": 1019.48, "temp_min": 294.16, "temp_max": 294.16, "temp": 294.16, "humidity": 99}, "state": "Rio Bananal", "coord": {"lat": -19.27, "lon": -40.33}},
{"wind": {"speed": 5.32, "deg": 166.512}, "weather": {"pressure": 1029.48, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 100}, "state": "Rio Novo do Sul", "coord": {"lat": -20.86, "lon": -40.94}},
{"wind": {"speed": 5.1, "deg": 220}, "weather": {"pressure": 1021, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Santa Leopoldina", "coord": {"lat": -20.1, "lon": -40.53}},
{"wind": {"speed": 5.1, "deg": 220}, "weather": {"pressure": 1021, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Estado do Espto Santo", "coord": {"lat": -20, "lon": -40.75}},
{"wind": {"speed": 1.25, "deg": 62.5122}, "weather": {"pressure": 970.72, "temp_min": 298.611, "temp_max": 298.611, "temp": 298.611, "humidity": 73}, "state": "Santa Teresa", "coord": {"lat": 10.23, "lon": -66.66}},
{"wind": {"speed": 4.1, "deg": 40}, "weather": {"pressure": 1015, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 100}, "state": "Villa Francisca", "coord": {"lat": 18.47, "lon": -69.9}},
{"wind": {"speed": 3.5, "deg": 146.512}, "weather": {"pressure": 991.15, "temp_min": 292.711, "temp_max": 292.711, "temp": 292.711, "humidity": 95}, "state": "Aguia Branca", "coord": {"lat": -18.98, "lon": -40.74}},
{"wind": {"speed": 2.5, "deg": 172.012}, "weather": {"pressure": 996.82, "temp_min": 291.111, "temp_max": 291.111, "temp": 291.111, "humidity": 99}, "state": "Sao Jose do Calcado", "coord": {"lat": -21.03, "lon": -41.65}},
{"wind": {"speed": 7.87, "deg": 300.512}, "weather": {"pressure": 1027.46, "temp_min": 289.811, "temp_max": 289.811, "temp": 289.811, "humidity": 98}, "state": "São Mateus", "coord": {"lat": 38.43, "lon": -28.45}},
{"wind": {"speed": 3.87, "deg": 155.512}, "weather": {"pressure": 979.31, "temp_min": 291.961, "temp_max": 291.961, "temp": 291.961, "humidity": 95}, "state": "Itaguac", "coord": {"lat": -19.8, "lon": -40.86}},
{"wind": {"speed": 5.1, "deg": 220}, "weather": {"pressure": 1021, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Serra", "coord": {"lat": -20.13, "lon": -40.31}},
{"wind": {"speed": 5.35, "deg": 163.512}, "weather": {"pressure": 1020.97, "temp_min": 294.211, "temp_max": 294.211, "temp": 294.211, "humidity": 99}, "state": "Linhares", "coord": {"lat": -19.39, "lon": -40.07}},
{"wind": {"speed": 3.47, "deg": 172.012}, "weather": {"pressure": 951.83, "temp_min": 290.261, "temp_max": 290.261, "temp": 290.261, "humidity": 100}, "state": "Vargem Alta", "coord": {"lat": -20.67, "lon": -41.01}},
{"wind": {"speed": 2.47, "deg": 178.512}, "weather": {"pressure": 938.29, "temp_min": 289.611, "temp_max": 289.611, "temp": 289.611, "humidity": 99}, "state": "Conceicao do Castelo", "coord": {"lat": -20.37, "lon": -41.24}},
{"wind": {"speed": 5.1, "deg": 220}, "weather": {"pressure": 1021, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Viana", "coord": {"lat": -20.39, "lon": -40.5}},
{"wind": {"speed": 5.65, "deg": 170.512}, "weather": {"pressure": 1021.54, "temp_min": 294.161, "temp_max": 294.161, "temp": 294.161, "humidity": 97}, "state": "Nova Venecia", "coord": {"lat": -18.71, "lon": -40.4}},
{"wind": {"speed": 5.35, "deg": 163.512}, "weather": {"pressure": 1020.97, "temp_min": 294.211, "temp_max": 294.211, "temp": 294.211, "humidity": 99}, "state": "Rio Bananal", "coord": {"lat": -19.27, "lon": -40.33}},
{"wind": {"speed": 5.1, "deg": 220}, "weather": {"pressure": 1021, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Vila Velha", "coord": {"lat": -20.33, "lon": -40.29}},
{"wind": {"speed": 5.1, "deg": 220}, "weather": {"pressure": 1021, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 78}, "state": "Vitoria", "coord": {"lat": -20.32, "lon": -40.34}},
{"wind": {"speed": 1.5, "deg": 167.012}, "weather": {"pressure": 1005.9, "temp_min": 297.911, "temp_max": 297.911, "temp": 297.911, "humidity": 78}, "state": "Placido de Castro", "coord": {"lat": -10.34, "lon": -67.19}},
{"wind": {"speed": 7.15, "deg": 113.512}, "weather": {"pressure": 975.91, "temp_min": 292.111, "temp_max": 292.111, "temp": 292.111, "humidity": 70}, "state": "Assis", "coord": {"lat": -22.66, "lon": -50.41}},
{"wind": {"speed": 2.6, "deg": 140}, "weather": {"pressure": 1019, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 73}, "state": "Brasilia", "coord": {"lat": -15.78, "lon": -47.93}},
{"wind": {"speed": 1.5, "deg": 210}, "weather": {"pressure": 1013, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Taquari", "coord": {"lat": -9.87, "lon": -67.91}},
{"wind": {"speed": 1.5, "deg": 210}, "weather": {"pressure": 1013, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Senador Guiomard", "coord": {"lat": -10.15, "lon": -67.74}},
{"wind": {"speed": 0.92, "deg": 135.012}, "weather": {"pressure": 1001.36, "temp_min": 282.061, "temp_max": 282.061, "temp": 282.061, "humidity": 84}, "state": "Cruzeiro do Sul", "coord": {"lat": -29.51, "lon": -51.99}},
{"wind": {"speed": 1.45, "deg": 155.512}, "weather": {"pressure": 995.93, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 80}, "state": "Brasileia", "coord": {"lat": -11.02, "lon": -68.75}},
{"wind": {"speed": 2.02, "deg": 150.512}, "weather": {"pressure": 1003.14, "temp_min": 299.361, "temp_max": 299.361, "temp": 299.361, "humidity": 76}, "state": "Feijo", "coord": {"lat": -8.16, "lon": -70.35}},
{"wind": {"speed": 0.45, "deg": 181.012}, "weather": {"pressure": 1013, "temp_min": 291.15, "temp_max": 291.15, "temp": 291.15, "humidity": 45}, "state": "Amman", "coord": {"lat": 31.96, "lon": 35.95}},
{"wind": {"speed": 1, "deg": 150}, "weather": {"pressure": 1014, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 83}, "state": "Mancio Lima", "coord": {"lat": -7.61, "lon": -72.9}},
{"wind": {"speed": 1.15, "deg": 152.012}, "weather": {"pressure": 1005.66, "temp_min": 297.811, "temp_max": 297.811, "temp": 297.811, "humidity": 85}, "state": "Manoel Urbano", "coord": {"lat": -8.84, "lon": -69.26}},
{"wind": {"speed": 1.17, "deg": 139.012}, "weather": {"pressure": 1002.98, "temp_min": 297.511, "temp_max": 297.511, "temp": 297.511, "humidity": 78}, "state": "Marechal Thaumaturgo", "coord": {"lat": -8.94, "lon": -72.79}},
{"wind": {"speed": 1.5, "deg": 167.012}, "weather": {"pressure": 1005.9, "temp_min": 297.911, "temp_max": 297.911, "temp": 297.911, "humidity": 78}, "state": "Placido de Castro", "coord": {"lat": -10.34, "lon": -67.19}},
{"wind": {"speed": 1.5, "deg": 210}, "weather": {"pressure": 1013, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Porto Acre", "coord": {"lat": -9.59, "lon": -67.53}},
{"wind": {"speed": 1.45, "deg": 155.512}, "weather": {"pressure": 1002.66, "temp_min": 297.911, "temp_max": 297.911, "temp": 297.911, "humidity": 78}, "state": "Porto Walter", "coord": {"lat": -8.27, "lon": -72.74}},
{"wind": {"speed": 1.5, "deg": 210}, "weather": {"pressure": 1013, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Rio Branco", "coord": {"lat": -9.97, "lon": -67.81}},
{"wind": {"speed": 1, "deg": 150}, "weather": {"pressure": 1014, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 83}, "state": "Arenal", "coord": {"lat": -7.57, "lon": -72.62}},
{"wind": {"speed": 1.62, "deg": 154.512}, "weather": {"pressure": 1003.63, "temp_min": 298.861, "temp_max": 298.861, "temp": 298.861, "humidity": 78}, "state": "Estado do Acre", "coord": {"lat": -9, "lon": -70}},
{"wind": {"speed": 1.4, "deg": 159.012}, "weather": {"pressure": 1006.95, "temp_min": 297.961, "temp_max": 297.961, "temp": 297.961, "humidity": 83}, "state": "Sena Madureira", "coord": {"lat": -9.07, "lon": -68.66}},
{"wind": {"speed": 1.5, "deg": 210}, "weather": {"pressure": 1013, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Senador Guiomard", "coord": {"lat": -10.15, "lon": -67.74}},
{"wind": {"speed": 1.92, "deg": 160.512}, "weather": {"pressure": 1003.55, "temp_min": 299.411, "temp_max": 299.411, "temp": 299.411, "humidity": 74}, "state": "Tarauaca", "coord": {"lat": -8.16, "lon": -70.77}},
{"wind": {"speed": 1.45, "deg": 159.512}, "weather": {"pressure": 1001.36, "temp_min": 296.711, "temp_max": 296.711, "temp": 296.711, "humidity": 83}, "state": "Xapuri", "coord": {"lat": -10.65, "lon": -68.5}},
{"wind": {"speed": 4.1, "deg": 125.512}, "weather": {"pressure": 977.77, "temp_min": 296.711, "temp_max": 296.711, "temp": 296.711, "humidity": 84}, "state": "Agua Branca", "coord": {"lat": -9.26, "lon": -37.94}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Anadia", "coord": {"lat": -9.68, "lon": -36.3}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Arapiraca", "coord": {"lat": -9.75, "lon": -36.66}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Atalaia", "coord": {"lat": -9.5, "lon": -36.02}},
{"wind": {"speed": 2.5, "deg": 126.012}, "weather": {"pressure": 1028.35, "temp_min": 299.711, "temp_max": 299.711, "temp": 299.711, "humidity": 100}, "state": "Barra de Santo Antonio", "coord": {"lat": -9.4, "lon": -35.51}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Marechal Deodoro", "coord": {"lat": -9.71, "lon": -35.9}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Batalha", "coord": {"lat": -9.68, "lon": -37.12}},
{"wind": {"speed": 4.1, "deg": 230}, "weather": {"pressure": 1014, "temp_min": 281.15, "temp_max": 287.15, "temp": 283.93, "humidity": 67}, "state": "Belém", "coord": {"lat": 38.7, "lon": -9.19}},
{"wind": {"speed": 3.3, "deg": 143.012}, "weather": {"pressure": 1009.63, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 94}, "state": "Porto da Folha", "coord": {"lat": -9.92, "lon": -37.28}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Salgado", "coord": {"lat": -9.6, "lon": -36.27}},
{"wind": {"speed": 1.12, "deg": 120.012}, "weather": {"pressure": 980.85, "temp_min": 293.861, "temp_max": 293.861, "temp": 293.861, "humidity": 100}, "state": "Uniao dos Palmares", "coord": {"lat": -9.16, "lon": -36.03}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Cacimbinhas", "coord": {"lat": -9.4, "lon": -36.99}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Cajueiro", "coord": {"lat": -9.72, "lon": -36.45}},
{"wind": {"speed": 3.3, "deg": 97.5122}, "weather": {"pressure": 923.22, "temp_min": 288.861, "temp_max": 288.861, "temp": 288.861, "humidity": 96}, "state": "Campestre", "coord": {"lat": -21.71, "lon": -46.25}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Campo Alegre", "coord": {"lat": -9.78, "lon": -36.35}},
{"wind": {"speed": 3.6, "deg": 120}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 60}, "state": "Campo Grande", "coord": {"lat": -20.44, "lon": -54.65}},
{"wind": {"speed": 4.1, "deg": 125.512}, "weather": {"pressure": 977.77, "temp_min": 296.711, "temp_max": 296.711, "temp": 296.711, "humidity": 84}, "state": "Mata Grande", "coord": {"lat": -9.12, "lon": -37.73}},
{"wind": {"speed": 4.6, "deg": 130}, "weather": {"pressure": 1014, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 83}, "state": "Capela", "coord": {"lat": -10.5, "lon": -37.05}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Sao Jose da Tapera", "coord": {"lat": -9.56, "lon": -37.38}},
{"wind": {"speed": 2.15, "deg": 122.512}, "weather": {"pressure": 951.35, "temp_min": 294.011, "temp_max": 294.011, "temp": 294.011, "humidity": 97}, "state": "Chã Preta", "coord": {"lat": -9.26, "lon": -36.3}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Coite do Noia", "coord": {"lat": -9.63, "lon": -36.58}},
{"wind": {"speed": 1.12, "deg": 120.012}, "weather": {"pressure": 980.85, "temp_min": 293.861, "temp_max": 293.861, "temp": 293.861, "humidity": 100}, "state": "Colonia Leopoldina", "coord": {"lat": -8.91, "lon": -35.73}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Coqueiro Seco", "coord": {"lat": -9.64, "lon": -35.8}},
{"wind": {"speed": 4.17, "deg": 114.512}, "weather": {"pressure": 1027.86, "temp_min": 297.211, "temp_max": 297.211, "temp": 297.211, "humidity": 100}, "state": "Coruripe", "coord": {"lat": -10.13, "lon": -36.18}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Igaci", "coord": {"lat": -9.54, "lon": -36.63}},
{"wind": {"speed": 4.55, "deg": 129.512}, "weather": {"pressure": 1002.66, "temp_min": 297.461, "temp_max": 297.461, "temp": 297.461, "humidity": 89}, "state": "Delmiro Gouveia", "coord": {"lat": -9.39, "lon": -38}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Dois Riachos", "coord": {"lat": -9.39, "lon": -37.1}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Minador do Negrao", "coord": {"lat": -9.31, "lon": -36.86}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Mombacinha", "coord": {"lat": -9.88, "lon": -36.7}},
{"wind": {"speed": 3.42, "deg": 118.512}, "weather": {"pressure": 1018.7, "temp_min": 297.211, "temp_max": 297.211, "temp": 297.211, "humidity": 95}, "state": "Marituba", "coord": {"lat": -10.28, "lon": -36.4}},
{"wind": {"speed": 1.12, "deg": 120.012}, "weather": {"pressure": 980.85, "temp_min": 293.861, "temp_max": 293.861, "temp": 293.861, "humidity": 100}, "state": "Flexeiras", "coord": {"lat": -9.2, "lon": -35.78}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Girau do Ponciano", "coord": {"lat": -9.88, "lon": -36.83}},
{"wind": {"speed": 1.12, "deg": 120.012}, "weather": {"pressure": 980.85, "temp_min": 293.861, "temp_max": 293.861, "temp": 293.861, "humidity": 100}, "state": "Ibateguara", "coord": {"lat": -8.97, "lon": -35.94}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Igaci", "coord": {"lat": -9.54, "lon": -36.63}},
{"wind": {"speed": 3.42, "deg": 118.512}, "weather": {"pressure": 1018.7, "temp_min": 297.211, "temp_max": 297.211, "temp": 297.211, "humidity": 95}, "state": "Igreja Nova", "coord": {"lat": -10.13, "lon": -36.66}},
{"wind": {"speed": 4.1, "deg": 125.512}, "weather": {"pressure": 977.77, "temp_min": 296.711, "temp_max": 296.711, "temp": 296.711, "humidity": 84}, "state": "Inhapi", "coord": {"lat": -9.22, "lon": -37.75}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Jacaré dos Homens", "coord": {"lat": -9.64, "lon": -37.2}},
{"wind": {"speed": 0.8, "deg": 219.012}, "weather": {"pressure": 1019.84, "temp_min": 296.311, "temp_max": 296.311, "temp": 296.311, "humidity": 100}, "state": "Campestre", "coord": {"lat": -8.85, "lon": -35.57}},
{"wind": {"speed": 0.8, "deg": 219.012}, "weather": {"pressure": 1019.84, "temp_min": 296.311, "temp_max": 296.311, "temp": 296.311, "humidity": 100}, "state": "Maragogi", "coord": {"lat": -9.01, "lon": -35.22}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Batalha", "coord": {"lat": -9.68, "lon": -37.12}},
{"wind": {"speed": 4.17, "deg": 114.512}, "weather": {"pressure": 1027.86, "temp_min": 297.211, "temp_max": 297.211, "temp": 297.211, "humidity": 100}, "state": "Coruripe", "coord": {"lat": -10.13, "lon": -36.18}},
{"wind": {"speed": 1.12, "deg": 120.012}, "weather": {"pressure": 980.85, "temp_min": 293.861, "temp_max": 293.861, "temp": 293.861, "humidity": 100}, "state": "Flexeiras", "coord": {"lat": -9.2, "lon": -35.78}},
{"wind": {"speed": 7.2, "deg": 130}, "weather": {"pressure": 1022, "temp_min": 289.15, "temp_max": 291.15, "temp": 289.79, "humidity": 92}, "state": "Jundiai", "coord": {"lat": -23.19, "lon": -46.88}},
{"wind": {"speed": 3.42, "deg": 118.512}, "weather": {"pressure": 1018.7, "temp_min": 297.211, "temp_max": 297.211, "temp": 297.211, "humidity": 95}, "state": "Junqueiro", "coord": {"lat": -9.93, "lon": -36.48}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Lagoa da Canoa", "coord": {"lat": -9.83, "lon": -36.74}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Limoeiro de Anadia", "coord": {"lat": -9.74, "lon": -36.5}},
{"wind": {"speed": 2.5, "deg": 126.012}, "weather": {"pressure": 1028.35, "temp_min": 299.711, "temp_max": 299.711, "temp": 299.711, "humidity": 100}, "state": "Maceió", "coord": {"lat": -9.57, "lon": -35.69}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Major Isidoro", "coord": {"lat": -9.53, "lon": -36.99}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Paulo Jacinto", "coord": {"lat": -9.37, "lon": -36.37}},
{"wind": {"speed": 0.8, "deg": 219.012}, "weather": {"pressure": 1019.84, "temp_min": 296.311, "temp_max": 296.311, "temp": 296.311, "humidity": 100}, "state": "Maragogi", "coord": {"lat": -9.01, "lon": -35.22}},
{"wind": {"speed": 4.1, "deg": 160}, "weather": {"pressure": 1023, "temp_min": 290.15, "temp_max": 290.15, "temp": 290.15, "humidity": 63}, "state": "Maravilha", "coord": {"lat": -26.76, "lon": -53.17}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Marechal Deodoro", "coord": {"lat": -9.71, "lon": -35.9}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Maribondo", "coord": {"lat": -9.58, "lon": -36.31}},
{"wind": {"speed": 4.1, "deg": 125.512}, "weather": {"pressure": 977.77, "temp_min": 296.711, "temp_max": 296.711, "temp": 296.711, "humidity": 84}, "state": "Mata Grande", "coord": {"lat": -9.12, "lon": -37.73}},
{"wind": {"speed": 0.8, "deg": 219.012}, "weather": {"pressure": 1019.84, "temp_min": 296.311, "temp_max": 296.311, "temp": 296.311, "humidity": 100}, "state": "Matriz de Camaragibe", "coord": {"lat": -9.15, "lon": -35.53}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Messias", "coord": {"lat": -9.38, "lon": -35.84}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Minador do Negrao", "coord": {"lat": -9.31, "lon": -36.86}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Jacaré dos Homens", "coord": {"lat": -9.64, "lon": -37.2}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Murici", "coord": {"lat": -9.31, "lon": -35.94}},
{"wind": {"speed": 0.8, "deg": 219.012}, "weather": {"pressure": 1019.84, "temp_min": 296.311, "temp_max": 296.311, "temp": 296.311, "humidity": 100}, "state": "Novo Lino", "coord": {"lat": -8.91, "lon": -35.65}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Parujé", "coord": {"lat": -9.53, "lon": -37.28}},
{"wind": {"speed": 4.55, "deg": 129.512}, "weather": {"pressure": 1002.66, "temp_min": 297.461, "temp_max": 297.461, "temp": 297.461, "humidity": 89}, "state": "Caninde de Sao Francisco", "coord": {"lat": -9.66, "lon": -37.79}},
{"wind": {"speed": 3.42, "deg": 118.512}, "weather": {"pressure": 1018.7, "temp_min": 297.211, "temp_max": 297.211, "temp": 297.211, "humidity": 95}, "state": "Porto Real do Colegio", "coord": {"lat": -10.19, "lon": -36.84}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Olivenca", "coord": {"lat": -9.52, "lon": -37.19}},
{"wind": {"speed": 2.62, "deg": 118.012}, "weather": {"pressure": 914.38, "temp_min": 288.861, "temp_max": 288.861, "temp": 288.861, "humidity": 97}, "state": "Ouro Branco", "coord": {"lat": -20.52, "lon": -43.69}},
{"wind": {"speed": 2.6, "deg": 40}, "weather": {"pressure": 1007, "temp_min": 304.15, "temp_max": 304.15, "temp": 304.15, "humidity": 66}, "state": "Palestina", "coord": {"lat": -1.93, "lon": -79.73}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Travessada", "coord": {"lat": -9.42, "lon": -36.62}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Pao de Acucar", "coord": {"lat": -9.75, "lon": -37.44}},
{"wind": {"speed": 4.1, "deg": 125.512}, "weather": {"pressure": 977.77, "temp_min": 296.711, "temp_max": 296.711, "temp": 296.711, "humidity": 84}, "state": "Agua Branca", "coord": {"lat": -9.26, "lon": -37.94}},
{"wind": {"speed": 2.5, "deg": 126.012}, "weather": {"pressure": 1028.35, "temp_min": 299.711, "temp_max": 299.711, "temp": 299.711, "humidity": 100}, "state": "Barra de Santo Antonio", "coord": {"lat": -9.4, "lon": -35.51}},
{"wind": {"speed": 0.8, "deg": 219.012}, "weather": {"pressure": 1019.84, "temp_min": 296.311, "temp_max": 296.311, "temp": 296.311, "humidity": 100}, "state": "Matriz de Camaragibe", "coord": {"lat": -9.15, "lon": -35.53}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Paulo Jacinto", "coord": {"lat": -9.37, "lon": -36.37}},
{"wind": {"speed": 3.42, "deg": 118.512}, "weather": {"pressure": 1018.7, "temp_min": 297.211, "temp_max": 297.211, "temp": 297.211, "humidity": 95}, "state": "Penedo", "coord": {"lat": -10.29, "lon": -36.59}},
{"wind": {"speed": 3.42, "deg": 118.512}, "weather": {"pressure": 1018.7, "temp_min": 297.211, "temp_max": 297.211, "temp": 297.211, "humidity": 95}, "state": "Piacabuc", "coord": {"lat": -10.41, "lon": -36.43}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Pilar", "coord": {"lat": -9.6, "lon": -35.96}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Maribondo", "coord": {"lat": -9.58, "lon": -36.31}},
{"wind": {"speed": 1.8, "deg": 99.5122}, "weather": {"pressure": 978.1, "temp_min": 296.961, "temp_max": 296.961, "temp": 296.961, "humidity": 84}, "state": "Piranhas", "coord": {"lat": -16.43, "lon": -51.82}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Poco das Trincheiras", "coord": {"lat": -9.31, "lon": -37.29}},
{"wind": {"speed": 0.8, "deg": 219.012}, "weather": {"pressure": 1019.84, "temp_min": 296.311, "temp_max": 296.311, "temp": 296.311, "humidity": 100}, "state": "Porto Calvo", "coord": {"lat": -9.04, "lon": -35.4}},
{"wind": {"speed": 0.8, "deg": 219.012}, "weather": {"pressure": 1019.84, "temp_min": 296.311, "temp_max": 296.311, "temp": 296.311, "humidity": 100}, "state": "Riacho", "coord": {"lat": -9.25, "lon": -35.38}},
{"wind": {"speed": 3.42, "deg": 118.512}, "weather": {"pressure": 1018.7, "temp_min": 297.211, "temp_max": 297.211, "temp": 297.211, "humidity": 95}, "state": "Porto Real do Colegio", "coord": {"lat": -10.19, "lon": -36.84}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Quebrangulo", "coord": {"lat": -9.32, "lon": -36.47}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Rio Largo", "coord": {"lat": -9.48, "lon": -35.85}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Sao Miguel dos Campos", "coord": {"lat": -9.78, "lon": -36.09}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Coqueiro Seco", "coord": {"lat": -9.64, "lon": -35.8}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Santana do Ipanema", "coord": {"lat": -9.38, "lon": -37.25}},
{"wind": {"speed": 1.12, "deg": 120.012}, "weather": {"pressure": 980.85, "temp_min": 293.861, "temp_max": 293.861, "temp": 293.861, "humidity": 100}, "state": "Santana do Munda", "coord": {"lat": -9.17, "lon": -36.22}},
{"wind": {"speed": 4.1, "deg": 230}, "weather": {"pressure": 1014, "temp_min": 281.15, "temp_max": 287.15, "temp": 283.97, "humidity": 67}, "state": "São Bró", "coord": {"lat": 38.78, "lon": -9.23}},
{"wind": {"speed": 1.12, "deg": 120.012}, "weather": {"pressure": 980.85, "temp_min": 293.861, "temp_max": 293.861, "temp": 293.861, "humidity": 100}, "state": "Sao Jose da Laje", "coord": {"lat": -9.01, "lon": -36.06}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Sao Jose da Tapera", "coord": {"lat": -9.56, "lon": -37.38}},
{"wind": {"speed": 2.5, "deg": 126.012}, "weather": {"pressure": 1028.35, "temp_min": 299.711, "temp_max": 299.711, "temp": 299.711, "humidity": 100}, "state": "Sao Luis do Quitunde", "coord": {"lat": -9.32, "lon": -35.56}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Sao Miguel dos Campos", "coord": {"lat": -9.78, "lon": -36.09}},
{"wind": {"speed": 0.8, "deg": 219.012}, "weather": {"pressure": 1019.84, "temp_min": 296.311, "temp_max": 296.311, "temp": 296.311, "humidity": 100}, "state": "Riacho", "coord": {"lat": -9.25, "lon": -35.38}},
{"wind": {"speed": 5.1, "deg": 140}, "weather": {"pressure": 1024, "temp_min": 290.15, "temp_max": 290.15, "temp": 290.15, "humidity": 88}, "state": "São Sebastião", "coord": {"lat": -23.76, "lon": -45.6}},
{"wind": {"speed": 2.37, "deg": 123.012}, "weather": {"pressure": 1014.41, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 100}, "state": "Satuba", "coord": {"lat": -9.56, "lon": -35.82}},
{"wind": {"speed": 3.87, "deg": 133.012}, "weather": {"pressure": 1002.25, "temp_min": 297.111, "temp_max": 297.111, "temp": 297.111, "humidity": 90}, "state": "Sao Jose da Tapera", "coord": {"lat": -9.56, "lon": -37.38}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Cruzes", "coord": {"lat": -9.65, "lon": -36.48}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Taquarana", "coord": {"lat": -9.64, "lon": -36.5}},
{"wind": {"speed": 3.25, "deg": 125.512}, "weather": {"pressure": 987.66, "temp_min": 296.011, "temp_max": 296.011, "temp": 296.011, "humidity": 94}, "state": "Belo Horizonte", "coord": {"lat": -9.8, "lon": -36.33}},
{"wind": {"speed": 3.3, "deg": 143.012}, "weather": {"pressure": 1009.63, "temp_min": 296.761, "temp_max": 296.761, "temp": 296.761, "humidity": 94}, "state": "Traip", "coord": {"lat": -9.97, "lon": -37}},
{"wind": {"speed": 1.12, "deg": 120.012}, "weather": {"pressure": 980.85, "temp_min": 293.861, "temp_max": 293.861, "temp": 293.861, "humidity": 100}, "state": "Uniao dos Palmares", "coord": {"lat": -9.16, "lon": -36.03}},
{"wind": {"speed": 1.8, "deg": 121.512}, "weather": {"pressure": 956.78, "temp_min": 290.111, "temp_max": 290.111, "temp": 290.111, "humidity": 100}, "state": "Vicosa", "coord": {"lat": -20.75, "lon": -42.88}},
{"wind": {"speed": 1.72, "deg": 359.012}, "weather": {"pressure": 1026.08, "temp_min": 298.611, "temp_max": 298.611, "temp": 298.611, "humidity": 98}, "state": "Macapa", "coord": {"lat": 0.04, "lon": -51.07}},
{"wind": {"speed": 5.67, "deg": 64.0122}, "weather": {"pressure": 1027.05, "temp_min": 299.411, "temp_max": 299.411, "temp": 299.411, "humidity": 100}, "state": "Maracá", "coord": {"lat": 2.13, "lon": -50.5}},
{"wind": {"speed": 1.72, "deg": 359.012}, "weather": {"pressure": 1026.08, "temp_min": 298.611, "temp_max": 298.611, "temp": 298.611, "humidity": 98}, "state": "Macapa", "coord": {"lat": 0.04, "lon": -51.07}},
{"wind": {"speed": 1.72, "deg": 359.012}, "weather": {"pressure": 1026.08, "temp_min": 298.611, "temp_max": 298.611, "temp": 298.611, "humidity": 98}, "state": "Macapa", "coord": {"lat": 0.04, "lon": -51.07}},
{"wind": {"speed": 1.72, "deg": 359.012}, "weather": {"pressure": 1026.08, "temp_min": 298.611, "temp_max": 298.611, "temp": 298.611, "humidity": 98}, "state": "Macapa", "coord": {"lat": 0.04, "lon": -51.07}},
{"wind": {"speed": 1.22, "deg": 99.5122}, "weather": {"pressure": 997.23, "temp_min": 296.111, "temp_max": 296.111, "temp": 296.111, "humidity": 100}, "state": "Monte Dourado", "coord": {"lat": -0.87, "lon": -52.53}},
{"wind": {"speed": 1.72, "deg": 359.012}, "weather": {"pressure": 1026.08, "temp_min": 298.611, "temp_max": 298.611, "temp": 298.611, "humidity": 98}, "state": "Macapa", "coord": {"lat": 0.04, "lon": -51.07}},
{"wind": {"speed": 1.72, "deg": 359.012}, "weather": {"pressure": 1026.08, "temp_min": 298.611, "temp_max": 298.611, "temp": 298.611, "humidity": 98}, "state": "Mazagao", "coord": {"lat": -0.12, "lon": -51.29}},
{"wind": {"speed": 1.07, "deg": 78.0122}, "weather": {"pressure": 1017.57, "temp_min": 297.611, "temp_max": 297.611, "temp": 297.611, "humidity": 97}, "state": "Oiapoque", "coord": {"lat": 3.84, "lon": -51.84}},
{"wind": {"speed": 1.12, "deg": 30.5122}, "weather": {"pressure": 1012.22, "temp_min": 297.461, "temp_max": 297.461, "temp": 297.461, "humidity": 93}, "state": "Teresinha", "coord": {"lat": 0.97, "lon": -52.03}},
{"wind": {"speed": 1, "deg": ""}, "weather": {"pressure": 1017, "temp_min": 281.15, "temp_max": 288.15, "temp": 285.54, "humidity": 81}, "state": "Porto Alegre", "coord": {"lat": -30.03, "lon": -51.23}},
{"wind": {"speed": 5.67, "deg": 64.0122}, "weather": {"pressure": 1027.05, "temp_min": 299.411, "temp_max": 299.411, "temp": 299.411, "humidity": 100}, "state": "Maracá", "coord": {"lat": 2.13, "lon": -50.5}},
{"wind": {"speed": 1.72, "deg": 359.012}, "weather": {"pressure": 1026.08, "temp_min": 298.611, "temp_max": 298.611, "temp": 298.611, "humidity": 98}, "state": "Santana", "coord": {"lat": -0.06, "lon": -51.18}},
{"wind": {"speed": 1.12, "deg": 30.5122}, "weather": {"pressure": 1012.22, "temp_min": 297.461, "temp_max": 297.461, "temp": 297.461, "humidity": 93}, "state": "Teresinha", "coord": {"lat": 0.97, "lon": -52.03}},
{"wind": {"speed": 5.67, "deg": 64.0122}, "weather": {"pressure": 1027.05, "temp_min": 299.411, "temp_max": 299.411, "temp": 299.411, "humidity": 100}, "state": "Maracá", "coord": {"lat": 2.13, "lon": -50.5}},
{"wind": {"speed": 1.22, "deg": 99.5122}, "weather": {"pressure": 997.23, "temp_min": 296.111, "temp_max": 296.111, "temp": 296.111, "humidity": 100}, "state": "Monte Dourado", "coord": {"lat": -0.87, "lon": -52.53}},
{"wind": {"speed": 2.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Alvaraes", "coord": {"lat": -3.22, "lon": -64.8}},
{"wind": {"speed": 0.92, "deg": 125.012}, "weather": {"pressure": 1017.49, "temp_min": 299.711, "temp_max": 299.711, "temp": 299.711, "humidity": 88}, "state": "Santo Antonio do Ica", "coord": {"lat": -3.1, "lon": -67.94}},
{"wind": {"speed": 1.3, "deg": 196.512}, "weather": {"pressure": 1022.11, "temp_min": 299.161, "temp_max": 299.161, "temp": 299.161, "humidity": 91}, "state": "Anamã", "coord": {"lat": -3.58, "lon": -61.4}},
{"wind": {"speed": 1.15, "deg": 174.012}, "weather": {"pressure": 1022.02, "temp_min": 299.061, "temp_max": 299.061, "temp": 299.061, "humidity": 91}, "state": "Anori", "coord": {"lat": -3.77, "lon": -61.64}},
{"wind": {"speed": 0.92, "deg": 178.012}, "weather": {"pressure": 1016.84, "temp_min": 298.511, "temp_max": 298.511, "temp": 298.511, "humidity": 91}, "state": "Manicore", "coord": {"lat": -5.81, "lon": -61.3}},
{"wind": {"speed": 3.1, "deg": 210}, "weather": {"pressure": 1012, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 83}, "state": "Atalaia do Norte", "coord": {"lat": -4.37, "lon": -70.19}},
{"wind": {"speed": 1.3, "deg": 318.512}, "weather": {"pressure": 1023, "temp_min": 298.711, "temp_max": 298.711, "temp": 298.711, "humidity": 95}, "state": "Autazes", "coord": {"lat": -3.58, "lon": -59.13}},
{"wind": {"speed": 6.7, "deg": 200}, "weather": {"pressure": 1010, "temp_min": 287.15, "temp_max": 288.15, "temp": 287.68, "humidity": 62}, "state": "Barcelos", "coord": {"lat": 41.54, "lon": -8.62}},
{"wind": {"speed": 1.07, "deg": 281.012}, "weather": {"pressure": 1023.56, "temp_min": 296.961, "temp_max": 296.961, "temp": 296.961, "humidity": 99}, "state": "Barreirinha", "coord": {"lat": -2.79, "lon": -57.07}},
{"wind": {"speed": 3.1, "deg": 210}, "weather": {"pressure": 1012, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 83}, "state": "Benjamin Constant", "coord": {"lat": -4.38, "lon": -70.03}},
{"wind": {"speed": 0.92, "deg": 249.012}, "weather": {"pressure": 1019.84, "temp_min": 298.311, "temp_max": 298.311, "temp": 298.311, "humidity": 94}, "state": "Beruri", "coord": {"lat": -3.9, "lon": -61.37}},
{"wind": {"speed": 1.82, "deg": 38.5122}, "weather": {"pressure": 1023.56, "temp_min": 296.111, "temp_max": 296.111, "temp": 296.111, "humidity": 100}, "state": "Guajara", "coord": {"lat": -2.97, "lon": -57.67}},
{"wind": {"speed": 1.52, "deg": 179.512}, "weather": {"pressure": 1008.57, "temp_min": 299.611, "temp_max": 299.611, "temp": 299.611, "humidity": 74}, "state": "Boca do Acre", "coord": {"lat": -8.75, "lon": -67.4}},
{"wind": {"speed": 1.02, "deg": 283.512}, "weather": {"pressure": 1019.51, "temp_min": 299.211, "temp_max": 299.211, "temp": 299.211, "humidity": 90}, "state": "Borba", "coord": {"lat": -4.39, "lon": -59.59}},
{"wind": {"speed": 1.3, "deg": 196.512}, "weather": {"pressure": 1022.11, "temp_min": 299.161, "temp_max": 299.161, "temp": 299.161, "humidity": 91}, "state": "Anamã", "coord": {"lat": -3.58, "lon": -61.4}},
{"wind": {"speed": 0.82, "deg": 136.012}, "weather": {"pressure": 1016.43, "temp_min": 298.961, "temp_max": 298.961, "temp": 298.961, "humidity": 90}, "state": "Canutama", "coord": {"lat": -6.53, "lon": -64.38}},
{"wind": {"speed": 1.6, "deg": 162.012}, "weather": {"pressure": 1017.49, "temp_min": 299.861, "temp_max": 299.861, "temp": 299.861, "humidity": 81}, "state": "Carauari", "coord": {"lat": -4.88, "lon": -66.9}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1011, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 94}, "state": "Manaquiri", "coord": {"lat": -3.32, "lon": -60.35}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1011, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 94}, "state": "Careiro da Varzea", "coord": {"lat": -3.2, "lon": -59.81}},
{"wind": {"speed": 1.37, "deg": 205.012}, "weather": {"pressure": 1021.21, "temp_min": 299.011, "temp_max": 299.011, "temp": 299.011, "humidity": 92}, "state": "Coari", "coord": {"lat": -4.08, "lon": -63.14}},
{"wind": {"speed": 1.15, "deg": 174.012}, "weather": {"pressure": 1022.02, "temp_min": 299.061, "temp_max": 299.061, "temp": 299.061, "humidity": 91}, "state": "Codajas", "coord": {"lat": -3.84, "lon": -62.06}},
{"wind": {"speed": 1.07, "deg": 166.012}, "weather": {"pressure": 1010.6, "temp_min": 298.511, "temp_max": 298.511, "temp": 298.511, "humidity": 87}, "state": "Eirunepe", "coord": {"lat": -6.66, "lon": -69.87}},
{"wind": {"speed": 1, "deg": 151.512}, "weather": {"pressure": 1006.06, "temp_min": 298.611, "temp_max": 298.611, "temp": 298.611, "humidity": 86}, "state": "Envira", "coord": {"lat": -7.3, "lon": -70.22}},
{"wind": {"speed": 0.62, "deg": 87.0122}, "weather": {"pressure": 1019.19, "temp_min": 298.161, "temp_max": 298.161, "temp": 298.161, "humidity": 94}, "state": "Fonte Boa", "coord": {"lat": -2.5, "lon": -66.27}},
{"wind": {"speed": 1.8, "deg": 184.012}, "weather": {"pressure": 1008.49, "temp_min": 298.661, "temp_max": 298.661, "temp": 298.661, "humidity": 77}, "state": "Guajara Mirim", "coord": {"lat": -10.78, "lon": -65.34}},
{"wind": {"speed": 6.2, "deg": 50}, "weather": {"pressure": 1018, "temp_min": 294.15, "temp_max": 294.15, "temp": 294.15, "humidity": 49}, "state": "Humaitá", "coord": {"lat": -27.1, "lon": -64.47}},
{"wind": {"speed": 1, "deg": 150}, "weather": {"pressure": 1014, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 83}, "state": "Arenal", "coord": {"lat": -7.57, "lon": -72.62}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1011, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 94}, "state": "Iranduba", "coord": {"lat": -3.28, "lon": -60.19}},
{"wind": {"speed": 1.95, "deg": 31.5122}, "weather": {"pressure": 1022.51, "temp_min": 297.561, "temp_max": 297.561, "temp": 297.561, "humidity": 99}, "state": "Itacoatiara", "coord": {"lat": -3.14, "lon": -58.44}},
{"wind": {"speed": 1.07, "deg": 166.012}, "weather": {"pressure": 1010.6, "temp_min": 298.511, "temp_max": 298.511, "temp": 298.511, "humidity": 87}, "state": "Águia", "coord": {"lat": -6.5, "lon": -69.43}},
{"wind": {"speed": 1.72, "deg": 122.012}, "weather": {"pressure": 994.55, "temp_min": 284.811, "temp_max": 284.811, "temp": 284.811, "humidity": 82}, "state": "Itapiranga", "coord": {"lat": -27.17, "lon": -53.71}},
{"wind": {"speed": 2.1, "deg": 160}, "weather": {"pressure": 1020, "temp_min": 291.15, "temp_max": 291.15, "temp": 291.15, "humidity": 72}, "state": "Carioca", "coord": {"lat": -23.41, "lon": -52.57}},
{"wind": {"speed": 0.62, "deg": 87.0122}, "weather": {"pressure": 1019.19, "temp_min": 298.161, "temp_max": 298.161, "temp": 298.161, "humidity": 94}, "state": "Fonte Boa", "coord": {"lat": -2.51, "lon": -66.09}},
{"wind": {"speed": 0.62, "deg": 87.0122}, "weather": {"pressure": 1019.19, "temp_min": 298.161, "temp_max": 298.161, "temp": 298.161, "humidity": 94}, "state": "Fonte Boa", "coord": {"lat": -2.5, "lon": -66.27}},
{"wind": {"speed": 1.05, "deg": 169.512}, "weather": {"pressure": 1015.95, "temp_min": 299.711, "temp_max": 299.711, "temp": 299.711, "humidity": 86}, "state": "Lábrea", "coord": {"lat": -7.26, "lon": -64.8}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1011, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 94}, "state": "Manacapur", "coord": {"lat": -3.3, "lon": -60.62}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1011, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 94}, "state": "Manaquiri", "coord": {"lat": -3.32, "lon": -60.35}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1011, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 94}, "state": "Manaus", "coord": {"lat": -3.1, "lon": -60.03}},
{"wind": {"speed": 0.92, "deg": 178.012}, "weather": {"pressure": 1016.84, "temp_min": 298.511, "temp_max": 298.511, "temp": 298.511, "humidity": 91}, "state": "Manicore", "coord": {"lat": -5.81, "lon": -61.3}},
{"wind": {"speed": 1.15, "deg": 237.512}, "weather": {"pressure": 1019.76, "temp_min": 297.011, "temp_max": 297.011, "temp": 297.011, "humidity": 97}, "state": "Maraa", "coord": {"lat": -1.83, "lon": -65.37}},
{"wind": {"speed": 2.02, "deg": 37.0122}, "weather": {"pressure": 1020.24, "temp_min": 297.761, "temp_max": 297.761, "temp": 297.761, "humidity": 97}, "state": "Maues", "coord": {"lat": -3.38, "lon": -57.72}},
{"wind": {"speed": 1.57, "deg": 1.51218}, "weather": {"pressure": 1021.13, "temp_min": 297.811, "temp_max": 297.811, "temp": 297.811, "humidity": 96}, "state": "Nhamunda", "coord": {"lat": -2.19, "lon": -56.71}},
{"wind": {"speed": 1.15, "deg": 320.012}, "weather": {"pressure": 1022.11, "temp_min": 298.511, "temp_max": 298.511, "temp": 298.511, "humidity": 95}, "state": "Nova Olinda do Norte", "coord": {"lat": -3.89, "lon": -59.09}},
{"wind": {"speed": 0.62, "deg": 6.01218}, "weather": {"pressure": 1022.92, "temp_min": 297.361, "temp_max": 297.361, "temp": 297.361, "humidity": 100}, "state": "Novo Airão", "coord": {"lat": -2.62, "lon": -60.94}},
{"wind": {"speed": 1.02, "deg": 199.512}, "weather": {"pressure": 1019.51, "temp_min": 298.361, "temp_max": 298.361, "temp": 298.361, "humidity": 94}, "state": "Novo Aripuana", "coord": {"lat": -5.12, "lon": -60.38}},
{"wind": {"speed": 1.57, "deg": 1.51218}, "weather": {"pressure": 1021.13, "temp_min": 297.811, "temp_max": 297.811, "temp": 297.811, "humidity": 96}, "state": "Parintins", "coord": {"lat": -2.63, "lon": -56.74}},
{"wind": {"speed": 1.37, "deg": 168.512}, "weather": {"pressure": 1014.16, "temp_min": 299.261, "temp_max": 299.261, "temp": 299.261, "humidity": 82}, "state": "Pauini", "coord": {"lat": -7.71, "lon": -66.98}},
{"wind": {"speed": 0.37, "deg": 346.512}, "weather": {"pressure": 1015.05, "temp_min": 296.711, "temp_max": 296.711, "temp": 296.711, "humidity": 100}, "state": "Presidente Figueiredo", "coord": {"lat": -2.03, "lon": -60.03}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1011, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 94}, "state": "Rio Preto da Eva", "coord": {"lat": -2.7, "lon": -59.7}},
{"wind": {"speed": 1.52, "deg": 235.512}, "weather": {"pressure": 1019.84, "temp_min": 299.411, "temp_max": 299.411, "temp": 299.411, "humidity": 89}, "state": "Santa Isabel do Rio Negro", "coord": {"lat": -0.41, "lon": -65.02}},
{"wind": {"speed": 0.92, "deg": 125.012}, "weather": {"pressure": 1017.49, "temp_min": 299.711, "temp_max": 299.711, "temp": 299.711, "humidity": 88}, "state": "Santo Antonio do Ica", "coord": {"lat": -3.1, "lon": -67.94}},
{"wind": {"speed": 0.95, "deg": 187.012}, "weather": {"pressure": 1013.11, "temp_min": 298.711, "temp_max": 298.711, "temp": 298.711, "humidity": 90}, "state": "Sao Gabriel da Cachoeira", "coord": {"lat": -0.13, "lon": -67.09}},
{"wind": {"speed": 1.17, "deg": 181.012}, "weather": {"pressure": 1016.59, "temp_min": 298.961, "temp_max": 298.961, "temp": 298.961, "humidity": 87}, "state": "Sao Paulo de Olivenca", "coord": {"lat": -3.38, "lon": -68.87}},
{"wind": {"speed": 0.27, "deg": 98.0122}, "weather": {"pressure": 1019.19, "temp_min": 297.361, "temp_max": 297.361, "temp": 297.361, "humidity": 99}, "state": "Urucara", "coord": {"lat": -2.54, "lon": -57.76}},
{"wind": {"speed": 4.1, "deg": 290}, "weather": {"pressure": 1015, "temp_min": 287.15, "temp_max": 287.15, "temp": 287.15, "humidity": 71}, "state": "Silves", "coord": {"lat": 37.19, "lon": -8.44}},
{"wind": {"speed": 3.1, "deg": 210}, "weather": {"pressure": 1012, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 83}, "state": "Tabatinga", "coord": {"lat": -4.25, "lon": -69.94}},
{"wind": {"speed": 1.07, "deg": 198.512}, "weather": {"pressure": 1020.65, "temp_min": 298.861, "temp_max": 298.861, "temp": 298.861, "humidity": 92}, "state": "Estado do Amazonas", "coord": {"lat": -5, "lon": -63}},
{"wind": {"speed": 2.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Tefe", "coord": {"lat": -3.35, "lon": -64.71}},
{"wind": {"speed": 0.92, "deg": 125.012}, "weather": {"pressure": 1017.49, "temp_min": 299.711, "temp_max": 299.711, "temp": 299.711, "humidity": 88}, "state": "Tonantins", "coord": {"lat": -2.87, "lon": -67.8}},
{"wind": {"speed": 2.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Uarini", "coord": {"lat": -2.99, "lon": -65.11}},
{"wind": {"speed": 0.27, "deg": 98.0122}, "weather": {"pressure": 1019.19, "temp_min": 297.361, "temp_max": 297.361, "temp": 297.361, "humidity": 99}, "state": "Urucara", "coord": {"lat": -2.54, "lon": -57.76}},
{"wind": {"speed": 0.27, "deg": 98.0122}, "weather": {"pressure": 1019.19, "temp_min": 297.361, "temp_max": 297.361, "temp": 297.361, "humidity": 99}, "state": "Urucurituba", "coord": {"lat": -2.68, "lon": -57.67}},
{"wind": {"speed": 4.37, "deg": 108.512}, "weather": {"pressure": 955.48, "temp_min": 296.261, "temp_max": 296.261, "temp": 296.261, "humidity": 67}, "state": "Rio de Contas", "coord": {"lat": -13.58, "lon": -41.81}},
{"wind": {"speed": 5.75, "deg": 123.512}, "weather": {"pressure": 986.44, "temp_min": 298.611, "temp_max": 298.611, "temp": 298.611, "humidity": 73}, "state": "Abaré", "coord": {"lat": -8.72, "lon": -39.11}},
{"wind": {"speed": 3.27, "deg": 147.012}, "weather": {"pressure": 1014.89, "temp_min": 296.911, "temp_max": 296.911, "temp": 296.911, "humidity": 95}, "state": "Acajutiba", "coord": {"lat": -11.66, "lon": -38.02}},
{"wind": {"speed": 3.07, "deg": 132.012}, "weather": {"pressure": 992.36, "temp_min": 295.861, "temp_max": 295.861, "temp": 295.861, "humidity": 95}, "state": "Adustina", "coord": {"lat": -10.53, "lon": -38.1}},
{"wind": {"speed": 4.62, "deg": 138.012}, "weather": {"pressure": 1002.01, "temp_min": 297.061, "temp_max": 297.061, "temp": 297.061, "humidity": 71}, "state": "Irara", "coord": {"lat": -12.05, "lon": -38.77}},
{"wind": {"speed": 3.75, "deg": 126.012}, "weather": {"pressure": 981.09, "temp_min": 294.511, "temp_max": 294.511, "temp": 294.511, "humidity": 99}, "state": "Itajur", "coord": {"lat": -14.07, "lon": -39.95}},
{"wind": {"speed": 4.52, "deg": 143.512}, "weather": {"pressure": 1007.93, "temp_min": 298.161, "temp_max": 298.161, "temp": 298.161, "humidity": 74}, "state": "Alagoinhas", "coord": {"lat": -12.14, "lon": -38.42}},
{"wind": {"speed": 5.9, "deg": 151.512}, "weather": {"pressure": 1032, "temp_min": 298.561, "temp_max": 298.561, "temp": 298.561, "humidity": 100}, "state": "Alcobaça", "coord": {"lat": -17.52, "lon": -39.2}},
{"wind": {"speed": 5.1, "deg": 140}, "weather": {"pressure": 1016, "temp_min": 300.15, "temp_max": 300.15, "temp": 300.15, "humidity": 78}, "state": "Coaraci", "coord": {"lat": -14.64, "lon": -39.55}},
{"wind": {"speed": 3.47, "deg": 138.012}, "weather": {"pressure": 983.77, "temp_min": 294.961, "temp_max": 294.961, "temp": 294.961, "humidity": 97}, "state": "Amargosa", "coord": {"lat": -13.03, "lon": -39.6}},
{"wind": {"speed": 2.97, "deg": 133.512}, "weather": {"pressure": 1015.13, "temp_min": 297.611, "temp_max": 297.611, "temp": 297.611, "humidity": 74}, "state": "Conceicao do Jacuipe", "coord": {"lat": -12.32, "lon": -38.77}},
{"wind": {"speed": 5.35, "deg": 111.512}, "weather": {"pressure": 941.05, "temp_min": 295.611, "temp_max": 295.611, "temp": 295.611, "humidity": 72}, "state": "America Dourada", "coord": {"lat": -11.46, "lon": -41.44}},
{"wind": {"speed": 4.15, "deg": 120.512}, "weather": {"pressure": 964.64, "temp_min": 295.511, "temp_max": 295.511, "temp": 295.511, "humidity": 76}, "state": "Anage", "coord": {"lat": -14.61, "lon": -41.14}},
{"wind": {"speed": 3.4, "deg": 110.512}, "weather": {"pressure": 949.97, "temp_min": 296.061, "temp_max": 296.061, "temp": 296.061, "humidity": 71}, "state": "Lençóis", "coord": {"lat": -12.56, "lon": -41.39}},
{"wind": {"speed": 5.55, "deg": 126.512}, "weather": {"pressure": 973.88, "temp_min": 297.561, "temp_max": 297.561, "temp": 297.561, "humidity": 74}, "state": "Andorinha", "coord": {"lat": -10.34, "lon": -39.84}},
{"wind": {"speed": 2.3, "deg": 145.012}, "weather": {"pressure": 960.59, "temp_min": 293.811, "temp_max": 293.811, "temp": 293.811, "humidity": 63}, "state": "Barreiras", "coord": {"lat": -12.15, "lon": -44.99}},
{"wind": {"speed": 3.37, "deg": 128.012}, "weather": {"pressure": 993.98, "temp_min": 296.361, "temp_max": 296.361, "temp": 296.361, "humidity": 74}, "state": "Morrinhos", "coord": {"lat": -12.15, "lon": -39.33}},
{"wind": {"speed": 0.5, "deg": ""}, "weather": {"pressure": 1016, "temp_min": 283.15, "temp_max": 288.15, "temp": 286.14, "humidity": 93}, "state": "Antas", "coord": {"lat": 41.74, "lon": -8.31}},
{"wind": {"speed": 2.97, "deg": 133.512}, "weather": {"pressure": 1015.13, "temp_min": 297.611, "temp_max": 297.611, "temp": 297.611, "humidity": 74}, "state": "Teixeira", "coord": {"lat": -12.43, "lon": -39.23}},
{"wind": {"speed": 5.05, "deg": 130.012}, "weather": {"pressure": 972.02, "temp_min": 298.511, "temp_max": 298.511, "temp": 298.511, "humidity": 61}, "state": "Campo Formoso", "coord": {"lat": -10.51, "lon": -40.32}},
{"wind": {"speed": 3.27, "deg": 147.012}, "weather": {"pressure": 1014.89, "temp_min": 296.911, "temp_max": 296.911, "temp": 296.911, "humidity": 95}, "state": "Acajutiba", "coord": {"lat": -11.66, "lon": -38.02}},
{"wind": {"speed": 2.82, "deg": 140.012}, "weather": {"pressure": 997.55, "temp_min": 295.361, "temp_max": 295.361, "temp": 295.361, "humidity": 97}, "state": "Estivado", "coord": {"lat": -13.92, "lon": -39.75}},
{"wind": {"speed": 5.1, "deg": 140}, "weather": {"pressure": 1015, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 65}, "state": "Cat", "coord": {"lat": -12.35, "lon": -38.38}},
{"wind": {"speed": 4.15, "deg": 120.512}, "weather": {"pressure": 964.64, "temp_min": 295.511, "temp_max": 295.511, "temp": 295.511, "humidity": 76}, "state": "Maetinga", "coord": {"lat": -14.66, "lon": -41.49}},
{"wind": {"speed": 5.27, "deg": 132.512}, "weather": {"pressure": 994.79, "temp_min": 299.061, "temp_max": 299.061, "temp": 299.061, "humidity": 65}, "state": "Araci", "coord": {"lat": -11.33, "lon": -38.97}},
{"wind": {"speed": 4.52, "deg": 143.512}, "weather": {"pressure": 1007.93, "temp_min": 298.161, "temp_max": 298.161, "temp": 298.161, "humidity": 74}, "state": "Aramari", "coord": {"lat": -12.08, "lon": -38.5}},
{"wind": {"speed": 5.1, "deg": 140}, "weather": {"pressure": 1016, "temp_min": 300.15, "temp_max": 300.15, "temp": 300.15, "humidity": 78}, "state": "Arataca", "coord": {"lat": -15.26, "lon": -39.41}},
{"wind": {"speed": 3.62, "deg": 137.512}, "weather": {"pressure": 1020.32, "temp_min": 298.861, "temp_max": 298.861, "temp": 298.861, "humidity": 84}, "state": "Aratuípe", "coord": {"lat": -13.08, "lon": -39}},
{"wind": {"speed": 5.1, "deg": 140}, "weather": {"pressure": 1016, "temp_min": 300.15, "temp_max": 300.15, "temp": 300.15, "humidity": 78}, "state": "Ubaitaba", "coord": {"lat": -14.31, "lon": -39.32}},
{"wind": {"speed": 3.25, "deg": 119.512}, "weather": {"pressure": 950.05, "temp_min": 296.261, "temp_max": 296.261, "temp": 296.261, "humidity": 51}, "state": "Sao Desiderio", "coord": {"lat": -12.36, "lon": -44.97}},
{"wind": {"speed": 2.75, "deg": 117.012}, "weather": {"pressure": 981.74, "temp_min": 295.861, "temp_max": 295.861, "temp": 295.861, "humidity": 79}, "state": "Baixa Grande", "coord": {"lat": -11.96, "lon": -40.17}},
{"wind": {"speed": 3.07, "deg": 132.012}, "weather": {"pressure": 992.36, "temp_min": 295.861, "temp_max": 295.861, "temp": 295.861, "humidity": 95}, "state": "Cicero Dantas", "coord": {"lat": -10.6, "lon": -38.38}},
{"wind": {"speed": 5.95, "deg": 102.512}, "weather": {"pressure": 974.29, "temp_min": 301.011, "temp_max": 301.011, "temp": 301.011, "humidity": 50}, "state": "Barra", "coord": {"lat": -11.09, "lon": -43.14}},
{"wind": {"speed": 2.6, "deg": 99.5122}, "weather": {"pressure": 955.64, "temp_min": 294.761, "temp_max": 294.761, "temp": 294.761, "humidity": 88}, "state": "Barra da Estiva", "coord": {"lat": -13.63, "lon": -41.33}},
{"wind": {"speed": 3.05, "deg": 98.5122}, "weather": {"pressure": 982.23, "temp_min": 294.911, "temp_max": 294.911, "temp": 294.911, "humidity": 92}, "state": "Caatiba", "coord": {"lat": -14.98, "lon": -40.41}},
{"wind": {"speed": 5.27, "deg": 117.012}, "weather": {"pressure": 944.21, "temp_min": 296.861, "temp_max": 296.861, "temp": 296.861, "humidity": 61}, "state": "Morro do Gomes", "coord": {"lat": -11.68, "lon": -42.12}},
{"wind": {"speed": 2.27, "deg": 143.012}, "weather": {"pressure": 1005.9, "temp_min": 295.061, "temp_max": 295.061, "temp": 295.061, "humidity": 95}, "state": "Tapirama", "coord": {"lat": -14.22, "lon": -39.67}},
{"wind": {"speed": 2.3, "deg": 145.012}, "weather": {"pressure": 960.59, "temp_min": 293.811, "temp_max": 293.811, "temp": 293.811, "humidity": 63}, "state": "Barreiras", "coord": {"lat": -12.15, "lon": -44.99}},
{"wind": {"speed": 4.87, "deg": 114.012}, "weather": {"pressure": 923.06, "temp_min": 294.361, "temp_max": 294.361, "temp": 294.361, "humidity": 74}, "state": "Barro Alto", "coord": {"lat": -11.76, "lon": -41.91}},
{"wind": {"speed": 5.1, "deg": 140}, "weather": {"pressure": 1016, "temp_min": 300.15, "temp_max": 300.15, "temp": 300.15, "humidity": 78}, "state": "Itapé", "coord": {"lat": -14.9, "lon": -39.42}},
{"wind": {"speed": 5.1, "deg": 140}, "weather": {"pressure": 1016, "temp_min": 300.15, "temp_max": 300.15, "temp": 300.15, "humidity": 78}, "state": "Itapé", "coord": {"lat": -14.9, "lon": -39.42}},
{"wind": {"speed": 5.1, "deg": 100}, "weather": {"pressure": 1014, "temp_min": 280.15, "temp_max": 287.15, "temp": 283.76, "humidity": 90}, "state": "Barrocas", "coord": {"lat": 39.32, "lon": -8.78}},
{"wind": {"speed": 3.6, "deg": 240}, "weather": {"pressure": 1018, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 94}, "state": "Belmonte", "coord": {"lat": -15.86, "lon": -38.88}},
{"wind": {"speed": 2.1, "deg": 250}, "weather": {"pressure": 1017, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 100}, "state": "Belmonte", "coord": {"lat": -15.86, "lon": -38.88}},
{"wind": {"speed": 1.57, "deg": 129.501}, "weather": {"pressure": 940.75, "temp_min": 292.395, "temp_max": 292.395, "temp": 292.395, "humidity": 98}, "state": "Tremedal", "coord": {"lat": -14.98, "lon": -41.41}},
{"wind": {"speed": 5.12, "deg": 157.001}, "weather": {"pressure": 993.44, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 78}, "state": "Biritinga", "coord": {"lat": -11.62, "lon": -38.8}},
{"wind": {"speed": 1.62, "deg": 131.001}, "weather": {"pressure": 963.2, "temp_min": 292.145, "temp_max": 292.145, "temp": 292.145, "humidity": 94}, "state": "Pocoes", "coord": {"lat": -14.53, "lon": -40.37}},
{"wind": {"speed": 1.87, "deg": 119.501}, "weather": {"pressure": 975.36, "temp_min": 293.145, "temp_max": 293.145, "temp": 293.145, "humidity": 95}, "state": "Terra Nova", "coord": {"lat": -12.37, "lon": -40.67}},
{"wind": {"speed": 3.37, "deg": 112.501}, "weather": {"pressure": 969.36, "temp_min": 293.295, "temp_max": 293.295, "temp": 293.295, "humidity": 85}, "state": "Bom Jesus da Lapa", "coord": {"lat": -13.26, "lon": -43.42}},
{"wind": {"speed": 1.62, "deg": 131.001}, "weather": {"pressure": 963.2, "temp_min": 292.145, "temp_max": 292.145, "temp": 292.145, "humidity": 94}, "state": "Pocoes", "coord": {"lat": -14.53, "lon": -40.37}},
{"wind": {"speed": 4.47, "deg": 111.501}, "weather": {"pressure": 914.41, "temp_min": 291.145, "temp_max": 291.145, "temp": 291.145, "humidity": 91}, "state": "Seabra", "coord": {"lat": -12.42, "lon": -41.77}},
{"wind": {"speed": 3.02, "deg": 128.501}, "weather": {"pressure": 992.3, "temp_min": 288.645, "temp_max": 288.645, "temp": 288.645, "humidity": 69}, "state": "Bonito", "coord": {"lat": -21.12, "lon": -56.48}},
{"wind": {"speed": 3.02, "deg": 112.501}, "weather": {"pressure": 958.26, "temp_min": 291.795, "temp_max": 291.795, "temp": 291.795, "humidity": 91}, "state": "Boquira", "coord": {"lat": -12.82, "lon": -42.73}},
{"wind": {"speed": 2.97, "deg": 108.001}, "weather": {"pressure": 925.35, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Paramirim", "coord": {"lat": -13.44, "lon": -42.24}},
{"wind": {"speed": 2.97, "deg": 165.501}, "weather": {"pressure": 982.41, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 96}, "state": "Santa Ines", "coord": {"lat": -13.29, "lon": -39.82}},
{"wind": {"speed": 3.62, "deg": 118.501}, "weather": {"pressure": 969.93, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 82}, "state": "Ibotirama", "coord": {"lat": -12.19, "lon": -43.22}},
{"wind": {"speed": 3.02, "deg": 112.501}, "weather": {"pressure": 958.26, "temp_min": 291.795, "temp_max": 291.795, "temp": 291.795, "humidity": 91}, "state": "Oliveira dos Brejinhos", "coord": {"lat": -12.32, "lon": -42.9}},
{"wind": {"speed": 2.57, "deg": 87.5011}, "weather": {"pressure": 963.77, "temp_min": 291.895, "temp_max": 291.895, "temp": 291.895, "humidity": 97}, "state": "Brumado", "coord": {"lat": -14.2, "lon": -41.67}},
{"wind": {"speed": 3.42, "deg": 148.501}, "weather": {"pressure": 1026.51, "temp_min": 298.495, "temp_max": 298.495, "temp": 298.495, "humidity": 100}, "state": "Buerarema", "coord": {"lat": -14.96, "lon": -39.3}},
{"wind": {"speed": 4.92, "deg": 95.5011}, "weather": {"pressure": 966.45, "temp_min": 295.995, "temp_max": 295.995, "temp": 295.995, "humidity": 70}, "state": "Buritirama", "coord": {"lat": -10.71, "lon": -43.63}},
{"wind": {"speed": 1.42, "deg": 142.501}, "weather": {"pressure": 981.04, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 93}, "state": "Caatiba", "coord": {"lat": -14.98, "lon": -40.41}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Teixeira", "coord": {"lat": -12.43, "lon": -39.23}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Cachoeira", "coord": {"lat": -12.62, "lon": -38.96}},
{"wind": {"speed": 3.02, "deg": 87.5011}, "weather": {"pressure": 961.66, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 97}, "state": "Cacule", "coord": {"lat": -14.5, "lon": -42.22}},
{"wind": {"speed": 4.02, "deg": 144.001}, "weather": {"pressure": 949.34, "temp_min": 290.645, "temp_max": 290.645, "temp": 290.645, "humidity": 96}, "state": "Jacobina", "coord": {"lat": -11.18, "lon": -40.52}},
{"wind": {"speed": 2.57, "deg": 87.5011}, "weather": {"pressure": 963.77, "temp_min": 291.895, "temp_max": 291.895, "temp": 291.895, "humidity": 97}, "state": "Anage", "coord": {"lat": -14.61, "lon": -41.14}},
{"wind": {"speed": 5.32, "deg": 101.501}, "weather": {"pressure": 934.43, "temp_min": 291.595, "temp_max": 291.595, "temp": 291.595, "humidity": 94}, "state": "Caetite", "coord": {"lat": -14.07, "lon": -42.48}},
{"wind": {"speed": 4.92, "deg": 118.501}, "weather": {"pressure": 940.26, "temp_min": 291.045, "temp_max": 291.045, "temp": 291.045, "humidity": 92}, "state": "Cafarnaum", "coord": {"lat": -11.69, "lon": -41.47}},
{"wind": {"speed": 3.6, "deg": 30}, "weather": {"pressure": 1012, "temp_min": 292.15, "temp_max": 295.15, "temp": 294.05, "humidity": 88}, "state": "Al \u2018Atabah", "coord": {"lat": 30.05, "lon": 31.25}},
{"wind": {"speed": 4.77, "deg": 154.001}, "weather": {"pressure": 971.15, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 76}, "state": "Caldeirão Grande", "coord": {"lat": -11.02, "lon": -40.3}},
{"wind": {"speed": 2.57, "deg": 172.001}, "weather": {"pressure": 1007.87, "temp_min": 294.695, "temp_max": 294.695, "temp": 294.695, "humidity": 96}, "state": "Pau Brasil", "coord": {"lat": -15.46, "lon": -39.65}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Camaçari", "coord": {"lat": -12.48, "lon": -38.22}},
{"wind": {"speed": 4.67, "deg": 140.001}, "weather": {"pressure": 1023.76, "temp_min": 299.895, "temp_max": 299.895, "temp": 299.895, "humidity": 78}, "state": "Camam", "coord": {"lat": -13.94, "lon": -39.1}},
{"wind": {"speed": 4.47, "deg": 120.001}, "weather": {"pressure": 976.5, "temp_min": 298.395, "temp_max": 298.395, "temp": 298.395, "humidity": 64}, "state": "Sao Raimundo Nonato", "coord": {"lat": -9.02, "lon": -42.7}},
{"wind": {"speed": 4.77, "deg": 154.001}, "weather": {"pressure": 971.15, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 76}, "state": "Campo Formoso", "coord": {"lat": -10.51, "lon": -40.32}},
{"wind": {"speed": 4.07, "deg": 99.0011}, "weather": {"pressure": 960.04, "temp_min": 293.395, "temp_max": 293.395, "temp": 293.395, "humidity": 93}, "state": "Canápolis", "coord": {"lat": -18.73, "lon": -49.2}},
{"wind": {"speed": 3.62, "deg": 110.501}, "weather": {"pressure": 943.51, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 89}, "state": "Canarana", "coord": {"lat": -11.68, "lon": -41.77}},
{"wind": {"speed": 1.87, "deg": 162.001}, "weather": {"pressure": 1027, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 100}, "state": "Canavieiras", "coord": {"lat": -15.68, "lon": -38.95}},
{"wind": {"speed": 3.47, "deg": 156.501}, "weather": {"pressure": 1000.41, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 88}, "state": "Ich", "coord": {"lat": -11.75, "lon": -39.19}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Pitinga", "coord": {"lat": -12.67, "lon": -38.55}},
{"wind": {"speed": 3.17, "deg": 105.001}, "weather": {"pressure": 948.13, "temp_min": 291.895, "temp_max": 291.895, "temp": 291.895, "humidity": 92}, "state": "Pindaí", "coord": {"lat": -14.49, "lon": -42.69}},
{"wind": {"speed": 1.82, "deg": 96.5011}, "weather": {"pressure": 952.83, "temp_min": 292.545, "temp_max": 292.545, "temp": 292.545, "humidity": 100}, "state": "Encruzilhada", "coord": {"lat": -15.53, "lon": -40.91}},
{"wind": {"speed": 4.77, "deg": 149.501}, "weather": {"pressure": 988.41, "temp_min": 295.795, "temp_max": 295.795, "temp": 295.795, "humidity": 77}, "state": "Cansanção", "coord": {"lat": -10.67, "lon": -39.5}},
{"wind": {"speed": 3.62, "deg": 126.501}, "weather": {"pressure": 976.09, "temp_min": 295.695, "temp_max": 295.695, "temp": 295.695, "humidity": 85}, "state": "Uaua", "coord": {"lat": -9.84, "lon": -39.48}},
{"wind": {"speed": 1.87, "deg": 149.501}, "weather": {"pressure": 980.79, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 95}, "state": "Pintadas", "coord": {"lat": -11.81, "lon": -39.91}},
{"wind": {"speed": 3.22, "deg": 161.001}, "weather": {"pressure": 972.28, "temp_min": 292.495, "temp_max": 292.495, "temp": 292.495, "humidity": 91}, "state": "Capim Grosso", "coord": {"lat": -11.38, "lon": -40.01}},
{"wind": {"speed": 1.57, "deg": 129.501}, "weather": {"pressure": 940.75, "temp_min": 292.395, "temp_max": 292.395, "temp": 292.395, "humidity": 98}, "state": "Sao Felipe", "coord": {"lat": -14.82, "lon": -41.38}},
{"wind": {"speed": 9.87, "deg": 176.001}, "weather": {"pressure": 1029.92, "temp_min": 297.145, "temp_max": 297.145, "temp": 297.145, "humidity": 100}, "state": "Caravelas", "coord": {"lat": -17.71, "lon": -39.25}},
{"wind": {"speed": 4.02, "deg": 143.001}, "weather": {"pressure": 1021.33, "temp_min": 297.995, "temp_max": 297.995, "temp": 297.995, "humidity": 100}, "state": "Cardeal da Silva", "coord": {"lat": -11.94, "lon": -37.95}},
{"wind": {"speed": 3.82, "deg": 109.501}, "weather": {"pressure": 972.77, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 75}, "state": "Carinhanha", "coord": {"lat": -14.3, "lon": -43.77}},
{"wind": {"speed": 4.1, "deg": 170}, "weather": {"pressure": 1015, "temp_min": 298.15, "temp_max": 298.15, "temp": 298.15, "humidity": 53}, "state": "Casa Nova", "coord": {"lat": -9.42, "lon": -41.13}},
{"wind": {"speed": 2.47, "deg": 144.501}, "weather": {"pressure": 1002.68, "temp_min": 294.945, "temp_max": 294.945, "temp": 294.945, "humidity": 87}, "state": "Castro Alves", "coord": {"lat": -12.77, "lon": -39.43}},
{"wind": {"speed": 5.32, "deg": 108.001}, "weather": {"pressure": 949.67, "temp_min": 294.345, "temp_max": 294.345, "temp": 294.345, "humidity": 68}, "state": "Sao Desiderio", "coord": {"lat": -12.36, "lon": -44.97}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Cat", "coord": {"lat": -12.35, "lon": -38.38}},
{"wind": {"speed": 2.97, "deg": 108.001}, "weather": {"pressure": 925.35, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Paramirim", "coord": {"lat": -13.44, "lon": -42.24}},
{"wind": {"speed": 6.7, "deg": 130}, "weather": {"pressure": 1009, "temp_min": 300.15, "temp_max": 300.15, "temp": 300.15, "humidity": 74}, "state": "Central", "coord": {"lat": 30.55, "lon": -91.04}},
{"wind": {"speed": 3.87, "deg": 143.001}, "weather": {"pressure": 984.93, "temp_min": 295.545, "temp_max": 295.545, "temp": 295.545, "humidity": 90}, "state": "Abaré", "coord": {"lat": -8.72, "lon": -39.11}},
{"wind": {"speed": 3.22, "deg": 170.501}, "weather": {"pressure": 990.52, "temp_min": 295.145, "temp_max": 295.145, "temp": 295.145, "humidity": 97}, "state": "Cicero Dantas", "coord": {"lat": -10.6, "lon": -38.38}},
{"wind": {"speed": 4.22, "deg": 160.001}, "weather": {"pressure": 1003.17, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 93}, "state": "Cipo", "coord": {"lat": -11.1, "lon": -38.51}},
{"wind": {"speed": 1.72, "deg": 182.001}, "weather": {"pressure": 1004.46, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 98}, "state": "Coaraci", "coord": {"lat": -14.64, "lon": -39.55}},
{"wind": {"speed": 3.82, "deg": 109.501}, "weather": {"pressure": 972.77, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 75}, "state": "Carinhanha", "coord": {"lat": -14.3, "lon": -43.77}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Conceicao da Feira", "coord": {"lat": -12.51, "lon": -39}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Conceicao do Almeida", "coord": {"lat": -12.78, "lon": -39.17}},
{"wind": {"speed": 5.12, "deg": 157.001}, "weather": {"pressure": 993.44, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 78}, "state": "Conceicao do Coite", "coord": {"lat": -11.56, "lon": -39.28}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Conceicao do Jacuipe", "coord": {"lat": -12.32, "lon": -38.77}},
{"wind": {"speed": 4.6, "deg": 220}, "weather": {"pressure": 1013, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 94}, "state": "Conde", "coord": {"lat": -7.26, "lon": -34.91}},
{"wind": {"speed": 3.52, "deg": 151.001}, "weather": {"pressure": 940.75, "temp_min": 291.645, "temp_max": 291.645, "temp": 291.645, "humidity": 97}, "state": "Condeúba", "coord": {"lat": -14.9, "lon": -41.97}},
{"wind": {"speed": 1.62, "deg": 84.0011}, "weather": {"pressure": 954.85, "temp_min": 291.095, "temp_max": 291.095, "temp": 291.095, "humidity": 96}, "state": "Ituac", "coord": {"lat": -13.81, "lon": -41.3}},
{"wind": {"speed": 3.47, "deg": 156.501}, "weather": {"pressure": 1000.41, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 88}, "state": "Sítio do Martins", "coord": {"lat": -12.23, "lon": -38.75}},
{"wind": {"speed": 3.52, "deg": 151.001}, "weather": {"pressure": 940.75, "temp_min": 291.645, "temp_max": 291.645, "temp": 291.645, "humidity": 97}, "state": "Condeúba", "coord": {"lat": -14.9, "lon": -41.97}},
{"wind": {"speed": 4.02, "deg": 100.001}, "weather": {"pressure": 955.1, "temp_min": 293.395, "temp_max": 293.395, "temp": 293.395, "humidity": 77}, "state": "Santa Maria da Vitoria", "coord": {"lat": -13.39, "lon": -44.19}},
{"wind": {"speed": 3.32, "deg": 161.001}, "weather": {"pressure": 995.22, "temp_min": 294.945, "temp_max": 294.945, "temp": 294.945, "humidity": 96}, "state": "Carira", "coord": {"lat": -10.36, "lon": -37.7}},
{"wind": {"speed": 4.02, "deg": 100.001}, "weather": {"pressure": 955.1, "temp_min": 293.395, "temp_max": 293.395, "temp": 293.395, "humidity": 77}, "state": "Correntina", "coord": {"lat": -13.34, "lon": -44.64}},
{"wind": {"speed": 2.32, "deg": 107.501}, "weather": {"pressure": 960.53, "temp_min": 291.545, "temp_max": 291.545, "temp": 291.545, "humidity": 82}, "state": "Riachao das Neves", "coord": {"lat": -11.75, "lon": -44.91}},
{"wind": {"speed": 2.97, "deg": 165.501}, "weather": {"pressure": 982.41, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 96}, "state": "Santa Ines", "coord": {"lat": -13.29, "lon": -39.82}},
{"wind": {"speed": 4.22, "deg": 160.001}, "weather": {"pressure": 1003.17, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 93}, "state": "Crisópolis", "coord": {"lat": -11.51, "lon": -38.15}},
{"wind": {"speed": 5.32, "deg": 108.001}, "weather": {"pressure": 949.67, "temp_min": 294.345, "temp_max": 294.345, "temp": 294.345, "humidity": 68}, "state": "Sao Desiderio", "coord": {"lat": -12.36, "lon": -44.97}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Cruz das Almas", "coord": {"lat": -12.67, "lon": -39.1}},
{"wind": {"speed": 6.7, "deg": 90}, "weather": {"pressure": 1014, "temp_min": 300.15, "temp_max": 300.15, "temp": 300.15, "humidity": 78}, "state": "Willemstad", "coord": {"lat": 12.11, "lon": -68.93}},
{"wind": {"speed": 1.72, "deg": 182.001}, "weather": {"pressure": 1004.46, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 98}, "state": "Itagiba", "coord": {"lat": -14.28, "lon": -39.84}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Dias dávila", "coord": {"lat": -12.61, "lon": -38.3}},
{"wind": {"speed": 3.22, "deg": 100.501}, "weather": {"pressure": 954.85, "temp_min": 292.195, "temp_max": 292.195, "temp": 292.195, "humidity": 95}, "state": "Livramento do Brumado", "coord": {"lat": -13.64, "lon": -41.84}},
{"wind": {"speed": 3.82, "deg": 150.001}, "weather": {"pressure": 1018.81, "temp_min": 298.645, "temp_max": 298.645, "temp": 298.645, "humidity": 75}, "state": "Jaguaripe", "coord": {"lat": -12.92, "lon": -39.17}},
{"wind": {"speed": 2.97, "deg": 165.501}, "weather": {"pressure": 982.41, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 96}, "state": "Amargosa", "coord": {"lat": -13.03, "lon": -39.6}},
{"wind": {"speed": 1.82, "deg": 96.5011}, "weather": {"pressure": 952.83, "temp_min": 292.545, "temp_max": 292.545, "temp": 292.545, "humidity": 100}, "state": "Encruzilhada", "coord": {"lat": -15.53, "lon": -40.91}},
{"wind": {"speed": 4.02, "deg": 143.001}, "weather": {"pressure": 1021.33, "temp_min": 297.995, "temp_max": 297.995, "temp": 297.995, "humidity": 100}, "state": "Entre Rios", "coord": {"lat": -11.94, "lon": -38.08}},
{"wind": {"speed": 2.97, "deg": 108.001}, "weather": {"pressure": 925.35, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Paramirim", "coord": {"lat": -13.44, "lon": -42.24}},
{"wind": {"speed": 4.02, "deg": 143.001}, "weather": {"pressure": 1021.33, "temp_min": 297.995, "temp_max": 297.995, "temp": 297.995, "humidity": 100}, "state": "Esplanada", "coord": {"lat": -11.8, "lon": -37.95}},
{"wind": {"speed": 3.17, "deg": 164.001}, "weather": {"pressure": 988.98, "temp_min": 294.595, "temp_max": 294.595, "temp": 294.595, "humidity": 96}, "state": "Euclides da Cunha", "coord": {"lat": -10.51, "lon": -39.02}},
{"wind": {"speed": 2.1, "deg": 250}, "weather": {"pressure": 1017, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 100}, "state": "Guaratinga", "coord": {"lat": -16.57, "lon": -39.57}},
{"wind": {"speed": 2.1, "deg": 340}, "weather": {"pressure": 1021, "temp_min": 286.15, "temp_max": 288.15, "temp": 287.52, "humidity": 82}, "state": "Fátima", "coord": {"lat": -34.44, "lon": -58.99}},
{"wind": {"speed": 3.82, "deg": 109.501}, "weather": {"pressure": 972.77, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 75}, "state": "Carinhanha", "coord": {"lat": -14.3, "lon": -43.77}},
{"wind": {"speed": 3.47, "deg": 156.501}, "weather": {"pressure": 1000.41, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 88}, "state": "Feira de Santana", "coord": {"lat": -12.27, "lon": -38.97}},
{"wind": {"speed": 1.5, "deg": 20}, "weather": {"pressure": 1021, "temp_min": 290.15, "temp_max": 295.15, "temp": 292.23, "humidity": 77}, "state": "Philadelphia", "coord": {"lat": 39.95, "lon": -75.16}},
{"wind": {"speed": 1.42, "deg": 142.501}, "weather": {"pressure": 981.04, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 93}, "state": "Ibicui", "coord": {"lat": -14.84, "lon": -39.99}},
{"wind": {"speed": 1.47, "deg": 194.001}, "weather": {"pressure": 1006.73, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Floresta Azul", "coord": {"lat": -14.86, "lon": -39.66}},
{"wind": {"speed": 3.57, "deg": 136.501}, "weather": {"pressure": 964.99, "temp_min": 295.145, "temp_max": 295.145, "temp": 295.145, "humidity": 58}, "state": "Formosa do Rio Preto", "coord": {"lat": -11.05, "lon": -45.19}},
{"wind": {"speed": 2.07, "deg": 170.501}, "weather": {"pressure": 996.19, "temp_min": 294.245, "temp_max": 294.245, "temp": 294.245, "humidity": 97}, "state": "Gand", "coord": {"lat": -13.74, "lon": -39.49}},
{"wind": {"speed": 5.77, "deg": 208.501}, "weather": {"pressure": 990.03, "temp_min": 283.495, "temp_max": 283.495, "temp": 283.495, "humidity": 90}, "state": "Casa Branca", "coord": {"lat": 39.46, "lon": -8.01}},
{"wind": {"speed": 3.62, "deg": 110.501}, "weather": {"pressure": 943.51, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 89}, "state": "Uibaí", "coord": {"lat": -11.34, "lon": -42.13}},
{"wind": {"speed": 1, "deg": ""}, "weather": {"pressure": 1020, "temp_min": 288.15, "temp_max": 288.15, "temp": 288.15, "humidity": 87}, "state": "Glória", "coord": {"lat": 37.75, "lon": -25.62}},
{"wind": {"speed": 1.72, "deg": 182.001}, "weather": {"pressure": 1004.46, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 98}, "state": "Ubata", "coord": {"lat": -14.21, "lon": -39.52}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "São Félix", "coord": {"lat": -12.6, "lon": -38.97}},
{"wind": {"speed": 3.02, "deg": 87.5011}, "weather": {"pressure": 961.66, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 97}, "state": "Santana", "coord": {"lat": -14.47, "lon": -41.8}},
{"wind": {"speed": 3.17, "deg": 105.001}, "weather": {"pressure": 948.13, "temp_min": 291.895, "temp_max": 291.895, "temp": 291.895, "humidity": 92}, "state": "Guanambi", "coord": {"lat": -14.22, "lon": -42.78}},
{"wind": {"speed": 2.1, "deg": 250}, "weather": {"pressure": 1017, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 100}, "state": "Guaratinga", "coord": {"lat": -16.57, "lon": -39.57}},
{"wind": {"speed": 3.6, "deg": 30}, "weather": {"pressure": 1012, "temp_min": 292.15, "temp_max": 295.15, "temp": 294.06, "humidity": 88}, "state": "Cairo", "coord": {"lat": 30.06, "lon": 31.25}},
{"wind": {"speed": 2.57, "deg": 122.001}, "weather": {"pressure": 995.63, "temp_min": 293.745, "temp_max": 293.745, "temp": 293.745, "humidity": 93}, "state": "Iac", "coord": {"lat": -12.77, "lon": -40.21}},
{"wind": {"speed": 3.02, "deg": 87.5011}, "weather": {"pressure": 961.66, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 97}, "state": "Irundiara", "coord": {"lat": -14.28, "lon": -42.28}},
{"wind": {"speed": 1.47, "deg": 194.001}, "weather": {"pressure": 1006.73, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Ibicarai", "coord": {"lat": -14.87, "lon": -39.59}},
{"wind": {"speed": 3.22, "deg": 118.501}, "weather": {"pressure": 927.7, "temp_min": 291.095, "temp_max": 291.095, "temp": 291.095, "humidity": 94}, "state": "Ibicoara", "coord": {"lat": -13.41, "lon": -41.28}},
{"wind": {"speed": 1.42, "deg": 142.501}, "weather": {"pressure": 981.04, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 93}, "state": "Ibicui", "coord": {"lat": -14.84, "lon": -39.99}},
{"wind": {"speed": 3.62, "deg": 110.501}, "weather": {"pressure": 943.51, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 89}, "state": "Ibipeba", "coord": {"lat": -11.64, "lon": -42.01}},
{"wind": {"speed": 3.02, "deg": 112.501}, "weather": {"pressure": 958.26, "temp_min": 291.795, "temp_max": 291.795, "temp": 291.795, "humidity": 91}, "state": "Boquira", "coord": {"lat": -12.82, "lon": -42.73}},
{"wind": {"speed": 1.87, "deg": 119.501}, "weather": {"pressure": 975.36, "temp_min": 293.145, "temp_max": 293.145, "temp": 293.145, "humidity": 95}, "state": "Vera Cruz", "coord": {"lat": -12.63, "lon": -41.03}},
{"wind": {"speed": 1.72, "deg": 182.001}, "weather": {"pressure": 1004.46, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 98}, "state": "Ibirapitanga", "coord": {"lat": -14.16, "lon": -39.37}},
{"wind": {"speed": 2.67, "deg": 149.001}, "weather": {"pressure": 1004.06, "temp_min": 293.895, "temp_max": 293.895, "temp": 293.895, "humidity": 98}, "state": "Ibirapuã", "coord": {"lat": -17.69, "lon": -40.11}},
{"wind": {"speed": 2.07, "deg": 170.501}, "weather": {"pressure": 996.19, "temp_min": 294.245, "temp_max": 294.245, "temp": 294.245, "humidity": 97}, "state": "Ibirataia", "coord": {"lat": -14.07, "lon": -39.64}},
{"wind": {"speed": 4.47, "deg": 111.501}, "weather": {"pressure": 914.41, "temp_min": 291.145, "temp_max": 291.145, "temp": 291.145, "humidity": 91}, "state": "Ibitiara", "coord": {"lat": -12.65, "lon": -42.22}},
{"wind": {"speed": 3.62, "deg": 110.501}, "weather": {"pressure": 943.51, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 89}, "state": "Ibititá", "coord": {"lat": -11.55, "lon": -41.98}},
{"wind": {"speed": 3.62, "deg": 118.501}, "weather": {"pressure": 969.93, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 82}, "state": "Ibotirama", "coord": {"lat": -12.19, "lon": -43.22}},
{"wind": {"speed": 3.47, "deg": 156.501}, "weather": {"pressure": 1000.41, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 88}, "state": "Ich", "coord": {"lat": -11.75, "lon": -39.19}},
{"wind": {"speed": 4.17, "deg": 108.501}, "weather": {"pressure": 970.9, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 82}, "state": "Riacho de Santana", "coord": {"lat": -13.61, "lon": -42.94}},
{"wind": {"speed": 4.67, "deg": 140.001}, "weather": {"pressure": 1023.76, "temp_min": 299.895, "temp_max": 299.895, "temp": 299.895, "humidity": 78}, "state": "Igrapiúna", "coord": {"lat": -13.83, "lon": -39.14}},
{"wind": {"speed": 1.42, "deg": 142.501}, "weather": {"pressure": 981.04, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 93}, "state": "Iguai", "coord": {"lat": -14.76, "lon": -40.09}},
{"wind": {"speed": 3.42, "deg": 148.501}, "weather": {"pressure": 1026.51, "temp_min": 298.495, "temp_max": 298.495, "temp": 298.495, "humidity": 100}, "state": "Ilheus", "coord": {"lat": -14.79, "lon": -39.05}},
{"wind": {"speed": 3.12, "deg": 159.001}, "weather": {"pressure": 1006.25, "temp_min": 295.295, "temp_max": 295.295, "temp": 295.295, "humidity": 91}, "state": "Inhambupe", "coord": {"lat": -11.78, "lon": -38.35}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Santo Estevao", "coord": {"lat": -12.43, "lon": -39.25}},
{"wind": {"speed": 1.72, "deg": 182.001}, "weather": {"pressure": 1004.46, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 98}, "state": "Ipia", "coord": {"lat": -14.14, "lon": -39.73}},
{"wind": {"speed": 2.12, "deg": 166.501}, "weather": {"pressure": 992.71, "temp_min": 292.295, "temp_max": 292.295, "temp": 292.295, "humidity": 96}, "state": "Ipira", "coord": {"lat": -12.16, "lon": -39.74}},
{"wind": {"speed": 3.62, "deg": 110.501}, "weather": {"pressure": 943.51, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 89}, "state": "Morro do Gomes", "coord": {"lat": -11.68, "lon": -42.12}},
{"wind": {"speed": 2.87, "deg": 136.001}, "weather": {"pressure": 952.42, "temp_min": 292.845, "temp_max": 292.845, "temp": 292.845, "humidity": 96}, "state": "Itaquara", "coord": {"lat": -13.45, "lon": -39.94}},
{"wind": {"speed": 1.62, "deg": 180.501}, "weather": {"pressure": 973.09, "temp_min": 291.295, "temp_max": 291.295, "temp": 291.295, "humidity": 98}, "state": "Itaeté", "coord": {"lat": -12.99, "lon": -40.97}},
{"wind": {"speed": 3.57, "deg": 108.501}, "weather": {"pressure": 934.18, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 99}, "state": "Iraquara", "coord": {"lat": -12.25, "lon": -41.62}},
{"wind": {"speed": 3.47, "deg": 156.501}, "weather": {"pressure": 1000.41, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 88}, "state": "Irara", "coord": {"lat": -12.05, "lon": -38.77}},
{"wind": {"speed": 3.62, "deg": 110.501}, "weather": {"pressure": 943.51, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 89}, "state": "Irece", "coord": {"lat": -11.3, "lon": -41.86}},
{"wind": {"speed": 2.1, "deg": 250}, "weather": {"pressure": 1017, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 100}, "state": "Guaratinga", "coord": {"lat": -16.57, "lon": -39.57}},
{"wind": {"speed": 2.57, "deg": 122.001}, "weather": {"pressure": 995.63, "temp_min": 293.745, "temp_max": 293.745, "temp": 293.745, "humidity": 93}, "state": "Itaberaba", "coord": {"lat": -12.53, "lon": -40.31}},
{"wind": {"speed": 3.42, "deg": 148.501}, "weather": {"pressure": 1026.51, "temp_min": 298.495, "temp_max": 298.495, "temp": 298.495, "humidity": 100}, "state": "Itabuna", "coord": {"lat": -14.79, "lon": -39.28}},
{"wind": {"speed": 3.72, "deg": 139.001}, "weather": {"pressure": 1025.46, "temp_min": 299.645, "temp_max": 299.645, "temp": 299.645, "humidity": 86}, "state": "Itacare", "coord": {"lat": -14.28, "lon": -39}},
{"wind": {"speed": 1.62, "deg": 180.501}, "weather": {"pressure": 973.09, "temp_min": 291.295, "temp_max": 291.295, "temp": 291.295, "humidity": 98}, "state": "Itaeté", "coord": {"lat": -12.99, "lon": -40.97}},
{"wind": {"speed": 1.62, "deg": 131.001}, "weather": {"pressure": 963.2, "temp_min": 292.145, "temp_max": 292.145, "temp": 292.145, "humidity": 94}, "state": "Itagi", "coord": {"lat": -14.16, "lon": -40.01}},
{"wind": {"speed": 1.72, "deg": 182.001}, "weather": {"pressure": 1004.46, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 98}, "state": "Itagiba", "coord": {"lat": -14.28, "lon": -39.84}},
{"wind": {"speed": 3.02, "deg": 171.501}, "weather": {"pressure": 1009.16, "temp_min": 295.295, "temp_max": 295.295, "temp": 295.295, "humidity": 98}, "state": "Itapebi", "coord": {"lat": -15.95, "lon": -39.53}},
{"wind": {"speed": 6.17, "deg": 108.501}, "weather": {"pressure": 973.17, "temp_min": 295.945, "temp_max": 295.945, "temp": 295.945, "humidity": 79}, "state": "Xique Xique", "coord": {"lat": -10.82, "lon": -42.73}},
{"wind": {"speed": 1.47, "deg": 194.001}, "weather": {"pressure": 1006.73, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Floresta Azul", "coord": {"lat": -14.86, "lon": -39.66}},
{"wind": {"speed": 1.72, "deg": 182.001}, "weather": {"pressure": 1004.46, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 98}, "state": "Itajuipe", "coord": {"lat": -14.68, "lon": -39.38}},
{"wind": {"speed": 2.32, "deg": 213.501}, "weather": {"pressure": 1013.71, "temp_min": 294.795, "temp_max": 294.795, "temp": 294.795, "humidity": 98}, "state": "Itamaraj", "coord": {"lat": -17.04, "lon": -39.53}},
{"wind": {"speed": 2.07, "deg": 170.501}, "weather": {"pressure": 996.19, "temp_min": 294.245, "temp_max": 294.245, "temp": 294.245, "humidity": 97}, "state": "Rua do Arco", "coord": {"lat": -13.8, "lon": -39.58}},
{"wind": {"speed": 2.97, "deg": 108.001}, "weather": {"pressure": 942.94, "temp_min": 292.045, "temp_max": 292.045, "temp": 292.045, "humidity": 98}, "state": "Itambe", "coord": {"lat": -15.24, "lon": -40.62}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Camaçari", "coord": {"lat": -12.48, "lon": -38.22}},
{"wind": {"speed": 2.67, "deg": 149.001}, "weather": {"pressure": 1004.06, "temp_min": 293.895, "temp_max": 293.895, "temp": 293.895, "humidity": 98}, "state": "Itanhem", "coord": {"lat": -17.17, "lon": -40.33}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Itaparica", "coord": {"lat": -12.89, "lon": -38.68}},
{"wind": {"speed": 1.47, "deg": 194.001}, "weather": {"pressure": 1006.73, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Itapé", "coord": {"lat": -14.9, "lon": -39.42}},
{"wind": {"speed": 3.02, "deg": 171.501}, "weather": {"pressure": 1009.16, "temp_min": 295.295, "temp_max": 295.295, "temp": 295.295, "humidity": 98}, "state": "Itapebi", "coord": {"lat": -15.95, "lon": -39.53}},
{"wind": {"speed": 1.42, "deg": 142.501}, "weather": {"pressure": 981.04, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 93}, "state": "Itapetinga", "coord": {"lat": -15.25, "lon": -40.25}},
{"wind": {"speed": 4.22, "deg": 160.001}, "weather": {"pressure": 1003.17, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 93}, "state": "Itapicur", "coord": {"lat": -11.32, "lon": -38.23}},
{"wind": {"speed": 1.72, "deg": 182.001}, "weather": {"pressure": 1004.46, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 98}, "state": "Ubata", "coord": {"lat": -14.21, "lon": -39.52}},
{"wind": {"speed": 2.87, "deg": 136.001}, "weather": {"pressure": 952.42, "temp_min": 292.845, "temp_max": 292.845, "temp": 292.845, "humidity": 96}, "state": "Itaquara", "coord": {"lat": -13.45, "lon": -39.94}},
{"wind": {"speed": 1.92, "deg": 141.001}, "weather": {"pressure": 984.2, "temp_min": 294.095, "temp_max": 294.095, "temp": 294.095, "humidity": 96}, "state": "Itarantim", "coord": {"lat": -15.66, "lon": -40.07}},
{"wind": {"speed": 2.47, "deg": 144.501}, "weather": {"pressure": 1002.68, "temp_min": 294.945, "temp_max": 294.945, "temp": 294.945, "humidity": 87}, "state": "Castro Alves", "coord": {"lat": -12.77, "lon": -39.43}},
{"wind": {"speed": 2.32, "deg": 135.001}, "weather": {"pressure": 979.9, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 97}, "state": "Itiruc", "coord": {"lat": -13.53, "lon": -40.15}},
{"wind": {"speed": 4.77, "deg": 149.501}, "weather": {"pressure": 988.41, "temp_min": 295.795, "temp_max": 295.795, "temp": 295.795, "humidity": 77}, "state": "Itiúba", "coord": {"lat": -10.69, "lon": -39.85}},
{"wind": {"speed": 1.42, "deg": 142.501}, "weather": {"pressure": 981.04, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 93}, "state": "Itororo", "coord": {"lat": -15.12, "lon": -40.07}},
{"wind": {"speed": 1.62, "deg": 84.0011}, "weather": {"pressure": 954.85, "temp_min": 291.095, "temp_max": 291.095, "temp": 291.095, "humidity": 96}, "state": "Ituac", "coord": {"lat": -13.81, "lon": -41.3}},
{"wind": {"speed": 4.67, "deg": 140.001}, "weather": {"pressure": 1023.76, "temp_min": 299.895, "temp_max": 299.895, "temp": 299.895, "humidity": 78}, "state": "Itubera", "coord": {"lat": -13.73, "lon": -39.15}},
{"wind": {"speed": 3.82, "deg": 109.501}, "weather": {"pressure": 972.77, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 75}, "state": "Carinhanha", "coord": {"lat": -14.3, "lon": -43.77}},
{"wind": {"speed": 5.32, "deg": 111.001}, "weather": {"pressure": 970.17, "temp_min": 293.145, "temp_max": 293.145, "temp": 293.145, "humidity": 91}, "state": "Jaborandi", "coord": {"lat": -20.69, "lon": -48.41}},
{"wind": {"speed": 3.72, "deg": 135.501}, "weather": {"pressure": 934.18, "temp_min": 290.695, "temp_max": 290.695, "temp": 290.695, "humidity": 95}, "state": "Jacaraci", "coord": {"lat": -14.85, "lon": -42.43}},
{"wind": {"speed": 4.02, "deg": 144.001}, "weather": {"pressure": 949.34, "temp_min": 290.645, "temp_max": 290.645, "temp": 290.645, "humidity": 96}, "state": "Jacobina", "coord": {"lat": -11.18, "lon": -40.52}},
{"wind": {"speed": 2.32, "deg": 135.001}, "weather": {"pressure": 979.9, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 97}, "state": "Jaguaquara", "coord": {"lat": -13.53, "lon": -39.97}},
{"wind": {"speed": 5.37, "deg": 142.501}, "weather": {"pressure": 956.96, "temp_min": 295.045, "temp_max": 295.045, "temp": 295.045, "humidity": 78}, "state": "Jaguarari", "coord": {"lat": -10.26, "lon": -40.2}},
{"wind": {"speed": 3.82, "deg": 150.001}, "weather": {"pressure": 1018.81, "temp_min": 298.645, "temp_max": 298.645, "temp": 298.645, "humidity": 75}, "state": "Jaguaripe", "coord": {"lat": -12.92, "lon": -39.17}},
{"wind": {"speed": 3.32, "deg": 157.001}, "weather": {"pressure": 1012.97, "temp_min": 296.545, "temp_max": 296.545, "temp": 296.545, "humidity": 95}, "state": "Cristinapolis", "coord": {"lat": -11.48, "lon": -37.76}},
{"wind": {"speed": 2.32, "deg": 135.001}, "weather": {"pressure": 979.9, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 97}, "state": "Jequie", "coord": {"lat": -13.86, "lon": -40.08}},
{"wind": {"speed": 2.52, "deg": 154.001}, "weather": {"pressure": 985.25, "temp_min": 294.045, "temp_max": 294.045, "temp": 294.045, "humidity": 98}, "state": "Jeremoabo", "coord": {"lat": -10.07, "lon": -38.48}},
{"wind": {"speed": 2.97, "deg": 165.501}, "weather": {"pressure": 982.41, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 96}, "state": "Jiquiriça", "coord": {"lat": -13.26, "lon": -39.57}},
{"wind": {"speed": 2.07, "deg": 170.501}, "weather": {"pressure": 996.19, "temp_min": 294.245, "temp_max": 294.245, "temp": 294.245, "humidity": 97}, "state": "Jitauna", "coord": {"lat": -14.02, "lon": -39.89}},
{"wind": {"speed": 3.62, "deg": 110.501}, "weather": {"pressure": 943.51, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 89}, "state": "Lapao", "coord": {"lat": -11.38, "lon": -41.83}},
{"wind": {"speed": 4.1, "deg": 170}, "weather": {"pressure": 1015, "temp_min": 298.15, "temp_max": 298.15, "temp": 298.15, "humidity": 53}, "state": "Juazeiro", "coord": {"lat": -9.41, "lon": -40.5}},
{"wind": {"speed": 1.62, "deg": 169.001}, "weather": {"pressure": 975.2, "temp_min": 292.845, "temp_max": 292.845, "temp": 292.845, "humidity": 97}, "state": "Palmópolis", "coord": {"lat": -16.74, "lon": -40.42}},
{"wind": {"speed": 1.5, "deg": 110}, "weather": {"pressure": 1021, "temp_min": 288.15, "temp_max": 288.15, "temp": 288.15, "humidity": 82}, "state": "Jussara", "coord": {"lat": -23.62, "lon": -52.47}},
{"wind": {"speed": 1.47, "deg": 194.001}, "weather": {"pressure": 1006.73, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Arataca", "coord": {"lat": -15.26, "lon": -39.41}},
{"wind": {"speed": 3.22, "deg": 100.501}, "weather": {"pressure": 954.85, "temp_min": 292.195, "temp_max": 292.195, "temp": 292.195, "humidity": 95}, "state": "Rio de Contas", "coord": {"lat": -13.58, "lon": -41.81}},
{"wind": {"speed": 2.32, "deg": 135.001}, "weather": {"pressure": 979.9, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 97}, "state": "Itiruc", "coord": {"lat": -13.53, "lon": -40.15}},
{"wind": {"speed": 3.02, "deg": 87.5011}, "weather": {"pressure": 961.66, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 97}, "state": "Irundiara", "coord": {"lat": -14.28, "lon": -42.28}},
{"wind": {"speed": 4.32, "deg": 143.001}, "weather": {"pressure": 956.72, "temp_min": 295.645, "temp_max": 295.645, "temp": 295.645, "humidity": 70}, "state": "Laje", "coord": {"lat": -10.18, "lon": -40.97}},
{"wind": {"speed": 4.57, "deg": 168.501}, "weather": {"pressure": 1016.14, "temp_min": 294.395, "temp_max": 294.395, "temp": 294.395, "humidity": 98}, "state": "Nanuque", "coord": {"lat": -17.84, "lon": -40.35}},
{"wind": {"speed": 1.87, "deg": 119.501}, "weather": {"pressure": 975.36, "temp_min": 293.145, "temp_max": 293.145, "temp": 293.145, "humidity": 95}, "state": "Terra Nova", "coord": {"lat": -12.37, "lon": -40.67}},
{"wind": {"speed": 2.32, "deg": 135.001}, "weather": {"pressure": 979.9, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 97}, "state": "Itiruc", "coord": {"lat": -13.53, "lon": -40.15}},
{"wind": {"speed": 5.12, "deg": 157.001}, "weather": {"pressure": 993.44, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 78}, "state": "Serrinha", "coord": {"lat": -11.66, "lon": -39.01}},
{"wind": {"speed": 3.62, "deg": 110.501}, "weather": {"pressure": 943.51, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 89}, "state": "Lapao", "coord": {"lat": -11.38, "lon": -41.83}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Lauro de Freitas", "coord": {"lat": -12.89, "lon": -38.33}},
{"wind": {"speed": 3.27, "deg": 130.501}, "weather": {"pressure": 949.26, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 95}, "state": "Lençóis", "coord": {"lat": -12.56, "lon": -41.39}},
{"wind": {"speed": 3.17, "deg": 105.001}, "weather": {"pressure": 948.13, "temp_min": 291.895, "temp_max": 291.895, "temp": 291.895, "humidity": 92}, "state": "Licínio de Almeida", "coord": {"lat": -14.68, "lon": -42.51}},
{"wind": {"speed": 3.22, "deg": 100.501}, "weather": {"pressure": 954.85, "temp_min": 292.195, "temp_max": 292.195, "temp": 292.195, "humidity": 95}, "state": "Livramento do Brumado", "coord": {"lat": -13.64, "lon": -41.84}},
{"wind": {"speed": 5.92, "deg": 98.0011}, "weather": {"pressure": 938.24, "temp_min": 294.145, "temp_max": 294.145, "temp": 294.145, "humidity": 63}, "state": "Taguatinga", "coord": {"lat": -12.4, "lon": -46.44}},
{"wind": {"speed": 1.87, "deg": 149.501}, "weather": {"pressure": 980.79, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 95}, "state": "Baixa Grande", "coord": {"lat": -11.96, "lon": -40.17}},
{"wind": {"speed": 1.92, "deg": 141.001}, "weather": {"pressure": 984.2, "temp_min": 294.095, "temp_max": 294.095, "temp": 294.095, "humidity": 96}, "state": "Macarani", "coord": {"lat": -15.57, "lon": -40.42}},
{"wind": {"speed": 1.32, "deg": 122.001}, "weather": {"pressure": 948.61, "temp_min": 291.795, "temp_max": 291.795, "temp": 291.795, "humidity": 96}, "state": "Macaubas", "coord": {"lat": -13.02, "lon": -42.7}},
{"wind": {"speed": 3.87, "deg": 143.001}, "weather": {"pressure": 984.93, "temp_min": 295.545, "temp_max": 295.545, "temp": 295.545, "humidity": 90}, "state": "Belem de Sao Francisco", "coord": {"lat": -8.75, "lon": -38.97}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Madre de Deus", "coord": {"lat": -12.74, "lon": -38.62}},
{"wind": {"speed": 2.57, "deg": 87.5011}, "weather": {"pressure": 963.77, "temp_min": 291.895, "temp_max": 291.895, "temp": 291.895, "humidity": 97}, "state": "Maetinga", "coord": {"lat": -14.66, "lon": -41.49}},
{"wind": {"speed": 1.92, "deg": 141.001}, "weather": {"pressure": 984.2, "temp_min": 294.095, "temp_max": 294.095, "temp": 294.095, "humidity": 96}, "state": "Maiquinique", "coord": {"lat": -15.62, "lon": -40.27}},
{"wind": {"speed": 1.87, "deg": 149.501}, "weather": {"pressure": 980.79, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 95}, "state": "Mairi", "coord": {"lat": -11.71, "lon": -40.15}},
{"wind": {"speed": 3.02, "deg": 226.501}, "weather": {"pressure": 996.6, "temp_min": 284.495, "temp_max": 284.495, "temp": 284.495, "humidity": 95}, "state": "Mealhada", "coord": {"lat": 40.38, "lon": -8.45}},
{"wind": {"speed": 3.02, "deg": 87.5011}, "weather": {"pressure": 961.66, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 97}, "state": "Santana", "coord": {"lat": -14.47, "lon": -41.8}},
{"wind": {"speed": 1.62, "deg": 131.001}, "weather": {"pressure": 963.2, "temp_min": 292.145, "temp_max": 292.145, "temp": 292.145, "humidity": 94}, "state": "Itagi", "coord": {"lat": -14.16, "lon": -40.01}},
{"wind": {"speed": 4.92, "deg": 95.5011}, "weather": {"pressure": 966.45, "temp_min": 295.995, "temp_max": 295.995, "temp": 295.995, "humidity": 70}, "state": "Buritirama", "coord": {"lat": -10.71, "lon": -43.63}},
{"wind": {"speed": 2.87, "deg": 136.001}, "weather": {"pressure": 952.42, "temp_min": 292.845, "temp_max": 292.845, "temp": 292.845, "humidity": 96}, "state": "Maracas", "coord": {"lat": -13.44, "lon": -40.43}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Maragogipe", "coord": {"lat": -12.78, "lon": -38.92}},
{"wind": {"speed": 3.72, "deg": 139.001}, "weather": {"pressure": 1025.46, "temp_min": 299.645, "temp_max": 299.645, "temp": 299.645, "humidity": 86}, "state": "Mara", "coord": {"lat": -14.1, "lon": -39.01}},
{"wind": {"speed": 2.57, "deg": 122.001}, "weather": {"pressure": 995.63, "temp_min": 293.745, "temp_max": 293.745, "temp": 293.745, "humidity": 93}, "state": "Iac", "coord": {"lat": -12.77, "lon": -40.21}},
{"wind": {"speed": 1.87, "deg": 162.001}, "weather": {"pressure": 1027, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 100}, "state": "Mascote", "coord": {"lat": -15.56, "lon": -39.3}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Mata de Sao Joao", "coord": {"lat": -12.53, "lon": -38.3}},
{"wind": {"speed": 0.97, "deg": 222.501}, "weather": {"pressure": 1006.08, "temp_min": 297.645, "temp_max": 297.645, "temp": 297.645, "humidity": 96}, "state": "Matina", "coord": {"lat": 10.08, "lon": -83.29}},
{"wind": {"speed": 2.67, "deg": 149.001}, "weather": {"pressure": 1004.06, "temp_min": 293.895, "temp_max": 293.895, "temp": 293.895, "humidity": 98}, "state": "Medeiros Neto", "coord": {"lat": -17.37, "lon": -40.22}},
{"wind": {"speed": 4.02, "deg": 144.001}, "weather": {"pressure": 949.34, "temp_min": 290.645, "temp_max": 290.645, "temp": 290.645, "humidity": 96}, "state": "Miguel Calmon", "coord": {"lat": -11.43, "lon": -40.6}},
{"wind": {"speed": 2.42, "deg": 150.001}, "weather": {"pressure": 974.23, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 94}, "state": "Milagres", "coord": {"lat": -7.31, "lon": -38.95}},
{"wind": {"speed": 4.77, "deg": 138.501}, "weather": {"pressure": 952.67, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 86}, "state": "Mirangaba", "coord": {"lat": -10.95, "lon": -40.58}},
{"wind": {"speed": 1.62, "deg": 131.001}, "weather": {"pressure": 963.2, "temp_min": 292.145, "temp_max": 292.145, "temp": 292.145, "humidity": 94}, "state": "Pocoes", "coord": {"lat": -14.53, "lon": -40.37}},
{"wind": {"speed": 4.57, "deg": 155.501}, "weather": {"pressure": 972.69, "temp_min": 294.245, "temp_max": 294.245, "temp": 294.245, "humidity": 96}, "state": "Monte Santo", "coord": {"lat": -10.44, "lon": -39.33}},
{"wind": {"speed": 5.37, "deg": 97.0011}, "weather": {"pressure": 974.47, "temp_min": 296.895, "temp_max": 296.895, "temp": 296.895, "humidity": 69}, "state": "Barra", "coord": {"lat": -11.09, "lon": -43.14}},
{"wind": {"speed": 4.92, "deg": 118.501}, "weather": {"pressure": 940.26, "temp_min": 291.045, "temp_max": 291.045, "temp": 291.045, "humidity": 92}, "state": "Morro do Chape", "coord": {"lat": -11.55, "lon": -41.16}},
{"wind": {"speed": 3.72, "deg": 135.501}, "weather": {"pressure": 934.18, "temp_min": 290.695, "temp_max": 290.695, "temp": 290.695, "humidity": 95}, "state": "Mortugaba", "coord": {"lat": -15.02, "lon": -42.37}},
{"wind": {"speed": 1.62, "deg": 180.501}, "weather": {"pressure": 973.09, "temp_min": 291.295, "temp_max": 291.295, "temp": 291.295, "humidity": 98}, "state": "Itaeté", "coord": {"lat": -12.99, "lon": -40.97}},
{"wind": {"speed": 6.62, "deg": 178.001}, "weather": {"pressure": 1028.54, "temp_min": 295.745, "temp_max": 295.745, "temp": 295.745, "humidity": 100}, "state": "Mucuri", "coord": {"lat": -18.09, "lon": -39.55}},
{"wind": {"speed": 3.57, "deg": 108.501}, "weather": {"pressure": 934.18, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 99}, "state": "Iraquara", "coord": {"lat": -12.25, "lon": -41.62}},
{"wind": {"speed": 1.87, "deg": 149.501}, "weather": {"pressure": 980.79, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 95}, "state": "Mundo Novo", "coord": {"lat": -11.86, "lon": -40.47}},
{"wind": {"speed": 3.82, "deg": 150.001}, "weather": {"pressure": 1018.81, "temp_min": 298.645, "temp_max": 298.645, "temp": 298.645, "humidity": 75}, "state": "Muniz Ferreira", "coord": {"lat": -13, "lon": -39.11}},
{"wind": {"speed": 3.62, "deg": 118.501}, "weather": {"pressure": 969.93, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 82}, "state": "Ibotirama", "coord": {"lat": -12.19, "lon": -43.22}},
{"wind": {"speed": 3.82, "deg": 150.001}, "weather": {"pressure": 1018.81, "temp_min": 298.645, "temp_max": 298.645, "temp": 298.645, "humidity": 75}, "state": "Muritiba", "coord": {"lat": -12.92, "lon": -39.25}},
{"wind": {"speed": 2.97, "deg": 165.501}, "weather": {"pressure": 982.41, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 96}, "state": "Mutuipe", "coord": {"lat": -13.23, "lon": -39.5}},
{"wind": {"speed": 1.87, "deg": 167.001}, "weather": {"pressure": 1022.06, "temp_min": 299.795, "temp_max": 299.795, "temp": 299.795, "humidity": 100}, "state": "Nazaré", "coord": {"lat": 0.37, "lon": 6.72}},
{"wind": {"speed": 4.67, "deg": 140.001}, "weather": {"pressure": 1023.76, "temp_min": 299.895, "temp_max": 299.895, "temp": 299.895, "humidity": 78}, "state": "Taperoa", "coord": {"lat": -13.54, "lon": -39.1}},
{"wind": {"speed": 4.77, "deg": 149.501}, "weather": {"pressure": 988.41, "temp_min": 295.795, "temp_max": 295.795, "temp": 295.795, "humidity": 77}, "state": "Cansanção", "coord": {"lat": -10.67, "lon": -39.5}},
{"wind": {"speed": 1.42, "deg": 142.501}, "weather": {"pressure": 981.04, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 93}, "state": "Iguai", "coord": {"lat": -14.76, "lon": -40.09}},
{"wind": {"speed": 3.1, "deg": 140}, "weather": {"pressure": 1023, "temp_min": 288.15, "temp_max": 288.15, "temp": 288.15, "humidity": 87}, "state": "Nova Fátima", "coord": {"lat": -23.43, "lon": -50.56}},
{"wind": {"speed": 2.07, "deg": 170.501}, "weather": {"pressure": 996.19, "temp_min": 294.245, "temp_max": 294.245, "temp": 294.245, "humidity": 97}, "state": "Rua do Arco", "coord": {"lat": -13.8, "lon": -39.58}},
{"wind": {"speed": 2.97, "deg": 165.501}, "weather": {"pressure": 982.41, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 96}, "state": "Santa Ines", "coord": {"lat": -13.29, "lon": -39.82}},
{"wind": {"speed": 1.87, "deg": 119.501}, "weather": {"pressure": 975.36, "temp_min": 293.145, "temp_max": 293.145, "temp": 293.145, "humidity": 95}, "state": "Vera Cruz", "coord": {"lat": -12.63, "lon": -41.03}},
{"wind": {"speed": 4.22, "deg": 160.001}, "weather": {"pressure": 1003.17, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 93}, "state": "Nova Soure", "coord": {"lat": -11.23, "lon": -38.48}},
{"wind": {"speed": 6.62, "deg": 178.001}, "weather": {"pressure": 1028.54, "temp_min": 295.745, "temp_max": 295.745, "temp": 295.745, "humidity": 100}, "state": "Nova Vicosa", "coord": {"lat": -17.89, "lon": -39.37}},
{"wind": {"speed": 6.47, "deg": 117.501}, "weather": {"pressure": 979.5, "temp_min": 292.395, "temp_max": 292.395, "temp": 292.395, "humidity": 88}, "state": "Novo Horizonte", "coord": {"lat": -21.47, "lon": -49.22}},
{"wind": {"speed": 2.52, "deg": 154.001}, "weather": {"pressure": 985.25, "temp_min": 294.045, "temp_max": 294.045, "temp": 294.045, "humidity": 98}, "state": "Antas", "coord": {"lat": -10.4, "lon": -38.33}},
{"wind": {"speed": 4.22, "deg": 160.001}, "weather": {"pressure": 1003.17, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 93}, "state": "Olindina", "coord": {"lat": -11.37, "lon": -38.33}},
{"wind": {"speed": 3.02, "deg": 112.501}, "weather": {"pressure": 958.26, "temp_min": 291.795, "temp_max": 291.795, "temp": 291.795, "humidity": 91}, "state": "Oliveira dos Brejinhos", "coord": {"lat": -12.32, "lon": -42.9}},
{"wind": {"speed": 3.12, "deg": 159.001}, "weather": {"pressure": 1006.25, "temp_min": 295.295, "temp_max": 295.295, "temp": 295.295, "humidity": 91}, "state": "Ouriçangas", "coord": {"lat": -12.02, "lon": -38.62}},
{"wind": {"speed": 4.77, "deg": 138.501}, "weather": {"pressure": 952.67, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 86}, "state": "Mirangaba", "coord": {"lat": -10.95, "lon": -40.58}},
{"wind": {"speed": 3.97, "deg": 108.501}, "weather": {"pressure": 966.61, "temp_min": 293.395, "temp_max": 293.395, "temp": 293.395, "humidity": 83}, "state": "Palmas de Monte Alto", "coord": {"lat": -14.27, "lon": -43.16}},
{"wind": {"speed": 2.1, "deg": 90}, "weather": {"pressure": 1020, "temp_min": 291.15, "temp_max": 291.15, "temp": 291.15, "humidity": 93}, "state": "Palmeiras", "coord": {"lat": -21.13, "lon": -47.75}},
{"wind": {"speed": 2.97, "deg": 108.001}, "weather": {"pressure": 925.35, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Paramirim", "coord": {"lat": -13.44, "lon": -42.24}},
{"wind": {"speed": 3.62, "deg": 107.501}, "weather": {"pressure": 967.99, "temp_min": 294.195, "temp_max": 294.195, "temp": 294.195, "humidity": 85}, "state": "Paratinga", "coord": {"lat": -12.69, "lon": -43.18}},
{"wind": {"speed": 2.52, "deg": 155.501}, "weather": {"pressure": 996.52, "temp_min": 294.945, "temp_max": 294.945, "temp": 294.945, "humidity": 98}, "state": "Paripiranga", "coord": {"lat": -10.69, "lon": -37.86}},
{"wind": {"speed": 2.57, "deg": 172.001}, "weather": {"pressure": 1007.87, "temp_min": 294.695, "temp_max": 294.695, "temp": 294.695, "humidity": 96}, "state": "Pau Brasil", "coord": {"lat": -15.46, "lon": -39.65}},
{"wind": {"speed": 3.22, "deg": 148.001}, "weather": {"pressure": 996.52, "temp_min": 295.445, "temp_max": 295.445, "temp": 295.445, "humidity": 93}, "state": "Paulo Afonso", "coord": {"lat": -9.41, "lon": -38.21}},
{"wind": {"speed": 2.12, "deg": 166.501}, "weather": {"pressure": 992.71, "temp_min": 292.295, "temp_max": 292.295, "temp": 292.295, "humidity": 96}, "state": "Riachao do Jacuipe", "coord": {"lat": -11.81, "lon": -39.39}},
{"wind": {"speed": 3.47, "deg": 156.501}, "weather": {"pressure": 1000.41, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 88}, "state": "Sítio do Martins", "coord": {"lat": -12.23, "lon": -38.75}},
{"wind": {"speed": 3.32, "deg": 161.001}, "weather": {"pressure": 995.22, "temp_min": 294.945, "temp_max": 294.945, "temp": 294.945, "humidity": 96}, "state": "Monte Alegre de Sergipe", "coord": {"lat": -10.03, "lon": -37.56}},
{"wind": {"speed": 3.22, "deg": 100.501}, "weather": {"pressure": 954.85, "temp_min": 292.195, "temp_max": 292.195, "temp": 292.195, "humidity": 95}, "state": "Rio de Contas", "coord": {"lat": -13.58, "lon": -41.81}},
{"wind": {"speed": 7.07, "deg": 118.501}, "weather": {"pressure": 977.47, "temp_min": 297.545, "temp_max": 297.545, "temp": 297.545, "humidity": 84}, "state": "Poção de Pedras", "coord": {"lat": -10.13, "lon": -42.43}},
{"wind": {"speed": 3.17, "deg": 105.001}, "weather": {"pressure": 948.13, "temp_min": 291.895, "temp_max": 291.895, "temp": 291.895, "humidity": 92}, "state": "Pindaí", "coord": {"lat": -14.49, "lon": -42.69}},
{"wind": {"speed": 4.77, "deg": 154.001}, "weather": {"pressure": 971.15, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 76}, "state": "Pindobac", "coord": {"lat": -10.74, "lon": -40.36}},
{"wind": {"speed": 1.87, "deg": 149.501}, "weather": {"pressure": 980.79, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 95}, "state": "Pintadas", "coord": {"lat": -11.81, "lon": -39.91}},
{"wind": {"speed": 2.07, "deg": 170.501}, "weather": {"pressure": 996.19, "temp_min": 294.245, "temp_max": 294.245, "temp": 294.245, "humidity": 97}, "state": "Gand", "coord": {"lat": -13.74, "lon": -39.49}},
{"wind": {"speed": 3.52, "deg": 151.001}, "weather": {"pressure": 940.75, "temp_min": 291.645, "temp_max": 291.645, "temp": 291.645, "humidity": 97}, "state": "Condeúba", "coord": {"lat": -14.9, "lon": -41.97}},
{"wind": {"speed": 3.72, "deg": 121.501}, "weather": {"pressure": 960.29, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 97}, "state": "Piritiba", "coord": {"lat": -11.73, "lon": -40.56}},
{"wind": {"speed": 3.1, "deg": 150}, "weather": {"pressure": 1021, "temp_min": 292.15, "temp_max": 292.15, "temp": 292.15, "humidity": 88}, "state": "Bom Sucesso", "coord": {"lat": -15.52, "lon": -47.63}},
{"wind": {"speed": 1.72, "deg": 105.001}, "weather": {"pressure": 972.44, "temp_min": 279.845, "temp_max": 279.845, "temp": 279.845, "humidity": 79}, "state": "Planalto", "coord": {"lat": -27.33, "lon": -53.06}},
{"wind": {"speed": 1.62, "deg": 131.001}, "weather": {"pressure": 963.2, "temp_min": 292.145, "temp_max": 292.145, "temp": 292.145, "humidity": 94}, "state": "Pocoes", "coord": {"lat": -14.53, "lon": -40.37}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Sapé", "coord": {"lat": -12.38, "lon": -38.35}},
{"wind": {"speed": 4.77, "deg": 154.001}, "weather": {"pressure": 971.15, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 76}, "state": "Ponto Novo", "coord": {"lat": -10.86, "lon": -40.13}},
{"wind": {"speed": 2.1, "deg": 250}, "weather": {"pressure": 1017, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 100}, "state": "Porto Seguro", "coord": {"lat": -16.45, "lon": -39.06}},
{"wind": {"speed": 2.57, "deg": 172.001}, "weather": {"pressure": 1007.87, "temp_min": 294.695, "temp_max": 294.695, "temp": 294.695, "humidity": 96}, "state": "Potiraguá", "coord": {"lat": -15.59, "lon": -39.88}},
{"wind": {"speed": 6.12, "deg": 193.501}, "weather": {"pressure": 1030.32, "temp_min": 297.745, "temp_max": 297.745, "temp": 297.745, "humidity": 100}, "state": "Prado", "coord": {"lat": -17.34, "lon": -39.22}},
{"wind": {"speed": 0.97, "deg": 7.5011}, "weather": {"pressure": 1006, "temp_min": 294.145, "temp_max": 294.145, "temp": 294.145, "humidity": 95}, "state": "Presidente Dutra", "coord": {"lat": -5.29, "lon": -44.49}},
{"wind": {"speed": 2.57, "deg": 87.5011}, "weather": {"pressure": 963.77, "temp_min": 291.895, "temp_max": 291.895, "temp": 291.895, "humidity": 97}, "state": "Maetinga", "coord": {"lat": -14.66, "lon": -41.49}},
{"wind": {"speed": 2.97, "deg": 165.501}, "weather": {"pressure": 982.41, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 96}, "state": "Mutuipe", "coord": {"lat": -13.23, "lon": -39.5}},
{"wind": {"speed": 4.77, "deg": 149.501}, "weather": {"pressure": 988.41, "temp_min": 295.795, "temp_max": 295.795, "temp": 295.795, "humidity": 77}, "state": "Queimadas", "coord": {"lat": -10.98, "lon": -39.63}},
{"wind": {"speed": 3.17, "deg": 164.001}, "weather": {"pressure": 988.98, "temp_min": 294.595, "temp_max": 294.595, "temp": 294.595, "humidity": 96}, "state": "Quijingue", "coord": {"lat": -10.75, "lon": -39.21}},
{"wind": {"speed": 3.22, "deg": 161.001}, "weather": {"pressure": 972.28, "temp_min": 292.495, "temp_max": 292.495, "temp": 292.495, "humidity": 91}, "state": "Capim Grosso", "coord": {"lat": -11.38, "lon": -40.01}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Santo Estevao", "coord": {"lat": -12.43, "lon": -39.25}},
{"wind": {"speed": 6.92, "deg": 127.001}, "weather": {"pressure": 975.36, "temp_min": 298.395, "temp_max": 298.395, "temp": 298.395, "humidity": 96}, "state": "Aldeia", "coord": {"lat": -9.72, "lon": -42.07}},
{"wind": {"speed": 4.27, "deg": 158.001}, "weather": {"pressure": 982.33, "temp_min": 294.045, "temp_max": 294.045, "temp": 294.045, "humidity": 82}, "state": "Valente", "coord": {"lat": -11.41, "lon": -39.46}},
{"wind": {"speed": 2.32, "deg": 107.501}, "weather": {"pressure": 960.53, "temp_min": 291.545, "temp_max": 291.545, "temp": 291.545, "humidity": 82}, "state": "Riachao das Neves", "coord": {"lat": -11.75, "lon": -44.91}},
{"wind": {"speed": 2.12, "deg": 166.501}, "weather": {"pressure": 992.71, "temp_min": 292.295, "temp_max": 292.295, "temp": 292.295, "humidity": 96}, "state": "Riachao do Jacuipe", "coord": {"lat": -11.81, "lon": -39.39}},
{"wind": {"speed": 4.17, "deg": 108.501}, "weather": {"pressure": 970.9, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 82}, "state": "Riacho de Santana", "coord": {"lat": -13.61, "lon": -42.94}},
{"wind": {"speed": 4.22, "deg": 160.001}, "weather": {"pressure": 1003.17, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 93}, "state": "Cipo", "coord": {"lat": -11.1, "lon": -38.51}},
{"wind": {"speed": 3.22, "deg": 170.501}, "weather": {"pressure": 990.52, "temp_min": 295.145, "temp_max": 295.145, "temp": 295.145, "humidity": 97}, "state": "Ribeira do Pombal", "coord": {"lat": -10.83, "lon": -38.54}},
{"wind": {"speed": 1.82, "deg": 96.5011}, "weather": {"pressure": 952.83, "temp_min": 292.545, "temp_max": 292.545, "temp": 292.545, "humidity": 100}, "state": "Serra", "coord": {"lat": -15.45, "lon": -40.72}},
{"wind": {"speed": 3.22, "deg": 100.501}, "weather": {"pressure": 954.85, "temp_min": 292.195, "temp_max": 292.195, "temp": 292.195, "humidity": 95}, "state": "Rio de Contas", "coord": {"lat": -13.58, "lon": -41.81}},
{"wind": {"speed": 3.02, "deg": 87.5011}, "weather": {"pressure": 961.66, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 97}, "state": "Cacule", "coord": {"lat": -14.5, "lon": -42.22}},
{"wind": {"speed": 2.97, "deg": 108.001}, "weather": {"pressure": 925.35, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Paramirim", "coord": {"lat": -13.44, "lon": -42.24}},
{"wind": {"speed": 3.32, "deg": 157.001}, "weather": {"pressure": 1012.97, "temp_min": 296.545, "temp_max": 296.545, "temp": 296.545, "humidity": 95}, "state": "Rio Real", "coord": {"lat": -11.48, "lon": -37.93}},
{"wind": {"speed": 3.87, "deg": 143.001}, "weather": {"pressure": 984.93, "temp_min": 295.545, "temp_max": 295.545, "temp": 295.545, "humidity": 90}, "state": "Rodelas", "coord": {"lat": -8.85, "lon": -38.77}},
{"wind": {"speed": 1.87, "deg": 149.501}, "weather": {"pressure": 980.79, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 95}, "state": "Ruy Barbosa", "coord": {"lat": -12.28, "lon": -40.49}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Itaparica", "coord": {"lat": -12.89, "lon": -38.68}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Salvador", "coord": {"lat": -12.97, "lon": -38.51}},
{"wind": {"speed": 3.1, "deg": 90}, "weather": {"pressure": 1023, "temp_min": 290.15, "temp_max": 292.15, "temp": 291.09, "humidity": 77}, "state": "Santa Bárbara", "coord": {"lat": -19.96, "lon": -43.42}},
{"wind": {"speed": 3.22, "deg": 148.001}, "weather": {"pressure": 996.52, "temp_min": 295.445, "temp_max": 295.445, "temp": 295.445, "humidity": 93}, "state": "Santa Brígida", "coord": {"lat": -9.74, "lon": -38.13}},
{"wind": {"speed": 2.1, "deg": 250}, "weather": {"pressure": 1017, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 100}, "state": "Santa Cruz Cabrália", "coord": {"lat": -16.28, "lon": -39.17}},
{"wind": {"speed": 1.47, "deg": 194.001}, "weather": {"pressure": 1006.73, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Floresta Azul", "coord": {"lat": -14.86, "lon": -39.66}},
{"wind": {"speed": 1.42, "deg": 331.501}, "weather": {"pressure": 1018.81, "temp_min": 295.595, "temp_max": 295.595, "temp": 295.595, "humidity": 99}, "state": "Santa Ines", "coord": {"lat": -3.67, "lon": -45.38}},
{"wind": {"speed": 3.1, "deg": 90}, "weather": {"pressure": 1023, "temp_min": 290.15, "temp_max": 292.15, "temp": 290.98, "humidity": 77}, "state": "Santa Luzia", "coord": {"lat": -19.77, "lon": -43.85}},
{"wind": {"speed": 4.02, "deg": 100.001}, "weather": {"pressure": 955.1, "temp_min": 293.395, "temp_max": 293.395, "temp": 293.395, "humidity": 77}, "state": "Santa Maria da Vitoria", "coord": {"lat": -13.39, "lon": -44.19}},
{"wind": {"speed": 3.57, "deg": 136.501}, "weather": {"pressure": 964.99, "temp_min": 295.145, "temp_max": 295.145, "temp": 295.145, "humidity": 58}, "state": "Morrinhos", "coord": {"lat": -11.03, "lon": -45.05}},
{"wind": {"speed": 1.97, "deg": 153.501}, "weather": {"pressure": 957.12, "temp_min": 291.295, "temp_max": 291.295, "temp": 291.295, "humidity": 95}, "state": "Santa Teresinha", "coord": {"lat": -7.04, "lon": -37.45}},
{"wind": {"speed": 4.27, "deg": 158.001}, "weather": {"pressure": 982.33, "temp_min": 294.045, "temp_max": 294.045, "temp": 294.045, "humidity": 82}, "state": "Santaluz", "coord": {"lat": -11.26, "lon": -39.37}},
{"wind": {"speed": 2.1, "deg": 40}, "weather": {"pressure": 1013, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 100}, "state": "Santana", "coord": {"lat": -0.06, "lon": -51.18}},
{"wind": {"speed": 3.47, "deg": 156.501}, "weather": {"pressure": 1000.41, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 88}, "state": "Irara", "coord": {"lat": -12.05, "lon": -38.77}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Santo Amaro", "coord": {"lat": -12.55, "lon": -38.71}},
{"wind": {"speed": 3.82, "deg": 150.001}, "weather": {"pressure": 1018.81, "temp_min": 298.645, "temp_max": 298.645, "temp": 298.645, "humidity": 75}, "state": "Santo Antonio de Jesus", "coord": {"lat": -12.97, "lon": -39.26}},
{"wind": {"speed": 8.7, "deg": 220}, "weather": {"pressure": 1012, "temp_min": 278.15, "temp_max": 288.15, "temp": 283.02, "humidity": 77}, "state": "Santo Estevão", "coord": {"lat": 38.86, "lon": -8.74}},
{"wind": {"speed": 5.32, "deg": 108.001}, "weather": {"pressure": 949.67, "temp_min": 294.345, "temp_max": 294.345, "temp": 294.345, "humidity": 68}, "state": "Sao Desiderio", "coord": {"lat": -12.36, "lon": -44.97}},
{"wind": {"speed": 5.1, "deg": 60}, "weather": {"pressure": 1022, "temp_min": 279.15, "temp_max": 279.15, "temp": 279.15, "humidity": 83}, "state": "São Domingos", "coord": {"lat": -26.56, "lon": -52.53}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Sobradinho", "coord": {"lat": -12.83, "lon": -39.1}},
{"wind": {"speed": 4.02, "deg": 224.501}, "weather": {"pressure": 950.15, "temp_min": 281.545, "temp_max": 281.545, "temp": 281.545, "humidity": 99}, "state": "São Félix", "coord": {"lat": 40.79, "lon": -8.06}},
{"wind": {"speed": 4.02, "deg": 100.001}, "weather": {"pressure": 955.1, "temp_min": 293.395, "temp_max": 293.395, "temp": 293.395, "humidity": 77}, "state": "Santa Maria da Vitoria", "coord": {"lat": -13.39, "lon": -44.19}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Sao Francisco do Conde", "coord": {"lat": -12.63, "lon": -38.68}},
{"wind": {"speed": 1.27, "deg": 107.501}, "weather": {"pressure": 1020.52, "temp_min": 279.445, "temp_max": 279.445, "temp": 279.445, "humidity": 75}, "state": "Sao Gabriel", "coord": {"lat": -30.34, "lon": -54.32}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Cedro", "coord": {"lat": -12.42, "lon": -38.95}},
{"wind": {"speed": 3.42, "deg": 148.501}, "weather": {"pressure": 1026.51, "temp_min": 298.495, "temp_max": 298.495, "temp": 298.495, "humidity": 100}, "state": "Buerarema", "coord": {"lat": -14.96, "lon": -39.3}},
{"wind": {"speed": 3.22, "deg": 161.001}, "weather": {"pressure": 972.28, "temp_min": 292.495, "temp_max": 292.495, "temp": 292.495, "humidity": 91}, "state": "Capim Grosso", "coord": {"lat": -11.38, "lon": -40.01}},
{"wind": {"speed": 2.97, "deg": 165.501}, "weather": {"pressure": 982.41, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 96}, "state": "Varzedo", "coord": {"lat": -12.97, "lon": -39.39}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Sao Sebastiao do Passe", "coord": {"lat": -12.51, "lon": -38.5}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Touro", "coord": {"lat": -12.73, "lon": -39.22}},
{"wind": {"speed": 4.22, "deg": 160.001}, "weather": {"pressure": 1003.17, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 93}, "state": "Sátiro Dias", "coord": {"lat": -11.6, "lon": -38.6}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Saubara", "coord": {"lat": -12.74, "lon": -38.77}},
{"wind": {"speed": 3.6, "deg": 140}, "weather": {"pressure": 1025, "temp_min": 288.15, "temp_max": 288.15, "temp": 288.15, "humidity": 87}, "state": "Ibirapuera", "coord": {"lat": -23.6, "lon": -46.63}},
{"wind": {"speed": 4.47, "deg": 111.501}, "weather": {"pressure": 914.41, "temp_min": 291.145, "temp_max": 291.145, "temp": 291.145, "humidity": 91}, "state": "Seabra", "coord": {"lat": -12.42, "lon": -41.77}},
{"wind": {"speed": 3.17, "deg": 105.001}, "weather": {"pressure": 948.13, "temp_min": 291.895, "temp_max": 291.895, "temp": 291.895, "humidity": 92}, "state": "Pindaí", "coord": {"lat": -14.49, "lon": -42.69}},
{"wind": {"speed": 5.37, "deg": 142.501}, "weather": {"pressure": 956.96, "temp_min": 295.045, "temp_max": 295.045, "temp": 295.045, "humidity": 78}, "state": "Senhor do Bonfim", "coord": {"lat": -10.46, "lon": -40.19}},
{"wind": {"speed": 6.92, "deg": 127.001}, "weather": {"pressure": 975.36, "temp_min": 298.395, "temp_max": 298.395, "temp": 298.395, "humidity": 96}, "state": "Aldeia", "coord": {"lat": -9.72, "lon": -42.07}},
{"wind": {"speed": 3.37, "deg": 112.501}, "weather": {"pressure": 969.36, "temp_min": 293.295, "temp_max": 293.295, "temp": 293.295, "humidity": 85}, "state": "Bom Jesus da Lapa", "coord": {"lat": -13.26, "lon": -43.42}},
{"wind": {"speed": 4.02, "deg": 100.001}, "weather": {"pressure": 955.1, "temp_min": 293.395, "temp_max": 293.395, "temp": 293.395, "humidity": 77}, "state": "Santa Maria da Vitoria", "coord": {"lat": -13.39, "lon": -44.19}},
{"wind": {"speed": 2.12, "deg": 166.501}, "weather": {"pressure": 992.71, "temp_min": 292.295, "temp_max": 292.295, "temp": 292.295, "humidity": 96}, "state": "Morrinhos", "coord": {"lat": -12.15, "lon": -39.33}},
{"wind": {"speed": 5.12, "deg": 157.001}, "weather": {"pressure": 993.44, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 78}, "state": "Serrinha", "coord": {"lat": -11.66, "lon": -39.01}},
{"wind": {"speed": 3.22, "deg": 161.001}, "weather": {"pressure": 972.28, "temp_min": 292.495, "temp_max": 292.495, "temp": 292.495, "humidity": 91}, "state": "Serrolândia", "coord": {"lat": -11.42, "lon": -40.3}},
{"wind": {"speed": 4.1, "deg": 150}, "weather": {"pressure": 1015, "temp_min": 299.15, "temp_max": 299.15, "temp": 299.15, "humidity": 69}, "state": "Simoes Filho", "coord": {"lat": -12.78, "lon": -38.4}},
{"wind": {"speed": 3.37, "deg": 112.501}, "weather": {"pressure": 969.36, "temp_min": 293.295, "temp_max": 293.295, "temp": 293.295, "humidity": 85}, "state": "Bom Jesus da Lapa", "coord": {"lat": -13.26, "lon": -43.42}},
{"wind": {"speed": 2.52, "deg": 154.001}, "weather": {"pressure": 985.25, "temp_min": 294.045, "temp_max": 294.045, "temp": 294.045, "humidity": 98}, "state": "Antas", "coord": {"lat": -10.4, "lon": -38.33}},
{"wind": {"speed": 2.47, "deg": 155.001}, "weather": {"pressure": 1013.62, "temp_min": 296.745, "temp_max": 296.745, "temp": 296.745, "humidity": 76}, "state": "Sobradinho", "coord": {"lat": -12.83, "lon": -39.1}},
{"wind": {"speed": 3.57, "deg": 108.501}, "weather": {"pressure": 934.18, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 99}, "state": "Iraquara", "coord": {"lat": -12.25, "lon": -41.62}},
{"wind": {"speed": 4.02, "deg": 100.001}, "weather": {"pressure": 955.1, "temp_min": 293.395, "temp_max": 293.395, "temp": 293.395, "humidity": 77}, "state": "Santa Maria da Vitoria", "coord": {"lat": -13.39, "lon": -44.19}},
{"wind": {"speed": 1.62, "deg": 84.0011}, "weather": {"pressure": 954.85, "temp_min": 291.095, "temp_max": 291.095, "temp": 291.095, "humidity": 96}, "state": "Tanhac", "coord": {"lat": -14.02, "lon": -41.25}},
{"wind": {"speed": 2.97, "deg": 108.001}, "weather": {"pressure": 925.35, "temp_min": 291.495, "temp_max": 291.495, "temp": 291.495, "humidity": 92}, "state": "Paramirim", "coord": {"lat": -13.44, "lon": -42.24}},
{"wind": {"speed": 3.27, "deg": 130.501}, "weather": {"pressure": 949.26, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 95}, "state": "Tanquinho", "coord": {"lat": -12.47, "lon": -41.27}},
{"wind": {"speed": 4.67, "deg": 140.001}, "weather": {"pressure": 1023.76, "temp_min": 299.895, "temp_max": 299.895, "temp": 299.895, "humidity": 78}, "state": "Taperoa", "coord": {"lat": -13.54, "lon": -39.1}},
{"wind": {"speed": 3.72, "deg": 121.501}, "weather": {"pressure": 960.29, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 97}, "state": "Tapiramuta", "coord": {"lat": -11.85, "lon": -40.79}},
{"wind": {"speed": 2.67, "deg": 149.001}, "weather": {"pressure": 1004.06, "temp_min": 293.895, "temp_max": 293.895, "temp": 293.895, "humidity": 98}, "state": "Ibirapuã", "coord": {"lat": -17.69, "lon": -40.11}},
{"wind": {"speed": 6.37, "deg": 102.501}, "weather": {"pressure": 993.2, "temp_min": 289.495, "temp_max": 289.495, "temp": 289.495, "humidity": 80}, "state": "Teodoro Sampaio", "coord": {"lat": -22.53, "lon": -52.17}},
{"wind": {"speed": 5.12, "deg": 157.001}, "weather": {"pressure": 993.44, "temp_min": 295.895, "temp_max": 295.895, "temp": 295.895, "humidity": 78}, "state": "Barrocas", "coord": {"lat": -11.53, "lon": -39.08}},
{"wind": {"speed": 2.6, "deg": 210}, "weather": {"pressure": 1011, "temp_min": 307.15, "temp_max": 307.15, "temp": 307.15, "humidity": 59}, "state": "Changwat Nonthaburi", "coord": {"lat": 13.75, "lon": 100.5}},
{"wind": {"speed": 1.87, "deg": 119.501}, "weather": {"pressure": 975.36, "temp_min": 293.145, "temp_max": 293.145, "temp": 293.145, "humidity": 95}, "state": "Terra Nova", "coord": {"lat": -12.37, "lon": -40.67}},
{"wind": {"speed": 1.57, "deg": 129.501}, "weather": {"pressure": 940.75, "temp_min": 292.395, "temp_max": 292.395, "temp": 292.395, "humidity": 98}, "state": "Tremedal", "coord": {"lat": -14.98, "lon": -41.41}},
{"wind": {"speed": 3.17, "deg": 164.001}, "weather": {"pressure": 988.98, "temp_min": 294.595, "temp_max": 294.595, "temp": 294.595, "humidity": 96}, "state": "Tucano", "coord": {"lat": -10.96, "lon": -38.79}},
{"wind": {"speed": 3.62, "deg": 126.501}, "weather": {"pressure": 976.09, "temp_min": 295.695, "temp_max": 295.695, "temp": 295.695, "humidity": 85}, "state": "Uaua", "coord": {"lat": -9.84, "lon": -39.48}},
{"wind": {"speed": 2.97, "deg": 165.501}, "weather": {"pressure": 982.41, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 96}, "state": "Ubaira", "coord": {"lat": -13.27, "lon": -39.66}},
{"wind": {"speed": 1.72, "deg": 182.001}, "weather": {"pressure": 1004.46, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 98}, "state": "Ubaitaba", "coord": {"lat": -14.31, "lon": -39.32}},
{"wind": {"speed": 1.72, "deg": 182.001}, "weather": {"pressure": 1004.46, "temp_min": 292.895, "temp_max": 292.895, "temp": 292.895, "humidity": 98}, "state": "Ubata", "coord": {"lat": -14.21, "lon": -39.52}},
{"wind": {"speed": 3.62, "deg": 110.501}, "weather": {"pressure": 943.51, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 89}, "state": "Uibaí", "coord": {"lat": -11.34, "lon": -42.13}},
{"wind": {"speed": 4.32, "deg": 143.001}, "weather": {"pressure": 956.72, "temp_min": 295.645, "temp_max": 295.645, "temp": 295.645, "humidity": 70}, "state": "Laje", "coord": {"lat": -10.18, "lon": -40.97}},
{"wind": {"speed": 3.97, "deg": 273.001}, "weather": {"pressure": 1008.27, "temp_min": 308.145, "temp_max": 308.145, "temp": 308.145, "humidity": 43}, "state": "Una", "coord": {"lat": 20.82, "lon": 71.03}},
{"wind": {"speed": 3.17, "deg": 105.001}, "weather": {"pressure": 948.13, "temp_min": 291.895, "temp_max": 291.895, "temp": 291.895, "humidity": 92}, "state": "Licínio de Almeida", "coord": {"lat": -14.68, "lon": -42.51}},
{"wind": {"speed": 3.72, "deg": 139.001}, "weather": {"pressure": 1025.46, "temp_min": 299.645, "temp_max": 299.645, "temp": 299.645, "humidity": 86}, "state": "Urucuca", "coord": {"lat": -14.59, "lon": -39.28}},
{"wind": {"speed": 3.72, "deg": 121.501}, "weather": {"pressure": 960.29, "temp_min": 292.245, "temp_max": 292.245, "temp": 292.245, "humidity": 97}, "state": "Tapiramuta", "coord": {"lat": -11.85, "lon": -40.79}},
{"wind": {"speed": 1.97, "deg": 234.501}, "weather": {"pressure": 1016, "temp_min": 282.15, "temp_max": 287.15, "temp": 284.64, "humidity": 93}, "state": "Valença", "coord": {"lat": 42.03, "lon": -8.63}},
{"wind": {"speed": 4.27, "deg": 158.001}, "weather": {"pressure": 982.33, "temp_min": 294.045, "temp_max": 294.045, "temp": 294.045, "humidity": 82}, "state": "Valente", "coord": {"lat": -11.41, "lon": -39.46}},
{"wind": {"speed": 1.87, "deg": 149.501}, "weather": {"pressure": 980.79, "temp_min": 293.045, "temp_max": 293.045, "temp": 293.045, "humidity": 95}, "state": "Mairi", "coord": {"lat": -11.71, "lon": -40.15}},
{"wind": {"speed": 3.22, "deg": 161.001}, "weather": {"pressure": 972.28, "temp_min": 292.495, "temp_max": 292.495, "temp": 292.495, "humidity": 91}, "state": "Várzea do Poço", "coord": {"lat": -11.53, "lon": -40.32}},
{"wind": {"speed": 4.92, "deg": 118.501}, "weather": {"pressure": 940.26, "temp_min": 291.045, "temp_max": 291.045, "temp": 291.045, "humidity": 92}, "state": "Morro do Chape", "coord": {"lat": -11.55, "lon": -41.16}},
{"wind": {"speed": 2.97, "deg": 165.501}, "weather": {"pressure": 982.41, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 96}, "state": "Varzedo", "coord": {"lat": -12.97, "lon": -39.39}},
{"wind": {"speed": 1.87, "deg": 119.501}, "weather": {"pressure": 975.36, "temp_min": 293.145, "temp_max": 293.145, "temp": 293.145, "humidity": 95}, "state": "Vera Cruz", "coord": {"lat": -12.63, "lon": -41.03}},
{"wind": {"speed": 2.67, "deg": 149.001}, "weather": {"pressure": 1004.06, "temp_min": 293.895, "temp_max": 293.895, "temp": 293.895, "humidity": 98}, "state": "Moreira", "coord": {"lat": -17.35, "lon": -40.22}},
{"wind": {"speed": 2.97, "deg": 108.001}, "weather": {"pressure": 942.94, "temp_min": 292.045, "temp_max": 292.045, "temp": 292.045, "humidity": 98}, "state": "Vitoria da Conquista", "coord": {"lat": -14.87, "lon": -40.84}},
{"wind": {"speed": 5.67, "deg": 37.0011}, "weather": {"pressure": 976.5, "temp_min": 279.295, "temp_max": 279.295, "temp": 279.295, "humidity": 63}, "state": "Wagner", "coord": {"lat": 43.08, "lon": -98.29}},
{"wind": {"speed": 3.62, "deg": 118.501}, "weather": {"pressure": 969.93, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 82}, "state": "Ibotirama", "coord": {"lat": -12.19, "lon": -43.22}},
{"wind": {"speed": 2.07, "deg": 170.501}, "weather": {"pressure": 996.19, "temp_min": 294.245, "temp_max": 294.245, "temp": 294.245, "humidity": 97}, "state": "Gand", "coord": {"lat": -13.74, "lon": -39.49}},
{"wind": {"speed": 6.17, "deg": 108.501}, "weather": {"pressure": 973.17, "temp_min": 295.945, "temp_max": 295.945, "temp": 295.945, "humidity": 79}, "state": "Xique Xique", "coord": {"lat": -10.82, "lon": -42.73}},
{"wind": {"speed": 2.42, "deg": 150.001}, "weather": {"pressure": 974.23, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 94}, "state": "Milagres", "coord": {"lat": -7.31, "lon": -38.95}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Redencao", "coord": {"lat": -4.23, "lon": -38.73}},
{"wind": {"speed": 1.77, "deg": 123.001}, "weather": {"pressure": 1019.14, "temp_min": 296.795, "temp_max": 296.795, "temp": 296.795, "humidity": 99}, "state": "Acara", "coord": {"lat": -2.89, "lon": -40.12}},
{"wind": {"speed": 1.72, "deg": 173.001}, "weather": {"pressure": 973.09, "temp_min": 292.395, "temp_max": 292.395, "temp": 292.395, "humidity": 95}, "state": "Acopiara", "coord": {"lat": -6.1, "lon": -39.45}},
{"wind": {"speed": 3.12, "deg": 140.001}, "weather": {"pressure": 966.61, "temp_min": 293.545, "temp_max": 293.545, "temp": 293.545, "humidity": 97}, "state": "São Nicola", "coord": {"lat": -6.67, "lon": -40.07}},
{"wind": {"speed": 1.27, "deg": 189.501}, "weather": {"pressure": 1008.03, "temp_min": 295.445, "temp_max": 295.445, "temp": 295.445, "humidity": 97}, "state": "São Cipriano", "coord": {"lat": -3.58, "lon": -40.48}},
{"wind": {"speed": 2.87, "deg": 138.001}, "weather": {"pressure": 942.05, "temp_min": 293.495, "temp_max": 293.495, "temp": 293.495, "humidity": 96}, "state": "Farias Brito", "coord": {"lat": -6.93, "lon": -39.57}},
{"wind": {"speed": 0.77, "deg": 135.501}, "weather": {"pressure": 1013.06, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 97}, "state": "São João do Jaguaribe", "coord": {"lat": -5.27, "lon": -38.27}},
{"wind": {"speed": 1.57, "deg": 125.501}, "weather": {"pressure": 1001.46, "temp_min": 297.495, "temp_max": 297.495, "temp": 297.495, "humidity": 93}, "state": "Amontada", "coord": {"lat": -3.36, "lon": -39.83}},
{"wind": {"speed": 3.12, "deg": 140.001}, "weather": {"pressure": 966.61, "temp_min": 293.545, "temp_max": 293.545, "temp": 293.545, "humidity": 97}, "state": "São Nicola", "coord": {"lat": -6.67, "lon": -40.07}},
{"wind": {"speed": 1.22, "deg": 121.001}, "weather": {"pressure": 990.93, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 96}, "state": "Fazenda Lajes", "coord": {"lat": -3.93, "lon": -39.38}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Aquiraz", "coord": {"lat": -3.9, "lon": -38.39}},
{"wind": {"speed": 2.97, "deg": 124.501}, "weather": {"pressure": 1017.03, "temp_min": 299.095, "temp_max": 299.095, "temp": 299.095, "humidity": 79}, "state": "Aracati", "coord": {"lat": -4.56, "lon": -37.77}},
{"wind": {"speed": 1.22, "deg": 119.501}, "weather": {"pressure": 994.33, "temp_min": 297.245, "temp_max": 297.245, "temp": 297.245, "humidity": 93}, "state": "Aracoiaba", "coord": {"lat": -4.37, "lon": -38.81}},
{"wind": {"speed": 1.32, "deg": 100.501}, "weather": {"pressure": 978.77, "temp_min": 293.295, "temp_max": 293.295, "temp": 293.295, "humidity": 93}, "state": "Nova Russas", "coord": {"lat": -4.71, "lon": -40.56}},
{"wind": {"speed": 2.77, "deg": 112.501}, "weather": {"pressure": 950.23, "temp_min": 293.745, "temp_max": 293.745, "temp": 293.745, "humidity": 94}, "state": "Araripe", "coord": {"lat": -7.21, "lon": -40.05}},
{"wind": {"speed": 1.22, "deg": 119.501}, "weather": {"pressure": 994.33, "temp_min": 297.245, "temp_max": 297.245, "temp": 297.245, "humidity": 93}, "state": "Capistrano", "coord": {"lat": -4.47, "lon": -38.9}},
{"wind": {"speed": 3.12, "deg": 140.001}, "weather": {"pressure": 966.61, "temp_min": 293.545, "temp_max": 293.545, "temp": 293.545, "humidity": 97}, "state": "Arneiroz", "coord": {"lat": -6.32, "lon": -40.16}},
{"wind": {"speed": 1.62, "deg": 161.001}, "weather": {"pressure": 980.15, "temp_min": 293.895, "temp_max": 293.895, "temp": 293.895, "humidity": 96}, "state": "Assare", "coord": {"lat": -6.87, "lon": -39.88}},
{"wind": {"speed": 5.7, "deg": 290}, "weather": {"pressure": 1021, "temp_min": 270.15, "temp_max": 273.15, "temp": 272.17, "humidity": 100}, "state": "Aurora", "coord": {"lat": 39.73, "lon": -104.83}},
{"wind": {"speed": 2.12, "deg": 166.001}, "weather": {"pressure": 992.06, "temp_min": 294.645, "temp_max": 294.645, "temp": 294.645, "humidity": 95}, "state": "Ipaumirim", "coord": {"lat": -6.79, "lon": -38.72}},
{"wind": {"speed": 1.97, "deg": 76.5011}, "weather": {"pressure": 1005.19, "temp_min": 295.195, "temp_max": 295.195, "temp": 295.195, "humidity": 100}, "state": "Laranjeira", "coord": {"lat": -5.28, "lon": -38.87}},
{"wind": {"speed": 2.42, "deg": 150.001}, "weather": {"pressure": 974.23, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 94}, "state": "Barbalha", "coord": {"lat": -7.31, "lon": -39.3}},
{"wind": {"speed": 2.57, "deg": 278.001}, "weather": {"pressure": 988.9, "temp_min": 284.445, "temp_max": 284.445, "temp": 284.445, "humidity": 98}, "state": "Barreira", "coord": {"lat": 40.5, "lon": -8.6}},
{"wind": {"speed": 2.12, "deg": 166.001}, "weather": {"pressure": 992.06, "temp_min": 294.645, "temp_max": 294.645, "temp": 294.645, "humidity": 95}, "state": "Barro", "coord": {"lat": -6.72, "lon": -38.87}},
{"wind": {"speed": 1.27, "deg": 314.001}, "weather": {"pressure": 1019.79, "temp_min": 297.545, "temp_max": 297.545, "temp": 297.545, "humidity": 97}, "state": "Barroquinha", "coord": {"lat": -3.02, "lon": -41.14}},
{"wind": {"speed": 1.22, "deg": 119.501}, "weather": {"pressure": 994.33, "temp_min": 297.245, "temp_max": 297.245, "temp": 297.245, "humidity": 93}, "state": "Baturite", "coord": {"lat": -4.33, "lon": -38.88}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Beberibe", "coord": {"lat": -4.18, "lon": -38.13}},
{"wind": {"speed": 1.77, "deg": 123.001}, "weather": {"pressure": 1019.14, "temp_min": 296.795, "temp_max": 296.795, "temp": 296.795, "humidity": 99}, "state": "Bela Cruz", "coord": {"lat": -3.05, "lon": -40.17}},
{"wind": {"speed": 1.12, "deg": 104.501}, "weather": {"pressure": 973.98, "temp_min": 292.645, "temp_max": 292.645, "temp": 292.645, "humidity": 97}, "state": "Boa Viagem", "coord": {"lat": -5.13, "lon": -39.73}},
{"wind": {"speed": 2.42, "deg": 150.001}, "weather": {"pressure": 974.23, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 94}, "state": "Brejo Santo", "coord": {"lat": -7.49, "lon": -38.99}},
{"wind": {"speed": 1.02, "deg": 83.5011}, "weather": {"pressure": 1016.38, "temp_min": 297.595, "temp_max": 297.595, "temp": 297.595, "humidity": 95}, "state": "Camocim", "coord": {"lat": -2.9, "lon": -40.84}},
{"wind": {"speed": 2.77, "deg": 112.501}, "weather": {"pressure": 950.23, "temp_min": 293.745, "temp_max": 293.745, "temp": 293.745, "humidity": 94}, "state": "Campos Sales", "coord": {"lat": -7.07, "lon": -40.38}},
{"wind": {"speed": 1.22, "deg": 121.001}, "weather": {"pressure": 990.93, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 96}, "state": "Caninde", "coord": {"lat": -4.36, "lon": -39.31}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1013, "temp_min": 287.15, "temp_max": 287.15, "temp": 287.15, "humidity": 93}, "state": "Capistrano", "coord": {"lat": 38.69, "lon": 16.29}},
{"wind": {"speed": 1.22, "deg": 121.001}, "weather": {"pressure": 990.93, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 96}, "state": "Caninde", "coord": {"lat": -4.36, "lon": -39.31}},
{"wind": {"speed": 1.17, "deg": 84.0011}, "weather": {"pressure": 998.55, "temp_min": 295.645, "temp_max": 295.645, "temp": 295.645, "humidity": 96}, "state": "Carire", "coord": {"lat": -3.95, "lon": -40.47}},
{"wind": {"speed": 2.42, "deg": 150.001}, "weather": {"pressure": 974.23, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 94}, "state": "Caririac", "coord": {"lat": -7.04, "lon": -39.28}},
{"wind": {"speed": 1.62, "deg": 161.001}, "weather": {"pressure": 980.15, "temp_min": 293.895, "temp_max": 293.895, "temp": 293.895, "humidity": 96}, "state": "Jucas", "coord": {"lat": -6.53, "lon": -39.53}},
{"wind": {"speed": 1.17, "deg": 91.0011}, "weather": {"pressure": 971.63, "temp_min": 294.995, "temp_max": 294.995, "temp": 294.995, "humidity": 96}, "state": "Carnaubal", "coord": {"lat": -4.17, "lon": -40.94}},
{"wind": {"speed": 2.97, "deg": 85.5011}, "weather": {"pressure": 969.36, "temp_min": 283.295, "temp_max": 283.295, "temp": 283.295, "humidity": 82}, "state": "Cascavel", "coord": {"lat": -24.96, "lon": -53.46}},
{"wind": {"speed": 0.62, "deg": 120.001}, "weather": {"pressure": 1013, "temp_min": 302.15, "temp_max": 302.15, "temp": 302.15, "humidity": 70}, "state": "Catarina", "coord": {"lat": 14.85, "lon": -92.08}},
{"wind": {"speed": 1.32, "deg": 135.001}, "weather": {"pressure": 970.5, "temp_min": 294.345, "temp_max": 294.345, "temp": 294.345, "humidity": 93}, "state": "Fazenda Campina", "coord": {"lat": -4.57, "lon": -40.18}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Caucaia", "coord": {"lat": -3.74, "lon": -38.65}},
{"wind": {"speed": 2.12, "deg": 166.001}, "weather": {"pressure": 992.06, "temp_min": 294.645, "temp_max": 294.645, "temp": 294.645, "humidity": 95}, "state": "Cedro", "coord": {"lat": -6.61, "lon": -39.06}},
{"wind": {"speed": 1.27, "deg": 314.001}, "weather": {"pressure": 1019.79, "temp_min": 297.545, "temp_max": 297.545, "temp": 297.545, "humidity": 97}, "state": "Barroquinha", "coord": {"lat": -3.02, "lon": -41.14}},
{"wind": {"speed": 1.77, "deg": 176.001}, "weather": {"pressure": 996.36, "temp_min": 295.295, "temp_max": 295.295, "temp": 295.295, "humidity": 100}, "state": "Fazenda Monte Lima", "coord": {"lat": -4.8, "lon": -39.15}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Chorozinho", "coord": {"lat": -4.3, "lon": -38.5}},
{"wind": {"speed": 1.32, "deg": 152.501}, "weather": {"pressure": 996.19, "temp_min": 296.495, "temp_max": 296.495, "temp": 296.495, "humidity": 96}, "state": "Corea", "coord": {"lat": -3.53, "lon": -40.66}},
{"wind": {"speed": 2.57, "deg": 146.501}, "weather": {"pressure": 974.23, "temp_min": 291.945, "temp_max": 291.945, "temp": 291.945, "humidity": 93}, "state": "Crateus", "coord": {"lat": -5.18, "lon": -40.68}},
{"wind": {"speed": 2.87, "deg": 138.001}, "weather": {"pressure": 942.05, "temp_min": 293.495, "temp_max": 293.495, "temp": 293.495, "humidity": 96}, "state": "Crato", "coord": {"lat": -7.23, "lon": -39.41}},
{"wind": {"speed": 1, "deg": ""}, "weather": {"pressure": 1019, "temp_min": 275.15, "temp_max": 276.15, "temp": 275.59, "humidity": 93}, "state": "Britanski trg", "coord": {"lat": 45.81, "lon": 15.96}},
{"wind": {"speed": 1.77, "deg": 123.001}, "weather": {"pressure": 1019.14, "temp_min": 296.795, "temp_max": 296.795, "temp": 296.795, "humidity": 99}, "state": "Cruz", "coord": {"lat": -2.92, "lon": -40.17}},
{"wind": {"speed": 1.72, "deg": 173.001}, "weather": {"pressure": 973.09, "temp_min": 292.395, "temp_max": 292.395, "temp": 292.395, "humidity": 95}, "state": "Acopiara", "coord": {"lat": -6.1, "lon": -39.45}},
{"wind": {"speed": 1.32, "deg": 162.501}, "weather": {"pressure": 995.63, "temp_min": 295.495, "temp_max": 295.495, "temp": 295.495, "humidity": 89}, "state": "Barra", "coord": {"lat": -6.05, "lon": -38.18}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Eusebio", "coord": {"lat": -3.89, "lon": -38.45}},
{"wind": {"speed": 2.87, "deg": 138.001}, "weather": {"pressure": 942.05, "temp_min": 293.495, "temp_max": 293.495, "temp": 293.495, "humidity": 96}, "state": "Farias Brito", "coord": {"lat": -6.93, "lon": -39.57}},
{"wind": {"speed": 1.27, "deg": 189.501}, "weather": {"pressure": 1008.03, "temp_min": 295.445, "temp_max": 295.445, "temp": 295.445, "humidity": 97}, "state": "Forquilha", "coord": {"lat": -3.8, "lon": -40.26}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Fortaleza", "coord": {"lat": -3.72, "lon": -38.52}},
{"wind": {"speed": 6.72, "deg": 118.501}, "weather": {"pressure": 1024.08, "temp_min": 300.745, "temp_max": 300.745, "temp": 300.745, "humidity": 100}, "state": "Fortim", "coord": {"lat": -4.45, "lon": -37.8}},
{"wind": {"speed": 1.32, "deg": 152.501}, "weather": {"pressure": 996.19, "temp_min": 296.495, "temp_max": 296.495, "temp": 296.495, "humidity": 96}, "state": "Frecheirinha", "coord": {"lat": -3.76, "lon": -40.82}},
{"wind": {"speed": 1.22, "deg": 121.001}, "weather": {"pressure": 990.93, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 96}, "state": "Fazenda Fechado", "coord": {"lat": -4.02, "lon": -39.55}},
{"wind": {"speed": 5.27, "deg": 212.001}, "weather": {"pressure": 998.55, "temp_min": 284.645, "temp_max": 284.645, "temp": 284.645, "humidity": 96}, "state": "Graça", "coord": {"lat": 39.89, "lon": -8.22}},
{"wind": {"speed": 1.02, "deg": 83.5011}, "weather": {"pressure": 1016.38, "temp_min": 297.595, "temp_max": 297.595, "temp": 297.595, "humidity": 95}, "state": "Granja", "coord": {"lat": -3.12, "lon": -40.83}},
{"wind": {"speed": 2.42, "deg": 150.001}, "weather": {"pressure": 974.23, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 94}, "state": "Caririac", "coord": {"lat": -7.04, "lon": -39.28}},
{"wind": {"speed": 1.27, "deg": 189.501}, "weather": {"pressure": 1008.03, "temp_min": 295.445, "temp_max": 295.445, "temp": 295.445, "humidity": 97}, "state": "Veados", "coord": {"lat": -3.87, "lon": -40.38}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Guaiuba", "coord": {"lat": -4.04, "lon": -38.64}},
{"wind": {"speed": 1.17, "deg": 91.0011}, "weather": {"pressure": 971.63, "temp_min": 294.995, "temp_max": 294.995, "temp": 294.995, "humidity": 96}, "state": "Guaraciaba do Norte", "coord": {"lat": -4.17, "lon": -40.75}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Breja", "coord": {"lat": -4.25, "lon": -38.93}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Hidrolandia", "coord": {"lat": -16.96, "lon": -49.23}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Horizonte", "coord": {"lat": -4.1, "lon": -38.48}},
{"wind": {"speed": 1.87, "deg": 154.501}, "weather": {"pressure": 1010.14, "temp_min": 298.195, "temp_max": 298.195, "temp": 298.195, "humidity": 82}, "state": "Ibicuitinga", "coord": {"lat": -4.97, "lon": -38.64}},
{"wind": {"speed": 1.17, "deg": 91.0011}, "weather": {"pressure": 971.63, "temp_min": 294.995, "temp_max": 294.995, "temp": 294.995, "humidity": 96}, "state": "Ibiapina", "coord": {"lat": -3.92, "lon": -40.89}},
{"wind": {"speed": 1.87, "deg": 154.501}, "weather": {"pressure": 1010.14, "temp_min": 298.195, "temp_max": 298.195, "temp": 298.195, "humidity": 82}, "state": "Ibicuitinga", "coord": {"lat": -4.97, "lon": -38.64}},
{"wind": {"speed": 6.12, "deg": 123.501}, "weather": {"pressure": 1022.06, "temp_min": 300.745, "temp_max": 300.745, "temp": 300.745, "humidity": 99}, "state": "Icapuí", "coord": {"lat": -4.71, "lon": -37.36}},
{"wind": {"speed": 2.12, "deg": 166.001}, "weather": {"pressure": 992.06, "temp_min": 294.645, "temp_max": 294.645, "temp": 294.645, "humidity": 95}, "state": "Ico", "coord": {"lat": -6.4, "lon": -38.86}},
{"wind": {"speed": 2.12, "deg": 166.001}, "weather": {"pressure": 992.06, "temp_min": 294.645, "temp_max": 294.645, "temp": 294.645, "humidity": 95}, "state": "Iguat", "coord": {"lat": -6.36, "lon": -39.3}},
{"wind": {"speed": 0.72, "deg": 119.501}, "weather": {"pressure": 878.66, "temp_min": 289.395, "temp_max": 289.395, "temp": 289.395, "humidity": 72}, "state": "Independencia", "coord": {"lat": -11.99, "lon": -77.05}},
{"wind": {"speed": 1.32, "deg": 100.501}, "weather": {"pressure": 978.77, "temp_min": 293.295, "temp_max": 293.295, "temp": 293.295, "humidity": 93}, "state": "Nova Russas", "coord": {"lat": -4.71, "lon": -40.56}},
{"wind": {"speed": 2.12, "deg": 166.001}, "weather": {"pressure": 992.06, "temp_min": 294.645, "temp_max": 294.645, "temp": 294.645, "humidity": 95}, "state": "Ipaumirim", "coord": {"lat": -6.79, "lon": -38.72}},
{"wind": {"speed": 1.17, "deg": 91.0011}, "weather": {"pressure": 971.63, "temp_min": 294.995, "temp_max": 294.995, "temp": 294.995, "humidity": 96}, "state": "Ip", "coord": {"lat": -4.32, "lon": -40.71}},
{"wind": {"speed": 2.77, "deg": 112.501}, "weather": {"pressure": 950.23, "temp_min": 293.745, "temp_max": 293.745, "temp": 293.745, "humidity": 94}, "state": "Ipueiras", "coord": {"lat": -7.03, "lon": -40.45}},
{"wind": {"speed": 2.32, "deg": 146.001}, "weather": {"pressure": 996.19, "temp_min": 296.345, "temp_max": 296.345, "temp": 296.345, "humidity": 80}, "state": "Rodolfo Fernandes", "coord": {"lat": -5.79, "lon": -38.06}},
{"wind": {"speed": 1.57, "deg": 125.501}, "weather": {"pressure": 1001.46, "temp_min": 297.495, "temp_max": 297.495, "temp": 297.495, "humidity": 93}, "state": "Iraucuba", "coord": {"lat": -3.75, "lon": -39.78}},
{"wind": {"speed": 2.97, "deg": 124.501}, "weather": {"pressure": 1017.03, "temp_min": 299.095, "temp_max": 299.095, "temp": 299.095, "humidity": 79}, "state": "Itaiçaba", "coord": {"lat": -4.67, "lon": -37.82}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Itaitinga", "coord": {"lat": -3.97, "lon": -38.53}},
{"wind": {"speed": 1.57, "deg": 125.501}, "weather": {"pressure": 1001.46, "temp_min": 297.495, "temp_max": 297.495, "temp": 297.495, "humidity": 93}, "state": "Itapage", "coord": {"lat": -3.69, "lon": -39.59}},
{"wind": {"speed": 1.57, "deg": 125.501}, "weather": {"pressure": 1001.46, "temp_min": 297.495, "temp_max": 297.495, "temp": 297.495, "humidity": 93}, "state": "Itapipoca", "coord": {"lat": -3.49, "lon": -39.58}},
{"wind": {"speed": 1.77, "deg": 176.001}, "weather": {"pressure": 996.36, "temp_min": 295.295, "temp_max": 295.295, "temp": 295.295, "humidity": 100}, "state": "Itapiúna", "coord": {"lat": -4.56, "lon": -38.92}},
{"wind": {"speed": 1.77, "deg": 123.001}, "weather": {"pressure": 1019.14, "temp_min": 296.795, "temp_max": 296.795, "temp": 296.795, "humidity": 99}, "state": "Olho d\u2019Agua", "coord": {"lat": -2.88, "lon": -39.95}},
{"wind": {"speed": 1.22, "deg": 121.001}, "weather": {"pressure": 990.93, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 96}, "state": "Caninde", "coord": {"lat": -4.36, "lon": -39.31}},
{"wind": {"speed": 1.97, "deg": 76.5011}, "weather": {"pressure": 1005.19, "temp_min": 295.195, "temp_max": 295.195, "temp": 295.195, "humidity": 100}, "state": "Jaguaretama", "coord": {"lat": -5.61, "lon": -38.77}},
{"wind": {"speed": 0.77, "deg": 135.501}, "weather": {"pressure": 1013.06, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 97}, "state": "Jaguaribara", "coord": {"lat": -5.66, "lon": -38.62}},
{"wind": {"speed": 1.32, "deg": 162.501}, "weather": {"pressure": 995.63, "temp_min": 295.495, "temp_max": 295.495, "temp": 295.495, "humidity": 89}, "state": "Jaguaribe", "coord": {"lat": -5.89, "lon": -38.62}},
{"wind": {"speed": 2.97, "deg": 124.501}, "weather": {"pressure": 1017.03, "temp_min": 299.095, "temp_max": 299.095, "temp": 299.095, "humidity": 79}, "state": "Jaguaruana", "coord": {"lat": -4.83, "lon": -37.78}},
{"wind": {"speed": 3.92, "deg": 99.5011}, "weather": {"pressure": 993.44, "temp_min": 289.395, "temp_max": 289.395, "temp": 289.395, "humidity": 66}, "state": "Jardim", "coord": {"lat": -21.48, "lon": -56.14}},
{"wind": {"speed": 3.47, "deg": 305.501}, "weather": {"pressure": 1019.7, "temp_min": 311.695, "temp_max": 311.695, "temp": 311.695, "humidity": 18}, "state": "Jati", "coord": {"lat": 24.35, "lon": 68.27}},
{"wind": {"speed": 1.02, "deg": 83.5011}, "weather": {"pressure": 1016.38, "temp_min": 297.595, "temp_max": 297.595, "temp": 297.595, "humidity": 95}, "state": "Forquilha", "coord": {"lat": -2.9, "lon": -40.53}},
{"wind": {"speed": 2.87, "deg": 138.001}, "weather": {"pressure": 942.05, "temp_min": 293.495, "temp_max": 293.495, "temp": 293.495, "humidity": 96}, "state": "Juazeiro do Norte", "coord": {"lat": -7.21, "lon": -39.32}},
{"wind": {"speed": 1.62, "deg": 161.001}, "weather": {"pressure": 980.15, "temp_min": 293.895, "temp_max": 293.895, "temp": 293.895, "humidity": 96}, "state": "Jucas", "coord": {"lat": -6.53, "lon": -39.53}},
{"wind": {"speed": 2.12, "deg": 166.001}, "weather": {"pressure": 992.06, "temp_min": 294.645, "temp_max": 294.645, "temp": 294.645, "humidity": 95}, "state": "Lavras da Mangabeira", "coord": {"lat": -6.75, "lon": -38.96}},
{"wind": {"speed": 0.77, "deg": 135.501}, "weather": {"pressure": 1013.06, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 97}, "state": "Limoeiro do Norte", "coord": {"lat": -5.15, "lon": -38.1}},
{"wind": {"speed": 5.7, "deg": 240}, "weather": {"pressure": 1007, "temp_min": 286.15, "temp_max": 286.15, "temp": 286.15, "humidity": 93}, "state": "Madalena", "coord": {"lat": 41.22, "lon": -8.33}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Maracana", "coord": {"lat": -3.88, "lon": -38.63}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Fazenda Coité", "coord": {"lat": -3.9, "lon": -38.67}},
{"wind": {"speed": 4.6, "deg": 90}, "weather": {"pressure": 1018, "temp_min": 296.15, "temp_max": 298.15, "temp": 297.11, "humidity": 83}, "state": "Marco", "coord": {"lat": 25.97, "lon": -81.73}},
{"wind": {"speed": 1.02, "deg": 83.5011}, "weather": {"pressure": 1016.38, "temp_min": 297.595, "temp_max": 297.595, "temp": 297.595, "humidity": 95}, "state": "Martinópole", "coord": {"lat": -3.23, "lon": -40.7}},
{"wind": {"speed": 1.27, "deg": 189.501}, "weather": {"pressure": 1008.03, "temp_min": 295.445, "temp_max": 295.445, "temp": 295.445, "humidity": 97}, "state": "Massapê", "coord": {"lat": -3.52, "lon": -40.34}},
{"wind": {"speed": 2.42, "deg": 150.001}, "weather": {"pressure": 974.23, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 94}, "state": "Mauriti", "coord": {"lat": -7.39, "lon": -38.77}},
{"wind": {"speed": 1.27, "deg": 189.501}, "weather": {"pressure": 1008.03, "temp_min": 295.445, "temp_max": 295.445, "temp": 295.445, "humidity": 97}, "state": "São Cipriano", "coord": {"lat": -3.58, "lon": -40.48}},
{"wind": {"speed": 2.42, "deg": 150.001}, "weather": {"pressure": 974.23, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 94}, "state": "Milagres", "coord": {"lat": -7.31, "lon": -38.95}},
{"wind": {"speed": 0.87, "deg": 250.001}, "weather": {"pressure": 994.25, "temp_min": 295.995, "temp_max": 295.995, "temp": 295.995, "humidity": 86}, "state": "Solonópole", "coord": {"lat": -5.73, "lon": -39.01}},
{"wind": {"speed": 1.57, "deg": 125.501}, "weather": {"pressure": 1001.46, "temp_min": 297.495, "temp_max": 297.495, "temp": 297.495, "humidity": 93}, "state": "Amontada", "coord": {"lat": -3.36, "lon": -39.83}},
{"wind": {"speed": 2.42, "deg": 150.001}, "weather": {"pressure": 974.23, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 94}, "state": "Missao Velha", "coord": {"lat": -7.25, "lon": -39.14}},
{"wind": {"speed": 1.72, "deg": 173.001}, "weather": {"pressure": 973.09, "temp_min": 292.395, "temp_max": 292.395, "temp": 292.395, "humidity": 95}, "state": "Mombaca", "coord": {"lat": -5.74, "lon": -39.63}},
{"wind": {"speed": 1.32, "deg": 135.001}, "weather": {"pressure": 970.5, "temp_min": 294.345, "temp_max": 294.345, "temp": 294.345, "humidity": 93}, "state": "Monsenhor Tabosa", "coord": {"lat": -4.79, "lon": -40.06}},
{"wind": {"speed": 0.77, "deg": 135.501}, "weather": {"pressure": 1013.06, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 97}, "state": "Morada Nova", "coord": {"lat": -5.11, "lon": -38.37}},
{"wind": {"speed": 1.32, "deg": 152.501}, "weather": {"pressure": 996.19, "temp_min": 296.495, "temp_max": 296.495, "temp": 296.495, "humidity": 96}, "state": "Moraújo", "coord": {"lat": -3.47, "lon": -40.68}},
{"wind": {"speed": 1.72, "deg": 111.501}, "weather": {"pressure": 951.94, "temp_min": 292.595, "temp_max": 292.595, "temp": 292.595, "humidity": 97}, "state": "Morrinhos", "coord": {"lat": -17.73, "lon": -49.1}},
{"wind": {"speed": 1.17, "deg": 91.0011}, "weather": {"pressure": 971.63, "temp_min": 294.995, "temp_max": 294.995, "temp": 294.995, "humidity": 96}, "state": "Ibiapina", "coord": {"lat": -3.92, "lon": -40.89}},
{"wind": {"speed": 4.6, "deg": 220}, "weather": {"pressure": 1013, "temp_min": 296.15, "temp_max": 296.15, "temp": 296.15, "humidity": 94}, "state": "Mulung", "coord": {"lat": -7.02, "lon": -35.46}},
{"wind": {"speed": 2.32, "deg": 359.501}, "weather": {"pressure": 1004.3, "temp_min": 296.195, "temp_max": 296.195, "temp": 296.195, "humidity": 93}, "state": "Boa Vista", "coord": {"lat": -7.68, "lon": -48.27}},
{"wind": {"speed": 1.32, "deg": 100.501}, "weather": {"pressure": 978.77, "temp_min": 293.295, "temp_max": 293.295, "temp": 293.295, "humidity": 93}, "state": "Nova Russas", "coord": {"lat": -4.71, "lon": -40.56}},
{"wind": {"speed": 2.57, "deg": 146.501}, "weather": {"pressure": 974.23, "temp_min": 291.945, "temp_max": 291.945, "temp": 291.945, "humidity": 93}, "state": "Novo Oriente", "coord": {"lat": -5.53, "lon": -40.77}},
{"wind": {"speed": 2.22, "deg": 119.501}, "weather": {"pressure": 1014.84, "temp_min": 298.545, "temp_max": 298.545, "temp": 298.545, "humidity": 92}, "state": "Ocara", "coord": {"lat": -4.49, "lon": -38.6}},
{"wind": {"speed": 0.87, "deg": 250.001}, "weather": {"pressure": 994.25, "temp_min": 295.995, "temp_max": 295.995, "temp": 295.995, "humidity": 86}, "state": "Oros", "coord": {"lat": -6.24, "lon": -38.91}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Pacajus", "coord": {"lat": -4.17, "lon": -38.46}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Pacatuba", "coord": {"lat": -3.98, "lon": -38.62}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Pacoti", "coord": {"lat": -4.22, "lon": -38.92}},
{"wind": {"speed": 1.17, "deg": 91.0011}, "weather": {"pressure": 971.63, "temp_min": 294.995, "temp_max": 294.995, "temp": 294.995, "humidity": 96}, "state": "São Benedito", "coord": {"lat": -4.05, "lon": -40.87}},
{"wind": {"speed": 2.97, "deg": 124.501}, "weather": {"pressure": 1017.03, "temp_min": 299.095, "temp_max": 299.095, "temp": 299.095, "humidity": 79}, "state": "Palhano", "coord": {"lat": -4.75, "lon": -37.96}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Pacoti", "coord": {"lat": -4.22, "lon": -38.92}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Paracur", "coord": {"lat": -3.41, "lon": -39.03}},
{"wind": {"speed": 3.12, "deg": 123.501}, "weather": {"pressure": 1018.25, "temp_min": 299.395, "temp_max": 299.395, "temp": 299.395, "humidity": 93}, "state": "Paraipaba", "coord": {"lat": -3.44, "lon": -39.15}},
{"wind": {"speed": 3.72, "deg": 136.001}, "weather": {"pressure": 958.02, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 96}, "state": "Paramb", "coord": {"lat": -6.21, "lon": -40.69}},
{"wind": {"speed": 1.22, "deg": 121.001}, "weather": {"pressure": 990.93, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 96}, "state": "Fazenda Lajes", "coord": {"lat": -3.93, "lon": -39.38}},
{"wind": {"speed": 1.12, "deg": 104.501}, "weather": {"pressure": 973.98, "temp_min": 292.645, "temp_max": 292.645, "temp": 292.645, "humidity": 97}, "state": "Pedra Branca", "coord": {"lat": -5.45, "lon": -39.72}},
{"wind": {"speed": 3.27, "deg": 132.501}, "weather": {"pressure": 968.15, "temp_min": 296.345, "temp_max": 296.345, "temp": 296.345, "humidity": 77}, "state": "Serrita", "coord": {"lat": -7.93, "lon": -39.3}},
{"wind": {"speed": 3.12, "deg": 123.501}, "weather": {"pressure": 1018.25, "temp_min": 299.395, "temp_max": 299.395, "temp": 299.395, "humidity": 93}, "state": "Pentecoste", "coord": {"lat": -3.79, "lon": -39.27}},
{"wind": {"speed": 2.72, "deg": 212.501}, "weather": {"pressure": 957.85, "temp_min": 281.595, "temp_max": 281.595, "temp": 281.595, "humidity": 98}, "state": "Pereiro", "coord": {"lat": 40.45, "lon": -7.77}},
{"wind": {"speed": 5.1, "deg": 90}, "weather": {"pressure": 1011, "temp_min": 301.15, "temp_max": 301.15, "temp": 301.15, "humidity": 83}, "state": "Cascavel", "coord": {"lat": -4.13, "lon": -38.24}},
{"wind": {"speed": 1.72, "deg": 173.001}, "weather": {"pressure": 973.09, "temp_min": 292.395, "temp_max": 292.395, "temp": 292.395, "humidity": 95}, "state": "Mombaca", "coord": {"lat": -5.74, "lon": -39.63}},
{"wind": {"speed": 1.17, "deg": 91.0011}, "weather": {"pressure": 971.63, "temp_min": 294.995, "temp_max": 294.995, "temp": 294.995, "humidity": 96}, "state": "Pires Ferreira", "coord": {"lat": -4.25, "lon": -40.65}},
{"wind": {"speed": 1.32, "deg": 100.501}, "weather": {"pressure": 978.77, "temp_min": 293.295, "temp_max": 293.295, "temp": 293.295, "humidity": 93}, "state": "Nova Russas", "coord": {"lat": -4.71, "lon": -40.56}},
{"wind": {"speed": 2.42, "deg": 150.001}, "weather": {"pressure": 974.23, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 94}, "state": "Brejo Santo", "coord": {"lat": -7.49, "lon": -38.99}},
{"wind": {"speed": 3.6, "deg": 160}, "weather": {"pressure": 1012, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 100}, "state": "Ribeira", "coord": {"lat": -5.78, "lon": -35.21}},
{"wind": {"speed": 2.32, "deg": 146.001}, "weather": {"pressure": 996.19, "temp_min": 296.345, "temp_max": 296.345, "temp": 296.345, "humidity": 80}, "state": "Rodolfo Fernandes", "coord": {"lat": -5.79, "lon": -38.06}},
{"wind": {"speed": 2.57, "deg": 146.501}, "weather": {"pressure": 974.23, "temp_min": 291.945, "temp_max": 291.945, "temp": 291.945, "humidity": 93}, "state": "Novo Oriente", "coord": {"lat": -5.53, "lon": -40.77}},
{"wind": {"speed": 1.77, "deg": 176.001}, "weather": {"pressure": 996.36, "temp_min": 295.295, "temp_max": 295.295, "temp": 295.295, "humidity": 100}, "state": "Quixada", "coord": {"lat": -4.97, "lon": -39.02}},
{"wind": {"speed": 2.12, "deg": 166.001}, "weather": {"pressure": 992.06, "temp_min": 294.645, "temp_max": 294.645, "temp": 294.645, "humidity": 95}, "state": "Iguat", "coord": {"lat": -6.36, "lon": -39.3}},
{"wind": {"speed": 1.97, "deg": 76.5011}, "weather": {"pressure": 1005.19, "temp_min": 295.195, "temp_max": 295.195, "temp": 295.195, "humidity": 100}, "state": "Quixeramobim", "coord": {"lat": -5.2, "lon": -39.29}},
{"wind": {"speed": 2.97, "deg": 124.501}, "weather": {"pressure": 1017.03, "temp_min": 299.095, "temp_max": 299.095, "temp": 299.095, "humidity": 79}, "state": "Quixere", "coord": {"lat": -5.07, "lon": -37.99}},
{"wind": {"speed": 2.92, "deg": 3.0011}, "weather": {"pressure": 1006.08, "temp_min": 297.795, "temp_max": 297.795, "temp": 297.795, "humidity": 89}, "state": "Conceicao do Araguaia", "coord": {"lat": -8.26, "lon": -49.26}},
{"wind": {"speed": 1.17, "deg": 91.0011}, "weather": {"pressure": 971.63, "temp_min": 294.995, "temp_max": 294.995, "temp": 294.995, "humidity": 96}, "state": "Reriutaba", "coord": {"lat": -4.14, "lon": -40.58}},
{"wind": {"speed": 2.97, "deg": 124.501}, "weather": {"pressure": 1017.03, "temp_min": 299.095, "temp_max": 299.095, "temp": 299.095, "humidity": 79}, "state": "Russas", "coord": {"lat": -4.94, "lon": -37.98}},
{"wind": {"speed": 3.12, "deg": 140.001}, "weather": {"pressure": 966.61, "temp_min": 293.545, "temp_max": 293.545, "temp": 293.545, "humidity": 97}, "state": "Saboeiro", "coord": {"lat": -6.54, "lon": -39.91}},
{"wind": {"speed": 0.62, "deg": 195.501}, "weather": {"pressure": 762.82, "temp_min": 279.745, "temp_max": 279.745, "temp": 279.745, "humidity": 95}, "state": "Salitre", "coord": {"lat": -20.88, "lon": -64.92}},
{"wind": {"speed": 1.17, "deg": 84.0011}, "weather": {"pressure": 998.55, "temp_min": 295.645, "temp_max": 295.645, "temp": 295.645, "humidity": 96}, "state": "Santa Quiteria", "coord": {"lat": -4.33, "lon": -40.16}},
{"wind": {"speed": 1.27, "deg": 189.501}, "weather": {"pressure": 1008.03, "temp_min": 295.445, "temp_max": 295.445, "temp": 295.445, "humidity": 97}, "state": "Santana do Acara", "coord": {"lat": -3.46, "lon": -40.21}},
{"wind": {"speed": 2.87, "deg": 138.001}, "weather": {"pressure": 942.05, "temp_min": 293.495, "temp_max": 293.495, "temp": 293.495, "humidity": 96}, "state": "Santana do Cariri", "coord": {"lat": -7.19, "lon": -39.74}},
{"wind": {"speed": 1.17, "deg": 91.0011}, "weather": {"pressure": 971.63, "temp_min": 294.995, "temp_max": 294.995, "temp": 294.995, "humidity": 96}, "state": "São Benedito", "coord": {"lat": -4.05, "lon": -40.87}},
{"wind": {"speed": 3.6, "deg": 160}, "weather": {"pressure": 1012, "temp_min": 297.15, "temp_max": 297.15, "temp": 297.15, "humidity": 100}, "state": "Sao Goncalo do Amarante", "coord": {"lat": -5.79, "lon": -35.33}},
{"wind": {"speed": 0.77, "deg": 135.501}, "weather": {"pressure": 1013.06, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 97}, "state": "São João do Jaguaribe", "coord": {"lat": -5.27, "lon": -38.27}},
{"wind": {"speed": 1.57, "deg": 125.501}, "weather": {"pressure": 1001.46, "temp_min": 297.495, "temp_max": 297.495, "temp": 297.495, "humidity": 93}, "state": "Umirim", "coord": {"lat": -3.68, "lon": -39.35}},
{"wind": {"speed": 1.12, "deg": 104.501}, "weather": {"pressure": 973.98, "temp_min": 292.645, "temp_max": 292.645, "temp": 292.645, "humidity": 97}, "state": "Senador Pompe", "coord": {"lat": -5.59, "lon": -39.37}},
{"wind": {"speed": 1.27, "deg": 189.501}, "weather": {"pressure": 1008.03, "temp_min": 295.445, "temp_max": 295.445, "temp": 295.445, "humidity": 97}, "state": "Aiuá", "coord": {"lat": -3.45, "lon": -40.47}},
{"wind": {"speed": 1.27, "deg": 189.501}, "weather": {"pressure": 1008.03, "temp_min": 295.445, "temp_max": 295.445, "temp": 295.445, "humidity": 97}, "state": "Sobral", "coord": {"lat": -3.69, "lon": -40.35}},
{"wind": {"speed": 0.87, "deg": 250.001}, "weather": {"pressure": 994.25, "temp_min": 295.995, "temp_max": 295.995, "temp": 295.995, "humidity": 86}, "state": "Solonópole", "coord": {"lat": -5.73, "lon": -39.01}},
{"wind": {"speed": 0.77, "deg": 135.501}, "weather": {"pressure": 1013.06, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 97}, "state": "Tabuleiro do Norte", "coord": {"lat": -5.25, "lon": -38.13}},
{"wind": {"speed": 2.6, "deg": 110}, "weather": {"pressure": 1017, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 100}, "state": "Tamboril", "coord": {"lat": 19.49, "lon": -70.61}},
{"wind": {"speed": 3.12, "deg": 140.001}, "weather": {"pressure": 966.61, "temp_min": 293.545, "temp_max": 293.545, "temp": 293.545, "humidity": 97}, "state": "Saboeiro", "coord": {"lat": -6.54, "lon": -39.91}},
{"wind": {"speed": 1.92, "deg": 149.001}, "weather": {"pressure": 963.45, "temp_min": 291.895, "temp_max": 291.895, "temp": 291.895, "humidity": 95}, "state": "Tauá", "coord": {"lat": -5.97, "lon": -40.3}},
{"wind": {"speed": 1.22, "deg": 121.001}, "weather": {"pressure": 990.93, "temp_min": 296.095, "temp_max": 296.095, "temp": 296.095, "humidity": 96}, "state": "Fazenda Fechado", "coord": {"lat": -4.02, "lon": -39.55}},
{"wind": {"speed": 1.32, "deg": 152.501}, "weather": {"pressure": 996.19, "temp_min": 296.495, "temp_max": 296.495, "temp": 296.495, "humidity": 96}, "state": "Tiangua", "coord": {"lat": -3.73, "lon": -40.99}},
{"wind": {"speed": 4.37, "deg": 98.0011}, "weather": {"pressure": 1024.73, "temp_min": 298.795, "temp_max": 298.795, "temp": 298.795, "humidity": 100}, "state": "Trairi", "coord": {"lat": -3.28, "lon": -39.27}},
{"wind": {"speed": 1.57, "deg": 125.501}, "weather": {"pressure": 1001.46, "temp_min": 297.495, "temp_max": 297.495, "temp": 297.495, "humidity": 93}, "state": "Uruburetama", "coord": {"lat": -3.62, "lon": -39.51}},
{"wind": {"speed": 1.32, "deg": 152.501}, "weather": {"pressure": 996.19, "temp_min": 296.495, "temp_max": 296.495, "temp": 296.495, "humidity": 96}, "state": "Ubajara", "coord": {"lat": -3.85, "lon": -40.92}},
{"wind": {"speed": 2.32, "deg": 138.501}, "weather": {"pressure": 982.09, "temp_min": 293.595, "temp_max": 293.595, "temp": 293.595, "humidity": 88}, "state": "Triunfo", "coord": {"lat": -6.57, "lon": -38.6}},
{"wind": {"speed": 1.57, "deg": 125.501}, "weather": {"pressure": 1001.46, "temp_min": 297.495, "temp_max": 297.495, "temp": 297.495, "humidity": 93}, "state": "Umirim", "coord": {"lat": -3.68, "lon": -39.35}},
{"wind": {"speed": 1.57, "deg": 125.501}, "weather": {"pressure": 1001.46, "temp_min": 297.495, "temp_max": 297.495, "temp": 297.495, "humidity": 93}, "state": "Uruburetama", "coord": {"lat": -3.62, "lon": -39.51}},
{"wind": {"speed": 1.32, "deg": 152.501}, "weather": {"pressure": 996.19, "temp_min": 296.495, "temp_max": 296.495, "temp": 296.495, "humidity": 96}, "state": "Uruoca", "coord": {"lat": -3.31, "lon": -40.56}},
{"wind": {"speed": 1.17, "deg": 84.0011}, "weather": {"pressure": 998.55, "temp_min": 295.645, "temp_max": 295.645, "temp": 295.645, "humidity": 96}, "state": "Varjota", "coord": {"lat": -4.19, "lon": -40.48}},
{"wind": {"speed": 2.42, "deg": 150.001}, "weather": {"pressure": 974.23, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 94}, "state": "Caririac", "coord": {"lat": -7.04, "lon": -39.28}},
{"wind": {"speed": 1.32, "deg": 152.501}, "weather": {"pressure": 996.19, "temp_min": 296.495, "temp_max": 296.495, "temp": 296.495, "humidity": 96}, "state": "Vicosa do Ceara", "coord": {"lat": -3.56, "lon": -41.09}},
{"wind": {"speed": 1.22, "deg": 305.001}, "weather": {"pressure": 1020.03, "temp_min": 295.345, "temp_max": 295.345, "temp": 295.345, "humidity": 100}, "state": "Brasília", "coord": {"lat": -3.89, "lon": -42.69}},
{"wind": {"speed": 2.17, "deg": 97.0011}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Guapo", "coord": {"lat": -16.83, "lon": -49.53}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1022, "temp_min": 291.15, "temp_max": 291.15, "temp": 291.15, "humidity": 82}, "state": "Abadiania", "coord": {"lat": -16.2, "lon": -48.71}},
{"wind": {"speed": 3.67, "deg": 123.501}, "weather": {"pressure": 956.48, "temp_min": 293.645, "temp_max": 293.645, "temp": 293.645, "humidity": 90}, "state": "Jandaia", "coord": {"lat": -17.05, "lon": -50.15}},
{"wind": {"speed": 3.27, "deg": 100.001}, "weather": {"pressure": 931.91, "temp_min": 291.795, "temp_max": 291.795, "temp": 291.795, "humidity": 97}, "state": "Anicuns", "coord": {"lat": -16.46, "lon": -49.96}},
{"wind": {"speed": 3.1, "deg": 150}, "weather": {"pressure": 1021, "temp_min": 292.15, "temp_max": 292.15, "temp": 292.15, "humidity": 88}, "state": "Planaltina", "coord": {"lat": -15.45, "lon": -47.61}},
{"wind": {"speed": 2.82, "deg": 111.501}, "weather": {"pressure": 956.07, "temp_min": 292.095, "temp_max": 292.095, "temp": 292.095, "humidity": 92}, "state": "Corumbaíba", "coord": {"lat": -18.14, "lon": -48.56}},
{"wind": {"speed": 3.1, "deg": 150}, "weather": {"pressure": 1021, "temp_min": 291.15, "temp_max": 292.15, "temp": 291.42, "humidity": 88}, "state": "Gama", "coord": {"lat": -15.95, "lon": -48.08}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1022, "temp_min": 291.15, "temp_max": 291.15, "temp": 291.15, "humidity": 82}, "state": "Olho d'Água", "coord": {"lat": -16.03, "lon": -48.6}},
{"wind": {"speed": 1.72, "deg": 111.501}, "weather": {"pressure": 951.94, "temp_min": 292.595, "temp_max": 292.595, "temp": 292.595, "humidity": 97}, "state": "Aloêndia", "coord": {"lat": -17.73, "lon": -49.48}},
{"wind": {"speed": 2.22, "deg": 191.001}, "weather": {"pressure": 952.5, "temp_min": 295.295, "temp_max": 295.295, "temp": 295.295, "humidity": 77}, "state": "Campinorte", "coord": {"lat": -14.31, "lon": -49.15}},
{"wind": {"speed": 2.77, "deg": 98.0011}, "weather": {"pressure": 928.59, "temp_min": 293.295, "temp_max": 293.295, "temp": 293.295, "humidity": 58}, "state": "Cavalcante", "coord": {"lat": -13.8, "lon": -47.46}},
{"wind": {"speed": 6.22, "deg": 89.5011}, "weather": {"pressure": 938.32, "temp_min": 294.495, "temp_max": 294.495, "temp": 294.495, "humidity": 64}, "state": "Posse", "coord": {"lat": -14.09, "lon": -46.37}},
{"wind": {"speed": 2.32, "deg": 135.001}, "weather": {"pressure": 979.9, "temp_min": 293.245, "temp_max": 293.245, "temp": 293.245, "humidity": 97}, "state": "Amaralina", "coord": {"lat": -13.85, "lon": -40.08}},
{"wind": {"speed": 3.27, "deg": 100.001}, "weather": {"pressure": 931.91, "temp_min": 291.795, "temp_max": 291.795, "temp": 291.795, "humidity": 97}, "state": "Americano do Brasil", "coord": {"lat": -16.25, "lon": -49.98}},
{"wind": {"speed": 4.52, "deg": 135.001}, "weather": {"pressure": 957.21, "temp_min": 294.645, "temp_max": 294.645, "temp": 294.645, "humidity": 87}, "state": "Amorinópolis", "coord": {"lat": -16.62, "lon": -51.09}},
{"wind": {"speed": 0.72, "deg": 139.501}, "weather": {"pressure": 1019, "temp_min": 291.15, "temp_max": 295.15, "temp": 292.43, "humidity": 94}, "state": "Anapolis", "coord": {"lat": -16.33, "lon": -48.95}},
{"wind": {"speed": 4.97, "deg": 109.001}, "weather": {"pressure": 944.56, "temp_min": 292.295, "temp_max": 292.295, "temp": 292.295, "humidity": 92}, "state": "Anhanguera", "coord": {"lat": -18.34, "lon": -48.22}},
{"wind": {"speed": 3.27, "deg": 100.001}, "weather": {"pressure": 931.91, "temp_min": 291.795, "temp_max": 291.795, "temp": 291.795, "humidity": 97}, "state": "Anicuns", "coord": {"lat": -16.46, "lon": -49.96}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Aparecida de Goiania", "coord": {"lat": -16.82, "lon": -49.24}},
{"wind": {"speed": 3.67, "deg": 135.001}, "weather": {"pressure": 964.42, "temp_min": 292.745, "temp_max": 292.745, "temp": 292.745, "humidity": 96}, "state": "Cac", "coord": {"lat": -18.56, "lon": -51.13}},
{"wind": {"speed": 3.12, "deg": 119.001}, "weather": {"pressure": 967.58, "temp_min": 290.295, "temp_max": 290.295, "temp": 290.295, "humidity": 94}, "state": "Galheiro", "coord": {"lat": -18.97, "lon": -51.95}},
{"wind": {"speed": 3.27, "deg": 100.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Avelinópolis", "coord": {"lat": -16.47, "lon": -49.76}},
{"wind": {"speed": 3.27, "deg": 130.001}, "weather": {"pressure": 974.71, "temp_min": 297.345, "temp_max": 297.345, "temp": 297.345, "humidity": 77}, "state": "Aragarcas", "coord": {"lat": -15.9, "lon": -52.25}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Aragoiania", "coord": {"lat": -16.91, "lon": -49.45}},
{"wind": {"speed": 2.52, "deg": 140.001}, "weather": {"pressure": 972.2, "temp_min": 295.545, "temp_max": 295.545, "temp": 295.545, "humidity": 88}, "state": "Mozarlandia", "coord": {"lat": -14.74, "lon": -50.57}},
{"wind": {"speed": 3.82, "deg": 135.501}, "weather": {"pressure": 978.28, "temp_min": 296.645, "temp_max": 296.645, "temp": 296.645, "humidity": 82}, "state": "Piranhas", "coord": {"lat": -16.43, "lon": -51.82}},
{"wind": {"speed": 5.47, "deg": 164.501}, "weather": {"pressure": 991.17, "temp_min": 296.245, "temp_max": 296.245, "temp": 296.245, "humidity": 80}, "state": "Aruanã", "coord": {"lat": -14.92, "lon": -51.08}},
{"wind": {"speed": 3.67, "deg": 123.501}, "weather": {"pressure": 956.48, "temp_min": 293.645, "temp_max": 293.645, "temp": 293.645, "humidity": 90}, "state": "Aurilândia", "coord": {"lat": -16.68, "lon": -50.46}},
{"wind": {"speed": 3.27, "deg": 100.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Avelinópolis", "coord": {"lat": -16.47, "lon": -49.76}},
{"wind": {"speed": 3.27, "deg": 130.001}, "weather": {"pressure": 974.71, "temp_min": 297.345, "temp_max": 297.345, "temp": 297.345, "humidity": 77}, "state": "Aragarcas", "coord": {"lat": -15.9, "lon": -52.25}},
{"wind": {"speed": 3.77, "deg": 122.001}, "weather": {"pressure": 922.03, "temp_min": 292.145, "temp_max": 292.145, "temp": 292.145, "humidity": 96}, "state": "Barro Alto", "coord": {"lat": -11.76, "lon": -41.91}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Bela Vista de Goias", "coord": {"lat": -16.97, "lon": -48.95}},
{"wind": {"speed": 3.27, "deg": 130.001}, "weather": {"pressure": 974.71, "temp_min": 297.345, "temp_max": 297.345, "temp": 297.345, "humidity": 77}, "state": "Aragarcas", "coord": {"lat": -15.9, "lon": -52.25}},
{"wind": {"speed": 4.07, "deg": 99.0011}, "weather": {"pressure": 960.04, "temp_min": 293.395, "temp_max": 293.395, "temp": 293.395, "humidity": 93}, "state": "Cachoeira Dourada", "coord": {"lat": -18.52, "lon": -49.5}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 291.15, "temp_max": 295.15, "temp": 292.12, "humidity": 94}, "state": "Bonfinópolis", "coord": {"lat": -16.62, "lon": -48.96}},
{"wind": {"speed": 1.42, "deg": 175.501}, "weather": {"pressure": 991.01, "temp_min": 295.945, "temp_max": 295.945, "temp": 295.945, "humidity": 85}, "state": "Sao Miguel do Araguaia", "coord": {"lat": -13.28, "lon": -50.16}},
{"wind": {"speed": 0.72, "deg": 139.501}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Brazabrantes", "coord": {"lat": -16.43, "lon": -49.39}},
{"wind": {"speed": 5.47, "deg": 164.501}, "weather": {"pressure": 991.17, "temp_min": 296.245, "temp_max": 296.245, "temp": 296.245, "humidity": 80}, "state": "Britânia", "coord": {"lat": -15.24, "lon": -51.16}},
{"wind": {"speed": 1.72, "deg": 111.501}, "weather": {"pressure": 951.94, "temp_min": 292.595, "temp_max": 292.595, "temp": 292.595, "humidity": 97}, "state": "Buriti Alegre", "coord": {"lat": -18.14, "lon": -49.04}},
{"wind": {"speed": 3.12, "deg": 117.001}, "weather": {"pressure": 957.61, "temp_min": 293.145, "temp_max": 293.145, "temp": 293.145, "humidity": 94}, "state": "Mossâmedes", "coord": {"lat": -16.13, "lon": -50.22}},
{"wind": {"speed": 6.22, "deg": 89.5011}, "weather": {"pressure": 938.32, "temp_min": 294.495, "temp_max": 294.495, "temp": 294.495, "humidity": 64}, "state": "Posse", "coord": {"lat": -14.09, "lon": -46.37}},
{"wind": {"speed": 3.67, "deg": 105.501}, "weather": {"pressure": 940.51, "temp_min": 297.295, "temp_max": 297.295, "temp": 297.295, "humidity": 54}, "state": "Cabeceiras", "coord": {"lat": -15.8, "lon": -46.93}},
{"wind": {"speed": 3.67, "deg": 135.001}, "weather": {"pressure": 964.42, "temp_min": 292.745, "temp_max": 292.745, "temp": 292.745, "humidity": 96}, "state": "Cachoeira Alta", "coord": {"lat": -18.76, "lon": -50.94}},
{"wind": {"speed": 3.67, "deg": 123.501}, "weather": {"pressure": 956.48, "temp_min": 293.645, "temp_max": 293.645, "temp": 293.645, "humidity": 90}, "state": "Aurilândia", "coord": {"lat": -16.68, "lon": -50.46}},
{"wind": {"speed": 4.07, "deg": 99.0011}, "weather": {"pressure": 960.04, "temp_min": 293.395, "temp_max": 293.395, "temp": 293.395, "humidity": 93}, "state": "Cachoeira Dourada", "coord": {"lat": -18.52, "lon": -49.5}},
{"wind": {"speed": 3.67, "deg": 135.001}, "weather": {"pressure": 964.42, "temp_min": 292.745, "temp_max": 292.745, "temp": 292.745, "humidity": 96}, "state": "Cac", "coord": {"lat": -18.56, "lon": -51.13}},
{"wind": {"speed": 5.02, "deg": 144.001}, "weather": {"pressure": 956.23, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 89}, "state": "Caiaponia", "coord": {"lat": -16.96, "lon": -51.81}},
{"wind": {"speed": 2.82, "deg": 111.501}, "weather": {"pressure": 956.07, "temp_min": 292.095, "temp_max": 292.095, "temp": 292.095, "humidity": 92}, "state": "Caldas Novas", "coord": {"lat": -17.74, "lon": -48.62}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Senador Canedo", "coord": {"lat": -16.71, "lon": -49.09}},
{"wind": {"speed": 2.17, "deg": 97.0011}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Guapo", "coord": {"lat": -16.83, "lon": -49.53}},
{"wind": {"speed": 2.97, "deg": 170.001}, "weather": {"pressure": 967.01, "temp_min": 295.645, "temp_max": 295.645, "temp": 295.645, "humidity": 76}, "state": "Porangat", "coord": {"lat": -13.44, "lon": -49.15}},
{"wind": {"speed": 2.22, "deg": 191.001}, "weather": {"pressure": 952.5, "temp_min": 295.295, "temp_max": 295.295, "temp": 295.295, "humidity": 77}, "state": "Campinorte", "coord": {"lat": -14.31, "lon": -49.15}},
{"wind": {"speed": 4.02, "deg": 100.001}, "weather": {"pressure": 943.91, "temp_min": 292.645, "temp_max": 292.645, "temp": 292.645, "humidity": 91}, "state": "Ipameri", "coord": {"lat": -17.72, "lon": -48.16}},
{"wind": {"speed": 0.72, "deg": 139.501}, "weather": {"pressure": 1019, "temp_min": 291.15, "temp_max": 295.15, "temp": 292.43, "humidity": 94}, "state": "Anapolis", "coord": {"lat": -16.33, "lon": -48.95}},
{"wind": {"speed": 5.87, "deg": 89.5011}, "weather": {"pressure": 966.45, "temp_min": 295.645, "temp_max": 295.645, "temp": 295.645, "humidity": 58}, "state": "Campos Belos", "coord": {"lat": -13.04, "lon": -46.77}},
{"wind": {"speed": 3.02, "deg": 150.001}, "weather": {"pressure": 970.5, "temp_min": 296.295, "temp_max": 296.295, "temp": 296.295, "humidity": 81}, "state": "Crixas", "coord": {"lat": -14.55, "lon": -49.97}},
{"wind": {"speed": 2.62, "deg": 134.501}, "weather": {"pressure": 952.91, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 92}, "state": "Carmo do Rio Verde", "coord": {"lat": -15.35, "lon": -49.71}},
{"wind": {"speed": 4.02, "deg": 116.001}, "weather": {"pressure": 970.66, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 91}, "state": "Quirinopolis", "coord": {"lat": -18.45, "lon": -50.45}},
{"wind": {"speed": 4.02, "deg": 100.001}, "weather": {"pressure": 943.91, "temp_min": 292.645, "temp_max": 292.645, "temp": 292.645, "humidity": 91}, "state": "Catalao", "coord": {"lat": -18.17, "lon": -47.95}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Goianira", "coord": {"lat": -16.5, "lon": -49.43}},
{"wind": {"speed": 2.77, "deg": 98.0011}, "weather": {"pressure": 928.59, "temp_min": 293.295, "temp_max": 293.295, "temp": 293.295, "humidity": 58}, "state": "Cavalcante", "coord": {"lat": -13.8, "lon": -47.46}},
{"wind": {"speed": 0.82, "deg": 347.001}, "weather": {"pressure": 1019, "temp_min": 287.15, "temp_max": 291.15, "temp": 289.74, "humidity": 45}, "state": "Ceres", "coord": {"lat": 37.59, "lon": -120.96}},
{"wind": {"speed": 2.17, "deg": 97.0011}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Varjão", "coord": {"lat": -17.05, "lon": -49.63}},
{"wind": {"speed": 2.97, "deg": 135.501}, "weather": {"pressure": 956.23, "temp_min": 291.195, "temp_max": 291.195, "temp": 291.195, "humidity": 88}, "state": "J. M. Péres", "coord": {"lat": -18.23, "lon": -51.97}},
{"wind": {"speed": 3.1, "deg": 150}, "weather": {"pressure": 1021, "temp_min": 291.15, "temp_max": 292.15, "temp": 291.4, "humidity": 88}, "state": "Luziania", "coord": {"lat": -16.25, "lon": -47.95}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1022, "temp_min": 291.15, "temp_max": 291.15, "temp": 291.15, "humidity": 82}, "state": "Corumbá de Goió", "coord": {"lat": -15.92, "lon": -48.81}},
{"wind": {"speed": 2.22, "deg": 102.501}, "weather": {"pressure": 967.26, "temp_min": 293.645, "temp_max": 293.645, "temp": 293.645, "humidity": 77}, "state": "Alagoas", "coord": {"lat": -13.8, "lon": -47.82}},
{"wind": {"speed": 3.67, "deg": 123.501}, "weather": {"pressure": 956.48, "temp_min": 293.645, "temp_max": 293.645, "temp": 293.645, "humidity": 90}, "state": "Sao Luis de Montes Belos", "coord": {"lat": -16.52, "lon": -50.37}},
{"wind": {"speed": 2.6, "deg": 200}, "weather": {"pressure": 1022, "temp_min": 291.15, "temp_max": 291.15, "temp": 291.15, "humidity": 82}, "state": "Corumbá de Goió", "coord": {"lat": -15.92, "lon": -48.81}},
{"wind": {"speed": 2.82, "deg": 111.501}, "weather": {"pressure": 956.07, "temp_min": 292.095, "temp_max": 292.095, "temp": 292.095, "humidity": 92}, "state": "Corumbaíba", "coord": {"lat": -18.14, "lon": -48.56}},
{"wind": {"speed": 2.32, "deg": 86.0011}, "weather": {"pressure": 925.92, "temp_min": 293.145, "temp_max": 293.145, "temp": 293.145, "humidity": 88}, "state": "Cristalina", "coord": {"lat": -16.77, "lon": -47.61}},
{"wind": {"speed": 1.87, "deg": 93.5011}, "weather": {"pressure": 952.91, "temp_min": 292.495, "temp_max": 292.495, "temp": 292.495, "humidity": 97}, "state": "Piracanjuba", "coord": {"lat": -17.3, "lon": -49.02}},
{"wind": {"speed": 3.02, "deg": 150.001}, "weather": {"pressure": 970.5, "temp_min": 296.295, "temp_max": 296.295, "temp": 296.295, "humidity": 81}, "state": "Crixas", "coord": {"lat": -14.55, "lon": -49.97}},
{"wind": {"speed": 1.87, "deg": 93.5011}, "weather": {"pressure": 952.91, "temp_min": 292.495, "temp_max": 292.495, "temp": 292.495, "humidity": 97}, "state": "Pontalina", "coord": {"lat": -17.52, "lon": -49.45}},
{"wind": {"speed": 4.97, "deg": 109.001}, "weather": {"pressure": 944.56, "temp_min": 292.295, "temp_max": 292.295, "temp": 292.295, "humidity": 92}, "state": "Anhanguera", "coord": {"lat": -18.34, "lon": -48.22}},
{"wind": {"speed": 4.57, "deg": 80.5011}, "weather": {"pressure": 940.1, "temp_min": 298.545, "temp_max": 298.545, "temp": 298.545, "humidity": 47}, "state": "Formoso", "coord": {"lat": -14.95, "lon": -46.23}},
{"wind": {"speed": 0.72, "deg": 139.501}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Petrolina de Goias", "coord": {"lat": -16.09, "lon": -49.34}},
{"wind": {"speed": 4.82, "deg": 119.001}, "weather": {"pressure": 932.16, "temp_min": 288.945, "temp_max": 288.945, "temp": 288.945, "humidity": 98}, "state": "Divinopolis", "coord": {"lat": -20.14, "lon": -44.88}},
{"wind": {"speed": 4.02, "deg": 129.001}, "weather": {"pressure": 969.93, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 89}, "state": "Ipora", "coord": {"lat": -16.44, "lon": -51.12}},
{"wind": {"speed": 6.02, "deg": 93.5011}, "weather": {"pressure": 938.32, "temp_min": 294.195, "temp_max": 294.195, "temp": 294.195, "humidity": 64}, "state": "Sao Domingos", "coord": {"lat": -13.4, "lon": -46.32}},
{"wind": {"speed": 5.02, "deg": 144.001}, "weather": {"pressure": 956.23, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 89}, "state": "Caiaponia", "coord": {"lat": -16.96, "lon": -51.81}},
{"wind": {"speed": 1.87, "deg": 93.5011}, "weather": {"pressure": 952.91, "temp_min": 292.495, "temp_max": 292.495, "temp": 292.495, "humidity": 97}, "state": "Pontalina", "coord": {"lat": -17.52, "lon": -49.45}},
{"wind": {"speed": 3.67, "deg": 111.001}, "weather": {"pressure": 960.37, "temp_min": 292.995, "temp_max": 292.995, "temp": 292.995, "humidity": 94}, "state": "Edeia", "coord": {"lat": -17.34, "lon": -49.93}},
{"wind": {"speed": 5.7, "deg": 130}, "weather": {"pressure": 1020, "temp_min": 290.15, "temp_max": 290.15, "temp": 290.15, "humidity": 82}, "state": "Estrela do Norte", "coord": {"lat": -22.49, "lon": -51.66}},
{"wind": {"speed": 3.62, "deg": 110.001}, "weather": {"pressure": 969.93, "temp_min": 293.895, "temp_max": 293.895, "temp": 293.895, "humidity": 93}, "state": "Buenolândia", "coord": {"lat": -15.8, "lon": -50.31}},
{"wind": {"speed": 4.77, "deg": 141.001}, "weather": {"pressure": 987.28, "temp_min": 295.245, "temp_max": 295.245, "temp": 295.245, "humidity": 86}, "state": "Jussara", "coord": {"lat": -15.87, "lon": -50.87}},
{"wind": {"speed": 3.67, "deg": 123.501}, "weather": {"pressure": 956.48, "temp_min": 293.645, "temp_max": 293.645, "temp": 293.645, "humidity": 90}, "state": "Firminopolis", "coord": {"lat": -16.58, "lon": -50.3}},
{"wind": {"speed": 5.57, "deg": 81.0011}, "weather": {"pressure": 968.72, "temp_min": 296.845, "temp_max": 296.845, "temp": 296.845, "humidity": 55}, "state": "Iaciara", "coord": {"lat": -14.1, "lon": -46.63}},
{"wind": {"speed": 3.07, "deg": 110.501}, "weather": {"pressure": 1028.13, "temp_min": 284.295, "temp_max": 284.295, "temp": 284.295, "humidity": 88}, "state": "Formosa", "coord": {"lat": -26.18, "lon": -58.18}},
{"wind": {"speed": 4.57, "deg": 80.5011}, "weather": {"pressure": 940.1, "temp_min": 298.545, "temp_max": 298.545, "temp": 298.545, "humidity": 47}, "state": "Formoso", "coord": {"lat": -14.95, "lon": -46.23}},
{"wind": {"speed": 0.72, "deg": 139.501}, "weather": {"pressure": 1019, "temp_min": 291.15, "temp_max": 295.15, "temp": 292.43, "humidity": 94}, "state": "Anapolis", "coord": {"lat": -16.33, "lon": -48.95}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 291.15, "temp_max": 295.15, "temp": 292.16, "humidity": 94}, "state": "Goianapolis", "coord": {"lat": -16.51, "lon": -49.02}},
{"wind": {"speed": 4.02, "deg": 100.001}, "weather": {"pressure": 943.91, "temp_min": 292.645, "temp_max": 292.645, "temp": 292.645, "humidity": 91}, "state": "Catalao", "coord": {"lat": -18.17, "lon": -47.95}},
{"wind": {"speed": 3.17, "deg": 153.001}, "weather": {"pressure": 940.02, "temp_min": 292.845, "temp_max": 292.845, "temp": 292.845, "humidity": 95}, "state": "Goianesia", "coord": {"lat": -15.32, "lon": -49.12}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Goiânia", "coord": {"lat": -16.64, "lon": -49.26}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Goianira", "coord": {"lat": -16.5, "lon": -49.43}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Goiania", "coord": {"lat": -16.68, "lon": -49.25}},
{"wind": {"speed": 1.72, "deg": 111.501}, "weather": {"pressure": 951.94, "temp_min": 292.595, "temp_max": 292.595, "temp": 292.595, "humidity": 97}, "state": "Goiatuba", "coord": {"lat": -18.01, "lon": -49.35}},
{"wind": {"speed": 4.02, "deg": 116.001}, "weather": {"pressure": 970.66, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 91}, "state": "Quirinopolis", "coord": {"lat": -18.45, "lon": -50.45}},
{"wind": {"speed": 2.17, "deg": 97.0011}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Guapo", "coord": {"lat": -16.83, "lon": -49.53}},
{"wind": {"speed": 2.62, "deg": 134.501}, "weather": {"pressure": 952.91, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 92}, "state": "Itapuranga", "coord": {"lat": -15.56, "lon": -49.95}},
{"wind": {"speed": 6.22, "deg": 89.5011}, "weather": {"pressure": 938.32, "temp_min": 294.495, "temp_max": 294.495, "temp": 294.495, "humidity": 64}, "state": "Posse", "coord": {"lat": -14.09, "lon": -46.37}},
{"wind": {"speed": 1.32, "deg": 182.001}, "weather": {"pressure": 955.1, "temp_min": 295.145, "temp_max": 295.145, "temp": 295.145, "humidity": 88}, "state": "Hidrolina", "coord": {"lat": -14.72, "lon": -49.47}},
{"wind": {"speed": 2.62, "deg": 134.501}, "weather": {"pressure": 952.91, "temp_min": 293.795, "temp_max": 293.795, "temp": 293.795, "humidity": 92}, "state": "Itaguar", "coord": {"lat": -15.76, "lon": -49.63}},
{"wind": {"speed": 1.52, "deg": 120.001}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Hidrolandia", "coord": {"lat": -16.96, "lon": -49.23}},
{"wind": {"speed": 1.32, "deg": 182.001}, "weather": {"pressure": 955.1, "temp_min": 295.145, "temp_max": 295.145, "temp": 295.145, "humidity": 88}, "state": "Hidrolina", "coord": {"lat": -14.72, "lon": -49.47}},
{"wind": {"speed": 5.57, "deg": 81.0011}, "weather": {"pressure": 968.72, "temp_min": 296.845, "temp_max": 296.845, "temp": 296.845, "humidity": 55}, "state": "Iaciara", "coord": {"lat": -14.1, "lon": -46.63}},
{"wind": {"speed": 4.02, "deg": 116.001}, "weather": {"pressure": 970.66, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 91}, "state": "Santa Vitoria", "coord": {"lat": -18.84, "lon": -50.12}},
{"wind": {"speed": 3.67, "deg": 123.501}, "weather": {"pressure": 956.48, "temp_min": 293.645, "temp_max": 293.645, "temp": 293.645, "humidity": 90}, "state": "Jandaia", "coord": {"lat": -17.05, "lon": -50.15}},
{"wind": {"speed": 0.72, "deg": 139.501}, "weather": {"pressure": 1019, "temp_min": 295.15, "temp_max": 295.15, "temp": 295.15, "humidity": 94}, "state": "Inhumas", "coord": {"lat": -16.36, "lon": -49.5}},
{"wind": {"speed": 4.02, "deg": 100.001}, "weather": {"pressure": 943.91, "temp_min": 292.645, "temp_max": 292.645, "temp": 292.645, "humidity": 91}, "state": "Ipameri", "coord": {"lat": -17.72, "lon": -48.16}},
{"wind": {"speed": 1.62, "deg": 134.001}, "weather": {"pressure": 953.07, "temp_min": 293.995, "temp_max": 293.995, "temp": 293.995, "humidity": 92}, "state": "Rubiataba", "coord": {"lat": -15.16, "lon": -49.8}},
{"wind": {"speed": 4.02, "deg": 129.001}, "weather": {"pressure": 969.93, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 89}, "state": "Ipora", "coord": {"lat": -16.44, "lon": -51.12}},
{"wind": {"speed": 4.02, "deg": 129.001}, "weather": {"pressure": 969.93, "temp_min": 294.745, "temp_max": 294.745, "temp": 294.745, "humidity": 89}, "state": "Ipora", "coord": {"lat": -16.44, "lon": -51.12}},
{"wind": {"speed": 3.27, "deg": 100.001}, "weather": {"pressure": 931.91, "temp_min": 291.795, "temp_max": 291.795, "temp": 291.795, "humidity": 97}, "state": "Itaberai", "coord": {"lat": -16.02, "lon": -49.81}},