commonware-estimator 2026.4.0

Simulate mechanism performance under realistic network conditions.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
{
    "data": {
        "eu-west-1": {
            "ca-central-1": 72.44800000000001,
            "eu-west-2": 17.104000000000003,
            "us-east-1": 72.814,
            "eu-central-1": 30.542600000000004,
            "ap-east-1": 262.58979999999997,
            "il-central-1": 73.812,
            "us-west-2": 122.0432,
            "eu-west-3": 23.258000000000003,
            "ap-southeast-3": 200.663,
            "ap-southeast-1": 185.8902,
            "ap-southeast-5": 191.164,
            "sa-east-1": 181.0256,
            "ap-southeast-4": 269.48,
            "eu-south-2": 35.650000000000006,
            "ap-northeast-3": 216.1896,
            "me-south-1": 109.4528,
            "mx-central-1": 128.364,
            "ap-south-2": 153.71679999999998,
            "ap-northeast-2": 239.91860000000003,
            "me-central-1": 133.686,
            "us-east-2": 83.21799999999999,
            "ap-southeast-7": 212.63300000000004,
            "ca-west-1": 138.90720000000002,
            "eu-south-1": 38.7132,
            "ap-northeast-1": 208.4542,
            "eu-central-2": 31.2904,
            "us-west-1": 134.19240000000002,
            "af-south-1": 166.464,
            "eu-north-1": 44.096,
            "ap-southeast-2": 259.0424,
            "ap-south-1": 133.6874,
            "ap-east-2": 239.4752,
            "eu-west-1": 5.782000000000001
        },
        "ap-southeast-1": {
            "ap-southeast-1": 5.6796,
            "eu-west-1": 186.2592,
            "ap-south-2": 55.7668,
            "ap-southeast-5": 11.401,
            "mx-central-1": 245.4106,
            "us-east-2": 210.87680000000003,
            "us-west-1": 174.5318,
            "sa-east-1": 332.5306,
            "me-central-1": 93.3688,
            "eu-south-1": 155.01200000000003,
            "ap-southeast-2": 97.52,
            "us-east-1": 231.0768,
            "il-central-1": 208.9482,
            "ap-east-1": 40.032799999999995,
            "eu-west-2": 177.7112,
            "ap-northeast-1": 73.6452,
            "af-south-1": 343.7276,
            "ap-northeast-2": 80.8142,
            "ca-central-1": 224.3556,
            "ca-west-1": 179.83839999999998,
            "me-south-1": 101.3686,
            "eu-north-1": 184.5806,
            "ap-northeast-3": 79.938,
            "ap-east-2": 66.7012,
            "ap-southeast-7": 32.14,
            "eu-west-3": 171.0666,
            "ap-southeast-3": 20.351,
            "ap-southeast-4": 107.165,
            "us-west-2": 164.73,
            "eu-central-2": 158.9224,
            "eu-central-1": 165.209,
            "ap-south-1": 67.1966,
            "eu-south-2": 175.32199999999995
        },
        "ap-northeast-1": {
            "sa-east-1": 264.34560000000005,
            "us-east-2": 140.392,
            "ap-southeast-2": 114.938,
            "mx-central-1": 170.2844,
            "eu-central-2": 225.1624,
            "us-east-1": 155.8736,
            "eu-west-3": 225.5576,
            "ap-southeast-3": 88.30799999999999,
            "ca-west-1": 115.6632,
            "me-central-1": 172.4064,
            "ap-south-1": 145.73360000000002,
            "ca-central-1": 158.0578,
            "ap-east-1": 54.6652,
            "us-west-2": 101.524,
            "ap-southeast-7": 107.27,
            "us-west-1": 111.638,
            "eu-south-2": 242.90899999999996,
            "af-south-1": 391.5144,
            "ap-northeast-3": 12.889600000000002,
            "ap-south-2": 125.6044,
            "eu-west-1": 208.67760000000004,
            "ap-northeast-2": 38.6088,
            "ap-southeast-5": 78.715,
            "ap-southeast-1": 73.5668,
            "me-south-1": 180.2358,
            "ap-northeast-1": 5.8798,
            "ap-east-2": 39.436,
            "eu-central-1": 231.552,
            "eu-south-1": 221.378,
            "ap-southeast-4": 140.99,
            "eu-west-2": 219.089,
            "il-central-1": 275.6112,
            "eu-north-1": 251.16760000000005
        },
        "us-west-1": {
            "us-east-1": 74.256,
            "ap-south-1": 238.7714,
            "il-central-1": 197.9898,
            "us-west-2": 24.08,
            "ap-southeast-7": 202.832,
            "ap-southeast-3": 188.735,
            "us-west-1": 5.2532,
            "me-south-1": 235.531,
            "ap-southeast-5": 180.093,
            "eu-south-1": 164.9084,
            "ap-northeast-1": 111.099,
            "eu-north-1": 175.84279999999998,
            "sa-east-1": 177.553,
            "eu-west-3": 147.48600000000002,
            "ca-central-1": 83.13279999999999,
            "eu-central-2": 155.77280000000002,
            "af-south-1": 293.9392,
            "eu-west-1": 133.9692,
            "ap-northeast-2": 136.71799999999996,
            "ap-east-1": 157.464,
            "ap-northeast-3": 112.538,
            "me-central-1": 258.3976,
            "ap-southeast-4": 151.93400000000003,
            "mx-central-1": 78.121,
            "eu-south-2": 171.4778,
            "ap-southeast-2": 142.174,
            "eu-central-1": 156.51600000000002,
            "ap-south-2": 226.61220000000003,
            "ap-southeast-1": 173.7792,
            "ca-west-1": 44.4928,
            "ap-east-2": 145.9656,
            "eu-west-2": 151.0124,
            "us-east-2": 66.664
        },
        "ap-northeast-3": {
            "ap-south-2": 129.57539999999997,
            "eu-central-1": 237.99399999999997,
            "af-south-1": 399.628,
            "me-south-1": 174.0492,
            "mx-central-1": 174.426,
            "us-east-2": 148.24800000000002,
            "eu-west-2": 226.4188,
            "ap-southeast-2": 123.0012,
            "eu-central-2": 232.78999999999996,
            "ca-west-1": 119.8248,
            "ap-southeast-1": 79.6772,
            "ap-southeast-7": 105.482,
            "ca-central-1": 158.20739999999998,
            "me-central-1": 166.725,
            "il-central-1": 282.9038,
            "ap-south-1": 140.9132,
            "ap-east-1": 50.470400000000005,
            "us-west-1": 112.699,
            "us-west-2": 102.6468,
            "eu-north-1": 256.7388,
            "ap-southeast-5": 84.70299999999999,
            "ap-northeast-2": 28.791600000000003,
            "ap-southeast-4": 134.265,
            "eu-west-1": 215.9188,
            "sa-east-1": 272.5328,
            "ap-southeast-3": 94.864,
            "eu-west-3": 233.1088,
            "us-east-1": 162.3188,
            "ap-east-2": 37.4916,
            "ap-northeast-3": 5.0888,
            "ap-northeast-1": 12.6532,
            "eu-south-1": 228.1592,
            "eu-south-2": 245.9156
        },
        "af-south-1": {
            "ca-central-1": 226.96999999999997,
            "eu-north-1": 179.5066,
            "ap-east-1": 376.1224,
            "eu-central-1": 158.46999999999997,
            "ap-southeast-2": 413.0756,
            "us-west-1": 290.3664,
            "ap-northeast-1": 390.591,
            "eu-south-2": 138.5544,
            "us-east-2": 240.132,
            "eu-west-2": 153.0956,
            "ap-south-1": 302.3342,
            "il-central-1": 231.8228,
            "ap-southeast-7": 369.0464,
            "us-east-1": 229.7128,
            "me-south-1": 258.71,
            "ca-west-1": 294.429,
            "eu-south-1": 196.92460000000003,
            "sa-east-1": 341.1664,
            "mx-central-1": 284.8658,
            "eu-west-1": 162.1288,
            "eu-central-2": 155.73579999999998,
            "ap-northeast-3": 396.1948,
            "ap-northeast-2": 404.106,
            "ap-east-2": 270.134,
            "me-central-1": 290.9784,
            "eu-west-3": 148.772,
            "ap-southeast-3": 358.17019999999997,
            "us-west-2": 277.31739999999996,
            "ap-south-2": 329.6884,
            "ap-southeast-4": 422.4236,
            "af-south-1": 11.9106,
            "ap-southeast-5": 347.42800000000005,
            "ap-southeast-1": 343.744
        },
        "eu-south-1": {
            "ap-south-1": 119.8636,
            "ca-central-1": 105.18699999999998,
            "ap-southeast-2": 245.702,
            "il-central-1": 53.2794,
            "me-south-1": 117.715,
            "af-south-1": 198.926,
            "ap-northeast-1": 221.38620000000003,
            "ap-southeast-1": 154.6308,
            "us-east-1": 104.5504,
            "ca-west-1": 172.2404,
            "ap-northeast-2": 239.2412,
            "me-central-1": 109.9236,
            "us-east-2": 115.0564,
            "eu-west-1": 39.2862,
            "eu-north-1": 35.34,
            "ap-southeast-3": 169.92000000000002,
            "eu-central-2": 10.347600000000002,
            "eu-west-3": 24.082600000000003,
            "ap-southeast-7": 181.462,
            "ap-northeast-3": 228.1572,
            "ap-east-1": 187.582,
            "eu-central-1": 15.9936,
            "mx-central-1": 160.88360000000003,
            "us-west-1": 165.6728,
            "eu-south-1": 4.927199999999999,
            "ap-east-2": 217.1796,
            "ap-southeast-4": 256.159,
            "ap-south-2": 139.8672,
            "sa-east-1": 215.6434,
            "us-west-2": 155.382,
            "eu-west-2": 30.729000000000003,
            "ap-southeast-5": 159.856,
            "eu-south-2": 32.002
        },
        "ap-southeast-5": {
            "af-south-1": 352.2096,
            "ap-northeast-1": 81.27099999999999,
            "il-central-1": 217.636,
            "eu-south-1": 165.2742,
            "eu-west-3": 180.8788,
            "me-central-1": 102.0028,
            "eu-north-1": 197.9228,
            "sa-east-1": 352.129,
            "us-east-2": 227.927,
            "ap-east-2": 71.2124,
            "eu-central-1": 180.5516,
            "mx-central-1": 258.5852,
            "ca-central-1": 240.604,
            "ap-south-2": 65.1508,
            "us-west-1": 185.0116,
            "ap-southeast-5": 4.593999999999999,
            "eu-west-2": 187.0044,
            "ap-southeast-2": 106.17700000000002,
            "eu-south-2": 183.1248,
            "me-south-1": 110.401,
            "ap-southeast-4": 116.647,
            "us-east-1": 240.032,
            "ap-east-1": 49.022,
            "eu-west-1": 195.5944,
            "us-west-2": 172.9668,
            "ap-northeast-3": 89.77279999999999,
            "eu-central-2": 168.4608,
            "ap-south-1": 76.4392,
            "ca-west-1": 195.371,
            "ap-southeast-3": 29.459,
            "ap-southeast-7": 30.479,
            "ap-southeast-1": 13.413,
            "ap-northeast-2": 85.60719999999999
        },
        "eu-north-1": {
            "me-south-1": 109.18900000000002,
            "ap-southeast-1": 184.94,
            "ap-south-2": 174.9852,
            "us-east-1": 114.912,
            "ap-southeast-5": 189.8132,
            "ca-west-1": 174.9438,
            "ap-southeast-7": 211.03500000000005,
            "eu-south-2": 56.628,
            "eu-south-1": 34.6244,
            "ap-east-1": 217.18660000000003,
            "ap-south-1": 152.7776,
            "ap-northeast-2": 263.33399999999995,
            "us-east-2": 125.492,
            "eu-central-1": 26.0844,
            "me-central-1": 137.4288,
            "eu-west-2": 34.088,
            "eu-west-3": 34.62760000000001,
            "af-south-1": 180.8228,
            "mx-central-1": 170.2462,
            "us-west-1": 175.1936,
            "ap-east-2": 244.3082,
            "il-central-1": 89.19239999999999,
            "eu-west-1": 42.9634,
            "ca-central-1": 108.0964,
            "eu-north-1": 5.351999999999999,
            "sa-east-1": 226.0262,
            "ap-southeast-2": 275.15099999999995,
            "ap-northeast-3": 257.237,
            "ap-southeast-4": 286.69440000000003,
            "ap-southeast-3": 200.0156,
            "us-west-2": 158.05200000000002,
            "ap-northeast-1": 250.787,
            "eu-central-2": 30.8544
        },
        "me-central-1": {
            "ap-northeast-2": 186.0084,
            "eu-west-2": 128.85559999999998,
            "ca-central-1": 203.2724,
            "ap-southeast-2": 188.343,
            "ap-south-2": 57.740800000000014,
            "eu-west-1": 135.9876,
            "eu-south-2": 131.14879999999997,
            "eu-north-1": 145.57840000000002,
            "af-south-1": 295.04720000000003,
            "ap-northeast-1": 177.2724,
            "ca-west-1": 278.61,
            "ap-southeast-7": 124.616,
            "sa-east-1": 320.51599999999996,
            "ap-east-1": 134.168,
            "eu-central-1": 121.756,
            "il-central-1": 150.49679999999998,
            "ap-south-1": 34.81920000000001,
            "us-west-1": 265.1716,
            "eu-south-1": 114.3628,
            "eu-west-3": 121.8052,
            "ap-southeast-5": 101.666,
            "me-central-1": 4.984400000000002,
            "us-east-1": 199.124,
            "us-east-2": 209.636,
            "me-south-1": 21.177199999999996,
            "ap-northeast-3": 177.93959999999998,
            "ap-southeast-1": 96.273,
            "ap-east-2": 154.2244,
            "eu-central-2": 118.4104,
            "us-west-2": 260.408,
            "mx-central-1": 264.7672,
            "ap-southeast-4": 200.668,
            "ap-southeast-3": 113.667
        },
        "eu-west-3": {
            "eu-west-3": 5.6108,
            "ap-southeast-3": 185.576,
            "ca-west-1": 156.1426,
            "ap-east-2": 248.06479999999996,
            "us-east-2": 97.7444,
            "eu-west-2": 14.054000000000004,
            "ap-northeast-3": 233.74,
            "us-east-1": 86.80720000000001,
            "ap-northeast-2": 256.7768,
            "us-west-2": 138.74560000000002,
            "ap-southeast-7": 197.29199999999997,
            "sa-east-1": 198.02619999999996,
            "eu-south-1": 23.8344,
            "eu-central-1": 15.1322,
            "il-central-1": 56.4398,
            "mx-central-1": 142.715,
            "eu-central-2": 14.5018,
            "ap-south-1": 113.6828,
            "me-south-1": 94.803,
            "us-west-1": 147.3898,
            "ap-south-2": 136.382,
            "eu-north-1": 35.319,
            "eu-south-2": 24.644,
            "ap-northeast-1": 225.3284,
            "af-south-1": 152.31799999999998,
            "ap-southeast-5": 176.204,
            "ap-southeast-2": 283.02,
            "eu-west-1": 22.6584,
            "ap-southeast-4": 292.834,
            "me-central-1": 117.056,
            "ca-central-1": 88.70500000000001,
            "ap-southeast-1": 171.11,
            "ap-east-1": 204.1962
        },
        "us-west-2": {
            "ap-east-2": 133.664,
            "ca-west-1": 24.6776,
            "eu-central-1": 146.1168,
            "ap-south-2": 216.0704,
            "me-south-1": 268.2764,
            "ap-southeast-7": 197.144,
            "il-central-1": 189.35280000000003,
            "ap-northeast-2": 127.0074,
            "ca-central-1": 64.1384,
            "ap-southeast-4": 153.422,
            "ap-southeast-5": 168.769,
            "ap-southeast-1": 164.02479999999997,
            "af-south-1": 282.0046,
            "ap-northeast-3": 102.3196,
            "ap-northeast-1": 101.138,
            "me-central-1": 260.14320000000004,
            "mx-central-1": 93.3756,
            "eu-central-2": 147.2028,
            "eu-west-3": 138.5414,
            "ap-southeast-3": 178.48899999999998,
            "us-east-1": 66.5232,
            "ap-east-1": 147.3012,
            "eu-north-1": 158.8716,
            "eu-west-2": 131.83780000000002,
            "eu-south-2": 162.5424,
            "us-west-2": 5.859999999999999,
            "us-west-1": 23.612,
            "ap-southeast-2": 143.4716,
            "eu-west-1": 121.2978,
            "eu-south-1": 154.614,
            "us-east-2": 52.74479999999999,
            "ap-south-1": 233.5312,
            "sa-east-1": 177.6128
        },
        "sa-east-1": {
            "ap-southeast-1": 332.6044,
            "eu-south-2": 221.4044,
            "ca-west-1": 195.198,
            "ap-southeast-4": 325.145,
            "af-south-1": 345.7832,
            "eu-south-1": 215.9628,
            "sa-east-1": 5.6376,
            "ca-central-1": 128.6984,
            "eu-central-2": 205.73439999999997,
            "ap-south-2": 328.04800000000006,
            "ap-northeast-1": 264.1152,
            "mx-central-1": 173.43099999999998,
            "us-west-1": 178.246,
            "eu-west-1": 181.2724,
            "eu-north-1": 226.7028,
            "ap-east-2": 294.332,
            "ap-southeast-5": 348.878,
            "ap-southeast-7": 367.677,
            "ap-southeast-3": 348.50600000000003,
            "ap-south-1": 306.2512,
            "ap-northeast-3": 272.77779999999996,
            "us-west-2": 177.88580000000002,
            "me-central-1": 308.2642,
            "ap-northeast-2": 296.49199999999996,
            "us-east-1": 118.0824,
            "il-central-1": 248.826,
            "eu-central-1": 207.5176,
            "eu-west-3": 198.4864,
            "eu-west-2": 190.3564,
            "us-east-2": 128.5986,
            "ap-east-1": 319.4436,
            "ap-southeast-2": 315.0598,
            "me-south-1": 286.3028
        },
        "ap-south-2": {
            "af-south-1": 326.5912,
            "ap-southeast-4": 153.1652,
            "ca-central-1": 217.234,
            "ap-east-2": 108.7732,
            "eu-south-2": 165.7068,
            "ap-northeast-1": 122.5656,
            "ap-southeast-1": 51.055200000000006,
            "sa-east-1": 325.83559999999994,
            "ap-southeast-7": 79.5332,
            "ap-southeast-2": 144.394,
            "eu-central-1": 153.8572,
            "ap-southeast-3": 66.7824,
            "us-east-2": 224.02,
            "us-west-1": 223.3452,
            "us-east-1": 212.6436,
            "ap-south-1": 27.2768,
            "ap-northeast-3": 125.3584,
            "eu-north-1": 173.4836,
            "ap-northeast-2": 122.7112,
            "eu-west-1": 148.7708,
            "ap-south-2": 12.3532,
            "il-central-1": 171.80960000000002,
            "me-south-1": 60.1844,
            "eu-south-1": 136.9844,
            "mx-central-1": 286.3,
            "ap-east-1": 85.96039999999999,
            "eu-central-2": 143.668,
            "eu-west-3": 133.3452,
            "ap-southeast-5": 56.504,
            "me-central-1": 50.56960000000001,
            "ca-west-1": 231.372,
            "eu-west-2": 143.37560000000005,
            "us-west-2": 210.2116
        },
        "eu-south-2": {
            "ap-southeast-7": 204.457,
            "ap-south-1": 152.9204,
            "sa-east-1": 225.956,
            "ap-northeast-3": 250.9912,
            "me-south-1": 124.68879999999996,
            "eu-central-1": 39.4498,
            "ap-south-2": 172.65480000000002,
            "us-west-1": 176.982,
            "us-east-1": 112.285,
            "il-central-1": 66.03399999999999,
            "ap-northeast-1": 245.8184,
            "ap-southeast-2": 288.829,
            "ap-east-2": 221.6128,
            "mx-central-1": 170.2036,
            "me-central-1": 127.2408,
            "ap-northeast-2": 250.626,
            "ca-central-1": 116.8546,
            "ap-southeast-5": 183.99100000000004,
            "eu-south-2": 6.546799999999999,
            "eu-west-3": 24.402399999999997,
            "us-east-2": 123.065,
            "ap-southeast-3": 194.037,
            "eu-central-2": 37.686,
            "eu-west-1": 35.8648,
            "eu-south-1": 32.74,
            "ap-southeast-1": 176.4872,
            "ca-west-1": 184.4056,
            "af-south-1": 143.1304,
            "us-west-2": 163.4604,
            "ap-east-1": 213.9232,
            "eu-north-1": 60.8012,
            "eu-west-2": 41.544,
            "ap-southeast-4": 299.03700000000003
        },
        "eu-central-1": {
            "eu-west-2": 20.3168,
            "us-west-1": 156.6006,
            "eu-north-1": 25.815199999999997,
            "ap-northeast-2": 253.183,
            "ap-east-2": 225.15919999999997,
            "me-south-1": 89.93599999999999,
            "ap-northeast-1": 231.0502,
            "eu-central-2": 12.199000000000002,
            "us-east-1": 95.2628,
            "ap-southeast-5": 169.02500000000003,
            "us-east-2": 105.87,
            "ap-southeast-4": 265.578,
            "ap-southeast-2": 254.577,
            "af-south-1": 162.424,
            "eu-south-1": 15.1026,
            "ap-south-2": 155.62,
            "eu-south-2": 38.7182,
            "ap-southeast-1": 164.1868,
            "ca-west-1": 162.848,
            "ap-south-1": 133.0452,
            "ap-southeast-3": 179.519,
            "me-central-1": 118.5336,
            "il-central-1": 69.864,
            "us-west-2": 145.83540000000002,
            "ap-southeast-7": 191.043,
            "eu-central-1": 5.9274,
            "eu-west-3": 14.556,
            "ap-northeast-3": 237.3924,
            "eu-west-1": 29.5996,
            "ca-central-1": 95.8326,
            "ap-east-1": 196.567,
            "sa-east-1": 206.33,
            "mx-central-1": 151.43220000000002
        },
        "us-east-2": {
            "eu-west-2": 95.8496,
            "ca-west-1": 47.67,
            "ap-southeast-4": 205.182,
            "ap-northeast-3": 153.2756,
            "eu-west-3": 101.882,
            "ap-southeast-3": 228.9312,
            "eu-south-2": 125.4704,
            "ap-southeast-1": 212.9778,
            "af-south-1": 245.5776,
            "me-central-1": 212.4044,
            "ap-east-2": 174.41840000000002,
            "eu-west-1": 87.4916,
            "il-central-1": 152.37840000000003,
            "ap-southeast-2": 195.633,
            "us-west-1": 66.8244,
            "us-east-2": 8.931999999999999,
            "us-west-2": 58.0788,
            "mx-central-1": 58.63840000000001,
            "ca-central-1": 34.0788,
            "ap-east-1": 200.4526,
            "eu-south-1": 119.3028,
            "ap-northeast-2": 176.3076,
            "eu-central-1": 110.981,
            "eu-north-1": 130.43800000000002,
            "ap-south-2": 229.3638,
            "ap-northeast-1": 144.51319999999998,
            "eu-central-2": 109.82600000000002,
            "ap-south-1": 212.2312,
            "ap-southeast-5": 227.3388,
            "sa-east-1": 132.3736,
            "us-east-1": 20.2492,
            "me-south-1": 186.2,
            "ap-southeast-7": 245.0972
        },
        "ap-southeast-3": {
            "eu-central-2": 187.412,
            "eu-south-1": 180.43500000000003,
            "eu-south-2": 198.841,
            "me-central-1": 116.7778,
            "il-central-1": 232.6526,
            "ap-south-2": 73.7634,
            "us-west-1": 199.051,
            "us-west-2": 178.89799999999997,
            "eu-central-1": 190.36,
            "ap-south-1": 92.28,
            "ap-northeast-3": 102.30839999999998,
            "ap-east-2": 82.9388,
            "ca-central-1": 249.3332,
            "ap-northeast-2": 100.3504,
            "sa-east-1": 357.97040000000004,
            "us-east-1": 246.0784,
            "ap-southeast-2": 121.062,
            "mx-central-1": 270.58540000000005,
            "ap-east-1": 63.3792,
            "ap-southeast-4": 131.2536,
            "ca-west-1": 205.43840000000003,
            "af-south-1": 365.1252,
            "ap-southeast-7": 54.5804,
            "eu-west-2": 201.8092,
            "eu-north-1": 212.1842,
            "us-east-2": 231.22,
            "ap-southeast-1": 22.9696,
            "ap-southeast-5": 34.194,
            "eu-west-1": 209.66959999999995,
            "ap-southeast-3": 4.733199999999999,
            "ap-northeast-1": 96.1976,
            "me-south-1": 125.454,
            "eu-west-3": 195.656
        },
        "me-south-1": {
            "ap-southeast-2": 192.4748,
            "ap-northeast-2": 189.656,
            "ap-south-2": 64.8456,
            "ca-central-1": 174.34640000000002,
            "ap-east-2": 160.3918,
            "eu-north-1": 109.4598,
            "me-central-1": 17.336,
            "ap-southeast-5": 106.97839999999998,
            "eu-west-1": 108.4826,
            "ap-south-1": 41.636799999999994,
            "eu-south-2": 118.62820000000016,
            "eu-west-3": 93.9974,
            "eu-south-1": 117.8388,
            "ap-southeast-3": 116.70199999999998,
            "ap-east-1": 138.274,
            "eu-central-1": 90.5142,
            "eu-central-2": 95.18,
            "us-west-1": 235.349,
            "ca-west-1": 260.8764,
            "ap-southeast-1": 102.068,
            "us-west-2": 269.73400000000004,
            "me-south-1": 4.736,
            "ap-southeast-4": 202.66360000000003,
            "af-south-1": 258.86240000000004,
            "sa-east-1": 284.905,
            "eu-west-2": 99.9294,
            "ap-northeast-1": 180.9,
            "il-central-1": 142.74919999999972,
            "us-east-1": 175.24519999999998,
            "mx-central-1": 228.0892,
            "ap-southeast-7": 126.6632,
            "us-east-2": 185.7292,
            "ap-northeast-3": 175.044
        },
        "ap-southeast-7": {
            "ca-central-1": 259.869,
            "us-west-1": 211.51360000000005,
            "me-central-1": 125.3496,
            "mx-central-1": 281.529,
            "ap-east-2": 94.7244,
            "eu-west-1": 220.13920000000005,
            "eu-west-2": 209.9134,
            "ap-southeast-5": 31.862799999999996,
            "us-east-1": 259.4624,
            "eu-north-1": 221.5506000000001,
            "ap-northeast-1": 110.3688,
            "us-east-2": 246.438,
            "ap-southeast-1": 35.372600000000006,
            "ap-southeast-2": 129.7296,
            "il-central-1": 240.888,
            "ap-south-1": 101.55,
            "ca-west-1": 219.38200000000003,
            "us-west-2": 201.1178,
            "ap-southeast-4": 140.1644,
            "eu-central-2": 196.0132,
            "me-south-1": 131.4766,
            "ap-east-1": 72.5042,
            "ap-northeast-2": 110.2056,
            "sa-east-1": 373.5764,
            "eu-south-2": 208.44439999999997,
            "ap-northeast-3": 112.9064,
            "eu-west-3": 205.8558,
            "af-south-1": 377.0644,
            "ap-south-2": 85.6998,
            "eu-central-1": 204.5922,
            "ap-southeast-3": 51.5116,
            "eu-south-1": 192.848,
            "ap-southeast-7": 6.7996
        },
        "eu-central-2": {
            "ap-east-2": 220.398,
            "eu-west-3": 15.057599999999995,
            "eu-west-1": 31.424,
            "ap-southeast-5": 164.257,
            "ap-southeast-1": 159.097,
            "ap-southeast-4": 260.973,
            "ap-south-2": 145.8004,
            "ap-southeast-3": 174.29000000000002,
            "ap-northeast-2": 230.448,
            "ca-west-1": 164.882,
            "ap-south-1": 121.441,
            "me-south-1": 96.331,
            "ap-northeast-1": 225.659,
            "eu-north-1": 32.781600000000005,
            "ap-southeast-7": 186.057,
            "ap-southeast-2": 250.709,
            "us-east-2": 105.259,
            "us-west-1": 156.1594,
            "us-east-1": 95.085,
            "ap-northeast-3": 233.259,
            "us-west-2": 147.32019999999997,
            "eu-west-2": 23.1,
            "eu-south-1": 10.989600000000006,
            "eu-central-2": 5.2988000000000035,
            "ca-central-1": 97.6038,
            "ap-east-1": 192.397,
            "eu-central-1": 13.204000000000011,
            "il-central-1": 46.51200000000001,
            "me-central-1": 113.4268,
            "mx-central-1": 151.47120000000004,
            "sa-east-1": 206.343,
            "af-south-1": 156.71859999999998,
            "eu-south-2": 35.2334
        },
        "mx-central-1": {
            "ap-south-2": 290.4662,
            "ap-east-2": 205.394,
            "ap-southeast-3": 266.19640000000004,
            "us-east-2": 58.694,
            "ap-southeast-5": 258.914,
            "ap-southeast-7": 279.806,
            "eu-central-1": 157.9824,
            "ap-northeast-2": 205.3928,
            "us-west-1": 81.44760000000002,
            "ap-east-1": 224.9576,
            "eu-south-1": 168.58599999999996,
            "mx-central-1": 8.0144,
            "ap-southeast-2": 222.19759999999997,
            "eu-west-1": 133.5072,
            "il-central-1": 201.2308,
            "me-south-1": 231.49240000000003,
            "eu-west-2": 142.7584,
            "ap-northeast-3": 180.7246,
            "ap-southeast-4": 233.0892,
            "ca-west-1": 84.11160000000001,
            "eu-west-3": 149.42380000000003,
            "eu-north-1": 176.7914,
            "af-south-1": 292.9354,
            "me-central-1": 261.7916,
            "ca-central-1": 80.2948,
            "ap-southeast-1": 250.83199999999997,
            "us-east-1": 66.5424,
            "ap-south-1": 262.69019999999995,
            "eu-central-2": 156.12279999999998,
            "sa-east-1": 179.13279999999995,
            "eu-south-2": 173.39239999999998,
            "ap-northeast-1": 175.6654,
            "us-west-2": 99.40560000000002
        },
        "ca-west-1": {
            "us-west-1": 49.18639999999999,
            "ca-central-1": 55.9696,
            "us-west-2": 25.5448,
            "ap-northeast-1": 120.827,
            "eu-south-1": 177.92520000000002,
            "ap-southeast-7": 217.45300000000003,
            "me-south-1": 265.99800000000005,
            "ap-south-2": 238.964,
            "ap-southeast-1": 185.265,
            "eu-north-1": 181.3036,
            "ap-southeast-4": 178.327,
            "eu-central-2": 169.82280000000003,
            "ap-southeast-2": 166.70999999999998,
            "eu-west-2": 154.75199999999998,
            "ap-east-1": 171.09900000000002,
            "mx-central-1": 83.51199999999999,
            "us-east-2": 47.568,
            "ap-south-1": 255.5992,
            "ap-east-2": 154.07080000000002,
            "af-south-1": 300.9304,
            "eu-south-2": 184.3824,
            "ap-northeast-2": 148.457,
            "us-east-1": 59.871,
            "eu-west-1": 143.034,
            "ca-west-1": 4.646,
            "il-central-1": 211.6514,
            "ap-southeast-3": 201.851,
            "ap-northeast-3": 125.45000000000002,
            "eu-west-3": 161.1648,
            "sa-east-1": 201.752,
            "ap-southeast-5": 194.354,
            "eu-central-1": 168.55880000000002,
            "me-central-1": 277.418
        },
        "eu-west-2": {
            "eu-west-1": 16.061999999999998,
            "eu-west-3": 13.278,
            "ap-northeast-2": 250.0968,
            "us-east-1": 80.414,
            "me-central-1": 124.682,
            "ap-southeast-1": 176.9848,
            "mx-central-1": 136.716,
            "us-west-2": 131.838,
            "ap-east-2": 247.8836,
            "me-south-1": 100.3912,
            "ap-southeast-2": 269.097,
            "ap-northeast-3": 226.128,
            "ca-west-1": 148.9824,
            "ap-southeast-3": 191.793,
            "il-central-1": 64.794,
            "us-west-1": 150.32760000000002,
            "eu-central-2": 22.2994,
            "ap-northeast-1": 218.8824,
            "ap-south-2": 144.2164,
            "ap-south-1": 121.4836,
            "ca-central-1": 81.68,
            "eu-central-1": 20.371999999999996,
            "ap-southeast-5": 182.317,
            "eu-north-1": 34.451600000000006,
            "ap-southeast-7": 203.259,
            "eu-west-2": 6.235999999999999,
            "af-south-1": 157.3392,
            "ap-east-1": 210.0744,
            "eu-south-2": 37.856,
            "ap-southeast-4": 279.446,
            "eu-south-1": 29.855400000000003,
            "us-east-2": 91.09380000000002,
            "sa-east-1": 189.51040000000003
        },
        "ap-south-1": {
            "eu-west-1": 132.42600000000002,
            "ap-east-1": 101.7712,
            "ap-southeast-2": 157.463,
            "ap-southeast-3": 81.148,
            "eu-west-3": 112.903,
            "eu-south-2": 148.4548,
            "ca-west-1": 250.4632,
            "eu-central-1": 133.2448,
            "ap-south-2": 33.605,
            "ap-south-1": 5.436,
            "eu-west-2": 121.142,
            "ap-northeast-2": 139.90000000000003,
            "us-east-2": 207.19840000000005,
            "ap-northeast-3": 140.49200000000002,
            "af-south-1": 300.705,
            "ap-southeast-5": 71.42699999999999,
            "ap-east-2": 124.8744,
            "ap-southeast-7": 92.067,
            "ap-southeast-4": 167.54399999999998,
            "eu-north-1": 152.638,
            "me-central-1": 32.7866,
            "us-west-1": 238.46819999999997,
            "eu-south-1": 120.66659999999992,
            "us-east-1": 200.93199999999996,
            "sa-east-1": 305.3396,
            "us-west-2": 233.55,
            "il-central-1": 150.564,
            "mx-central-1": 251.8375,
            "me-south-1": 40.73,
            "ca-central-1": 195.18139999999997,
            "ap-northeast-1": 144.8384,
            "ap-southeast-1": 66.94800000000001,
            "eu-central-2": 119.098
        },
        "ap-east-2": {
            "eu-south-1": 219.5932,
            "ap-northeast-3": 41.28480000000002,
            "ap-east-2": 8.4834,
            "ap-southeast-5": 75.88340000000001,
            "eu-west-1": 250.64780000000005,
            "us-east-1": 185.8406,
            "me-south-1": 165.9394,
            "me-central-1": 159.09699999999998,
            "af-south-1": 275.8236,
            "ap-southeast-3": 85.98819999999999,
            "eu-north-1": 250.6764,
            "ap-southeast-4": 173.7604,
            "eu-central-1": 230.34720000000004,
            "us-west-2": 138.05960000000005,
            "ap-northeast-2": 70.0248,
            "ap-south-2": 114.4262,
            "ap-south-1": 130.293,
            "ap-southeast-7": 97.513,
            "mx-central-1": 203.6242,
            "ap-northeast-1": 41.0944,
            "eu-west-3": 247.79800000000003,
            "sa-east-1": 298.47260000000006,
            "il-central-1": 275.3786,
            "ap-southeast-1": 69.03359999999999,
            "eu-south-2": 221.4236,
            "ca-west-1": 160.57340000000002,
            "ap-east-1": 34.78640000000002,
            "us-west-1": 151.393,
            "ap-southeast-2": 162.564,
            "eu-central-2": 225.1632,
            "ca-central-1": 189.4862,
            "us-east-2": 172.6084,
            "eu-west-2": 252.8834
        },
        "ap-southeast-2": {
            "ap-southeast-3": 112.289,
            "ap-southeast-7": 123.822,
            "ap-southeast-2": 5.8362,
            "me-south-1": 192.6146,
            "eu-west-1": 259.1864,
            "us-east-2": 191.2768,
            "ap-south-1": 157.884,
            "eu-west-3": 283.4452,
            "eu-south-2": 284.16400000000004,
            "eu-central-2": 249.7308,
            "ap-east-1": 131.124,
            "ap-southeast-5": 102.23,
            "ap-northeast-2": 150.3792,
            "eu-west-2": 269.5628,
            "af-south-1": 417.23280000000005,
            "ca-central-1": 201.808,
            "ca-west-1": 160.6416,
            "us-west-1": 142.43,
            "eu-north-1": 275.66139999999996,
            "ap-northeast-3": 123.8368,
            "ap-east-2": 156.596,
            "ap-southeast-4": 16.561,
            "eu-central-1": 255.6324,
            "us-east-1": 202.9484,
            "il-central-1": 300.282,
            "ap-southeast-1": 97.9586,
            "ap-south-2": 147.66779999999997,
            "eu-south-1": 245.7968,
            "me-central-1": 184.0936,
            "mx-central-1": 216.3394,
            "us-west-2": 144.202,
            "sa-east-1": 315.058,
            "ap-northeast-1": 116.018
        },
        "il-central-1": {
            "ap-east-1": 255.42760000000004,
            "ca-west-1": 222.2232,
            "ap-south-2": 180.9912,
            "ap-south-1": 165.5068,
            "ap-southeast-7": 248.802,
            "eu-west-3": 63.05639999999999,
            "me-central-1": 155.88920000000002,
            "ap-southeast-4": 325.72,
            "ap-southeast-3": 237.035,
            "ap-northeast-2": 294.0132,
            "us-west-1": 214.01459999999997,
            "eu-central-1": 79.4326,
            "eu-central-2": 55.0112,
            "eu-south-1": 60.602,
            "ap-northeast-3": 297.7416,
            "ap-southeast-1": 222.002,
            "ap-southeast-2": 314.178,
            "ca-central-1": 153.57059999999998,
            "eu-north-1": 101.1032,
            "eu-west-1": 83.164,
            "eu-south-2": 70.6192,
            "us-east-2": 156.196,
            "af-south-1": 245.98039999999995,
            "il-central-1": 5.940000000000001,
            "ap-east-2": 278.15239999999994,
            "mx-central-1": 208.1772,
            "sa-east-1": 263.8612,
            "me-south-1": 149.26879999999997,
            "us-east-1": 145.69299999999998,
            "ap-northeast-1": 289.1356,
            "ap-southeast-5": 228.78700000000003,
            "eu-west-2": 75.4292,
            "us-west-2": 190.1146
        },
        "us-east-1": {
            "sa-east-1": 119.4112,
            "ap-southeast-7": 257.443,
            "ap-northeast-3": 163.936,
            "eu-south-2": 112.3206,
            "eu-west-2": 83.0348,
            "eu-north-1": 117.89079999999998,
            "eu-west-3": 89.06800000000001,
            "ap-south-2": 216.95540000000005,
            "us-west-2": 69.3478,
            "me-central-1": 199.394,
            "mx-central-1": 62.468,
            "us-east-1": 9.255400000000002,
            "ap-southeast-2": 204.524,
            "ap-southeast-1": 230.2732,
            "ap-southeast-4": 215.464,
            "ap-northeast-2": 187.5672,
            "ap-south-1": 203.7132,
            "ap-southeast-5": 238.437,
            "eu-west-1": 74.634,
            "ap-southeast-3": 242.697,
            "eu-central-1": 98.5772,
            "us-east-2": 19.248399999999997,
            "us-west-1": 74.1806,
            "ca-west-1": 57.1204,
            "me-south-1": 175.15120000000002,
            "ap-northeast-1": 156.59519999999998,
            "eu-south-1": 106.5264,
            "ap-east-1": 210.5424,
            "ap-east-2": 184.8448,
            "eu-central-2": 96.968,
            "af-south-1": 234.1316,
            "ca-central-1": 21.409999999999997,
            "il-central-1": 139.18800000000002
        },
        "ap-southeast-4": {
            "mx-central-1": 229.87840000000003,
            "eu-central-2": 265.9664,
            "eu-west-2": 284.37120000000004,
            "ap-east-1": 144.99900000000002,
            "ap-northeast-2": 162.519,
            "eu-west-3": 297.034,
            "ap-southeast-2": 17.445,
            "ap-southeast-1": 109.161,
            "ap-east-2": 167.05120000000002,
            "us-east-2": 202.06,
            "eu-south-2": 298.84599999999995,
            "sa-east-1": 328.79499999999996,
            "af-south-1": 427.4583999999999,
            "us-west-1": 155.26919999999998,
            "ap-southeast-5": 115.886,
            "il-central-1": 313.0036,
            "ca-west-1": 174.917,
            "eu-west-1": 273.3512,
            "eu-north-1": 292.1676,
            "ap-south-2": 158.1492,
            "eu-central-1": 272.78720000000004,
            "us-east-1": 214.71,
            "us-west-2": 154.0428,
            "me-south-1": 205.735,
            "ap-southeast-4": 4.767,
            "ca-central-1": 215.8436,
            "ap-southeast-3": 124.238,
            "ap-south-1": 170.83679999999998,
            "ap-northeast-1": 142.584,
            "ap-southeast-7": 136.889,
            "ap-northeast-3": 136.2344,
            "me-central-1": 197.1552,
            "eu-south-1": 262.0292
        },
        "ap-northeast-2": {
            "us-west-1": 137.602,
            "ap-southeast-4": 158.832,
            "eu-west-1": 240.163,
            "eu-west-2": 250.474,
            "ap-southeast-2": 149.41000000000005,
            "eu-central-1": 253.9664,
            "us-west-2": 127.35800000000002,
            "ap-northeast-2": 5.844200000000001,
            "ap-south-2": 126.2102,
            "ap-east-1": 43.0736,
            "ap-northeast-3": 29.291399999999996,
            "af-south-1": 405.615,
            "ap-southeast-1": 80.1652,
            "eu-north-1": 272.182,
            "eu-west-3": 256.762,
            "me-central-1": 178.92260000000002,
            "ap-south-1": 140.4452,
            "ap-southeast-7": 102.678,
            "mx-central-1": 199.136,
            "me-south-1": 186.6146,
            "us-east-2": 171.78,
            "sa-east-1": 296.1412,
            "eu-central-2": 229.76799999999997,
            "us-east-1": 186.71499999999995,
            "eu-south-2": 245.9974,
            "ap-southeast-3": 91.269,
            "ca-west-1": 143.327,
            "ap-east-2": 68.2112,
            "eu-south-1": 238.4276,
            "ca-central-1": 181.989,
            "ap-northeast-1": 39.1454,
            "il-central-1": 279.08,
            "ap-southeast-5": 80.708
        },
        "ca-central-1": {
            "ap-southeast-1": 223.4014,
            "eu-central-1": 97.2854,
            "ap-southeast-5": 235.314,
            "mx-central-1": 74.8282,
            "il-central-1": 140.49400000000003,
            "sa-east-1": 128.65800000000002,
            "eu-central-2": 97.443,
            "us-west-1": 83.75640000000001,
            "ap-southeast-4": 213.214,
            "eu-south-1": 105.667,
            "af-south-1": 231.6902,
            "ap-northeast-2": 182.432,
            "eu-west-1": 72.786,
            "eu-west-2": 83.34479999999999,
            "us-east-1": 20.678,
            "ap-east-2": 185.49919999999997,
            "ap-southeast-2": 202.3716,
            "eu-west-3": 89.4144,
            "ap-south-2": 220.22999999999996,
            "me-south-1": 175.0552,
            "ca-west-1": 51.6912,
            "eu-south-2": 113.418,
            "ca-central-1": 7.264400000000001,
            "ap-northeast-3": 159.23960000000002,
            "us-east-2": 30.795600000000004,
            "us-west-2": 65.328,
            "ap-southeast-3": 242.617,
            "ap-east-1": 205.4716,
            "eu-north-1": 109.9016,
            "ap-south-1": 197.164,
            "me-central-1": 200.0044,
            "ap-southeast-7": 254.918,
            "ap-northeast-1": 158.53359999999998
        },
        "ap-east-1": {
            "us-east-2": 195.1738,
            "us-east-1": 210.29375,
            "ap-south-1": 102.606,
            "eu-west-2": 211.3574,
            "ap-southeast-2": 130.612,
            "il-central-1": 241.43999999999997,
            "me-central-1": 128.55239999999998,
            "eu-west-1": 263.59680000000003,
            "eu-west-3": 204.9632,
            "us-west-2": 148.196,
            "eu-central-2": 191.5548,
            "ap-south-2": 89.26880000000001,
            "me-south-1": 137.86999999999998,
            "eu-north-1": 217.896,
            "ap-east-1": 4.922,
            "mx-central-1": 218.806,
            "ap-southeast-4": 141.772,
            "ap-southeast-7": 66.03200000000001,
            "us-west-1": 158.35,
            "af-south-1": 377.751,
            "eu-central-1": 197.8964,
            "ca-central-1": 206.46319999999997,
            "ap-northeast-3": 51.30760000000001,
            "eu-south-2": 209.916,
            "eu-south-1": 187.94600000000003,
            "sa-east-1": 319.9472,
            "ap-southeast-5": 45.34,
            "ca-west-1": 164.5748,
            "ap-northeast-1": 54.7112,
            "ap-east-2": 30.458399999999997,
            "ap-southeast-1": 40.2868,
            "ap-southeast-3": 54.809,
            "ap-northeast-2": 42.4098
        }
    }
}