hc
2023-08-08 f92d6635abca482ea1018fed138d654cb14b2138
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
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
{
   "sensor_calib":    {
       "resolution":    {
           "width":    1920,
           "height":    1080
       },
       "Gain2Reg":    {
           "GainMode":    "EXPGAIN_MODE_LINEAR",
           "GainRange":    [1, 128, 64, 0, 1, 64, 8192],
           "GainRange_len":    7
       },
       "Time2Reg":    {
           "fCoeff":    [0, 0, 1, 0.5]
       },
       "CISGainSet":    {
           "CISAgainRange":    {
               "Min":    1,
               "Max":    128
           },
           "CISExtraAgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISIspDgainRange":    {
               "Min":    1,
               "Max":    1
           },
           "CISHdrGainIndSetEn":    1
       },
       "CISTimeSet":    {
           "Linear":    {
               "CISTimeRegMin":    4,
               "CISLinTimeRegMaxFac":    {
                   "fCoeff":    [1, 4]
               },
               "CISTimeRegOdevity":    {
                   "fCoeff":    [1, 0]
               }
           },
           "Hdr":    [{
                   "name":    "HDR_TWO_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    4,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 4]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [0, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [2, 0]
                   }
               }, {
                   "name":    "HDR_THREE_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    4,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 4]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [0, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [2, 0]
                   }
               }]
       },
       "CISHdrSet":    {
           "hdr_en":    1,
           "hdr_mode":    "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
           "line_mode":    "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
       },
       "CISDcgSet":    {
           "Linear":    {
               "support_en":    0,
               "dcg_optype":    "RK_AIQ_OP_MODE_AUTO",
               "dcg_mode":    {
                   "Coeff":    [0, 0, 0]
               },
               "dcg_ratio":    1,
               "sync_switch":    0,
               "lcg2hcg_gain_th":    32,
               "hcg2lcg_gain_th":    16
           },
           "Hdr":    {
               "support_en":    0,
               "dcg_optype":    "RK_AIQ_OP_MODE_AUTO",
               "dcg_mode":    {
                   "Coeff":    [0, 0, 0]
               },
               "dcg_ratio":    3.5,
               "sync_switch":    1,
               "lcg2hcg_gain_th":    32,
               "hcg2lcg_gain_th":    16
           }
       },
       "CISExpUpdate":    {
           "Linear":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    2
           },
           "Hdr":    {
               "time_update":    2,
               "gain_update":    2,
               "dcg_update":    1
           }
       },
       "CISMinFps":    10,
       "CISFlip":    0
   },
   "module_calib":    {
       "sensor_module":    {
           "FNumber":    1.6,
           "EFL":    5.2,
           "LensT":    90,
           "IRCutT":    90
       }
   },
   "main_scene":    [{
           "name":    "normal",
           "sub_scene":    [{
                   "name":    "day",
                   "scene_isp21":    {
                       "ae_calib":    {
                           "CommCtrl":    {
                               "Enable":    1,
                               "AecRunInterval":    0,
                               "AecOpType":    "RK_AIQ_OP_MODE_AUTO",
                               "HistStatsMode":    "CAM_HISTV2_MODE_Y",
                               "RawStatsMode":    "CAM_RAWSTATSV2_MODE_Y",
                               "YRangeMode":    "CAM_YRANGEV2_MODE_FULL",
                               "AecGridWeight":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 6, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 6, 8, 6, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 6, 8, 6, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1],
                               "AecManualCtrl":    {
                                   "LinearAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    0.03,
                                       "GainValue":    1,
                                       "IspDGainValue":    1
                                   },
                                   "HdrAE":    {
                                       "ManualTimeEn":    1,
                                       "ManualGainEn":    1,
                                       "ManualIspDgainEn":    1,
                                       "TimeValue":    [0.01, 0.02, 0.03],
                                       "GainValue":    [1, 1, 1],
                                       "IspDGainValue":    [1, 1, 1]
                                   }
                               },
                               "AecSpeed":    {
                                   "DampOver":    0.35,
                                   "DampUnder":    0.45,
                                   "DampDark2Bright":    0.15,
                                   "DampBright2Dark":    0.3
                               },
                               "AecDelayFrmNum":    {
                                   "BlackDelay":    4,
                                   "WhiteDelay":    4
                               },
                               "AecFrameRateMode":    {
                                   "isFpsFix":    0,
                                   "FpsValue":    15
                               },
                               "AecAntiFlicker":    {
                                   "enable":    1,
                                   "Frequency":    "AECV2_FLICKER_FREQUENCY_50HZ",
                                   "Mode":    "AECV2_ANTIFLICKER_AUTO_MODE"
                               },
                               "AecEnvLvCalib":    {
                                   "CalibFNumber":    1.6,
                                   "CurveCoeff":    [0.02859, 0.5972]
                               },
                               "AecWinScale":    {
                                   "InRawWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   },
                                   "TmoRawWinScale":    {
                                       "h_offs":    0.1,
                                       "v_offs":    0.1,
                                       "h_size":    0.9,
                                       "v_size":    0.9
                                   },
                                   "YuvWinScale":    {
                                       "h_offs":    0,
                                       "v_offs":    0,
                                       "h_size":    1,
                                       "v_size":    1
                                   }
                               }
                           },
                           "LinearAeCtrl":    {
                               "RawStatsEn":    1,
                               "ToleranceIn":    10,
                               "ToleranceOut":    10,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "InitExp":    {
                                   "InitTimeValue":    0.03,
                                   "InitGainValue":    2,
                                   "InitIspDGainValue":    1,
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "TimeDot":    [0, 0.03, 0.03, 0.03, 0.03, 0.03],
                                   "TimeDot_len":    6,
                                   "GainDot":    [1, 1, 2, 4, 8, 128],
                                   "GainDot_len":    6,
                                   "IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "IspDGainDot_len":    6,
                                   "PIrisDot":    [512, 512, 512, 512, 512, 512],
                                   "PIrisDot_len":    6
                               },
                               "DySetpoint":    {
                                   "ExpLevel":    [0, 0.0384, 0.0768, 0.1536, 0.3072, 0.576],
                                   "ExpLevel_len":    6,
                                   "DySetpoint":    [55, 55, 50, 45, 40, 35],
                                   "DySetpoint_len":    6
                               },
                               "BackLightCtrl":    {
                                   "Enable":    1,
                                   "StrBias":    0,
                                   "MeasArea":    "AECV2_MEASURE_AREA_AUTO",
                                   "OEROILowTh":    150,
                                   "LumaDistTh":    10,
                                   "LvLowTh":    0.3125,
                                   "LvHighTh":    7.5,
                                   "BacklitSetPoint":    {
                                       "ExpLevel":    [0, 0.0768, 0.192, 0.384, 0.576, 0.768],
                                       "ExpLevel_len":    6,
                                       "NonOEPdfTh":    [0.4, 0.45, 0.55, 0.65, 0.75, 1],
                                       "NonOEPdfTh_len":    6,
                                       "LowLightPdfTh":    [0.2, 0.2, 0.22, 0.25, 0.3, 0.35],
                                       "LowLightPdfTh_len":    6,
                                       "TargetLLLuma":    [35, 35, 30, 25, 20, 15],
                                       "TargetLLLuma_len":    6
                                   }
                               },
                               "OverExpCtrl":    {
                                   "Enable":    0,
                                   "StrBias":    0,
                                   "MaxWeight":    8,
                                   "HighLightTh":    150,
                                   "LowLightTh":    30,
                                   "OverExpSetPoint":    {
                                       "OEpdf":    [0.01, 0.02, 0.03, 0.04, 0.05, 0.07],
                                       "OEpdf_len":    6,
                                       "LowLightWeight":    [1, 1, 1, 1, 1, 1],
                                       "LowLightWeight_len":    6,
                                       "HighLightWeight":    [4, 3, 3, 3, 2, 2],
                                       "HighLightWeight_len":    6
                                   }
                               }
                           },
                           "HdrAeCtrl":    {
                               "ToleranceIn":    10,
                               "ToleranceOut":    15,
                               "Evbias":    0,
                               "StrategyMode":    "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
                               "LumaDistTh":    10,
                               "InitExp":    {
                                   "InitTimeValue":    [0.0005, 0.003, 0.003],
                                   "InitGainValue":    [1, 1, 1],
                                   "InitIspDGainValue":    [1, 1, 1],
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "Frm0TimeDot":    [0, 0.003, 0.003, 0.003, 0.003, 0.003],
                                   "Frm0TimeDot_len":    6,
                                   "Frm0GainDot":    [1, 1, 4, 8, 12, 32],
                                   "Frm0GainDot_len":    6,
                                   "Frm0IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "Frm0IspDGainDot_len":    6,
                                   "Frm1TimeDot":    [0, 0.03, 0.03, 0.03, 0.03, 0.03],
                                   "Frm1TimeDot_len":    6,
                                   "Frm1GainDot":    [1, 1, 4, 8, 12, 128],
                                   "Frm1GainDot_len":    6,
                                   "Frm1IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "Frm1IspDGainDot_len":    6,
                                   "Frm2TimeDot":    [0, 0.03, 0.03, 0.03, 0.03, 0.03],
                                   "Frm2TimeDot_len":    6,
                                   "Frm2GainDot":    [1, 1, 4, 8, 12, 128],
                                   "Frm2GainDot_len":    6,
                                   "Frm2IspDGainDot":    [1, 1, 1, 1, 1, 1],
                                   "Frm2IspDGainDot_len":    6,
                                   "PIrisDot":    [512, 512, 512, 512, 512, 512],
                                   "PIrisDot_len":    6
                               },
                               "ExpRatioCtrl":    {
                                   "ExpRatioType":    "AECV2_HDR_RATIOTYPE_MODE_AUTO",
                                   "ExpRatio":    {
                                       "RatioExpDot":    [0, 0.1, 0.3, 0.5, 0.7, 1],
                                       "RatioExpDot_len":    6,
                                       "M2SRatioFix":    [4, 4, 4, 4, 4, 4],
                                       "M2SRatioFix_len":    6,
                                       "L2MRatioFix":    [4, 4, 4, 4, 4, 4],
                                       "L2MRatioFix_len":    6,
                                       "M2SRatioMax":    [64, 64, 64, 64, 64, 64],
                                       "M2SRatioMax_len":    6,
                                       "L2MRatioMax":    [32, 32, 30, 28, 26, 24],
                                       "L2MRatioMax_len":    6
                                   }
                               },
                               "LongFrmMode":    {
                                   "mode":    "AECV2_HDR_LONGFRMMODE_NORMAL",
                                   "SfrmMinLine":    2,
                                   "LfrmModeExpTh":    0.62
                               },
                               "LframeCtrl":    {
                                   "OEROILowTh":    150,
                                   "LvLowTh":    0.3125,
                                   "LvHighTh":    7.5,
                                   "LfrmSetPoint":    {
                                       "LExpLevel":    [0, 0.0384, 0.1152, 0.192, 0.384, 0.768],
                                       "LExpLevel_len":    6,
                                       "NonOEPdfTh":    [0.4, 0.45, 0.55, 0.65, 0.75, 1],
                                       "NonOEPdfTh_len":    6,
                                       "LowLightPdfTh":    [0.2, 0.22, 0.25, 0.3, 0.35, 0.4],
                                       "LowLightPdfTh_len":    6,
                                       "LSetPoint":    [75, 70, 65, 60, 45, 40],
                                       "LSetPoint_len":    6,
                                       "TargetLLLuma":    [35, 32, 30, 28, 25, 20],
                                       "TargetLLLuma_len":    6
                                   }
                               },
                               "MframeCtrl":    {
                                   "MExpLevel":    [0.192, 0.384, 0.768, 1.92, 2.688, 3.84],
                                   "MExpLevel_len":    6,
                                   "MSetPoint":    [60, 60, 55, 50, 45, 40],
                                   "MSetPoint_len":    6
                               },
                               "SframeCtrl":    {
                                   "HLROIExpandEn":    0,
                                   "HLLumaTolerance":    12,
                                   "SfrmSetPoint":    {
                                       "SExpLevel":    [0, 0.0048, 0.0144, 0.024, 0.0384, 0.0576],
                                       "SExpLevel_len":    6,
                                       "SSetPoint":    [18, 18, 15, 12, 12, 12],
                                       "SSetPoint_len":    6,
                                       "TargetHLLuma":    [100, 100, 100, 90, 80, 70],
                                       "TargetHLLuma_len":    6
                                   }
                               }
                           },
                           "IrisCtrl":    {
                               "Enable":    0,
                               "IrisType":    "IRISV2_DC_TYPE",
                               "ManualEn":    0,
                               "ManualAttr":    {
                                   "PIrisGainValue":    1,
                                   "DCIrisHoldValue":    30
                               },
                               "InitAttr":    {
                                   "PIrisGainValue":    512,
                                   "DCIrisHoldValue":    100
                               },
                               "PIrisAttr":    {
                                   "TotalStep":    81,
                                   "EffcStep":    44,
                                   "ZeroIsMax":    1,
                                   "StepTable":    [512, 511, 506, 499, 491, 483, 474, 465, 456, 446, 437, 427, 417, 408, 398, 388, 378, 368, 359, 349, 339, 329, 319, 309, 300, 290, 280, 271, 261, 252, 242, 233, 224, 214, 205, 196, 187, 178, 170, 161, 153, 144, 136, 128, 120, 112, 105, 98, 90, 83, 77, 70, 64, 58, 52, 46, 41, 36, 31, 27, 23, 19, 16, 13, 10, 8, 6, 4, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                               },
                               "DCIrisAttr":    {
                                   "Kp":    0.5,
                                   "Ki":    0.2,
                                   "Kd":    0.3,
                                   "MinPwmDuty":    0,
                                   "MaxPwmDuty":    100,
                                   "OpenPwmDuty":    40,
                                   "ClosePwmDuty":    22
                               }
                           },
                           "SyncTest":    {
                               "Enable":    0,
                               "IntervalFrm":    60,
                               "AlterExp":    {
                                   "LinearAE":    [{
                                           "TimeValue":    0.02,
                                           "GainValue":    1,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    1,
                                           "DcgMode":    0
                                       }, {
                                           "TimeValue":    0.02,
                                           "GainValue":    6,
                                           "IspDGainValue":    1,
                                           "PIrisGainValue":    29,
                                           "DcgMode":    0
                                       }],
                                   "LinearAE_len":    2,
                                   "HdrAE":    [{
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [1, 1, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    1,
                                           "DcgMode":    [0, 0, 0]
                                       }, {
                                           "TimeValue":    [0.01, 0.02, 0.03],
                                           "GainValue":    [6, 6, 1],
                                           "IspDGainValue":    [1, 1, 1],
                                           "PIrisGainValue":    29,
                                           "DcgMode":    [0, 0, 0]
                                       }],
                                   "HdrAE_len":    2
                               }
                           }
                       },
                       "wb_v21":    {
                           "control":    {
                               "byPass":    0,
                               "mode":    "CALIB_WB_MODE_AUTO"
                           },
                           "manualPara":    {
                               "mode":    "CALIB_MWB_MODE_SCENE",
                               "cfg":    {
                                   "mwbGain":    [0.963605, 1, 1, 2.61591],
                                   "scene":    "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
                                   "cct":    {
                                       "CCT":    5000,
                                       "CCRI":    0
                                   }
                               }
                           },
                           "autoPara":    {
                               "hdrPara":    {
                                   "frameChooseMode":    "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_MANUAL",
                                   "frameChoose":    1
                               },
                               "lscBypassEnable":    0,
                               "uvDetectionEnable":    1,
                               "xyDetectionEnable":    1,
                               "yuvDetectionEnable":    1,
                               "lsUsedForYuvDet":    ["A", "CWF", "D65", "TL84", "D50", "HZ", "D75"],
                               "lsUsedForYuvDet_len":    7,
                               "blkStatisticsEnable":    1,
                               "downScaleMode":    "CALIB_AWB_DS_4X4",
                               "blkMeasureMode":    "CALIB_AWB_BLK_STAT_MODE_ALL_V201",
                               "mainWindow":    {
                                   "mode":    "CALIB_AWB_WINDOW_CFG_AUTO",
                                   "window":    [0, 0, 1, 1]
                               },
                               "limitRange":    {
                                   "lumaValue":    [0],
                                   "lumaValue_len":    1,
                                   "maxR":    [230],
                                   "maxR_len":    1,
                                   "minR":    [3],
                                   "minR_len":    1,
                                   "maxG":    [230],
                                   "maxG_len":    1,
                                   "minG":    [6],
                                   "minG_len":    1,
                                   "maxB":    [230],
                                   "maxB_len":    1,
                                   "minB":    [3],
                                   "minB_len":    1,
                                   "maxY":    [210],
                                   "maxY_len":    1,
                                   "minY":    [6],
                                   "minY_len":    1
                               },
                               "rgb2TcsPara":    {
                                   "pseudoLuminanceWeight":    [0.333336, 0.33335, 0.333314],
                                   "rotationMat":    [-0.611808, 0.791006, 0.00878776, 0.791006, 0.611808, 0.356815, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.0390625, 0.136719, 0.015625, 31.8125, -0.0898438, 0.00976562, 0.0625, 136.125, 0.0390625, -0.0605469, 0.0585938, 112.562, 0, 0, 0, 1],
                               "extraWpRange":    [{
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [229, 237, 267, 255]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-1539, -1198, 88, 32]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-376, -216, 169, 17]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-679, -389, 153, -41]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-251, -118, -61, -181]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [25, 75, 100, 64]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [183, 228, -56, -89]
                                   }],
                               "wpDiffLumaWeight":    {
                                   "enable":    1,
                                   "wpDiffWeiEnableTh":    {
                                       "wpDiffWeiNoTh":    0.004,
                                       "wpDiffWeiLvValueTh":    64
                                   },
                                   "wpDiffwei_y":    [0, 16, 32, 64, 96, 128, 192, 224, 240],
                                   "perfectBin":    [0, 0, 0, 1, 1, 1, 1, 0],
                                   "wpDiffWeightLvSet":    [{
                                           "LvValue":    256,
                                           "ratioSet":    [{
                                                   "ratioValue":    0,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }],
                                           "ratioSet_len":    3
                                       }, {
                                           "LvValue":    8192,
                                           "ratioSet":    [{
                                                   "ratioValue":    0,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.01,
                                                   "weight":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                               }, {
                                                   "ratioValue":    0.1,
                                                   "weight":    [0, 0.05, 0.3, 0.8, 1, 1, 1, 0.5, 0]
                                               }],
                                           "ratioSet_len":    3
                                       }],
                                   "wpDiffWeightLvSet_len":    2
                               },
                               "wpDiffBlkWeiEnable":    1,
                               "wpDiffBlkWeight":    [6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 10, 12, 20, 32, 46, 58, 63, 63, 63, 58, 46, 32, 20, 12, 10, 8, 12, 18, 30, 42, 54, 63, 63, 63, 54, 42, 30, 18, 12, 8, 8, 10, 16, 26, 36, 46, 54, 58, 54, 46, 36, 26, 16, 10, 8, 8, 10, 14, 22, 28, 36, 42, 46, 42, 36, 28, 22, 14, 10, 8, 8, 8, 12, 16, 22, 26, 30, 32, 30, 26, 22, 16, 12, 8, 8, 6, 8, 10, 12, 14, 16, 18, 20, 18, 16, 14, 12, 10, 8, 6, 6, 6, 8, 8, 10, 10, 12, 12, 12, 10, 10, 8, 8, 6, 6, 6, 6, 6, 8, 8, 8, 8, 10, 8, 8, 8, 8, 6, 6, 6],
                               "lightSources":    [{
                                       "name":    "A",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [0.963605, 1, 1, 2.61591],
                                       "uvRegion":    {
                                           "u":    [123, 63, 60, 123],
                                           "v":    [130.5, 153, 123, 128]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.115, -0.729815, 0.124123, -0.0994913],
                                           "big":    [-1.11648, -0.735, 0.150835, -0.123909]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 143.75, 113.188, 182.062, 87.4375, 113.125],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.44684, 1, 1, 2.37385],
                                       "defaultDayGainHigh":    [1.43746, 1, 1, 1.90294],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.44684, 1, 1, 2.37385],
                                       "uvRegion":    {
                                           "u":    [62, 66, 124, 123],
                                           "v":    [111, 93, 126, 127]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.583148, -0.38463, 0.0290228, -0.180455],
                                           "big":    [-0.581667, -0.383148, 0.0727175, -0.201017]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 138.812, 114.625, 188.875, 113.688, 103.188],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.44684, 1, 1, 2.37385],
                                       "defaultDayGainHigh":    [1.43746, 1, 1, 1.90294],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.43746, 1, 1, 1.90294],
                                       "uvRegion":    {
                                           "u":    [64, 82, 125, 124],
                                           "v":    [97, 77, 125, 126]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.38216, -0.100185, 0.187523, -0.195877],
                                           "big":    [-0.383148, -0.0996914, 0.219224, -0.220295]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 138.312, 112.625, 190, 119.188, 110.688],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.44684, 1, 1, 2.37385],
                                       "defaultDayGainHigh":    [1.43746, 1, 1, 1.90294],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.61992, 1, 1, 1.57129],
                                       "uvRegion":    {
                                           "u":    [80, 99, 126, 125],
                                           "v":    [80, 65, 124, 125]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.097716, 0.0919136, 0.149826, -0.155181],
                                           "big":    [-0.0972222, 0.0899383, 0.201232, -0.199732]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 136.625, 113.062, 190.938, 131.5, 112.875],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.44684, 1, 1, 2.37385],
                                       "defaultDayGainHigh":    [1.43746, 1, 1, 1.90294],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.73766, 1, 1, 1.46806],
                                       "uvRegion":    {
                                           "u":    [126, 126, 96, 109],
                                           "v":    [121, 124, 67, 55]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.0929012, 0.271667, 0.123266, -0.107202],
                                           "big":    [0.0919136, 0.272654, 0.170388, -0.131191]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 135.688, 112.938, 191, 137.938, 113.625],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.44684, 1, 1, 2.37385],
                                       "defaultDayGainHigh":    [1.43746, 1, 1, 1.90294],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [0.786647, 1, 1, 2.83782],
                                       "uvRegion":    {
                                           "u":    [123, 72, 63, 123],
                                           "v":    [132.5, 168, 152, 130.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.49278, -1.11648, 0.13826, -0.0994913],
                                           "big":    [-1.4987, -1.11796, 0.169103, -0.121339]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 145.875, 112.375, 176, 73.875, 118.062],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.44684, 1, 1, 2.37385],
                                       "defaultDayGainHigh":    [1.43746, 1, 1, 1.90294],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.30274, 1, 1, 2.41954],
                                       "uvRegion":    {
                                           "u":    [123, 60, 64, 123],
                                           "v":    [128, 126, 101, 126.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.732778, -0.58463, 0.174244, -0.168889],
                                           "big":    [-0.731296, -0.581667, 0.215368, -0.198447]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 140.188, 113.688, 187.875, 107.312, 106],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.44684, 1, 1, 2.37385],
                                       "defaultDayGainHigh":    [1.43746, 1, 1, 1.90294],
                                       "xyType2Enable":    1
                                   }],
                               "lightSources_len":    7
                           },
                           "autoExtPara":    {
                               "lightSourceForFirstFrame":    "D50",
                               "tolerance":    {
                                   "lumaValue":    [256, 512, 32768, 131072],
                                   "lumaValue_len":    4,
                                   "toleranceValue":    [0, 0, 0, 0],
                                   "toleranceValue_len":    4
                               },
                               "runInterval":    {
                                   "lumaValue":    [256, 512, 32768, 131072],
                                   "lumaValue_len":    4,
                                   "intervalValue":    [0, 0, 0, 0],
                                   "intervalValue_len":    4
                               },
                               "dampFactor":    {
                                   "dFStep":    0.1,
                                   "dFMin":    0.4,
                                   "dFMax":    0.7,
                                   "lvIIRsize":    4,
                                   "lvVarTh":    0.04
                               },
                               "wbGainAdjust":    {
                                   "enable":    1,
                                   "lutAll":    [{
                                           "lumaValue":    128,
                                           "ct_grid_num":    7,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [2000, 8000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 5800, 6800, 7800, 2000, 3000, 4000, 5000, 5800, 6800, 7800, 2000, 3000, 4000, 5000, 5800, 6800, 7800, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }, {
                                           "lumaValue":    8192,
                                           "ct_grid_num":    7,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [2000, 8000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 5800, 6800, 7800, 2000, 3000, 4000, 5000, 5800, 6800, 7800, 2000, 3000, 4000, 5000, 5800, 6800, 7800, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }, {
                                           "lumaValue":    65536,
                                           "ct_grid_num":    7,
                                           "cri_grid_num":    9,
                                           "ct_in_range":    [2000, 8000],
                                           "cri_in_range":    [-1, 1],
                                           "ct_lut_out":    [2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 5800, 6800, 7800, 2000, 3000, 4000, 5000, 5800, 6800, 7800, 2000, 3000, 4000, 5000, 5800, 6800, 7800, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 2000, 3000, 4000, 5000, 6000, 7000, 8000],
                                           "ct_lut_out_len":    63,
                                           "cri_lut_out":    [-1, -1, -1, -1, -1, -1, -1, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.75, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.5, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, -0.25, 0, 0, 0, 0, 0, 0, 0, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.25, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 1, 1, 1, 1, 1, 1, 1],
                                           "cri_lut_out_len":    63
                                       }],
                                   "lutAll_len":    3
                               },
                               "wbGainDaylightClip":    {
                                   "enable":    0,
                                   "outdoor_cct_min":    5000
                               },
                               "wbGainClip":    {
                                   "enable":    0,
                                   "cct":    [1000, 2856, 4100, 6500, 7500],
                                   "cct_len":    5,
                                   "cri_bound_up":    [0.091, 0.091, 0.18, 0.12, 0.12],
                                   "cri_bound_up_len":    5,
                                   "cri_bound_low":    [0.07, 0.07, 0.16, 0.16, 0.16],
                                   "cri_bound_low_len":    5
                               },
                               "division":    {
                                   "lumaValThLow":    110,
                                   "lumaValThLow2":    200,
                                   "lumaValThHigh":    65536,
                                   "lumaValThHigh2":    65600,
                                   "wpNumTh":    {
                                       "lumaValue":    [0],
                                       "lumaValue_len":    1,
                                       "low":    [50],
                                       "low_len":    1,
                                       "high":    [100],
                                       "high_len":    1
                                   }
                               },
                               "defaultNightGain":    [0.963605, 1, 1, 2.61591],
                               "lumaValueMatrix":    [0, 4, 16, 32, 64, 128, 256, 512, 1024, 2048, 8192, 32768, 131072, 524288, 2.09715e+06, 8.38861e+06],
                               "defaultNightGainWeight":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "probCalcDis":    {
                                   "proDis_THH":    4.6124,
                                   "proDis_THL":    0.0269
                               },
                               "probCalcLv":    {
                                   "outdoorLumaValThLow":    30000,
                                   "outdoorLumaValThHigh":    45745
                               },
                               "probCalcWp":    {
                                   "wpNumPercTh":    0.001,
                                   "wpNumPercTh2":    0.2
                               },
                               "converged":    {
                                   "varThforUnDamp":    0.005,
                                   "varThforDamp":    0.005
                               },
                               "xyRegionStableSelection":    {
                                   "enable":    1,
                                   "wpNumTh":    {
                                       "lumaValue":    [0],
                                       "lumaValue_len":    1,
                                       "forBigType":    [100],
                                       "forBigType_len":    1,
                                       "forExtraType":    [100],
                                       "forExtraType_len":    1
                                   },
                                   "xyTypeListSize":    50,
                                   "varianceLumaTh":    0.06
                               },
                               "weightForNightGainCalc":    [25, 25, 25, 25],
                               "weightForNightGainCalc_len":    4,
                               "singleColorProces":    {
                                   "enable":    1,
                                   "colorBlock":    [{
                                           "index":    15,
                                           "meanC":    22.9454,
                                           "meanH":    29.9769
                                       }, {
                                           "index":    13,
                                           "meanC":    21.7693,
                                           "meanH":    -74.2633
                                       }, {
                                           "index":    5,
                                           "meanC":    11.0023,
                                           "meanH":    -70.4879
                                       }, {
                                           "index":    10,
                                           "meanC":    12.3133,
                                           "meanH":    -38.6983
                                       }, {
                                           "index":    14,
                                           "meanC":    14.8842,
                                           "meanH":    154.6
                                       }, {
                                           "index":    16,
                                           "meanC":    25.5908,
                                           "meanH":    89.8799
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    0.963605,
                                           "BGain":    2.61591
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.43746,
                                           "BGain":    1.90294
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.30274,
                                           "BGain":    2.41954
                                       }],
                                   "lsUsedForEstimation_len":    3,
                                   "alpha":    0.9
                               },
                               "lineRgBg":    [-0.8395, -0.5434, -2.741],
                               "lineRgProjCCT":    [1, -0.0003, 0.4559],
                               "chrAdpttAdj":    {
                                   "enable":    0,
                                   "targetGain":    [2.2099, 1, 1, 1.6302],
                                   "laCalcFactor":    40
                               },
                               "remosaicCfg":    {
                                   "enable":    0,
                                   "applyInvWbGainEnable":    1,
                                   "sensorWbGain":    [1, 1, 1, 1]
                               },
                               "wbGainOffset":    {
                                   "enable":    0,
                                   "offset":    [0, 0, 0, 0]
                               }
                           }
                       },
                       "agamma_calib":    {
                           "GammaTuningPara":    {
                               "Gamma_en":    1,
                               "Gamma_out_segnum":    "GAMMATYPE_LOG",
                               "Gamma_out_offset":    0,
                               "Gamma_curve":    [0, 4, 8, 12, 16, 20, 24, 28, 32, 40, 48, 56, 64, 80, 96, 112, 128, 159, 191, 223, 254, 317, 379, 440, 500, 617, 731, 841, 947, 1149, 1325, 1467, 1588, 1811, 2004, 2174, 2327, 2590, 2813, 3006, 3177, 3467, 3708, 3915, 4095]
                           }
                       },
                       "ablc_calib":    {
                           "BlcTuningPara":    {
                               "enable":    1,
                               "BLC_Data":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 10000, 12800, 25600, 51200, 102400, 204800],
                                   "ISO_len":    13,
                                   "R_Channel":    [229, 256.312, 257.812, 256.75, 255.062, 254.25, 245.25, 229.062, 256, 256, 256, 256, 256],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [243, 256.312, 257.812, 256.75, 255.062, 254.5, 245.562, 233.125, 256, 256, 256, 256, 256],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [243, 258.625, 257.875, 256.375, 255, 254.125, 243.5, 233.875, 256, 256, 256, 256, 256],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [229, 258.625, 257.875, 256.812, 255.062, 254.312, 244.188, 231.25, 256, 256, 256, 256, 256],
                                   "B_Channel_len":    13
                               }
                           }
                       },
                       "adegamma_calib":    {
                           "DegammaTuningPara":    {
                               "degamma_en":    0,
                               "X_axis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_R":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_G":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                               "curve_B":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                           }
                       },
                       "agic_calib_v21":    {
                           "GicTuningPara":    {
                               "enable":    0,
                               "gr_ration":    0,
                               "GicData":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
                                   "ISO_len":    9,
                                   "min_busy_thre":    [40, 40, 40, 40, 40, 40, 40, 40, 40],
                                   "min_busy_thre_len":    9,
                                   "min_grad_thr1":    [16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr1_len":    9,
                                   "min_grad_thr2":    [8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr2_len":    9,
                                   "k_grad1":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_len":    9,
                                   "k_grad2":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_len":    9,
                                   "gb_thre":    [32, 32, 32, 32, 32, 32, 32, 32, 32],
                                   "gb_thre_len":    9,
                                   "maxCorV":    [10, 10, 10, 10, 10, 10, 10, 10, 10],
                                   "maxCorV_len":    9,
                                   "maxCorVboth":    [20, 20, 20, 20, 20, 20, 20, 20, 20],
                                   "maxCorVboth_len":    9,
                                   "dark_thre":    [120, 120, 120, 120, 120, 120, 120, 120, 120],
                                   "dark_thre_len":    9,
                                   "dark_threHi":    [240, 240, 240, 240, 240, 240, 240, 240, 240],
                                   "dark_threHi_len":    9,
                                   "k_grad1_dark":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                   "k_grad1_dark_len":    9,
                                   "k_grad2_dark":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                   "k_grad2_dark_len":    9,
                                   "min_grad_thr_dark1":    [16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "min_grad_thr_dark1_len":    9,
                                   "min_grad_thr_dark2":    [8, 8, 8, 8, 8, 8, 8, 8, 8],
                                   "min_grad_thr_dark2_len":    9,
                                   "noiseCurve_0":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "noiseCurve_0_len":    9,
                                   "noiseCurve_1":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "noiseCurve_1_len":    9,
                                   "NoiseScale":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseScale_len":    9,
                                   "NoiseBase":    [0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "NoiseBase_len":    9,
                                   "globalStrength":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "globalStrength_len":    9,
                                   "diff_clip":    [32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767, 32767],
                                   "diff_clip_len":    9
                               }
                           }
                       },
                       "adehaze_calib_v21":    {
                           "DehazeTuningPara":    {
                               "Enable":    1,
                               "cfg_alpha":    0,
                               "ByPassThr":    0,
                               "dehaze_setting":    {
                                   "en":    0,
                                   "air_lc_en":    1,
                                   "stab_fnum":    8,
                                   "sigma":    6,
                                   "wt_sigma":    8,
                                   "air_sigma":    120,
                                   "tmax_sigma":    0.01,
                                   "pre_wet":    0.01,
                                   "DehazeData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "dc_min_th":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                       "dc_min_th_len":    9,
                                       "dc_max_th":    [192, 192, 192, 192, 192, 192, 192, 192, 192],
                                       "dc_max_th_len":    9,
                                       "yhist_th":    [249, 249, 249, 249, 249, 249, 249, 249, 249],
                                       "yhist_th_len":    9,
                                       "yblk_th":    [0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002, 0.002],
                                       "yblk_th_len":    9,
                                       "dark_th":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "dark_th_len":    9,
                                       "bright_min":    [180, 180, 180, 180, 180, 180, 180, 180, 180],
                                       "bright_min_len":    9,
                                       "bright_max":    [240, 240, 240, 240, 240, 240, 240, 240, 240],
                                       "bright_max_len":    9,
                                       "wt_max":    [0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9, 0.9],
                                       "wt_max_len":    9,
                                       "air_min":    [200, 200, 200, 200, 200, 200, 200, 200, 200],
                                       "air_min_len":    9,
                                       "air_max":    [250, 250, 250, 250, 250, 250, 250, 250, 250],
                                       "air_max_len":    9,
                                       "tmax_base":    [125, 125, 125, 125, 125, 125, 125, 125, 125],
                                       "tmax_base_len":    9,
                                       "tmax_off":    [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1],
                                       "tmax_off_len":    9,
                                       "tmax_max":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "tmax_max_len":    9,
                                       "cfg_wt":    [0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8, 0.8],
                                       "cfg_wt_len":    9,
                                       "cfg_air":    [210, 210, 210, 210, 210, 210, 210, 210, 210],
                                       "cfg_air_len":    9,
                                       "cfg_tmax":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                       "cfg_tmax_len":    9,
                                       "dc_weitcur":    [1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "dc_weitcur_len":    9,
                                       "bf_weight":    [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5],
                                       "bf_weight_len":    9,
                                       "range_sigma":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "range_sigma_len":    9,
                                       "space_sigma_pre":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_pre_len":    9,
                                       "space_sigma_cur":    [0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14, 0.14],
                                       "space_sigma_cur_len":    9
                                   }
                               },
                               "enhance_setting":    {
                                   "en":    1,
                                   "enhance_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1023],
                                   "EnhanceData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "enhance_value":    [1.25, 1.2, 1.15, 1.1, 1, 1, 1, 1, 1],
                                       "enhance_value_len":    9,
                                       "enhance_chroma":    [1.3, 1.25, 1.2, 1.15, 1.1, 1, 1, 1, 1],
                                       "enhance_chroma_len":    9
                                   }
                               },
                               "hist_setting":    {
                                   "en":    0,
                                   "hist_para_en":    1,
                                   "HistData":    {
                                       "EnvLv":    [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.7, 0.9, 1],
                                       "EnvLv_len":    9,
                                       "hist_gratio":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "hist_gratio_len":    9,
                                       "hist_th_off":    [64, 64, 64, 64, 64, 64, 64, 64, 64],
                                       "hist_th_off_len":    9,
                                       "hist_k":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "hist_k_len":    9,
                                       "hist_min":    [0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015],
                                       "hist_min_len":    9,
                                       "hist_scale":    [0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09, 0.09],
                                       "hist_scale_len":    9,
                                       "cfg_gratio":    [2, 2, 2, 2, 2, 2, 2, 2, 2],
                                       "cfg_gratio_len":    9
                                   }
                               }
                           }
                       },
                       "adpcc_calib":    {
                           "DpccTuningPara":    {
                               "Enable":    1,
                               "Fast_Mode":    {
                                   "Fast_mode_en":    1,
                                   "Single_enable":    1,
                                   "Double_enable":    1,
                                   "Triple_enable":    1,
                                   "Fast_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
                                       "ISO_len":    13,
                                       "Single_level":    [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Single_level_len":    13,
                                       "Double_level":    [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Double_level_len":    13,
                                       "Triple_level":    [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Triple_level_len":    13
                                   }
                               },
                               "Expert_Mode":    {
                                   "stage1_Enable":    1,
                                   "grayscale_mode":    0,
                                   "dpcc_out_sel":    1,
                                   "stage1_g_3x3":    0,
                                   "stage1_rb_3x3":    0,
                                   "stage1_inc_rb_center":    1,
                                   "stage1_inc_g_center":    1,
                                   "rk_out_sel":    1,
                                   "SetEnable":    {
                                       "ISO":    [50, 100, 200, 400, 600, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400],
                                       "fix_set":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set1":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set2":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "set3":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                   },
                                   "set1":    {
                                       "RK":    {
                                           "RK_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_thr":    [32, 24, 12, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_line_thr":    [32, 24, 12, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_line_mad_fac":    [24, 16, 8, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_line_mad_fac":    [24, 16, 8, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [12, 9, 6, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_pg_fac":    [12, 9, 6, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [16, 14, 12, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [16, 14, 12, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_rnd_offs":    [8, 6, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_offs":    [8, 6, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "RG":    {
                                           "RG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rg_fac":    [48, 40, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "g_rg_fac":    [48, 40, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_ro_lim":    [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       }
                                   },
                                   "set2":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_thr":    [20, 20, 16, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_line_thr":    [20, 20, 16, 12, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_line_mad_fac":    [16, 12, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_line_mad_fac":    [16, 12, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [12, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_pg_fac":    [12, 8, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [16, 12, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_rnd_thr":    [16, 12, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "rb_rnd_offs":    [6, 5, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_offs":    [6, 5, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "RG":    {
                                           "RG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rg_fac":    [32, 24, 16, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rg_fac":    [32, 24, 16, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_ro_lim":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       }
                                   },
                                   "set3":    {
                                       "RK":    {
                                           "RK_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_max":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_thr":    [48, 40, 32, 24, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                           "g_line_thr":    [48, 40, 32, 24, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                           "rb_line_mad_fac":    [16, 16, 12, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_line_mad_fac":    [16, 16, 12, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_pg_fac":    [6, 5, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_pg_fac":    [6, 5, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RND":    {
                                           "RND_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rnd_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6],
                                           "rb_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_rnd_offs":    [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       },
                                       "RG":    {
                                           "RG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_rg_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_ro_lim":    [0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       }
                                   }
                               },
                               "Dpcc_pdaf":    {
                                   "en":    0,
                                   "point_en":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "offsetx":    0,
                                   "offsety":    0,
                                   "wrapx":    0,
                                   "wrapy":    0,
                                   "wrapx_num":    0,
                                   "wrapy_num":    0,
                                   "point_x":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "point_y":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "forward_med":    0
                               },
                               "Sensor_dpcc":    {
                                   "sensor_dpcc_auto_en":    0,
                                   "max_level":    20,
                                   "SensorDpcc_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
                                       "ISO_len":    13,
                                       "level_single":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_single_len":    13,
                                       "level_multiple":    [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
                                       "level_multiple_len":    13
                                   }
                               }
                           }
                       },
                       "amerge_calib":    {
                           "MergeTuningPara":    {
                               "OECurve":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "Smooth_len":    13,
                                   "Offset":    [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
                                   "Offset_len":    13
                               },
                               "MDCurve":    {
                                   "MoveCoef":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "MoveCoef_len":    13,
                                   "LM_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "LM_smooth_len":    13,
                                   "LM_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                   "LM_offset_len":    13,
                                   "MS_smooth":    [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
                                   "MS_smooth_len":    13,
                                   "MS_offset":    [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
                                   "MS_offset_len":    13
                               },
                               "ByPassThr":    0,
                               "OECurve_damp":    0.3,
                               "MDCurveLM_damp":    0.3,
                               "MDCurveMS_damp":    0.3
                           }
                       },
                       "adrc_calib":    {
                           "DrcTuningPara":    {
                               "Enable":    0,
                               "DrcGain":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "DrcGain":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                   "DrcGain_len":    13,
                                   "Alpha":    [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
                                   "Alpha_len":    13,
                                   "Clip":    [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
                                   "Clip_len":    13
                               },
                               "HiLight":    {
                                   "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                   "EnvLv_len":    13,
                                   "Strength":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "Strength_len":    13
                               },
                               "LocalTMOSetting":    {
                                   "LocalTMOData":    {
                                       "EnvLv":    [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
                                       "EnvLv_len":    13,
                                       "LocalWeit":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "LocalWeit_len":    13,
                                       "GlobalContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "GlobalContrast_len":    13,
                                       "LoLitContrast":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "LoLitContrast_len":    13
                                   },
                                   "curPixWeit":    0.376471,
                                   "preFrameWeit":    1,
                                   "Range_force_sgm":    0,
                                   "Range_sgm_cur":    0.125015,
                                   "Range_sgm_pre":    0.125015,
                                   "Space_sgm_cur":    4068,
                                   "Space_sgm_pre":    3968
                               },
                               "CompressSetting":    {
                                   "Mode":    "COMPRESS_AUTO",
                                   "Manual_curve":    [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 8192]
                               },
                               "Scale_y":    [0, 2, 20, 76, 193, 381, 631, 772, 919, 1066, 1211, 1479, 1700, 1863, 1968, 2024, 2048],
                               "ByPassThr":    0,
                               "Edge_Weit":    0.0627451,
                               "OutPutLongFrame":    0,
                               "IIR_frame":    16,
                               "Tolerance":    0,
                               "damp":    0.9
                           }
                       },
                       "cpsl":    {
                           "param":    {
                               "enable":    0,
                               "mode":    "RK_AIQ_OP_MODE_AUTO",
                               "force_gray":    1,
                               "light_src":    "LED",
                               "auto_adjust_sens":    50,
                               "auto_on2off_th":    3000,
                               "auto_off2on_th":    100,
                               "auto_sw_interval":    0,
                               "manual_on":    0,
                               "manual_strength":    100
                           }
                       },
                       "orb":    {
                           "param":    {
                               "orb_en":    0
                           }
                       },
                       "debayer":    {
                           "param":    {
                               "debayer_en":    1,
                               "debayer_filter1":    [2, -6, 0, 6, -2],
                               "debayer_filter2":    [2, -4, 4, -4, 2],
                               "debayer_gain_offset":    4,
                               "debayer_offset":    1,
                               "debayer_clip_en":    1,
                               "debayer_filter_g_en":    1,
                               "debayer_filter_c_en":    1,
                               "debayer_thed0":    3,
                               "debayer_thed1":    6,
                               "debayer_dist_scale":    8,
                               "debayer_cnr_strength":    5,
                               "debayer_shift_num":    2,
                               "array":    {
                                   "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800],
                                   "sharp_strength":    [4, 4, 4, 4, 4, 4, 4, 4, 4],
                                   "debayer_hf_offset":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                               }
                           }
                       },
                       "cproc":    {
                           "param":    {
                               "enable":    1,
                               "brightness":    128,
                               "contrast":    128,
                               "saturation":    128,
                               "hue":    128
                           }
                       },
                       "ie":    {
                           "param":    {
                               "enable":    0,
                               "mode":    0
                           }
                       },
                       "lsc_v2":    {
                           "common":    {
                               "enable":    1,
                               "resolutionAll":    [{
                                       "name":    "1920x1080",
                                       "lsc_sect_size_x":    [120, 120, 120, 120, 120, 120, 120, 120],
                                       "lsc_sect_size_y":    [67, 68, 67, 68, 67, 68, 67, 68]
                                   }],
                               "resolutionAll_len":    1
                           },
                           "alscCoef":    {
                               "damp_enable":    1,
                               "illAll":    [{
                                       "usedForCase":    0,
                                       "name":    "A",
                                       "wbGain":    [0.9264, 2.9269],
                                       "tableUsed":    [{
                                               "name":    "A_100"
                                           }, {
                                               "name":    "A_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "CWF",
                                       "wbGain":    [1.4693, 2.6635],
                                       "tableUsed":    [{
                                               "name":    "CWF_100"
                                           }, {
                                               "name":    "CWF_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D50",
                                       "wbGain":    [1.3893, 1.9531],
                                       "tableUsed":    [{
                                               "name":    "D50_100"
                                           }, {
                                               "name":    "D50_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D65",
                                       "wbGain":    [1.5625, 1.7282],
                                       "tableUsed":    [{
                                               "name":    "D65_100"
                                           }, {
                                               "name":    "D65_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D75",
                                       "wbGain":    [1.6831, 1.589],
                                       "tableUsed":    [{
                                               "name":    "D75_100"
                                           }, {
                                               "name":    "D75_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "HZ",
                                       "wbGain":    [0.7735, 3.2912],
                                       "tableUsed":    [{
                                               "name":    "HZ_100"
                                           }, {
                                               "name":    "HZ_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "TL84",
                                       "wbGain":    [1.2878, 2.5971],
                                       "tableUsed":    [{
                                               "name":    "TL84_100"
                                           }, {
                                               "name":    "TL84_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 4, 6, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    2,
                                       "name":    "GRAY",
                                       "wbGain":    [1, 1],
                                       "tableUsed":    [{
                                               "name":    "GRAY_0"
                                           }],
                                       "tableUsed_len":    1,
                                       "gains":    [1, 10, 31, 64],
                                       "gains_len":    4,
                                       "vig":    [0, 0, 0, 0],
                                       "vig_len":    4
                                   }],
                               "illAll_len":    8
                           },
                           "tbl":    {
                               "tableAll":    [{
                                       "name":    "1920x1080_A_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3732, 2820, 2287, 1987, 1752, 1584, 1481, 1372, 1347, 1352, 1385, 1472, 1620, 1800, 2072, 2508, 3278, 3482, 2626, 2184, 1889, 1672, 1496, 1372, 1296, 1256, 1269, 1317, 1398, 1541, 1707, 1955, 2331, 3070, 3248, 2508, 2072, 1805, 1595, 1429, 1305, 1239, 1200, 1192, 1245, 1332, 1472, 1642, 1874, 2224, 2820, 3136, 2377, 1998, 1736, 1534, 1362, 1254, 1165, 1141, 1145, 1188, 1280, 1415, 1581, 1809, 2108, 2694, 2934, 2302, 1960, 1691, 1484, 1317, 1206, 1134, 1095, 1097, 1145, 1237, 1369, 1537, 1761, 2054, 2543, 2864, 2259, 1919, 1660, 1451, 1287, 1177, 1095, 1055, 1068, 1113, 1208, 1324, 1499, 1744, 2009, 2474, 2831, 2245, 1909, 1627, 1426, 1271, 1145, 1076, 1031, 1045, 1100, 1188, 1310, 1493, 1719, 1993, 2474, 2842, 2218, 1899, 1623, 1426, 1262, 1143, 1069, 1024, 1030, 1092, 1182, 1303, 1478, 1715, 2004, 2457, 2787, 2224, 1894, 1634, 1420, 1262, 1149, 1063, 1030, 1034, 1088, 1188, 1317, 1487, 1707, 2004, 2474, 2842, 2266, 1909, 1664, 1446, 1287, 1163, 1087, 1052, 1058, 1113, 1208, 1329, 1505, 1719, 2020, 2500, 2853, 2302, 1955, 1683, 1466, 1317, 1192, 1122, 1080, 1092, 1147, 1232, 1362, 1537, 1769, 2054, 2535, 3044, 2354, 2004, 1744, 1524, 1352, 1237, 1163, 1133, 1129, 1182, 1276, 1409, 1577, 1805, 2108, 2665, 3219, 2433, 2066, 1787, 1581, 1409, 1296, 1216, 1194, 1186, 1237, 1334, 1466, 1634, 1865, 2197, 2842, 3416, 2552, 2145, 1879, 1649, 1478, 1354, 1289, 1249, 1258, 1310, 1390, 1531, 1703, 1950, 2309, 2994, 3585, 2745, 2245, 1971, 1723, 1574, 1443, 1369, 1329, 1332, 1398, 1478, 1605, 1805, 2043, 2457, 3191, 3934, 2969, 2401, 2054, 1836, 1656, 1524, 1460, 1417, 1434, 1487, 1567, 1699, 1889, 2165, 2655, 3465, 4256, 3163, 2552, 2158, 1924, 1748, 1634, 1541, 1505, 1505, 1560, 1660, 1787, 1987, 2331, 2887, 3713]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3202, 2477, 2013, 1772, 1598, 1471, 1377, 1330, 1292, 1284, 1336, 1406, 1511, 1654, 1851, 2243, 2961, 3028, 2290, 1915, 1683, 1525, 1389, 1315, 1251, 1221, 1230, 1267, 1333, 1424, 1561, 1754, 2076, 2665, 2847, 2185, 1851, 1634, 1462, 1341, 1255, 1192, 1169, 1178, 1208, 1279, 1380, 1508, 1666, 1960, 2495, 2676, 2095, 1787, 1572, 1415, 1299, 1214, 1139, 1117, 1122, 1169, 1241, 1338, 1452, 1634, 1893, 2371, 2582, 2019, 1740, 1543, 1380, 1255, 1161, 1105, 1073, 1087, 1130, 1205, 1294, 1427, 1602, 1836, 2274, 2477, 2001, 1722, 1501, 1358, 1232, 1138, 1079, 1045, 1056, 1098, 1182, 1272, 1397, 1576, 1801, 2251, 2441, 1966, 1687, 1491, 1330, 1214, 1118, 1060, 1024, 1034, 1089, 1151, 1253, 1392, 1554, 1787, 2192, 2414, 1932, 1683, 1478, 1336, 1205, 1117, 1055, 1026, 1034, 1079, 1151, 1255, 1380, 1554, 1782, 2199, 2441, 1954, 1687, 1498, 1338, 1212, 1118, 1053, 1024, 1032, 1086, 1155, 1248, 1380, 1554, 1787, 2199, 2524, 1983, 1709, 1501, 1347, 1221, 1134, 1077, 1042, 1047, 1111, 1169, 1275, 1406, 1576, 1816, 2243, 2553, 2013, 1731, 1543, 1377, 1255, 1167, 1100, 1075, 1082, 1132, 1201, 1302, 1433, 1606, 1846, 2266, 2708, 2082, 1777, 1568, 1418, 1299, 1208, 1141, 1113, 1124, 1163, 1237, 1330, 1458, 1626, 1883, 2338, 2811, 2178, 1836, 1638, 1468, 1330, 1248, 1188, 1169, 1163, 1212, 1275, 1389, 1511, 1683, 1943, 2495, 2974, 2259, 1899, 1696, 1511, 1392, 1307, 1244, 1221, 1228, 1262, 1333, 1443, 1572, 1763, 2057, 2676, 3218, 2414, 1983, 1772, 1587, 1462, 1383, 1310, 1292, 1299, 1338, 1397, 1505, 1642, 1841, 2192, 2896, 3469, 2603, 2115, 1846, 1666, 1536, 1458, 1403, 1371, 1369, 1415, 1475, 1587, 1731, 1949, 2388, 3127, 3784, 2823, 2282, 1943, 1731, 1610, 1529, 1465, 1443, 1433, 1501, 1543, 1630, 1801, 2109, 2572, 3416]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3405, 2574, 2101, 1848, 1614, 1486, 1391, 1305, 1276, 1283, 1315, 1403, 1513, 1654, 1890, 2271, 2997, 3196, 2400, 1990, 1748, 1551, 1409, 1323, 1257, 1216, 1229, 1264, 1331, 1445, 1591, 1818, 2141, 2775, 2997, 2279, 1933, 1682, 1509, 1363, 1271, 1203, 1165, 1165, 1218, 1293, 1400, 1544, 1730, 2038, 2624, 2857, 2183, 1884, 1638, 1460, 1323, 1222, 1152, 1119, 1125, 1178, 1243, 1347, 1496, 1695, 1972, 2471, 2708, 2121, 1833, 1606, 1429, 1285, 1186, 1114, 1088, 1087, 1138, 1207, 1328, 1460, 1650, 1906, 2409, 2687, 2115, 1804, 1584, 1406, 1257, 1153, 1087, 1053, 1071, 1108, 1192, 1298, 1439, 1642, 1890, 2342, 2614, 2063, 1809, 1565, 1388, 1254, 1138, 1071, 1032, 1046, 1097, 1184, 1288, 1423, 1610, 1864, 2294, 2584, 2063, 1771, 1551, 1383, 1243, 1132, 1068, 1024, 1037, 1099, 1167, 1271, 1417, 1606, 1874, 2294, 2594, 2063, 1813, 1558, 1380, 1243, 1136, 1063, 1027, 1046, 1092, 1171, 1283, 1429, 1618, 1848, 2263, 2634, 2095, 1799, 1587, 1394, 1264, 1153, 1087, 1056, 1064, 1108, 1182, 1293, 1445, 1630, 1890, 2310, 2741, 2135, 1828, 1606, 1433, 1278, 1186, 1108, 1076, 1087, 1127, 1203, 1328, 1454, 1654, 1927, 2358, 2810, 2183, 1869, 1630, 1448, 1315, 1209, 1153, 1119, 1115, 1161, 1243, 1352, 1496, 1687, 1961, 2426, 2958, 2256, 1922, 1691, 1489, 1352, 1264, 1196, 1159, 1167, 1211, 1285, 1403, 1540, 1721, 2032, 2574, 3166, 2409, 1996, 1743, 1544, 1397, 1315, 1243, 1216, 1218, 1257, 1331, 1451, 1595, 1785, 2108, 2741, 3338, 2526, 2057, 1799, 1618, 1470, 1371, 1308, 1276, 1280, 1320, 1383, 1493, 1654, 1864, 2241, 2958, 3664, 2719, 2190, 1874, 1691, 1533, 1439, 1374, 1349, 1341, 1388, 1451, 1569, 1730, 1955, 2409, 3166, 4012, 2984, 2310, 1955, 1785, 1595, 1503, 1420, 1423, 1406, 1442, 1503, 1642, 1799, 2108, 2614, 3458]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3038, 2355, 1860, 1671, 1507, 1397, 1302, 1266, 1253, 1266, 1317, 1372, 1450, 1601, 1747, 2097, 2748, 2748, 2156, 1760, 1568, 1441, 1348, 1273, 1219, 1200, 1219, 1239, 1302, 1397, 1507, 1708, 2023, 2564, 2564, 2041, 1708, 1507, 1397, 1302, 1226, 1182, 1152, 1152, 1200, 1280, 1340, 1459, 1601, 1922, 2429, 2404, 1955, 1671, 1478, 1356, 1259, 1182, 1135, 1113, 1124, 1164, 1219, 1317, 1414, 1568, 1830, 2262, 2331, 1875, 1624, 1459, 1325, 1253, 1164, 1119, 1087, 1097, 1130, 1194, 1280, 1397, 1527, 1788, 2197, 2262, 1875, 1590, 1441, 1310, 1219, 1124, 1067, 1062, 1052, 1113, 1164, 1259, 1389, 1507, 1747, 2176, 2262, 1830, 1590, 1414, 1302, 1194, 1113, 1067, 1033, 1043, 1103, 1146, 1232, 1356, 1507, 1708, 2078, 2262, 1830, 1568, 1423, 1302, 1200, 1113, 1062, 1024, 1038, 1082, 1164, 1253, 1356, 1527, 1708, 2078, 2262, 1845, 1601, 1441, 1302, 1200, 1113, 1052, 1033, 1052, 1108, 1164, 1259, 1372, 1507, 1708, 2059, 2307, 1860, 1601, 1450, 1325, 1219, 1146, 1082, 1052, 1057, 1097, 1170, 1253, 1380, 1507, 1721, 2041, 2331, 1890, 1635, 1487, 1325, 1246, 1158, 1113, 1077, 1082, 1130, 1188, 1295, 1397, 1537, 1721, 2136, 2404, 1938, 1671, 1478, 1372, 1259, 1182, 1130, 1103, 1108, 1146, 1226, 1310, 1423, 1558, 1816, 2262, 2564, 2023, 1708, 1527, 1372, 1302, 1219, 1146, 1146, 1146, 1188, 1253, 1332, 1459, 1590, 1845, 2379, 2748, 2116, 1774, 1568, 1450, 1325, 1273, 1219, 1194, 1188, 1232, 1288, 1380, 1487, 1659, 1971, 2455, 2886, 2240, 1860, 1635, 1497, 1397, 1302, 1259, 1239, 1239, 1280, 1340, 1423, 1537, 1734, 2078, 2684, 3079, 2481, 1971, 1708, 1527, 1432, 1348, 1302, 1273, 1280, 1310, 1372, 1468, 1590, 1816, 2197, 2960, 3347, 2716, 2116, 1788, 1601, 1487, 1405, 1348, 1325, 1325, 1372, 1414, 1537, 1683, 1938, 2481, 3120]
                                       }
                                   }, {
                                       "name":    "1920x1080_A_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2920, 2379, 2032, 1829, 1655, 1523, 1440, 1344, 1322, 1326, 1352, 1423, 1541, 1672, 1861, 2144, 2602, 2792, 2259, 1969, 1761, 1596, 1453, 1346, 1279, 1242, 1254, 1295, 1364, 1481, 1606, 1782, 2031, 2496, 2656, 2188, 1892, 1700, 1537, 1398, 1289, 1229, 1192, 1184, 1232, 1308, 1426, 1559, 1728, 1965, 2342, 2599, 2101, 1842, 1649, 1488, 1340, 1244, 1160, 1137, 1141, 1181, 1264, 1380, 1513, 1683, 1887, 2269, 2467, 2054, 1820, 1617, 1448, 1301, 1200, 1131, 1094, 1095, 1141, 1226, 1342, 1480, 1650, 1854, 2171, 2428, 2028, 1792, 1594, 1421, 1275, 1173, 1094, 1055, 1067, 1111, 1200, 1303, 1450, 1641, 1825, 2130, 2412, 2023, 1788, 1568, 1400, 1261, 1143, 1076, 1031, 1045, 1098, 1182, 1291, 1447, 1624, 1817, 2138, 2426, 2005, 1782, 1566, 1401, 1254, 1141, 1069, 1024, 1030, 1091, 1176, 1286, 1435, 1623, 1829, 2129, 2386, 2011, 1779, 1577, 1396, 1254, 1147, 1063, 1030, 1034, 1087, 1182, 1299, 1444, 1616, 1830, 2144, 2426, 2045, 1791, 1603, 1420, 1278, 1161, 1087, 1052, 1058, 1112, 1201, 1310, 1459, 1626, 1842, 2162, 2429, 2070, 1828, 1618, 1437, 1305, 1189, 1121, 1080, 1091, 1145, 1224, 1340, 1487, 1667, 1867, 2185, 2565, 2105, 1864, 1669, 1488, 1337, 1231, 1161, 1132, 1127, 1178, 1265, 1382, 1520, 1694, 1905, 2276, 2682, 2159, 1910, 1702, 1537, 1388, 1287, 1212, 1191, 1182, 1230, 1317, 1431, 1566, 1739, 1969, 2397, 2808, 2240, 1966, 1775, 1593, 1449, 1339, 1280, 1242, 1250, 1297, 1367, 1486, 1620, 1802, 2047, 2493, 2903, 2374, 2035, 1844, 1652, 1532, 1419, 1353, 1316, 1317, 1376, 1443, 1546, 1700, 1868, 2148, 2614, 3117, 2523, 2145, 1901, 1741, 1598, 1487, 1433, 1394, 1408, 1453, 1517, 1620, 1761, 1953, 2281, 2780, 3286, 2638, 2244, 1971, 1804, 1669, 1579, 1500, 1468, 1467, 1511, 1591, 1685, 1829, 2067, 2430, 2906]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2549, 2121, 1813, 1649, 1521, 1422, 1345, 1306, 1272, 1263, 1308, 1364, 1446, 1550, 1684, 1944, 2380, 2465, 2000, 1750, 1585, 1467, 1356, 1294, 1237, 1209, 1217, 1249, 1305, 1377, 1481, 1618, 1835, 2204, 2362, 1935, 1709, 1552, 1417, 1317, 1242, 1184, 1163, 1171, 1197, 1259, 1344, 1443, 1556, 1758, 2103, 2256, 1877, 1665, 1505, 1380, 1281, 1205, 1135, 1114, 1119, 1162, 1227, 1310, 1400, 1536, 1716, 2028, 2201, 1826, 1633, 1485, 1352, 1243, 1156, 1103, 1072, 1086, 1126, 1195, 1273, 1382, 1515, 1678, 1968, 2132, 1818, 1623, 1452, 1334, 1223, 1135, 1078, 1045, 1056, 1096, 1175, 1254, 1358, 1497, 1656, 1960, 2112, 1795, 1596, 1445, 1310, 1207, 1116, 1060, 1024, 1034, 1088, 1146, 1238, 1356, 1481, 1648, 1921, 2096, 1770, 1595, 1435, 1317, 1199, 1115, 1055, 1026, 1034, 1078, 1146, 1241, 1346, 1483, 1647, 1930, 2118, 1789, 1599, 1454, 1319, 1206, 1117, 1053, 1024, 1032, 1085, 1150, 1234, 1347, 1484, 1652, 1931, 2181, 1812, 1617, 1456, 1327, 1214, 1132, 1077, 1042, 1047, 1110, 1164, 1259, 1370, 1502, 1675, 1964, 2198, 1833, 1634, 1492, 1354, 1246, 1164, 1099, 1075, 1081, 1130, 1194, 1284, 1393, 1526, 1697, 1978, 2309, 1884, 1670, 1512, 1390, 1287, 1203, 1139, 1112, 1123, 1159, 1227, 1308, 1413, 1540, 1722, 2026, 2374, 1954, 1714, 1569, 1433, 1314, 1240, 1184, 1166, 1160, 1205, 1262, 1360, 1457, 1584, 1764, 2135, 2478, 2007, 1759, 1614, 1467, 1368, 1294, 1236, 1215, 1221, 1251, 1313, 1405, 1505, 1645, 1846, 2256, 2634, 2114, 1818, 1672, 1530, 1428, 1362, 1296, 1280, 1286, 1320, 1368, 1456, 1559, 1701, 1940, 2398, 2783, 2241, 1912, 1724, 1591, 1489, 1426, 1379, 1351, 1347, 1386, 1434, 1521, 1626, 1777, 2075, 2537, 2956, 2382, 2028, 1792, 1637, 1546, 1483, 1430, 1411, 1400, 1458, 1487, 1549, 1673, 1890, 2192, 2698]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2691, 2194, 1884, 1712, 1535, 1436, 1358, 1283, 1257, 1262, 1289, 1362, 1448, 1550, 1715, 1965, 2405, 2586, 2084, 1811, 1641, 1489, 1374, 1301, 1242, 1205, 1216, 1246, 1303, 1396, 1507, 1671, 1885, 2283, 2472, 2008, 1777, 1594, 1459, 1337, 1257, 1195, 1159, 1158, 1207, 1272, 1362, 1474, 1609, 1819, 2198, 2391, 1947, 1746, 1563, 1421, 1304, 1213, 1148, 1116, 1122, 1171, 1229, 1318, 1439, 1588, 1779, 2103, 2296, 1908, 1712, 1541, 1397, 1271, 1180, 1112, 1087, 1086, 1134, 1197, 1304, 1411, 1556, 1735, 2070, 2292, 1911, 1693, 1526, 1379, 1246, 1150, 1086, 1053, 1070, 1106, 1184, 1279, 1396, 1554, 1728, 2029, 2245, 1874, 1702, 1512, 1364, 1245, 1136, 1071, 1032, 1046, 1096, 1178, 1271, 1384, 1530, 1711, 1999, 2227, 1878, 1671, 1501, 1361, 1235, 1130, 1068, 1024, 1037, 1098, 1162, 1256, 1380, 1528, 1722, 2003, 2237, 1879, 1708, 1508, 1358, 1235, 1134, 1063, 1027, 1046, 1091, 1166, 1267, 1391, 1539, 1702, 1981, 2266, 1904, 1695, 1534, 1371, 1255, 1151, 1087, 1056, 1064, 1107, 1176, 1276, 1405, 1549, 1736, 2016, 2343, 1933, 1718, 1549, 1406, 1268, 1183, 1107, 1076, 1086, 1125, 1196, 1308, 1412, 1568, 1763, 2049, 2386, 1966, 1749, 1567, 1418, 1302, 1204, 1151, 1118, 1114, 1157, 1233, 1329, 1447, 1593, 1786, 2093, 2485, 2017, 1787, 1617, 1452, 1334, 1256, 1192, 1156, 1164, 1205, 1271, 1373, 1482, 1616, 1836, 2195, 2621, 2127, 1841, 1656, 1497, 1373, 1302, 1236, 1210, 1211, 1246, 1311, 1413, 1526, 1663, 1887, 2304, 2722, 2202, 1880, 1695, 1557, 1436, 1351, 1295, 1265, 1268, 1303, 1355, 1445, 1570, 1720, 1979, 2443, 2923, 2330, 1973, 1748, 1613, 1486, 1408, 1352, 1330, 1321, 1361, 1412, 1505, 1625, 1782, 2091, 2565, 3116, 2503, 2051, 1802, 1683, 1533, 1460, 1388, 1393, 1375, 1404, 1451, 1560, 1672, 1889, 2224, 2728]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2434, 2029, 1691, 1565, 1443, 1356, 1277, 1247, 1236, 1247, 1290, 1334, 1393, 1506, 1601, 1834, 2231, 2264, 1896, 1623, 1487, 1392, 1318, 1255, 1207, 1190, 1207, 1223, 1277, 1353, 1435, 1581, 1794, 2132, 2154, 1822, 1590, 1442, 1359, 1281, 1214, 1175, 1146, 1146, 1190, 1260, 1308, 1401, 1502, 1728, 2055, 2053, 1765, 1568, 1423, 1326, 1244, 1175, 1131, 1110, 1121, 1158, 1207, 1291, 1367, 1481, 1666, 1947, 2011, 1710, 1534, 1410, 1301, 1241, 1159, 1117, 1086, 1095, 1126, 1185, 1260, 1355, 1452, 1640, 1910, 1968, 1716, 1509, 1398, 1290, 1210, 1121, 1066, 1062, 1052, 1111, 1158, 1242, 1351, 1438, 1612, 1903, 1975, 1684, 1512, 1376, 1284, 1187, 1111, 1067, 1033, 1043, 1101, 1141, 1218, 1323, 1441, 1584, 1834, 1979, 1686, 1495, 1385, 1285, 1194, 1112, 1062, 1024, 1038, 1081, 1159, 1239, 1325, 1460, 1586, 1837, 1980, 1699, 1525, 1402, 1285, 1194, 1112, 1052, 1033, 1052, 1107, 1159, 1245, 1339, 1443, 1587, 1823, 2014, 1711, 1524, 1410, 1306, 1212, 1144, 1082, 1052, 1057, 1096, 1165, 1239, 1346, 1442, 1597, 1808, 2028, 1733, 1551, 1442, 1305, 1237, 1155, 1112, 1077, 1081, 1128, 1182, 1277, 1360, 1467, 1594, 1878, 2077, 1767, 1579, 1431, 1347, 1248, 1178, 1128, 1102, 1107, 1143, 1217, 1290, 1382, 1482, 1668, 1968, 2187, 1829, 1605, 1471, 1344, 1287, 1212, 1143, 1144, 1143, 1182, 1241, 1308, 1410, 1505, 1685, 2047, 2310, 1893, 1654, 1502, 1412, 1306, 1262, 1212, 1189, 1182, 1223, 1271, 1348, 1431, 1557, 1778, 2091, 2390, 1978, 1716, 1553, 1449, 1368, 1286, 1248, 1230, 1229, 1265, 1316, 1382, 1468, 1612, 1851, 2242, 2502, 2147, 1795, 1607, 1468, 1395, 1324, 1285, 1258, 1264, 1289, 1340, 1416, 1506, 1669, 1928, 2416, 2650, 2301, 1896, 1662, 1524, 1437, 1370, 1322, 1302, 1301, 1340, 1372, 1469, 1575, 1754, 2124, 2491]
                                       }
                                   }, {
                                       "name":    "1920x1080_CWF_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3360, 2481, 2069, 1774, 1598, 1479, 1381, 1306, 1261, 1272, 1302, 1372, 1489, 1610, 1811, 2161, 2799, 3142, 2347, 1940, 1705, 1553, 1403, 1298, 1250, 1222, 1219, 1247, 1318, 1408, 1542, 1718, 2040, 2646, 2931, 2250, 1873, 1647, 1479, 1342, 1250, 1195, 1160, 1160, 1205, 1257, 1355, 1474, 1659, 1931, 2467, 2764, 2129, 1818, 1610, 1417, 1302, 1215, 1154, 1116, 1116, 1166, 1215, 1314, 1440, 1598, 1842, 2347, 2646, 2040, 1767, 1570, 1394, 1261, 1170, 1116, 1074, 1083, 1116, 1186, 1276, 1403, 1570, 1796, 2239, 2630, 2030, 1725, 1526, 1376, 1250, 1145, 1088, 1051, 1051, 1099, 1166, 1250, 1368, 1547, 1774, 2183, 2495, 1993, 1705, 1505, 1347, 1229, 1127, 1072, 1029, 1039, 1080, 1148, 1243, 1372, 1526, 1767, 2150, 2509, 1984, 1705, 1489, 1355, 1226, 1127, 1059, 1024, 1029, 1077, 1136, 1232, 1368, 1526, 1746, 2129, 2524, 1993, 1705, 1526, 1342, 1219, 1130, 1061, 1029, 1036, 1074, 1148, 1247, 1363, 1515, 1753, 2140, 2524, 1993, 1725, 1520, 1363, 1239, 1142, 1077, 1046, 1041, 1099, 1160, 1254, 1390, 1542, 1774, 2161, 2615, 2069, 1746, 1542, 1390, 1265, 1170, 1110, 1067, 1067, 1121, 1179, 1279, 1408, 1564, 1789, 2216, 2695, 2099, 1767, 1587, 1408, 1295, 1199, 1136, 1110, 1110, 1145, 1219, 1314, 1421, 1604, 1842, 2298, 2799, 2183, 1857, 1628, 1464, 1322, 1236, 1176, 1148, 1133, 1199, 1239, 1351, 1474, 1641, 1906, 2453, 3054, 2286, 1914, 1698, 1505, 1376, 1295, 1226, 1205, 1199, 1250, 1314, 1385, 1537, 1705, 2002, 2553, 3260, 2425, 1993, 1746, 1575, 1440, 1342, 1276, 1261, 1265, 1295, 1359, 1450, 1581, 1803, 2129, 2746, 3581, 2646, 2119, 1811, 1647, 1494, 1408, 1355, 1318, 1330, 1351, 1431, 1520, 1659, 1857, 2298, 3012, 3799, 2836, 2262, 1931, 1705, 1564, 1459, 1403, 1368, 1372, 1421, 1464, 1570, 1725, 2011, 2495, 3334]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3130, 2428, 2015, 1774, 1589, 1462, 1368, 1309, 1293, 1283, 1317, 1377, 1459, 1593, 1774, 2150, 2752, 2956, 2289, 1918, 1677, 1514, 1392, 1312, 1253, 1224, 1217, 1260, 1315, 1401, 1532, 1703, 2002, 2596, 2825, 2172, 1841, 1630, 1469, 1345, 1253, 1197, 1166, 1172, 1197, 1268, 1351, 1482, 1634, 1907, 2447, 2661, 2094, 1789, 1577, 1410, 1301, 1210, 1153, 1117, 1123, 1170, 1231, 1315, 1436, 1597, 1836, 2289, 2565, 2034, 1760, 1554, 1377, 1270, 1175, 1123, 1081, 1083, 1127, 1197, 1283, 1410, 1558, 1784, 2225, 2485, 1971, 1703, 1510, 1374, 1245, 1145, 1081, 1049, 1061, 1098, 1166, 1258, 1374, 1536, 1755, 2172, 2437, 1953, 1703, 1500, 1351, 1224, 1127, 1065, 1039, 1039, 1087, 1160, 1253, 1365, 1521, 1717, 2115, 2437, 1947, 1694, 1500, 1351, 1219, 1125, 1065, 1024, 1044, 1081, 1143, 1241, 1362, 1521, 1731, 2074, 2428, 1947, 1694, 1500, 1351, 1215, 1123, 1065, 1034, 1042, 1087, 1149, 1243, 1374, 1521, 1731, 2087, 2447, 1959, 1708, 1521, 1354, 1238, 1145, 1089, 1054, 1053, 1100, 1170, 1255, 1371, 1547, 1760, 2129, 2534, 2002, 1731, 1543, 1386, 1253, 1170, 1109, 1081, 1087, 1121, 1197, 1288, 1407, 1558, 1774, 2150, 2596, 2067, 1774, 1573, 1420, 1299, 1210, 1139, 1115, 1121, 1162, 1226, 1320, 1439, 1597, 1830, 2265, 2729, 2150, 1836, 1626, 1459, 1339, 1250, 1190, 1164, 1162, 1203, 1263, 1362, 1482, 1642, 1907, 2383, 2956, 2257, 1901, 1677, 1510, 1383, 1307, 1238, 1224, 1219, 1258, 1315, 1413, 1532, 1694, 1984, 2514, 3084, 2401, 1965, 1755, 1573, 1462, 1359, 1304, 1288, 1283, 1315, 1377, 1469, 1589, 1779, 2087, 2694, 3325, 2596, 2115, 1836, 1651, 1543, 1436, 1386, 1354, 1362, 1392, 1445, 1536, 1672, 1879, 2281, 2970, 3648, 2764, 2265, 1879, 1731, 1601, 1517, 1449, 1423, 1445, 1442, 1514, 1613, 1774, 1996, 2447, 3224]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3177, 2492, 2005, 1781, 1581, 1458, 1356, 1295, 1272, 1262, 1298, 1367, 1468, 1581, 1806, 2162, 2751, 3026, 2328, 1932, 1709, 1532, 1388, 1292, 1239, 1207, 1204, 1235, 1303, 1397, 1525, 1723, 1999, 2605, 2824, 2207, 1875, 1639, 1465, 1339, 1249, 1184, 1156, 1152, 1197, 1254, 1344, 1485, 1643, 1915, 2407, 2681, 2133, 1821, 1605, 1426, 1308, 1204, 1146, 1110, 1112, 1150, 1211, 1314, 1429, 1601, 1848, 2320, 2615, 2077, 1776, 1558, 1385, 1267, 1171, 1108, 1072, 1081, 1120, 1186, 1287, 1404, 1581, 1806, 2215, 2594, 2031, 1751, 1539, 1376, 1242, 1148, 1085, 1041, 1049, 1093, 1158, 1254, 1382, 1554, 1766, 2177, 2512, 1999, 1742, 1525, 1353, 1232, 1129, 1067, 1026, 1034, 1087, 1158, 1242, 1359, 1528, 1742, 2140, 2463, 1993, 1723, 1514, 1359, 1232, 1121, 1060, 1024, 1026, 1067, 1140, 1237, 1370, 1536, 1751, 2119, 2492, 1999, 1737, 1521, 1350, 1223, 1123, 1058, 1024, 1031, 1081, 1152, 1249, 1373, 1528, 1771, 2126, 2542, 2012, 1747, 1517, 1370, 1232, 1140, 1081, 1039, 1051, 1093, 1160, 1262, 1379, 1547, 1776, 2140, 2583, 2064, 1766, 1566, 1385, 1257, 1165, 1106, 1071, 1076, 1112, 1182, 1285, 1404, 1581, 1791, 2192, 2693, 2105, 1806, 1581, 1422, 1298, 1197, 1138, 1104, 1106, 1148, 1209, 1311, 1442, 1593, 1848, 2254, 2799, 2169, 1881, 1639, 1472, 1336, 1239, 1178, 1156, 1154, 1200, 1262, 1350, 1479, 1651, 1915, 2372, 2997, 2295, 1921, 1695, 1514, 1370, 1295, 1230, 1200, 1197, 1242, 1303, 1400, 1532, 1691, 1999, 2522, 3115, 2435, 1999, 1751, 1562, 1442, 1350, 1287, 1262, 1247, 1292, 1353, 1462, 1593, 1791, 2098, 2739, 3434, 2626, 2133, 1827, 1639, 1500, 1407, 1359, 1333, 1325, 1362, 1416, 1521, 1651, 1875, 2303, 2983, 3873, 2824, 2295, 1909, 1714, 1574, 1472, 1419, 1391, 1394, 1429, 1482, 1581, 1751, 2018, 2473, 3275]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2905, 2252, 1853, 1605, 1505, 1400, 1308, 1260, 1222, 1247, 1267, 1308, 1376, 1477, 1672, 1991, 2564, 2739, 2095, 1733, 1543, 1408, 1330, 1247, 1197, 1191, 1180, 1210, 1267, 1330, 1433, 1563, 1853, 2362, 2537, 2007, 1661, 1514, 1383, 1280, 1216, 1163, 1141, 1152, 1174, 1216, 1287, 1392, 1524, 1771, 2211, 2340, 1882, 1627, 1459, 1352, 1247, 1174, 1141, 1109, 1119, 1141, 1210, 1267, 1360, 1495, 1696, 2151, 2340, 1825, 1553, 1424, 1330, 1228, 1141, 1099, 1079, 1084, 1114, 1163, 1228, 1323, 1450, 1649, 2007, 2211, 1797, 1563, 1400, 1294, 1186, 1125, 1079, 1051, 1060, 1104, 1146, 1210, 1315, 1424, 1616, 1991, 2170, 1784, 1563, 1408, 1287, 1180, 1125, 1065, 1024, 1033, 1089, 1146, 1210, 1301, 1433, 1584, 1897, 2151, 1771, 1534, 1400, 1287, 1186, 1104, 1046, 1033, 1033, 1070, 1135, 1210, 1301, 1424, 1584, 1912, 2132, 1758, 1534, 1392, 1280, 1203, 1109, 1051, 1024, 1028, 1079, 1130, 1210, 1308, 1442, 1595, 1943, 2095, 1797, 1543, 1433, 1294, 1197, 1125, 1079, 1046, 1051, 1084, 1141, 1210, 1330, 1424, 1605, 1927, 2231, 1853, 1595, 1433, 1330, 1197, 1141, 1094, 1065, 1065, 1104, 1163, 1241, 1330, 1433, 1649, 1958, 2340, 1882, 1605, 1459, 1330, 1234, 1163, 1114, 1089, 1094, 1125, 1191, 1260, 1345, 1486, 1672, 2095, 2459, 1958, 1649, 1486, 1352, 1267, 1197, 1146, 1125, 1119, 1163, 1210, 1287, 1360, 1505, 1745, 2170, 2564, 2024, 1696, 1524, 1392, 1308, 1241, 1191, 1157, 1157, 1191, 1234, 1323, 1400, 1563, 1797, 2273, 2837, 2190, 1797, 1584, 1459, 1352, 1267, 1228, 1216, 1210, 1228, 1254, 1352, 1450, 1616, 1927, 2485, 3053, 2340, 1897, 1627, 1495, 1400, 1308, 1267, 1247, 1241, 1267, 1330, 1383, 1514, 1696, 2077, 2678, 3350, 2564, 2024, 1720, 1534, 1424, 1376, 1287, 1308, 1287, 1301, 1376, 1450, 1605, 1811, 2273, 3014]
                                       }
                                   }, {
                                       "name":    "1920x1080_CWF_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2659, 2124, 1858, 1651, 1521, 1430, 1349, 1283, 1243, 1252, 1277, 1334, 1427, 1514, 1652, 1882, 2267, 2547, 2044, 1770, 1604, 1491, 1368, 1278, 1236, 1210, 1207, 1231, 1291, 1363, 1465, 1589, 1807, 2191, 2423, 1986, 1727, 1564, 1433, 1318, 1237, 1187, 1154, 1154, 1194, 1239, 1321, 1414, 1550, 1735, 2083, 2322, 1904, 1691, 1539, 1382, 1284, 1206, 1150, 1113, 1113, 1160, 1203, 1288, 1389, 1506, 1675, 2011, 2249, 1843, 1655, 1509, 1365, 1248, 1165, 1114, 1073, 1082, 1113, 1177, 1256, 1361, 1488, 1646, 1942, 2249, 1842, 1625, 1474, 1351, 1240, 1142, 1087, 1051, 1051, 1097, 1160, 1234, 1332, 1473, 1634, 1908, 2154, 1817, 1612, 1458, 1326, 1221, 1125, 1072, 1029, 1039, 1079, 1143, 1229, 1338, 1457, 1632, 1889, 2169, 1813, 1614, 1445, 1335, 1219, 1125, 1059, 1024, 1029, 1076, 1132, 1219, 1335, 1459, 1617, 1876, 2182, 1821, 1615, 1479, 1323, 1212, 1128, 1061, 1029, 1036, 1073, 1144, 1233, 1331, 1450, 1624, 1886, 2181, 1820, 1631, 1473, 1342, 1231, 1140, 1077, 1046, 1041, 1098, 1155, 1240, 1355, 1473, 1640, 1901, 2246, 1879, 1647, 1491, 1366, 1256, 1167, 1109, 1067, 1067, 1119, 1173, 1262, 1370, 1490, 1650, 1940, 2299, 1898, 1661, 1529, 1381, 1283, 1194, 1134, 1109, 1109, 1142, 1210, 1293, 1380, 1521, 1689, 1996, 2365, 1958, 1732, 1561, 1429, 1306, 1229, 1172, 1146, 1130, 1193, 1228, 1325, 1424, 1548, 1735, 2103, 2538, 2029, 1772, 1616, 1462, 1353, 1283, 1219, 1200, 1193, 1240, 1295, 1353, 1475, 1596, 1803, 2164, 2665, 2123, 1827, 1649, 1519, 1408, 1323, 1264, 1251, 1254, 1279, 1333, 1407, 1506, 1669, 1891, 2288, 2863, 2274, 1916, 1694, 1574, 1451, 1380, 1334, 1301, 1311, 1327, 1394, 1462, 1565, 1702, 2006, 2454, 2967, 2392, 2012, 1782, 1614, 1505, 1420, 1373, 1342, 1344, 1385, 1416, 1497, 1610, 1812, 2134, 2641]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2498, 2084, 1815, 1651, 1514, 1414, 1337, 1286, 1272, 1262, 1290, 1339, 1401, 1499, 1623, 1874, 2234, 2414, 1999, 1752, 1580, 1457, 1358, 1291, 1239, 1212, 1205, 1243, 1288, 1357, 1457, 1577, 1778, 2155, 2346, 1924, 1701, 1549, 1424, 1320, 1240, 1189, 1160, 1165, 1187, 1249, 1318, 1421, 1529, 1717, 2068, 2245, 1876, 1667, 1510, 1375, 1283, 1202, 1149, 1114, 1120, 1163, 1218, 1289, 1386, 1505, 1670, 1967, 2188, 1838, 1650, 1495, 1349, 1257, 1170, 1121, 1080, 1082, 1123, 1188, 1262, 1367, 1478, 1636, 1931, 2138, 1794, 1606, 1460, 1349, 1235, 1142, 1080, 1049, 1060, 1096, 1160, 1241, 1338, 1463, 1618, 1900, 2109, 1784, 1610, 1453, 1330, 1216, 1125, 1065, 1039, 1039, 1086, 1155, 1238, 1332, 1453, 1591, 1862, 2114, 1782, 1604, 1455, 1331, 1212, 1123, 1065, 1024, 1044, 1080, 1139, 1228, 1330, 1455, 1605, 1834, 2108, 1783, 1605, 1455, 1331, 1208, 1121, 1065, 1034, 1042, 1086, 1145, 1230, 1341, 1455, 1606, 1845, 2121, 1792, 1617, 1474, 1334, 1230, 1143, 1089, 1054, 1053, 1099, 1165, 1241, 1338, 1477, 1629, 1876, 2184, 1824, 1634, 1492, 1362, 1244, 1167, 1108, 1081, 1086, 1119, 1190, 1271, 1369, 1485, 1638, 1889, 2223, 1872, 1667, 1516, 1392, 1287, 1205, 1137, 1114, 1120, 1158, 1217, 1299, 1396, 1515, 1679, 1971, 2312, 1931, 1714, 1559, 1425, 1322, 1242, 1186, 1161, 1159, 1197, 1250, 1335, 1431, 1549, 1735, 2050, 2465, 2006, 1761, 1598, 1466, 1360, 1294, 1231, 1218, 1212, 1247, 1296, 1378, 1470, 1587, 1788, 2135, 2536, 2104, 1803, 1657, 1517, 1428, 1339, 1291, 1277, 1271, 1298, 1350, 1424, 1513, 1649, 1858, 2249, 2679, 2235, 1912, 1716, 1578, 1495, 1406, 1363, 1335, 1341, 1365, 1406, 1476, 1576, 1720, 1993, 2424, 2861, 2337, 2015, 1738, 1637, 1538, 1472, 1415, 1393, 1411, 1404, 1461, 1534, 1651, 1800, 2098, 2564]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2531, 2132, 1807, 1656, 1507, 1411, 1326, 1273, 1253, 1243, 1273, 1330, 1409, 1489, 1648, 1883, 2233, 2464, 2029, 1763, 1608, 1473, 1355, 1272, 1226, 1196, 1193, 1219, 1277, 1353, 1451, 1593, 1775, 2161, 2345, 1952, 1729, 1557, 1420, 1315, 1236, 1176, 1150, 1146, 1187, 1236, 1311, 1423, 1537, 1723, 2039, 2260, 1907, 1694, 1534, 1390, 1290, 1196, 1142, 1107, 1109, 1144, 1199, 1288, 1380, 1509, 1680, 1990, 2226, 1872, 1663, 1498, 1356, 1254, 1166, 1106, 1071, 1080, 1117, 1177, 1266, 1362, 1497, 1654, 1924, 2222, 1843, 1647, 1486, 1351, 1232, 1145, 1084, 1041, 1049, 1091, 1152, 1238, 1345, 1479, 1627, 1903, 2167, 1822, 1644, 1476, 1332, 1224, 1127, 1067, 1026, 1034, 1086, 1153, 1228, 1326, 1459, 1612, 1881, 2134, 1820, 1630, 1468, 1338, 1225, 1119, 1060, 1024, 1026, 1066, 1136, 1224, 1337, 1468, 1621, 1869, 2158, 1826, 1643, 1475, 1330, 1216, 1121, 1058, 1024, 1031, 1080, 1148, 1235, 1340, 1461, 1639, 1875, 2195, 1836, 1650, 1470, 1349, 1225, 1138, 1081, 1039, 1051, 1092, 1155, 1247, 1345, 1477, 1642, 1885, 2221, 1875, 1664, 1513, 1361, 1248, 1162, 1105, 1071, 1076, 1110, 1176, 1268, 1367, 1505, 1652, 1921, 2297, 1903, 1695, 1523, 1394, 1286, 1192, 1136, 1103, 1105, 1145, 1201, 1291, 1399, 1512, 1694, 1962, 2365, 1946, 1752, 1570, 1436, 1319, 1232, 1174, 1153, 1151, 1194, 1249, 1324, 1428, 1557, 1742, 2042, 2495, 2036, 1778, 1613, 1470, 1348, 1283, 1223, 1195, 1191, 1232, 1285, 1366, 1470, 1584, 1800, 2141, 2558, 2131, 1832, 1654, 1507, 1410, 1331, 1275, 1252, 1236, 1276, 1328, 1417, 1517, 1659, 1866, 2282, 2757, 2259, 1927, 1708, 1567, 1456, 1379, 1338, 1315, 1306, 1337, 1380, 1463, 1558, 1717, 2010, 2433, 3018, 2382, 2039, 1763, 1622, 1514, 1431, 1387, 1363, 1364, 1392, 1432, 1507, 1631, 1817, 2118, 2600]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2341, 1951, 1686, 1509, 1441, 1359, 1282, 1241, 1207, 1229, 1245, 1277, 1329, 1402, 1541, 1754, 2102, 2257, 1849, 1601, 1466, 1363, 1302, 1231, 1186, 1181, 1170, 1196, 1245, 1294, 1372, 1463, 1663, 1986, 2134, 1795, 1552, 1448, 1346, 1260, 1205, 1156, 1136, 1146, 1165, 1201, 1260, 1343, 1438, 1610, 1895, 2005, 1707, 1531, 1406, 1323, 1233, 1167, 1137, 1106, 1116, 1136, 1198, 1245, 1319, 1420, 1559, 1864, 2018, 1669, 1474, 1379, 1306, 1217, 1137, 1097, 1078, 1083, 1111, 1156, 1212, 1290, 1386, 1528, 1766, 1929, 1653, 1486, 1361, 1275, 1179, 1122, 1078, 1051, 1059, 1102, 1140, 1197, 1285, 1367, 1505, 1762, 1904, 1646, 1489, 1370, 1270, 1174, 1123, 1065, 1024, 1033, 1088, 1141, 1198, 1274, 1377, 1482, 1695, 1893, 1638, 1466, 1364, 1271, 1180, 1103, 1046, 1033, 1033, 1069, 1131, 1198, 1275, 1371, 1484, 1709, 1880, 1628, 1466, 1358, 1264, 1197, 1108, 1051, 1024, 1028, 1078, 1126, 1199, 1281, 1387, 1494, 1734, 1850, 1659, 1474, 1394, 1277, 1191, 1123, 1079, 1046, 1051, 1083, 1137, 1198, 1301, 1371, 1501, 1720, 1951, 1702, 1517, 1393, 1310, 1190, 1139, 1093, 1065, 1065, 1102, 1158, 1227, 1300, 1377, 1536, 1741, 2028, 1722, 1522, 1414, 1308, 1225, 1159, 1113, 1088, 1093, 1122, 1183, 1243, 1312, 1420, 1551, 1841, 2108, 1776, 1555, 1434, 1326, 1254, 1191, 1143, 1123, 1117, 1158, 1200, 1266, 1323, 1433, 1605, 1890, 2172, 1820, 1589, 1463, 1359, 1290, 1231, 1185, 1153, 1152, 1183, 1221, 1296, 1354, 1477, 1639, 1955, 2354, 1939, 1664, 1509, 1415, 1327, 1253, 1218, 1208, 1201, 1216, 1236, 1319, 1393, 1514, 1732, 2096, 2483, 2038, 1735, 1538, 1440, 1366, 1287, 1252, 1234, 1227, 1249, 1302, 1341, 1441, 1571, 1835, 2214, 2652, 2186, 1822, 1606, 1466, 1381, 1344, 1266, 1286, 1266, 1276, 1338, 1393, 1509, 1652, 1967, 2417]
                                       }
                                   }, {
                                       "name":    "1920x1080_D50_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3755, 2772, 2237, 1927, 1741, 1563, 1473, 1369, 1339, 1339, 1373, 1447, 1604, 1735, 1999, 2403, 3128, 3389, 2567, 2130, 1861, 1625, 1500, 1373, 1293, 1256, 1270, 1297, 1381, 1486, 1658, 1876, 2248, 2904, 3189, 2415, 2024, 1767, 1563, 1409, 1318, 1237, 1192, 1195, 1240, 1321, 1434, 1599, 1786, 2149, 2695, 3031, 2345, 1974, 1705, 1528, 1362, 1256, 1172, 1136, 1150, 1192, 1266, 1389, 1538, 1735, 1999, 2527, 2887, 2248, 1890, 1658, 1464, 1318, 1201, 1128, 1098, 1100, 1147, 1228, 1347, 1495, 1705, 1951, 2451, 2836, 2177, 1876, 1636, 1442, 1297, 1172, 1095, 1067, 1069, 1115, 1195, 1307, 1460, 1658, 1927, 2403, 2756, 2177, 1868, 1604, 1421, 1266, 1161, 1081, 1039, 1046, 1103, 1169, 1300, 1447, 1647, 1905, 2334, 2726, 2158, 1840, 1599, 1409, 1260, 1147, 1069, 1024, 1037, 1093, 1172, 1283, 1438, 1642, 1905, 2312, 2741, 2149, 1840, 1614, 1397, 1256, 1142, 1071, 1028, 1039, 1090, 1175, 1283, 1430, 1636, 1905, 2345, 2741, 2177, 1861, 1620, 1409, 1270, 1158, 1095, 1057, 1053, 1103, 1186, 1297, 1460, 1670, 1912, 2391, 2836, 2217, 1883, 1636, 1460, 1310, 1192, 1121, 1083, 1090, 1136, 1216, 1339, 1486, 1670, 1943, 2415, 2957, 2301, 1943, 1681, 1477, 1339, 1228, 1161, 1126, 1121, 1175, 1263, 1358, 1524, 1711, 2007, 2502, 3108, 2356, 1990, 1741, 1543, 1389, 1273, 1210, 1175, 1180, 1219, 1300, 1405, 1563, 1780, 2049, 2623, 3320, 2489, 2066, 1799, 1604, 1442, 1339, 1260, 1234, 1228, 1283, 1354, 1464, 1625, 1840, 2158, 2756, 3537, 2666, 2149, 1890, 1670, 1514, 1409, 1328, 1303, 1307, 1339, 1421, 1538, 1681, 1927, 2279, 3012, 3814, 2904, 2301, 1990, 1760, 1604, 1486, 1413, 1373, 1385, 1426, 1495, 1636, 1780, 2032, 2489, 3297, 4137, 3088, 2464, 2049, 1847, 1676, 1553, 1486, 1430, 1434, 1486, 1553, 1699, 1861, 2168, 2695, 3486]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3161, 2438, 2044, 1755, 1593, 1467, 1360, 1323, 1273, 1280, 1315, 1383, 1487, 1600, 1783, 2149, 2804, 3019, 2312, 1932, 1698, 1524, 1400, 1310, 1249, 1217, 1215, 1251, 1320, 1427, 1535, 1724, 2020, 2608, 2828, 2198, 1847, 1648, 1464, 1347, 1254, 1196, 1148, 1160, 1198, 1265, 1355, 1484, 1656, 1932, 2438, 2736, 2122, 1798, 1578, 1433, 1292, 1208, 1146, 1116, 1116, 1154, 1224, 1318, 1436, 1600, 1852, 2312, 2568, 2038, 1751, 1535, 1391, 1249, 1175, 1109, 1080, 1084, 1122, 1185, 1285, 1400, 1570, 1793, 2220, 2483, 2007, 1724, 1517, 1363, 1237, 1137, 1080, 1048, 1056, 1092, 1170, 1249, 1374, 1545, 1755, 2163, 2474, 1966, 1698, 1494, 1344, 1219, 1118, 1060, 1027, 1032, 1084, 1146, 1244, 1366, 1528, 1728, 2115, 2438, 1949, 1698, 1504, 1339, 1219, 1118, 1055, 1027, 1024, 1077, 1143, 1233, 1366, 1524, 1733, 2102, 2465, 1966, 1706, 1497, 1333, 1211, 1123, 1056, 1024, 1037, 1075, 1143, 1231, 1366, 1524, 1751, 2128, 2465, 1990, 1719, 1510, 1349, 1224, 1127, 1078, 1038, 1045, 1085, 1152, 1251, 1374, 1535, 1751, 2142, 2511, 2013, 1737, 1545, 1383, 1251, 1160, 1101, 1073, 1070, 1112, 1181, 1270, 1400, 1556, 1793, 2177, 2671, 2076, 1779, 1567, 1415, 1282, 1187, 1131, 1105, 1101, 1148, 1219, 1302, 1427, 1589, 1827, 2250, 2758, 2149, 1837, 1612, 1452, 1320, 1244, 1181, 1143, 1154, 1191, 1251, 1347, 1467, 1632, 1899, 2377, 2914, 2265, 1905, 1668, 1504, 1363, 1287, 1228, 1204, 1211, 1242, 1302, 1397, 1524, 1706, 1966, 2501, 3074, 2386, 1984, 1755, 1559, 1442, 1349, 1297, 1265, 1270, 1300, 1349, 1464, 1582, 1779, 2095, 2725, 3419, 2578, 2095, 1822, 1652, 1510, 1415, 1369, 1333, 1341, 1383, 1430, 1524, 1648, 1873, 2288, 2914, 3764, 2793, 2220, 1883, 1724, 1578, 1480, 1436, 1421, 1412, 1427, 1494, 1589, 1755, 1984, 2447, 3191]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3283, 2534, 2063, 1795, 1619, 1491, 1378, 1304, 1277, 1289, 1304, 1373, 1487, 1615, 1839, 2218, 2795, 3117, 2374, 1967, 1726, 1559, 1425, 1317, 1251, 1222, 1217, 1251, 1319, 1422, 1566, 1740, 2069, 2695, 2903, 2248, 1901, 1671, 1484, 1356, 1263, 1196, 1169, 1159, 1200, 1275, 1370, 1501, 1667, 1956, 2451, 2761, 2162, 1829, 1619, 1449, 1314, 1226, 1153, 1119, 1128, 1163, 1233, 1324, 1462, 1627, 1885, 2333, 2632, 2095, 1800, 1589, 1422, 1282, 1177, 1122, 1090, 1093, 1126, 1196, 1299, 1425, 1592, 1839, 2240, 2622, 2063, 1762, 1563, 1398, 1256, 1159, 1086, 1056, 1066, 1097, 1183, 1272, 1404, 1581, 1814, 2211, 2524, 2020, 1753, 1538, 1378, 1237, 1132, 1071, 1027, 1041, 1086, 1161, 1256, 1378, 1559, 1785, 2148, 2572, 2026, 1744, 1538, 1362, 1228, 1128, 1063, 1024, 1032, 1078, 1147, 1249, 1376, 1552, 1776, 2183, 2487, 2026, 1749, 1538, 1364, 1228, 1126, 1056, 1026, 1033, 1085, 1153, 1249, 1393, 1559, 1785, 2141, 2553, 2057, 1771, 1538, 1370, 1249, 1147, 1076, 1051, 1053, 1097, 1167, 1270, 1395, 1577, 1795, 2162, 2622, 2075, 1781, 1581, 1407, 1263, 1171, 1106, 1066, 1081, 1124, 1187, 1294, 1410, 1604, 1849, 2197, 2695, 2114, 1824, 1611, 1434, 1299, 1206, 1139, 1113, 1110, 1153, 1219, 1314, 1455, 1627, 1864, 2333, 2795, 2204, 1885, 1655, 1474, 1343, 1242, 1181, 1153, 1153, 1196, 1258, 1359, 1497, 1659, 1928, 2434, 3033, 2293, 1933, 1709, 1524, 1376, 1294, 1226, 1202, 1206, 1242, 1307, 1407, 1535, 1713, 2020, 2572, 3190, 2434, 2008, 1781, 1585, 1449, 1359, 1297, 1263, 1263, 1297, 1362, 1459, 1589, 1809, 2134, 2784, 3486, 2642, 2134, 1844, 1650, 1504, 1422, 1362, 1332, 1322, 1367, 1428, 1521, 1675, 1869, 2293, 2980, 3799, 2842, 2263, 1950, 1731, 1570, 1478, 1437, 1393, 1395, 1437, 1487, 1604, 1753, 2002, 2478, 3251]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3104, 2396, 1941, 1686, 1537, 1423, 1356, 1291, 1267, 1253, 1305, 1351, 1417, 1530, 1719, 2093, 2694, 2803, 2185, 1848, 1615, 1459, 1362, 1276, 1227, 1210, 1193, 1240, 1286, 1383, 1478, 1646, 1951, 2500, 2633, 2093, 1737, 1571, 1441, 1310, 1240, 1173, 1165, 1161, 1181, 1244, 1341, 1417, 1564, 1857, 2332, 2555, 1996, 1694, 1523, 1372, 1281, 1205, 1142, 1120, 1116, 1150, 1214, 1296, 1389, 1543, 1772, 2185, 2396, 1930, 1670, 1478, 1346, 1240, 1177, 1109, 1095, 1088, 1127, 1177, 1253, 1367, 1497, 1719, 2106, 2396, 1909, 1646, 1465, 1325, 1227, 1142, 1081, 1055, 1062, 1099, 1157, 1240, 1356, 1490, 1694, 2056, 2256, 1878, 1623, 1441, 1310, 1205, 1120, 1068, 1024, 1042, 1078, 1153, 1218, 1330, 1484, 1670, 2020, 2256, 1878, 1623, 1441, 1315, 1197, 1116, 1068, 1030, 1024, 1078, 1138, 1214, 1325, 1471, 1646, 1963, 2286, 1848, 1608, 1441, 1315, 1214, 1113, 1058, 1033, 1030, 1081, 1142, 1231, 1325, 1484, 1670, 2020, 2286, 1857, 1638, 1459, 1325, 1218, 1135, 1078, 1046, 1049, 1099, 1146, 1236, 1341, 1484, 1694, 2020, 2396, 1909, 1662, 1478, 1341, 1218, 1142, 1092, 1071, 1071, 1102, 1169, 1267, 1367, 1497, 1703, 2068, 2430, 1996, 1686, 1497, 1362, 1267, 1177, 1124, 1095, 1106, 1131, 1181, 1267, 1389, 1530, 1728, 2131, 2518, 2032, 1737, 1543, 1389, 1286, 1218, 1153, 1135, 1131, 1177, 1227, 1305, 1423, 1571, 1819, 2227, 2737, 2106, 1800, 1579, 1435, 1325, 1244, 1193, 1177, 1189, 1201, 1272, 1330, 1459, 1623, 1878, 2396, 2873, 2256, 1867, 1654, 1471, 1378, 1296, 1253, 1231, 1231, 1249, 1310, 1389, 1516, 1670, 2020, 2555, 3132, 2396, 1951, 1694, 1523, 1429, 1341, 1300, 1281, 1272, 1305, 1341, 1441, 1579, 1763, 2171, 2737, 3443, 2633, 2131, 1781, 1608, 1478, 1389, 1356, 1315, 1310, 1335, 1423, 1490, 1631, 1867, 2348, 2997]
                                       }
                                   }, {
                                       "name":    "1920x1080_D50_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2936, 2343, 1992, 1778, 1645, 1504, 1432, 1341, 1315, 1314, 1341, 1401, 1527, 1618, 1802, 2065, 2497, 2725, 2213, 1925, 1737, 1555, 1456, 1347, 1276, 1242, 1255, 1277, 1348, 1432, 1564, 1718, 1967, 2376, 2613, 2115, 1852, 1668, 1508, 1379, 1301, 1227, 1185, 1187, 1227, 1298, 1392, 1522, 1655, 1906, 2250, 2521, 2076, 1822, 1622, 1483, 1340, 1245, 1167, 1133, 1146, 1184, 1251, 1356, 1475, 1621, 1800, 2145, 2431, 2010, 1760, 1587, 1429, 1302, 1195, 1126, 1097, 1098, 1143, 1217, 1321, 1442, 1603, 1771, 2102, 2406, 1962, 1755, 1573, 1412, 1285, 1168, 1094, 1067, 1068, 1113, 1187, 1287, 1415, 1568, 1758, 2076, 2354, 1968, 1752, 1547, 1395, 1256, 1158, 1080, 1039, 1046, 1101, 1163, 1282, 1406, 1562, 1745, 2030, 2337, 1956, 1731, 1545, 1385, 1252, 1145, 1069, 1024, 1037, 1092, 1167, 1267, 1399, 1559, 1748, 2017, 2350, 1950, 1732, 1559, 1374, 1248, 1140, 1071, 1028, 1039, 1089, 1170, 1267, 1392, 1555, 1749, 2044, 2348, 1971, 1749, 1564, 1385, 1261, 1156, 1095, 1057, 1053, 1102, 1180, 1280, 1419, 1584, 1754, 2078, 2416, 2000, 1765, 1576, 1432, 1299, 1189, 1120, 1083, 1089, 1134, 1208, 1318, 1441, 1582, 1776, 2092, 2498, 2062, 1812, 1613, 1445, 1325, 1223, 1159, 1125, 1120, 1171, 1252, 1334, 1472, 1613, 1823, 2151, 2598, 2097, 1845, 1661, 1502, 1369, 1264, 1206, 1172, 1176, 1212, 1285, 1375, 1503, 1667, 1850, 2232, 2736, 2190, 1899, 1705, 1552, 1415, 1325, 1252, 1228, 1221, 1271, 1333, 1425, 1552, 1710, 1927, 2316, 2868, 2312, 1956, 1774, 1604, 1476, 1387, 1314, 1291, 1294, 1321, 1391, 1486, 1593, 1772, 2008, 2483, 3031, 2473, 2064, 1847, 1674, 1551, 1452, 1389, 1352, 1362, 1396, 1452, 1565, 1668, 1845, 2153, 2659, 3203, 2582, 2174, 1880, 1737, 1605, 1505, 1449, 1399, 1401, 1444, 1495, 1609, 1723, 1937, 2285, 2747]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2520, 2091, 1838, 1635, 1517, 1419, 1329, 1299, 1254, 1260, 1289, 1344, 1425, 1505, 1630, 1873, 2270, 2459, 2017, 1763, 1598, 1466, 1366, 1289, 1235, 1206, 1203, 1234, 1293, 1380, 1459, 1594, 1792, 2163, 2348, 1945, 1706, 1564, 1419, 1322, 1241, 1188, 1143, 1154, 1188, 1246, 1321, 1422, 1547, 1736, 2062, 2301, 1898, 1674, 1511, 1396, 1275, 1200, 1142, 1113, 1113, 1148, 1211, 1292, 1386, 1508, 1683, 1984, 2190, 1841, 1642, 1478, 1362, 1237, 1170, 1107, 1079, 1083, 1119, 1176, 1264, 1358, 1488, 1644, 1927, 2137, 1823, 1624, 1466, 1339, 1227, 1134, 1079, 1048, 1056, 1090, 1163, 1233, 1338, 1471, 1618, 1893, 2138, 1795, 1606, 1448, 1323, 1211, 1116, 1060, 1027, 1032, 1083, 1141, 1230, 1332, 1459, 1600, 1862, 2115, 1784, 1608, 1459, 1320, 1212, 1116, 1055, 1027, 1024, 1076, 1139, 1220, 1334, 1457, 1607, 1855, 2137, 1799, 1616, 1453, 1314, 1205, 1121, 1056, 1024, 1037, 1074, 1139, 1218, 1334, 1458, 1622, 1877, 2135, 1818, 1626, 1464, 1329, 1217, 1125, 1078, 1038, 1045, 1084, 1147, 1237, 1341, 1467, 1621, 1886, 2166, 1833, 1639, 1494, 1360, 1242, 1157, 1100, 1073, 1070, 1110, 1175, 1254, 1363, 1483, 1653, 1910, 2280, 1879, 1671, 1511, 1387, 1270, 1183, 1129, 1104, 1100, 1145, 1210, 1282, 1385, 1509, 1677, 1959, 2334, 1930, 1715, 1546, 1418, 1304, 1236, 1177, 1141, 1151, 1185, 1239, 1321, 1418, 1541, 1729, 2046, 2433, 2012, 1764, 1590, 1461, 1341, 1275, 1221, 1199, 1205, 1232, 1284, 1364, 1463, 1597, 1774, 2125, 2528, 2092, 1819, 1657, 1504, 1410, 1330, 1284, 1255, 1258, 1284, 1324, 1419, 1507, 1649, 1864, 2272, 2747, 2222, 1896, 1704, 1579, 1465, 1386, 1347, 1315, 1321, 1357, 1393, 1466, 1556, 1715, 1998, 2383, 2942, 2359, 1979, 1742, 1631, 1518, 1439, 1403, 1391, 1381, 1390, 1443, 1514, 1635, 1790, 2098, 2541]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2605, 2164, 1853, 1668, 1540, 1440, 1346, 1282, 1258, 1268, 1279, 1335, 1425, 1518, 1675, 1925, 2264, 2529, 2064, 1792, 1622, 1497, 1388, 1295, 1237, 1210, 1205, 1234, 1292, 1376, 1486, 1607, 1829, 2226, 2403, 1984, 1750, 1584, 1437, 1331, 1249, 1188, 1163, 1153, 1190, 1256, 1335, 1437, 1557, 1755, 2071, 2319, 1930, 1700, 1547, 1411, 1295, 1217, 1149, 1116, 1124, 1157, 1220, 1297, 1409, 1531, 1709, 2000, 2239, 1887, 1684, 1526, 1390, 1268, 1172, 1120, 1089, 1091, 1122, 1187, 1277, 1380, 1507, 1681, 1942, 2243, 1869, 1657, 1507, 1371, 1246, 1155, 1085, 1056, 1065, 1095, 1176, 1254, 1365, 1502, 1666, 1929, 2176, 1839, 1653, 1488, 1355, 1229, 1130, 1071, 1027, 1041, 1085, 1156, 1241, 1343, 1486, 1647, 1887, 2218, 1847, 1648, 1489, 1341, 1221, 1126, 1063, 1024, 1032, 1077, 1143, 1235, 1343, 1481, 1642, 1918, 2154, 1848, 1653, 1490, 1343, 1221, 1124, 1056, 1026, 1033, 1084, 1149, 1235, 1358, 1488, 1650, 1887, 2203, 1873, 1671, 1489, 1349, 1241, 1145, 1076, 1051, 1053, 1096, 1162, 1255, 1360, 1503, 1658, 1902, 2251, 1884, 1677, 1526, 1382, 1254, 1168, 1105, 1066, 1080, 1122, 1181, 1276, 1372, 1525, 1699, 1925, 2299, 1910, 1710, 1550, 1405, 1287, 1201, 1137, 1112, 1109, 1150, 1210, 1293, 1410, 1541, 1707, 2022, 2362, 1975, 1756, 1585, 1438, 1326, 1234, 1177, 1150, 1150, 1190, 1245, 1332, 1444, 1564, 1752, 2089, 2522, 2034, 1788, 1626, 1479, 1353, 1282, 1219, 1197, 1200, 1232, 1289, 1373, 1473, 1603, 1817, 2178, 2613, 2130, 1839, 1680, 1528, 1416, 1339, 1284, 1253, 1252, 1281, 1336, 1415, 1513, 1674, 1895, 2315, 2795, 2271, 1928, 1723, 1577, 1460, 1393, 1341, 1314, 1303, 1342, 1391, 1463, 1579, 1712, 2002, 2431, 2967, 2396, 2013, 1798, 1637, 1511, 1437, 1404, 1365, 1365, 1399, 1437, 1527, 1633, 1805, 2121, 2583]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2480, 2059, 1756, 1577, 1469, 1380, 1326, 1270, 1248, 1235, 1279, 1315, 1365, 1447, 1579, 1831, 2193, 2304, 1919, 1695, 1527, 1408, 1331, 1257, 1214, 1199, 1182, 1224, 1262, 1341, 1411, 1530, 1738, 2086, 2205, 1863, 1615, 1498, 1398, 1288, 1227, 1166, 1159, 1155, 1172, 1227, 1309, 1364, 1471, 1677, 1984, 2166, 1798, 1587, 1462, 1341, 1265, 1197, 1138, 1117, 1113, 1144, 1202, 1272, 1345, 1460, 1619, 1890, 2060, 1754, 1573, 1427, 1320, 1228, 1172, 1107, 1094, 1087, 1123, 1169, 1235, 1329, 1426, 1584, 1841, 2071, 1744, 1557, 1419, 1304, 1218, 1139, 1080, 1055, 1061, 1097, 1151, 1225, 1322, 1424, 1569, 1811, 1970, 1723, 1541, 1400, 1291, 1198, 1118, 1068, 1024, 1042, 1077, 1148, 1205, 1300, 1421, 1553, 1789, 1974, 1726, 1543, 1402, 1297, 1191, 1114, 1068, 1030, 1024, 1077, 1134, 1202, 1297, 1411, 1535, 1748, 1999, 1702, 1531, 1402, 1297, 1207, 1112, 1058, 1033, 1030, 1080, 1138, 1218, 1297, 1423, 1555, 1793, 1997, 1708, 1556, 1418, 1306, 1211, 1133, 1078, 1046, 1049, 1098, 1142, 1223, 1311, 1423, 1575, 1792, 2078, 1748, 1575, 1433, 1320, 1210, 1140, 1091, 1071, 1071, 1100, 1163, 1251, 1333, 1432, 1580, 1826, 2096, 1814, 1592, 1448, 1338, 1256, 1173, 1123, 1094, 1105, 1128, 1174, 1250, 1351, 1458, 1596, 1868, 2152, 1836, 1630, 1485, 1360, 1272, 1211, 1150, 1133, 1129, 1172, 1216, 1283, 1378, 1489, 1664, 1933, 2301, 1885, 1676, 1511, 1398, 1306, 1234, 1187, 1172, 1183, 1193, 1256, 1303, 1406, 1527, 1704, 2047, 2381, 1990, 1722, 1570, 1425, 1351, 1280, 1242, 1222, 1221, 1236, 1288, 1352, 1450, 1559, 1805, 2147, 2540, 2081, 1779, 1595, 1465, 1392, 1318, 1283, 1266, 1256, 1284, 1312, 1392, 1497, 1626, 1908, 2256, 2717, 2238, 1908, 1656, 1530, 1429, 1356, 1329, 1293, 1287, 1307, 1380, 1428, 1531, 1697, 2023, 2405]
                                       }
                                   }, {
                                       "name":    "1920x1080_D65_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3385, 2632, 2153, 1853, 1665, 1516, 1402, 1327, 1315, 1336, 1348, 1430, 1567, 1691, 1982, 2369, 3046, 3207, 2479, 2049, 1791, 1608, 1435, 1353, 1264, 1242, 1242, 1276, 1366, 1474, 1639, 1861, 2220, 2862, 3025, 2355, 1955, 1711, 1522, 1374, 1276, 1214, 1180, 1180, 1231, 1303, 1411, 1572, 1791, 2090, 2682, 2921, 2244, 1886, 1652, 1474, 1331, 1224, 1161, 1124, 1133, 1180, 1272, 1370, 1522, 1705, 2030, 2523, 2769, 2164, 1845, 1608, 1425, 1283, 1190, 1118, 1090, 1090, 1136, 1217, 1323, 1474, 1684, 1937, 2464, 2734, 2121, 1798, 1578, 1402, 1264, 1142, 1095, 1049, 1065, 1107, 1200, 1311, 1449, 1652, 1886, 2395, 2665, 2090, 1791, 1561, 1374, 1253, 1145, 1070, 1031, 1039, 1092, 1170, 1299, 1430, 1626, 1903, 2355, 2682, 2090, 1768, 1555, 1383, 1242, 1124, 1065, 1024, 1034, 1087, 1161, 1287, 1435, 1620, 1911, 2292, 2682, 2100, 1791, 1561, 1379, 1242, 1136, 1060, 1031, 1034, 1092, 1180, 1291, 1430, 1626, 1911, 2355, 2734, 2142, 1791, 1584, 1402, 1272, 1158, 1084, 1047, 1057, 1107, 1197, 1311, 1469, 1665, 1929, 2369, 2716, 2175, 1845, 1608, 1420, 1287, 1180, 1107, 1081, 1084, 1130, 1210, 1336, 1485, 1698, 1946, 2395, 2881, 2197, 1894, 1665, 1464, 1315, 1221, 1155, 1124, 1121, 1174, 1249, 1361, 1511, 1725, 2030, 2508, 3068, 2304, 1946, 1705, 1522, 1374, 1272, 1200, 1164, 1170, 1221, 1307, 1430, 1561, 1783, 2059, 2665, 3207, 2422, 2020, 1768, 1590, 1430, 1327, 1264, 1231, 1231, 1279, 1353, 1474, 1633, 1837, 2209, 2787, 3413, 2569, 2131, 1845, 1639, 1495, 1402, 1336, 1299, 1303, 1344, 1416, 1538, 1718, 1911, 2330, 3025, 3776, 2806, 2256, 1929, 1732, 1590, 1490, 1406, 1383, 1374, 1416, 1500, 1626, 1814, 2049, 2493, 3307, 4026, 2982, 2395, 2020, 1783, 1652, 1522, 1444, 1449, 1474, 1474, 1572, 1665, 1894, 2220, 2734, 3497]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3118, 2422, 1998, 1736, 1571, 1460, 1353, 1305, 1277, 1277, 1315, 1378, 1473, 1609, 1802, 2197, 2899, 2925, 2257, 1895, 1679, 1510, 1384, 1292, 1250, 1214, 1218, 1258, 1320, 1407, 1545, 1736, 2041, 2655, 2754, 2161, 1822, 1609, 1470, 1331, 1239, 1190, 1154, 1167, 1205, 1274, 1361, 1496, 1670, 1934, 2467, 2644, 2041, 1773, 1564, 1401, 1289, 1203, 1144, 1119, 1115, 1160, 1229, 1326, 1457, 1605, 1863, 2370, 2504, 1986, 1731, 1531, 1372, 1248, 1173, 1108, 1081, 1088, 1131, 1198, 1289, 1416, 1598, 1822, 2241, 2440, 1962, 1696, 1500, 1353, 1232, 1140, 1076, 1045, 1057, 1104, 1183, 1260, 1387, 1556, 1787, 2189, 2449, 1934, 1691, 1490, 1339, 1216, 1121, 1067, 1030, 1035, 1088, 1150, 1258, 1375, 1545, 1768, 2140, 2422, 1922, 1670, 1483, 1336, 1211, 1119, 1057, 1026, 1035, 1088, 1144, 1246, 1372, 1531, 1787, 2133, 2396, 1945, 1696, 1486, 1331, 1225, 1117, 1058, 1024, 1042, 1086, 1154, 1258, 1392, 1545, 1783, 2140, 2467, 1968, 1700, 1507, 1358, 1232, 1135, 1081, 1053, 1053, 1108, 1171, 1262, 1398, 1564, 1797, 2189, 2485, 1986, 1740, 1531, 1378, 1253, 1171, 1108, 1081, 1083, 1127, 1192, 1305, 1425, 1594, 1817, 2204, 2613, 2060, 1778, 1556, 1413, 1287, 1198, 1137, 1117, 1121, 1167, 1232, 1326, 1447, 1625, 1863, 2345, 2754, 2133, 1822, 1613, 1450, 1334, 1250, 1192, 1167, 1163, 1198, 1262, 1375, 1496, 1674, 1922, 2458, 2899, 2234, 1884, 1657, 1517, 1381, 1294, 1236, 1220, 1214, 1260, 1328, 1413, 1560, 1736, 2028, 2583, 3089, 2378, 1956, 1745, 1575, 1441, 1358, 1297, 1287, 1277, 1328, 1378, 1483, 1617, 1807, 2140, 2743, 3338, 2563, 2073, 1817, 1649, 1520, 1432, 1369, 1353, 1344, 1395, 1450, 1553, 1709, 1928, 2296, 3060, 3755, 2789, 2249, 1900, 1709, 1598, 1493, 1441, 1425, 1404, 1450, 1517, 1629, 1792, 2041, 2533, 3272]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3113, 2438, 2022, 1746, 1576, 1465, 1340, 1293, 1271, 1271, 1301, 1368, 1474, 1622, 1822, 2189, 2775, 3014, 2287, 1906, 1680, 1518, 1391, 1301, 1236, 1215, 1217, 1247, 1311, 1415, 1557, 1741, 2086, 2632, 2871, 2175, 1843, 1630, 1465, 1327, 1252, 1183, 1152, 1156, 1200, 1264, 1371, 1501, 1680, 1951, 2484, 2663, 2112, 1798, 1568, 1418, 1291, 1204, 1144, 1119, 1115, 1166, 1233, 1332, 1461, 1630, 1906, 2403, 2632, 2035, 1769, 1546, 1374, 1259, 1174, 1110, 1082, 1091, 1123, 1213, 1296, 1421, 1614, 1848, 2295, 2541, 1992, 1728, 1536, 1368, 1238, 1148, 1079, 1055, 1060, 1100, 1176, 1276, 1400, 1576, 1817, 2218, 2512, 1980, 1719, 1515, 1351, 1229, 1132, 1065, 1024, 1035, 1088, 1164, 1252, 1391, 1565, 1783, 2168, 2420, 1945, 1710, 1508, 1349, 1222, 1123, 1058, 1026, 1038, 1084, 1154, 1250, 1391, 1557, 1798, 2189, 2493, 1957, 1728, 1504, 1349, 1222, 1123, 1055, 1038, 1043, 1090, 1158, 1264, 1397, 1565, 1808, 2189, 2503, 1992, 1728, 1515, 1368, 1233, 1140, 1084, 1045, 1055, 1100, 1170, 1269, 1406, 1587, 1812, 2233, 2570, 2028, 1769, 1557, 1385, 1252, 1170, 1102, 1081, 1090, 1128, 1196, 1309, 1436, 1614, 1848, 2279, 2696, 2086, 1798, 1576, 1421, 1298, 1211, 1140, 1117, 1117, 1164, 1229, 1332, 1474, 1642, 1895, 2352, 2810, 2175, 1848, 1634, 1471, 1340, 1250, 1181, 1160, 1164, 1204, 1271, 1374, 1515, 1701, 1957, 2512, 2947, 2287, 1912, 1684, 1515, 1374, 1293, 1243, 1209, 1213, 1266, 1309, 1427, 1557, 1746, 2035, 2611, 3203, 2420, 1992, 1760, 1576, 1449, 1357, 1303, 1278, 1281, 1324, 1379, 1484, 1626, 1827, 2189, 2834, 3400, 2601, 2112, 1822, 1650, 1515, 1418, 1365, 1332, 1349, 1382, 1442, 1557, 1714, 1912, 2360, 3098, 3810, 2858, 2248, 1912, 1714, 1595, 1484, 1436, 1403, 1406, 1445, 1498, 1622, 1793, 2066, 2551, 3250]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2928, 2286, 1903, 1672, 1485, 1404, 1341, 1270, 1254, 1245, 1287, 1336, 1430, 1545, 1724, 2134, 2780, 2780, 2158, 1805, 1589, 1457, 1341, 1274, 1222, 1195, 1203, 1222, 1283, 1374, 1485, 1658, 1971, 2542, 2559, 2033, 1724, 1557, 1414, 1300, 1234, 1177, 1146, 1146, 1188, 1245, 1331, 1441, 1589, 1839, 2328, 2446, 1971, 1672, 1491, 1364, 1270, 1177, 1139, 1116, 1113, 1146, 1207, 1283, 1394, 1545, 1764, 2233, 2385, 1912, 1623, 1463, 1336, 1234, 1149, 1100, 1081, 1087, 1129, 1177, 1270, 1379, 1509, 1756, 2123, 2286, 1857, 1609, 1441, 1300, 1218, 1136, 1087, 1052, 1055, 1091, 1156, 1245, 1355, 1491, 1687, 2111, 2233, 1857, 1596, 1441, 1304, 1199, 1119, 1064, 1032, 1038, 1084, 1139, 1234, 1341, 1491, 1665, 2055, 2220, 1813, 1596, 1414, 1287, 1188, 1106, 1061, 1024, 1029, 1084, 1146, 1230, 1331, 1480, 1687, 2001, 2220, 1822, 1603, 1441, 1296, 1188, 1109, 1058, 1032, 1035, 1091, 1149, 1234, 1350, 1485, 1687, 2023, 2246, 1857, 1603, 1441, 1309, 1214, 1122, 1078, 1046, 1058, 1103, 1163, 1245, 1364, 1491, 1701, 2066, 2328, 1875, 1636, 1468, 1331, 1226, 1156, 1097, 1078, 1078, 1116, 1177, 1270, 1374, 1514, 1732, 2134, 2415, 1941, 1687, 1509, 1360, 1266, 1181, 1129, 1100, 1116, 1152, 1210, 1300, 1394, 1557, 1764, 2170, 2576, 2033, 1717, 1532, 1399, 1283, 1222, 1166, 1146, 1146, 1192, 1241, 1327, 1457, 1583, 1839, 2286, 2703, 2111, 1772, 1583, 1441, 1322, 1266, 1199, 1195, 1184, 1222, 1278, 1364, 1509, 1643, 1922, 2446, 2928, 2273, 1839, 1650, 1497, 1379, 1318, 1258, 1245, 1234, 1278, 1322, 1399, 1545, 1709, 2033, 2647, 3092, 2415, 1961, 1701, 1545, 1441, 1350, 1313, 1291, 1287, 1318, 1394, 1463, 1596, 1805, 2195, 2842, 3548, 2722, 2088, 1805, 1623, 1503, 1425, 1379, 1336, 1331, 1369, 1420, 1545, 1687, 1971, 2430, 3068]
                                       }
                                   }, {
                                       "name":    "1920x1080_D65_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2677, 2238, 1925, 1717, 1579, 1463, 1368, 1303, 1293, 1311, 1319, 1386, 1495, 1581, 1789, 2039, 2439, 2594, 2145, 1859, 1677, 1540, 1397, 1329, 1249, 1229, 1228, 1257, 1335, 1421, 1548, 1706, 1946, 2346, 2492, 2068, 1795, 1619, 1471, 1347, 1261, 1205, 1173, 1173, 1219, 1282, 1371, 1499, 1659, 1860, 2241, 2439, 1995, 1748, 1576, 1434, 1311, 1215, 1156, 1121, 1129, 1173, 1256, 1339, 1461, 1596, 1825, 2142, 2342, 1942, 1722, 1543, 1393, 1269, 1184, 1116, 1089, 1088, 1132, 1207, 1299, 1424, 1585, 1760, 2112, 2328, 1916, 1688, 1521, 1375, 1253, 1139, 1094, 1049, 1064, 1105, 1192, 1291, 1405, 1563, 1725, 2070, 2284, 1896, 1686, 1508, 1351, 1244, 1143, 1070, 1031, 1039, 1091, 1164, 1281, 1390, 1544, 1743, 2046, 2303, 1900, 1669, 1505, 1361, 1234, 1122, 1065, 1024, 1034, 1086, 1156, 1271, 1396, 1540, 1753, 2002, 2304, 1909, 1689, 1511, 1357, 1234, 1134, 1060, 1031, 1034, 1091, 1175, 1275, 1392, 1546, 1754, 2052, 2343, 1943, 1689, 1531, 1379, 1263, 1156, 1084, 1047, 1057, 1106, 1191, 1293, 1427, 1579, 1768, 2061, 2324, 1966, 1733, 1551, 1394, 1277, 1177, 1106, 1081, 1083, 1128, 1203, 1316, 1440, 1606, 1779, 2077, 2440, 1978, 1770, 1599, 1433, 1302, 1216, 1153, 1123, 1120, 1170, 1239, 1337, 1460, 1625, 1842, 2156, 2568, 2055, 1808, 1629, 1483, 1355, 1263, 1196, 1161, 1167, 1214, 1292, 1398, 1501, 1669, 1858, 2263, 2652, 2137, 1861, 1677, 1539, 1404, 1313, 1256, 1225, 1224, 1267, 1332, 1434, 1559, 1707, 1967, 2339, 2777, 2236, 1941, 1735, 1576, 1459, 1380, 1321, 1287, 1290, 1325, 1386, 1486, 1625, 1759, 2048, 2492, 3003, 2397, 2027, 1795, 1649, 1538, 1456, 1382, 1362, 1352, 1387, 1456, 1556, 1697, 1859, 2156, 2666, 3125, 2502, 2118, 1856, 1682, 1584, 1477, 1410, 1417, 1438, 1433, 1512, 1579, 1751, 1979, 2315, 2755]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2490, 2079, 1802, 1619, 1498, 1413, 1323, 1283, 1258, 1257, 1289, 1340, 1413, 1513, 1645, 1909, 2337, 2391, 1974, 1733, 1582, 1453, 1351, 1272, 1236, 1203, 1206, 1241, 1293, 1362, 1468, 1604, 1808, 2197, 2293, 1916, 1685, 1531, 1424, 1307, 1226, 1182, 1148, 1160, 1194, 1255, 1327, 1433, 1559, 1738, 2083, 2232, 1834, 1653, 1498, 1367, 1272, 1195, 1140, 1116, 1112, 1154, 1216, 1299, 1404, 1512, 1692, 2028, 2142, 1799, 1625, 1474, 1344, 1236, 1168, 1106, 1080, 1087, 1127, 1189, 1268, 1372, 1512, 1667, 1943, 2104, 1787, 1600, 1451, 1330, 1223, 1137, 1075, 1045, 1057, 1102, 1176, 1243, 1349, 1480, 1644, 1913, 2119, 1769, 1600, 1444, 1318, 1208, 1119, 1067, 1030, 1035, 1087, 1145, 1243, 1341, 1474, 1633, 1881, 2102, 1762, 1584, 1440, 1317, 1204, 1117, 1057, 1026, 1035, 1087, 1140, 1232, 1339, 1463, 1651, 1879, 2084, 1782, 1607, 1443, 1312, 1218, 1116, 1058, 1024, 1042, 1085, 1150, 1244, 1358, 1476, 1648, 1886, 2137, 1800, 1610, 1461, 1337, 1225, 1133, 1081, 1053, 1053, 1107, 1166, 1247, 1363, 1492, 1659, 1923, 2146, 1811, 1642, 1481, 1355, 1244, 1168, 1107, 1081, 1082, 1125, 1185, 1287, 1386, 1516, 1673, 1930, 2236, 1866, 1671, 1501, 1385, 1275, 1193, 1135, 1116, 1120, 1163, 1223, 1305, 1403, 1539, 1706, 2032, 2331, 1917, 1702, 1547, 1416, 1317, 1242, 1188, 1164, 1160, 1192, 1249, 1347, 1443, 1576, 1747, 2107, 2422, 1987, 1746, 1580, 1473, 1358, 1282, 1229, 1214, 1208, 1249, 1309, 1378, 1495, 1622, 1823, 2187, 2539, 2086, 1796, 1648, 1519, 1409, 1338, 1284, 1276, 1265, 1310, 1351, 1436, 1538, 1672, 1899, 2285, 2688, 2210, 1878, 1700, 1576, 1475, 1402, 1347, 1334, 1324, 1368, 1411, 1491, 1608, 1760, 2004, 2488, 2936, 2356, 2002, 1756, 1618, 1536, 1450, 1408, 1394, 1374, 1411, 1463, 1548, 1666, 1836, 2163, 2598]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2486, 2091, 1821, 1627, 1502, 1417, 1311, 1272, 1252, 1251, 1276, 1331, 1414, 1524, 1661, 1903, 2250, 2455, 1997, 1742, 1583, 1460, 1357, 1281, 1223, 1204, 1205, 1231, 1285, 1369, 1478, 1608, 1842, 2181, 2379, 1927, 1702, 1549, 1420, 1304, 1239, 1175, 1146, 1150, 1190, 1246, 1336, 1437, 1567, 1751, 2095, 2246, 1890, 1674, 1502, 1383, 1274, 1196, 1140, 1116, 1112, 1160, 1220, 1304, 1408, 1533, 1726, 2052, 2239, 1838, 1657, 1488, 1346, 1246, 1169, 1108, 1081, 1089, 1120, 1203, 1274, 1377, 1525, 1688, 1984, 2181, 1811, 1628, 1483, 1344, 1228, 1145, 1078, 1055, 1059, 1098, 1169, 1258, 1361, 1497, 1669, 1935, 2167, 1806, 1624, 1467, 1330, 1221, 1130, 1065, 1024, 1035, 1087, 1159, 1237, 1355, 1491, 1645, 1903, 2101, 1781, 1618, 1462, 1329, 1215, 1121, 1058, 1026, 1038, 1083, 1149, 1236, 1356, 1486, 1660, 1923, 2159, 1792, 1635, 1459, 1329, 1215, 1121, 1055, 1038, 1043, 1089, 1153, 1249, 1362, 1493, 1669, 1924, 2165, 1819, 1634, 1469, 1347, 1226, 1138, 1084, 1045, 1055, 1099, 1165, 1254, 1370, 1512, 1671, 1956, 2211, 1846, 1667, 1505, 1361, 1243, 1167, 1101, 1081, 1089, 1126, 1189, 1290, 1396, 1533, 1698, 1988, 2299, 1888, 1688, 1519, 1393, 1286, 1206, 1138, 1116, 1116, 1160, 1220, 1310, 1427, 1554, 1732, 2037, 2373, 1951, 1724, 1566, 1436, 1323, 1242, 1177, 1157, 1161, 1198, 1258, 1346, 1460, 1599, 1776, 2148, 2458, 2029, 1770, 1604, 1471, 1352, 1281, 1236, 1203, 1207, 1255, 1291, 1391, 1492, 1631, 1829, 2207, 2623, 2119, 1826, 1661, 1520, 1416, 1338, 1290, 1267, 1269, 1306, 1352, 1437, 1545, 1689, 1938, 2352, 2733, 2239, 1910, 1704, 1577, 1470, 1389, 1344, 1314, 1329, 1356, 1404, 1495, 1612, 1747, 2054, 2516, 2974, 2408, 2001, 1766, 1622, 1533, 1442, 1403, 1374, 1375, 1407, 1446, 1542, 1667, 1856, 2176, 2582]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2357, 1976, 1726, 1565, 1424, 1363, 1312, 1250, 1236, 1227, 1263, 1302, 1376, 1459, 1583, 1862, 2253, 2287, 1898, 1660, 1505, 1406, 1312, 1256, 1210, 1185, 1192, 1207, 1259, 1333, 1417, 1540, 1754, 2116, 2150, 1815, 1604, 1486, 1374, 1279, 1222, 1170, 1141, 1140, 1178, 1228, 1300, 1385, 1492, 1663, 1981, 2084, 1778, 1568, 1434, 1334, 1254, 1170, 1135, 1113, 1110, 1140, 1195, 1260, 1349, 1462, 1613, 1926, 2052, 1739, 1533, 1414, 1311, 1223, 1145, 1098, 1080, 1086, 1125, 1169, 1251, 1339, 1436, 1614, 1854, 1987, 1701, 1526, 1398, 1280, 1209, 1133, 1086, 1052, 1055, 1089, 1150, 1229, 1321, 1424, 1563, 1853, 1953, 1706, 1518, 1400, 1286, 1192, 1117, 1064, 1032, 1038, 1083, 1134, 1220, 1310, 1427, 1549, 1816, 1946, 1672, 1520, 1377, 1271, 1182, 1105, 1061, 1024, 1029, 1083, 1142, 1217, 1302, 1419, 1569, 1778, 1948, 1681, 1526, 1402, 1279, 1182, 1108, 1058, 1032, 1035, 1090, 1145, 1221, 1320, 1424, 1569, 1796, 1966, 1708, 1526, 1402, 1291, 1207, 1120, 1078, 1046, 1058, 1102, 1158, 1231, 1332, 1429, 1580, 1828, 2026, 1721, 1552, 1424, 1311, 1218, 1153, 1096, 1078, 1078, 1114, 1171, 1254, 1340, 1447, 1603, 1877, 2085, 1770, 1593, 1459, 1336, 1255, 1177, 1127, 1099, 1115, 1149, 1202, 1280, 1356, 1481, 1626, 1898, 2196, 1837, 1613, 1475, 1369, 1269, 1215, 1163, 1144, 1143, 1186, 1229, 1303, 1409, 1499, 1681, 1977, 2276, 1889, 1652, 1515, 1404, 1303, 1255, 1193, 1190, 1179, 1213, 1262, 1334, 1450, 1544, 1739, 2084, 2421, 2004, 1699, 1566, 1449, 1352, 1301, 1247, 1235, 1224, 1263, 1299, 1361, 1475, 1591, 1815, 2215, 2511, 2096, 1787, 1601, 1484, 1403, 1326, 1295, 1275, 1271, 1296, 1360, 1412, 1511, 1660, 1926, 2332, 2791, 2305, 1873, 1677, 1543, 1451, 1389, 1351, 1312, 1306, 1338, 1377, 1476, 1578, 1780, 2085, 2455]
                                       }
                                   }, {
                                       "name":    "1920x1080_D75_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3458, 2603, 2133, 1868, 1654, 1519, 1419, 1336, 1301, 1309, 1355, 1424, 1543, 1697, 1942, 2352, 3203, 3283, 2472, 2033, 1782, 1600, 1440, 1346, 1279, 1243, 1231, 1284, 1350, 1467, 1613, 1868, 2218, 2851, 3005, 2338, 1952, 1720, 1530, 1374, 1279, 1212, 1186, 1179, 1231, 1318, 1419, 1555, 1750, 2110, 2657, 2915, 2231, 1877, 1668, 1467, 1332, 1227, 1161, 1124, 1138, 1175, 1263, 1374, 1519, 1704, 1992, 2519, 2790, 2145, 1833, 1613, 1424, 1284, 1179, 1121, 1087, 1105, 1138, 1227, 1332, 1473, 1668, 1923, 2456, 2751, 2110, 1807, 1593, 1414, 1263, 1161, 1096, 1060, 1063, 1121, 1193, 1309, 1451, 1640, 1914, 2472, 2712, 2077, 1782, 1567, 1379, 1247, 1138, 1069, 1038, 1043, 1090, 1175, 1279, 1435, 1620, 1868, 2352, 2657, 2044, 1782, 1549, 1374, 1247, 1144, 1066, 1024, 1035, 1084, 1175, 1284, 1440, 1620, 1868, 2297, 2639, 2077, 1782, 1561, 1384, 1243, 1134, 1063, 1027, 1040, 1093, 1175, 1279, 1435, 1626, 1868, 2310, 2693, 2088, 1791, 1574, 1399, 1263, 1151, 1093, 1046, 1054, 1112, 1190, 1305, 1456, 1633, 1895, 2367, 2790, 2145, 1833, 1587, 1424, 1279, 1190, 1112, 1081, 1093, 1134, 1216, 1332, 1467, 1675, 1923, 2410, 2851, 2206, 1886, 1647, 1467, 1323, 1219, 1154, 1124, 1134, 1175, 1267, 1364, 1513, 1697, 1992, 2487, 3028, 2297, 1942, 1704, 1530, 1364, 1271, 1204, 1175, 1182, 1219, 1288, 1399, 1561, 1735, 2077, 2639, 3203, 2410, 2012, 1766, 1587, 1435, 1341, 1275, 1231, 1219, 1271, 1360, 1456, 1626, 1824, 2181, 2810, 3552, 2569, 2110, 1841, 1647, 1501, 1389, 1323, 1296, 1292, 1336, 1419, 1536, 1675, 1923, 2283, 2982, 3722, 2790, 2257, 1942, 1735, 1587, 1467, 1404, 1360, 1379, 1414, 1484, 1613, 1766, 2023, 2487, 3256, 4115, 3028, 2381, 1982, 1799, 1654, 1519, 1478, 1435, 1435, 1478, 1536, 1654, 1850, 2157, 2639, 3458]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3286, 2475, 2003, 1760, 1592, 1460, 1374, 1297, 1260, 1290, 1310, 1383, 1477, 1604, 1829, 2192, 2854, 2972, 2325, 1932, 1678, 1521, 1394, 1305, 1243, 1210, 1217, 1255, 1321, 1416, 1558, 1732, 2047, 2701, 2805, 2177, 1839, 1620, 1463, 1343, 1252, 1191, 1157, 1169, 1206, 1264, 1357, 1493, 1678, 1967, 2513, 2667, 2093, 1779, 1577, 1422, 1297, 1206, 1143, 1121, 1117, 1165, 1240, 1329, 1463, 1616, 1898, 2384, 2573, 2041, 1741, 1547, 1380, 1262, 1167, 1111, 1082, 1087, 1125, 1204, 1290, 1419, 1604, 1829, 2260, 2513, 2003, 1718, 1518, 1365, 1238, 1141, 1085, 1049, 1064, 1104, 1182, 1264, 1388, 1569, 1804, 2214, 2456, 1967, 1700, 1504, 1343, 1224, 1125, 1068, 1034, 1032, 1093, 1157, 1257, 1383, 1550, 1774, 2163, 2429, 1949, 1691, 1497, 1337, 1215, 1121, 1059, 1027, 1037, 1080, 1151, 1252, 1380, 1550, 1779, 2156, 2429, 1955, 1696, 1493, 1345, 1215, 1129, 1057, 1024, 1040, 1089, 1159, 1260, 1388, 1547, 1764, 2177, 2503, 1985, 1704, 1504, 1351, 1229, 1141, 1080, 1054, 1054, 1098, 1169, 1260, 1403, 1558, 1804, 2184, 2533, 2022, 1745, 1543, 1385, 1260, 1178, 1109, 1084, 1078, 1133, 1199, 1302, 1422, 1596, 1819, 2252, 2667, 2067, 1779, 1573, 1425, 1297, 1197, 1145, 1123, 1119, 1161, 1231, 1329, 1457, 1632, 1876, 2367, 2758, 2156, 1844, 1632, 1463, 1329, 1255, 1193, 1163, 1165, 1208, 1267, 1371, 1511, 1682, 1943, 2475, 2931, 2276, 1904, 1691, 1521, 1388, 1308, 1240, 1208, 1217, 1262, 1329, 1428, 1565, 1732, 2022, 2603, 3174, 2429, 1991, 1741, 1584, 1444, 1362, 1308, 1282, 1277, 1316, 1388, 1487, 1616, 1834, 2170, 2817, 3425, 2614, 2120, 1824, 1657, 1525, 1422, 1371, 1354, 1354, 1391, 1453, 1558, 1704, 1932, 2325, 3084, 3782, 2830, 2229, 1909, 1700, 1580, 1504, 1447, 1412, 1425, 1444, 1504, 1620, 1799, 2060, 2543, 3320]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3253, 2496, 2038, 1768, 1599, 1464, 1363, 1303, 1266, 1273, 1311, 1380, 1490, 1623, 1848, 2225, 2855, 3099, 2336, 1941, 1699, 1532, 1395, 1311, 1253, 1216, 1216, 1253, 1314, 1410, 1565, 1749, 2083, 2658, 2893, 2217, 1885, 1644, 1477, 1343, 1256, 1187, 1164, 1168, 1205, 1275, 1372, 1511, 1690, 1964, 2525, 2713, 2130, 1832, 1603, 1432, 1309, 1216, 1152, 1118, 1122, 1168, 1234, 1332, 1460, 1627, 1896, 2396, 2626, 2063, 1792, 1565, 1404, 1263, 1183, 1117, 1083, 1092, 1126, 1203, 1301, 1441, 1615, 1858, 2271, 2535, 2031, 1726, 1543, 1372, 1253, 1154, 1091, 1054, 1062, 1102, 1177, 1275, 1410, 1588, 1827, 2263, 2496, 1994, 1740, 1518, 1352, 1225, 1134, 1073, 1032, 1042, 1091, 1160, 1266, 1389, 1569, 1797, 2180, 2525, 2000, 1726, 1528, 1349, 1230, 1128, 1069, 1024, 1047, 1094, 1162, 1263, 1389, 1561, 1797, 2173, 2506, 1994, 1740, 1521, 1360, 1223, 1128, 1062, 1032, 1039, 1092, 1166, 1270, 1395, 1569, 1797, 2232, 2535, 2013, 1749, 1543, 1366, 1244, 1140, 1083, 1050, 1061, 1103, 1173, 1280, 1425, 1603, 1827, 2225, 2626, 2044, 1763, 1573, 1398, 1266, 1170, 1115, 1078, 1083, 1130, 1194, 1306, 1438, 1611, 1864, 2263, 2725, 2137, 1812, 1599, 1432, 1301, 1205, 1148, 1122, 1117, 1164, 1234, 1341, 1470, 1648, 1913, 2361, 2843, 2195, 1869, 1648, 1470, 1343, 1258, 1187, 1164, 1162, 1201, 1285, 1380, 1521, 1704, 1970, 2487, 3027, 2311, 1924, 1712, 1511, 1380, 1306, 1249, 1209, 1216, 1258, 1319, 1428, 1558, 1754, 2057, 2626, 3302, 2449, 2013, 1768, 1573, 1464, 1366, 1306, 1280, 1283, 1319, 1377, 1490, 1635, 1822, 2195, 2819, 3496, 2616, 2151, 1848, 1660, 1528, 1435, 1377, 1346, 1355, 1395, 1460, 1565, 1708, 1941, 2353, 3070, 3868, 2831, 2311, 1930, 1744, 1592, 1490, 1444, 1422, 1416, 1464, 1497, 1611, 1807, 2063, 2555, 3405]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2951, 2294, 1920, 1685, 1506, 1394, 1323, 1270, 1266, 1247, 1270, 1323, 1418, 1518, 1720, 2096, 2631, 2772, 2162, 1795, 1606, 1443, 1336, 1258, 1210, 1200, 1189, 1221, 1290, 1362, 1464, 1645, 1920, 2458, 2614, 2034, 1749, 1535, 1409, 1302, 1228, 1176, 1137, 1143, 1183, 1247, 1302, 1423, 1576, 1827, 2307, 2473, 1966, 1685, 1501, 1353, 1266, 1189, 1124, 1103, 1112, 1150, 1203, 1282, 1394, 1535, 1772, 2185, 2347, 1903, 1645, 1469, 1336, 1225, 1146, 1101, 1075, 1077, 1115, 1176, 1251, 1362, 1512, 1720, 2096, 2333, 1868, 1594, 1443, 1319, 1214, 1128, 1069, 1050, 1061, 1092, 1169, 1236, 1349, 1485, 1699, 2096, 2232, 1843, 1606, 1428, 1306, 1210, 1121, 1066, 1027, 1029, 1098, 1156, 1232, 1344, 1469, 1678, 2014, 2232, 1843, 1582, 1414, 1290, 1196, 1112, 1058, 1024, 1032, 1083, 1143, 1225, 1314, 1480, 1645, 1976, 2197, 1835, 1606, 1423, 1298, 1193, 1106, 1058, 1029, 1037, 1077, 1143, 1232, 1336, 1480, 1685, 2034, 2232, 1835, 1606, 1443, 1314, 1210, 1124, 1077, 1045, 1045, 1086, 1156, 1236, 1362, 1485, 1692, 2034, 2320, 1885, 1645, 1469, 1327, 1232, 1150, 1101, 1077, 1077, 1112, 1169, 1262, 1376, 1506, 1706, 2075, 2458, 1948, 1665, 1512, 1344, 1258, 1179, 1121, 1103, 1109, 1140, 1196, 1298, 1394, 1540, 1780, 2197, 2488, 1995, 1720, 1529, 1394, 1290, 1214, 1163, 1140, 1150, 1186, 1236, 1314, 1428, 1588, 1819, 2269, 2718, 2107, 1772, 1588, 1428, 1327, 1254, 1203, 1189, 1189, 1228, 1270, 1367, 1469, 1625, 1894, 2373, 2830, 2257, 1868, 1625, 1474, 1371, 1290, 1258, 1236, 1232, 1266, 1319, 1404, 1529, 1699, 2014, 2614, 3154, 2473, 1957, 1685, 1546, 1433, 1353, 1306, 1278, 1290, 1314, 1367, 1464, 1600, 1811, 2185, 2849, 3360, 2631, 2129, 1803, 1625, 1485, 1380, 1353, 1340, 1340, 1367, 1418, 1535, 1651, 1929, 2430, 3130]
                                       }
                                   }, {
                                       "name":    "1920x1080_D75_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2728, 2216, 1909, 1729, 1570, 1465, 1383, 1311, 1280, 1286, 1325, 1381, 1474, 1586, 1757, 2026, 2549, 2649, 2140, 1846, 1670, 1533, 1402, 1322, 1263, 1230, 1218, 1265, 1320, 1415, 1526, 1711, 1944, 2338, 2478, 2055, 1793, 1627, 1478, 1347, 1264, 1203, 1179, 1172, 1219, 1295, 1379, 1484, 1625, 1876, 2222, 2434, 1985, 1741, 1590, 1427, 1312, 1218, 1156, 1121, 1134, 1168, 1248, 1343, 1459, 1595, 1795, 2139, 2358, 1927, 1712, 1547, 1392, 1270, 1174, 1119, 1086, 1103, 1134, 1216, 1308, 1423, 1571, 1748, 2106, 2341, 1907, 1695, 1534, 1386, 1252, 1157, 1095, 1060, 1062, 1118, 1185, 1289, 1407, 1552, 1748, 2128, 2321, 1886, 1678, 1514, 1356, 1238, 1136, 1069, 1038, 1043, 1089, 1169, 1262, 1395, 1538, 1715, 2044, 2283, 1862, 1681, 1499, 1352, 1239, 1142, 1066, 1024, 1035, 1083, 1170, 1268, 1401, 1540, 1717, 2006, 2271, 1890, 1682, 1511, 1362, 1235, 1132, 1063, 1027, 1040, 1092, 1170, 1264, 1397, 1546, 1718, 2017, 2311, 1898, 1689, 1522, 1376, 1254, 1149, 1093, 1046, 1054, 1111, 1184, 1288, 1415, 1552, 1740, 2060, 2380, 1941, 1722, 1532, 1398, 1269, 1187, 1111, 1081, 1092, 1132, 1208, 1312, 1424, 1586, 1760, 2089, 2418, 1985, 1763, 1582, 1435, 1309, 1214, 1152, 1123, 1132, 1171, 1256, 1340, 1462, 1601, 1811, 2140, 2538, 2050, 1804, 1628, 1490, 1346, 1262, 1200, 1172, 1178, 1212, 1274, 1369, 1501, 1628, 1872, 2244, 2649, 2127, 1854, 1676, 1537, 1409, 1327, 1266, 1225, 1212, 1260, 1338, 1417, 1553, 1696, 1945, 2356, 2879, 2236, 1923, 1732, 1583, 1464, 1368, 1309, 1284, 1279, 1318, 1389, 1484, 1588, 1769, 2012, 2461, 2964, 2385, 2028, 1806, 1652, 1535, 1434, 1380, 1340, 1357, 1385, 1442, 1544, 1656, 1837, 2151, 2629, 3188, 2536, 2107, 1824, 1696, 1586, 1474, 1442, 1404, 1402, 1437, 1480, 1570, 1714, 1928, 2243, 2728]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2607, 2119, 1806, 1639, 1516, 1413, 1342, 1275, 1242, 1269, 1284, 1344, 1417, 1509, 1667, 1905, 2305, 2425, 2027, 1763, 1581, 1463, 1360, 1284, 1229, 1199, 1205, 1238, 1294, 1370, 1479, 1600, 1812, 2230, 2331, 1928, 1699, 1540, 1418, 1319, 1239, 1183, 1151, 1162, 1195, 1246, 1323, 1430, 1566, 1764, 2117, 2249, 1875, 1658, 1510, 1386, 1280, 1198, 1139, 1118, 1114, 1159, 1226, 1302, 1410, 1521, 1720, 2038, 2194, 1843, 1633, 1489, 1352, 1249, 1162, 1109, 1081, 1086, 1121, 1194, 1269, 1375, 1517, 1673, 1958, 2160, 1820, 1619, 1467, 1341, 1228, 1138, 1084, 1049, 1063, 1102, 1175, 1247, 1350, 1491, 1658, 1932, 2124, 1796, 1607, 1457, 1322, 1216, 1123, 1068, 1034, 1032, 1092, 1152, 1242, 1348, 1478, 1638, 1899, 2108, 1784, 1602, 1452, 1318, 1208, 1119, 1059, 1027, 1037, 1079, 1146, 1238, 1346, 1480, 1644, 1897, 2109, 1790, 1607, 1449, 1326, 1208, 1127, 1057, 1024, 1040, 1088, 1154, 1246, 1354, 1478, 1633, 1914, 2165, 1814, 1613, 1459, 1331, 1222, 1139, 1080, 1054, 1054, 1097, 1164, 1245, 1367, 1487, 1665, 1919, 2183, 1841, 1646, 1492, 1361, 1251, 1175, 1108, 1084, 1078, 1131, 1192, 1284, 1383, 1518, 1675, 1967, 2277, 1872, 1671, 1516, 1396, 1285, 1192, 1143, 1122, 1118, 1157, 1222, 1307, 1412, 1545, 1717, 2048, 2334, 1936, 1721, 1564, 1428, 1313, 1247, 1189, 1160, 1162, 1202, 1254, 1344, 1457, 1583, 1764, 2120, 2446, 2021, 1763, 1610, 1476, 1365, 1295, 1233, 1202, 1210, 1251, 1309, 1392, 1499, 1619, 1818, 2201, 2602, 2126, 1825, 1645, 1527, 1412, 1342, 1295, 1271, 1265, 1299, 1360, 1440, 1537, 1695, 1923, 2340, 2751, 2249, 1916, 1705, 1583, 1479, 1393, 1349, 1335, 1333, 1364, 1414, 1496, 1603, 1763, 2027, 2506, 2955, 2387, 1986, 1763, 1610, 1520, 1460, 1413, 1382, 1393, 1406, 1452, 1541, 1672, 1851, 2170, 2631]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2584, 2135, 1833, 1646, 1522, 1416, 1332, 1281, 1248, 1253, 1285, 1341, 1428, 1524, 1682, 1930, 2306, 2516, 2035, 1771, 1599, 1473, 1361, 1290, 1239, 1205, 1204, 1236, 1287, 1365, 1485, 1614, 1840, 2199, 2395, 1960, 1737, 1561, 1431, 1319, 1242, 1179, 1158, 1161, 1194, 1256, 1336, 1446, 1576, 1761, 2125, 2283, 1904, 1703, 1533, 1395, 1291, 1207, 1148, 1115, 1119, 1161, 1221, 1304, 1407, 1531, 1718, 2047, 2234, 1861, 1677, 1505, 1374, 1250, 1177, 1115, 1082, 1090, 1122, 1193, 1279, 1394, 1526, 1696, 1966, 2177, 1843, 1626, 1489, 1347, 1243, 1151, 1090, 1054, 1061, 1100, 1170, 1257, 1370, 1508, 1677, 1969, 2155, 1818, 1642, 1470, 1331, 1217, 1132, 1073, 1032, 1042, 1090, 1155, 1250, 1353, 1494, 1657, 1912, 2182, 1826, 1632, 1480, 1329, 1223, 1126, 1069, 1024, 1047, 1093, 1157, 1248, 1354, 1489, 1659, 1910, 2169, 1822, 1645, 1475, 1340, 1216, 1126, 1062, 1032, 1039, 1091, 1161, 1255, 1360, 1497, 1660, 1957, 2189, 1837, 1652, 1494, 1345, 1236, 1138, 1083, 1050, 1061, 1102, 1168, 1264, 1387, 1526, 1684, 1950, 2254, 1859, 1662, 1519, 1374, 1256, 1167, 1114, 1078, 1082, 1128, 1187, 1288, 1397, 1531, 1711, 1976, 2321, 1929, 1700, 1539, 1403, 1288, 1200, 1146, 1121, 1116, 1160, 1225, 1318, 1424, 1559, 1747, 2044, 2398, 1967, 1742, 1578, 1435, 1326, 1250, 1183, 1161, 1159, 1195, 1271, 1352, 1466, 1602, 1786, 2129, 2518, 2049, 1780, 1628, 1467, 1357, 1293, 1241, 1203, 1209, 1247, 1300, 1392, 1493, 1637, 1846, 2219, 2696, 2142, 1843, 1668, 1517, 1430, 1346, 1293, 1269, 1271, 1302, 1350, 1442, 1553, 1685, 1943, 2341, 2802, 2251, 1942, 1726, 1586, 1482, 1405, 1355, 1327, 1334, 1368, 1420, 1502, 1607, 1771, 2048, 2496, 3015, 2388, 2051, 1781, 1648, 1530, 1448, 1410, 1392, 1385, 1424, 1446, 1533, 1678, 1853, 2179, 2691]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2373, 1982, 1739, 1576, 1442, 1354, 1296, 1250, 1248, 1229, 1248, 1290, 1365, 1437, 1580, 1833, 2149, 2281, 1901, 1652, 1520, 1394, 1307, 1241, 1198, 1190, 1179, 1207, 1266, 1323, 1399, 1530, 1714, 2055, 2191, 1816, 1624, 1467, 1370, 1281, 1216, 1169, 1132, 1137, 1174, 1230, 1274, 1370, 1481, 1654, 1965, 2105, 1774, 1579, 1443, 1324, 1251, 1182, 1121, 1101, 1109, 1144, 1192, 1259, 1349, 1453, 1619, 1890, 2023, 1732, 1552, 1419, 1311, 1214, 1142, 1099, 1074, 1076, 1112, 1168, 1233, 1324, 1439, 1585, 1834, 2022, 1710, 1513, 1400, 1298, 1205, 1125, 1068, 1050, 1060, 1090, 1162, 1221, 1315, 1419, 1573, 1842, 1952, 1694, 1526, 1388, 1288, 1203, 1119, 1066, 1027, 1029, 1096, 1151, 1218, 1313, 1408, 1559, 1784, 1956, 1697, 1507, 1377, 1274, 1190, 1111, 1058, 1024, 1032, 1082, 1139, 1213, 1287, 1419, 1534, 1758, 1930, 1691, 1529, 1386, 1281, 1187, 1105, 1058, 1029, 1037, 1076, 1139, 1219, 1307, 1420, 1568, 1804, 1956, 1690, 1528, 1403, 1296, 1203, 1122, 1077, 1045, 1045, 1085, 1151, 1223, 1330, 1423, 1573, 1803, 2019, 1729, 1560, 1425, 1307, 1224, 1147, 1100, 1077, 1077, 1110, 1163, 1246, 1341, 1440, 1582, 1831, 2118, 1775, 1574, 1461, 1321, 1247, 1175, 1120, 1102, 1108, 1137, 1188, 1279, 1356, 1467, 1639, 1919, 2130, 1806, 1616, 1473, 1365, 1276, 1207, 1160, 1138, 1147, 1180, 1225, 1291, 1383, 1503, 1664, 1964, 2287, 1886, 1652, 1519, 1392, 1308, 1244, 1197, 1184, 1183, 1219, 1254, 1336, 1415, 1529, 1717, 2030, 2349, 1991, 1723, 1545, 1428, 1344, 1274, 1247, 1227, 1222, 1252, 1296, 1365, 1461, 1583, 1801, 2191, 2556, 2141, 1784, 1587, 1485, 1395, 1329, 1288, 1263, 1273, 1293, 1336, 1413, 1515, 1665, 1919, 2337, 2659, 2237, 1906, 1675, 1545, 1435, 1348, 1327, 1316, 1315, 1336, 1375, 1467, 1548, 1746, 2085, 2498]
                                       }
                                   }, {
                                       "name":    "1920x1080_HZ_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3816, 2920, 2356, 2049, 1807, 1625, 1482, 1397, 1363, 1346, 1397, 1499, 1617, 1822, 2094, 2538, 3284, 3530, 2704, 2259, 1946, 1691, 1523, 1397, 1316, 1286, 1278, 1322, 1418, 1548, 1731, 1975, 2356, 3041, 3350, 2598, 2170, 1885, 1625, 1446, 1335, 1237, 1199, 1212, 1261, 1343, 1482, 1657, 1901, 2259, 2882, 3220, 2481, 2101, 1812, 1578, 1391, 1268, 1184, 1141, 1149, 1201, 1288, 1421, 1605, 1837, 2142, 2682, 3084, 2391, 2024, 1741, 1516, 1330, 1219, 1137, 1103, 1107, 1153, 1247, 1383, 1552, 1807, 2108, 2588, 3000, 2340, 1981, 1704, 1482, 1311, 1186, 1108, 1055, 1071, 1123, 1212, 1341, 1516, 1759, 2049, 2568, 2959, 2323, 1958, 1691, 1466, 1283, 1161, 1079, 1037, 1040, 1103, 1186, 1322, 1499, 1741, 2024, 2499, 2894, 2307, 1958, 1678, 1450, 1288, 1151, 1071, 1024, 1032, 1097, 1188, 1311, 1496, 1741, 2005, 2490, 2894, 2307, 1975, 1674, 1450, 1283, 1161, 1071, 1035, 1045, 1103, 1193, 1316, 1492, 1745, 2024, 2499, 2959, 2348, 1987, 1713, 1472, 1303, 1176, 1095, 1055, 1060, 1116, 1203, 1343, 1523, 1764, 2062, 2518, 3041, 2382, 2030, 1736, 1509, 1335, 1208, 1127, 1090, 1088, 1149, 1247, 1380, 1556, 1793, 2094, 2548, 3188, 2462, 2068, 1797, 1552, 1389, 1263, 1173, 1143, 1137, 1186, 1286, 1425, 1601, 1848, 2142, 2672, 3284, 2548, 2170, 1853, 1621, 1440, 1311, 1233, 1193, 1199, 1261, 1346, 1476, 1674, 1896, 2221, 2845, 3530, 2704, 2229, 1952, 1687, 1513, 1391, 1306, 1273, 1266, 1322, 1415, 1552, 1736, 1969, 2331, 3000, 3708, 2882, 2356, 2011, 1793, 1605, 1472, 1397, 1354, 1363, 1415, 1499, 1645, 1827, 2068, 2499, 3204, 4001, 3070, 2481, 2149, 1890, 1700, 1578, 1492, 1453, 1456, 1509, 1582, 1741, 1935, 2229, 2672, 3474, 4344, 3402, 2672, 2259, 2011, 1812, 1674, 1597, 1556, 1537, 1613, 1687, 1843, 2068, 2382, 2882, 3838]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3218, 2478, 2039, 1768, 1621, 1479, 1382, 1310, 1300, 1304, 1334, 1382, 1501, 1647, 1825, 2237, 2938, 3063, 2330, 1930, 1708, 1533, 1409, 1321, 1255, 1222, 1222, 1274, 1338, 1437, 1556, 1756, 2055, 2646, 2855, 2208, 1880, 1647, 1479, 1352, 1258, 1193, 1179, 1168, 1219, 1281, 1378, 1505, 1680, 1952, 2490, 2703, 2124, 1812, 1585, 1425, 1304, 1204, 1152, 1114, 1127, 1176, 1237, 1328, 1457, 1621, 1880, 2340, 2592, 2047, 1762, 1551, 1389, 1268, 1165, 1122, 1081, 1085, 1124, 1196, 1294, 1425, 1600, 1845, 2288, 2502, 2022, 1744, 1537, 1363, 1240, 1147, 1081, 1047, 1054, 1104, 1171, 1264, 1393, 1561, 1793, 2208, 2466, 1983, 1720, 1514, 1349, 1225, 1132, 1067, 1028, 1032, 1085, 1144, 1255, 1382, 1556, 1768, 2170, 2430, 1952, 1714, 1510, 1356, 1219, 1124, 1054, 1024, 1030, 1079, 1147, 1246, 1374, 1533, 1762, 2133, 2466, 1975, 1732, 1519, 1356, 1219, 1124, 1058, 1026, 1034, 1079, 1152, 1246, 1389, 1533, 1774, 2151, 2466, 1998, 1732, 1519, 1363, 1243, 1144, 1085, 1047, 1056, 1102, 1168, 1274, 1401, 1571, 1800, 2189, 2579, 2039, 1756, 1542, 1393, 1274, 1168, 1107, 1088, 1081, 1129, 1201, 1304, 1425, 1605, 1812, 2208, 2703, 2124, 1806, 1600, 1437, 1300, 1207, 1147, 1122, 1122, 1163, 1249, 1334, 1470, 1631, 1859, 2308, 2823, 2179, 1873, 1663, 1487, 1356, 1268, 1201, 1176, 1165, 1210, 1284, 1382, 1519, 1686, 1952, 2466, 2990, 2288, 1952, 1720, 1542, 1413, 1324, 1264, 1237, 1249, 1271, 1345, 1441, 1580, 1750, 2039, 2619, 3260, 2442, 2022, 1800, 1626, 1483, 1401, 1334, 1310, 1300, 1345, 1409, 1501, 1647, 1832, 2170, 2792, 3485, 2660, 2151, 1887, 1697, 1590, 1475, 1425, 1397, 1386, 1445, 1496, 1585, 1732, 1945, 2362, 3063, 3827, 2872, 2267, 1983, 1787, 1647, 1571, 1501, 1475, 1457, 1514, 1547, 1686, 1825, 2089, 2553, 3281]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3314, 2605, 2137, 1857, 1648, 1511, 1392, 1324, 1274, 1277, 1313, 1370, 1481, 1653, 1885, 2311, 2968, 3170, 2455, 2051, 1774, 1577, 1427, 1327, 1252, 1222, 1208, 1255, 1327, 1439, 1591, 1786, 2128, 2701, 3075, 2332, 1972, 1714, 1516, 1370, 1271, 1202, 1164, 1164, 1205, 1280, 1392, 1548, 1726, 2043, 2605, 2934, 2260, 1906, 1664, 1481, 1334, 1225, 1153, 1120, 1120, 1175, 1249, 1359, 1494, 1680, 1972, 2467, 2775, 2182, 1885, 1632, 1439, 1287, 1194, 1116, 1087, 1083, 1135, 1214, 1320, 1460, 1643, 1906, 2353, 2745, 2164, 1844, 1611, 1427, 1277, 1169, 1092, 1051, 1062, 1111, 1191, 1290, 1439, 1632, 1885, 2311, 2673, 2119, 1831, 1591, 1415, 1249, 1141, 1080, 1032, 1041, 1096, 1172, 1284, 1431, 1637, 1857, 2250, 2730, 2119, 1818, 1596, 1404, 1252, 1141, 1073, 1024, 1034, 1089, 1164, 1277, 1423, 1601, 1851, 2280, 2687, 2119, 1824, 1601, 1407, 1258, 1153, 1069, 1032, 1036, 1094, 1172, 1280, 1435, 1622, 1864, 2290, 2687, 2146, 1844, 1601, 1415, 1274, 1164, 1083, 1056, 1056, 1108, 1188, 1290, 1439, 1632, 1906, 2300, 2775, 2201, 1885, 1632, 1439, 1297, 1188, 1113, 1083, 1080, 1128, 1205, 1317, 1476, 1659, 1906, 2342, 2868, 2250, 1927, 1675, 1476, 1330, 1222, 1148, 1123, 1118, 1172, 1249, 1355, 1503, 1697, 1972, 2491, 3075, 2311, 1964, 1731, 1520, 1370, 1277, 1191, 1167, 1164, 1222, 1284, 1396, 1534, 1749, 2019, 2566, 3230, 2420, 2027, 1761, 1572, 1415, 1324, 1243, 1214, 1219, 1262, 1327, 1439, 1606, 1792, 2119, 2716, 3380, 2566, 2093, 1844, 1648, 1489, 1385, 1317, 1277, 1271, 1317, 1392, 1489, 1653, 1864, 2240, 2917, 3671, 2730, 2230, 1927, 1714, 1567, 1447, 1392, 1355, 1348, 1392, 1455, 1582, 1731, 1957, 2409, 3094, 3955, 2968, 2342, 1995, 1811, 1632, 1516, 1439, 1419, 1427, 1464, 1520, 1622, 1805, 2102, 2605, 3358]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2946, 2293, 1812, 1623, 1456, 1429, 1320, 1276, 1256, 1276, 1320, 1378, 1469, 1558, 1731, 2107, 2558, 2691, 2136, 1751, 1542, 1416, 1320, 1276, 1226, 1226, 1198, 1246, 1320, 1390, 1512, 1658, 1973, 2558, 2516, 1973, 1658, 1512, 1390, 1298, 1226, 1188, 1171, 1171, 1207, 1276, 1354, 1456, 1606, 1834, 2328, 2400, 1924, 1675, 1498, 1354, 1246, 1198, 1145, 1112, 1120, 1171, 1226, 1309, 1416, 1542, 1751, 2166, 2328, 1856, 1606, 1442, 1320, 1226, 1153, 1112, 1096, 1096, 1120, 1216, 1266, 1390, 1512, 1712, 2107, 2196, 1834, 1590, 1442, 1309, 1216, 1120, 1081, 1052, 1066, 1112, 1188, 1256, 1354, 1483, 1694, 2051, 2228, 1791, 1606, 1429, 1320, 1207, 1136, 1052, 1024, 1052, 1096, 1162, 1256, 1342, 1512, 1675, 1998, 2228, 1812, 1606, 1429, 1309, 1198, 1128, 1066, 1031, 1038, 1096, 1153, 1246, 1342, 1469, 1675, 1998, 2228, 1834, 1590, 1429, 1298, 1207, 1120, 1073, 1031, 1045, 1096, 1153, 1256, 1331, 1498, 1675, 1973, 2260, 1834, 1606, 1442, 1320, 1216, 1136, 1096, 1059, 1066, 1120, 1179, 1276, 1366, 1498, 1675, 2051, 2328, 1901, 1658, 1456, 1354, 1236, 1162, 1120, 1059, 1096, 1128, 1207, 1287, 1378, 1512, 1712, 2051, 2363, 1924, 1694, 1512, 1366, 1287, 1216, 1145, 1120, 1120, 1162, 1226, 1309, 1390, 1527, 1751, 2136, 2558, 1973, 1694, 1542, 1390, 1309, 1236, 1179, 1162, 1162, 1198, 1246, 1331, 1442, 1590, 1834, 2228, 2691, 2079, 1751, 1590, 1456, 1354, 1287, 1226, 1188, 1179, 1226, 1287, 1366, 1483, 1606, 1856, 2328, 2838, 2228, 1834, 1658, 1483, 1390, 1320, 1256, 1246, 1266, 1266, 1320, 1429, 1512, 1712, 1998, 2558, 3062, 2400, 1949, 1694, 1542, 1456, 1378, 1320, 1276, 1287, 1320, 1354, 1469, 1558, 1771, 2136, 2787, 3254, 2558, 2136, 1812, 1606, 1483, 1429, 1354, 1331, 1331, 1390, 1442, 1512, 1658, 1856, 2328, 3003]
                                       }
                                   }, {
                                       "name":    "1920x1080_HZ_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2978, 2455, 2087, 1880, 1703, 1560, 1440, 1367, 1337, 1320, 1363, 1447, 1538, 1691, 1878, 2167, 2606, 2826, 2319, 2030, 1809, 1613, 1477, 1370, 1298, 1271, 1262, 1300, 1382, 1487, 1626, 1798, 2050, 2475, 2731, 2259, 1973, 1770, 1564, 1414, 1317, 1227, 1191, 1203, 1247, 1319, 1435, 1572, 1750, 1993, 2387, 2662, 2184, 1929, 1716, 1528, 1368, 1257, 1179, 1137, 1145, 1193, 1271, 1385, 1534, 1707, 1914, 2260, 2580, 2125, 1874, 1661, 1477, 1314, 1212, 1134, 1101, 1105, 1149, 1235, 1355, 1493, 1689, 1897, 2205, 2531, 2094, 1845, 1633, 1449, 1298, 1182, 1107, 1055, 1070, 1120, 1204, 1318, 1465, 1654, 1857, 2202, 2510, 2087, 1830, 1626, 1437, 1273, 1158, 1079, 1037, 1040, 1101, 1180, 1303, 1452, 1643, 1842, 2157, 2466, 2078, 1833, 1616, 1424, 1279, 1149, 1071, 1024, 1032, 1096, 1182, 1293, 1451, 1645, 1830, 2155, 2468, 2080, 1849, 1613, 1424, 1274, 1159, 1071, 1035, 1045, 1102, 1187, 1298, 1448, 1649, 1847, 2163, 2516, 2112, 1858, 1648, 1444, 1293, 1173, 1095, 1055, 1060, 1114, 1197, 1323, 1476, 1665, 1877, 2176, 2573, 2135, 1892, 1666, 1477, 1323, 1204, 1126, 1090, 1087, 1146, 1238, 1357, 1504, 1688, 1900, 2195, 2675, 2193, 1919, 1717, 1514, 1372, 1257, 1171, 1142, 1135, 1182, 1274, 1396, 1541, 1731, 1933, 2281, 2731, 2252, 1998, 1760, 1574, 1418, 1301, 1228, 1190, 1195, 1253, 1329, 1440, 1601, 1765, 1988, 2399, 2893, 2361, 2036, 1839, 1628, 1482, 1374, 1296, 1265, 1258, 1308, 1390, 1505, 1649, 1818, 2064, 2498, 2993, 2481, 2127, 1879, 1714, 1560, 1446, 1379, 1340, 1347, 1392, 1463, 1582, 1719, 1889, 2181, 2624, 3165, 2601, 2210, 1982, 1789, 1638, 1537, 1463, 1428, 1429, 1473, 1531, 1657, 1800, 2005, 2294, 2786, 3348, 2819, 2340, 2056, 1879, 1726, 1615, 1551, 1515, 1496, 1560, 1615, 1734, 1896, 2108, 2426, 2994]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2560, 2121, 1834, 1646, 1541, 1430, 1349, 1287, 1279, 1282, 1306, 1343, 1437, 1545, 1663, 1939, 2364, 2491, 2030, 1762, 1607, 1474, 1374, 1299, 1241, 1210, 1210, 1256, 1309, 1389, 1477, 1620, 1819, 2191, 2368, 1953, 1733, 1564, 1433, 1327, 1244, 1185, 1172, 1161, 1208, 1261, 1342, 1441, 1567, 1752, 2100, 2276, 1900, 1686, 1517, 1389, 1286, 1196, 1148, 1111, 1123, 1169, 1223, 1301, 1404, 1526, 1705, 2005, 2208, 1848, 1651, 1492, 1360, 1255, 1160, 1120, 1080, 1084, 1121, 1187, 1273, 1380, 1514, 1685, 1979, 2151, 1835, 1641, 1484, 1339, 1230, 1144, 1080, 1047, 1054, 1102, 1164, 1247, 1355, 1485, 1649, 1927, 2132, 1809, 1625, 1466, 1328, 1217, 1130, 1067, 1028, 1032, 1084, 1139, 1240, 1347, 1483, 1633, 1904, 2108, 1787, 1622, 1464, 1335, 1212, 1122, 1054, 1024, 1030, 1078, 1143, 1232, 1341, 1465, 1630, 1879, 2138, 1806, 1638, 1473, 1336, 1212, 1122, 1058, 1026, 1034, 1078, 1148, 1233, 1355, 1466, 1641, 1894, 2136, 1824, 1637, 1472, 1342, 1235, 1142, 1085, 1047, 1056, 1101, 1163, 1259, 1365, 1498, 1662, 1923, 2218, 1855, 1656, 1491, 1369, 1264, 1165, 1106, 1088, 1080, 1127, 1194, 1286, 1386, 1525, 1669, 1933, 2305, 1918, 1695, 1540, 1408, 1288, 1202, 1145, 1121, 1121, 1159, 1239, 1312, 1424, 1545, 1703, 2003, 2383, 1955, 1746, 1592, 1450, 1338, 1260, 1197, 1173, 1162, 1204, 1270, 1354, 1464, 1587, 1772, 2113, 2490, 2030, 1804, 1635, 1496, 1388, 1310, 1256, 1231, 1241, 1260, 1324, 1404, 1512, 1634, 1832, 2213, 2665, 2136, 1851, 1696, 1565, 1448, 1379, 1319, 1298, 1287, 1326, 1379, 1452, 1564, 1693, 1923, 2321, 2794, 2285, 1942, 1759, 1618, 1538, 1442, 1400, 1375, 1363, 1414, 1453, 1520, 1627, 1774, 2055, 2491, 2986, 2419, 2016, 1825, 1685, 1579, 1521, 1463, 1441, 1422, 1470, 1490, 1598, 1693, 1874, 2178, 2604]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2627, 2217, 1912, 1720, 1565, 1458, 1359, 1300, 1255, 1257, 1287, 1332, 1420, 1550, 1711, 1995, 2385, 2567, 2127, 1860, 1663, 1512, 1390, 1305, 1238, 1210, 1196, 1238, 1299, 1391, 1507, 1644, 1875, 2230, 2529, 2050, 1809, 1622, 1466, 1343, 1257, 1194, 1158, 1157, 1194, 1260, 1354, 1478, 1605, 1823, 2184, 2448, 2008, 1765, 1586, 1440, 1314, 1216, 1149, 1117, 1117, 1168, 1235, 1329, 1437, 1575, 1779, 2100, 2347, 1957, 1756, 1564, 1406, 1273, 1188, 1114, 1086, 1082, 1131, 1204, 1297, 1411, 1550, 1735, 2028, 2337, 1951, 1727, 1550, 1398, 1266, 1165, 1091, 1051, 1061, 1109, 1183, 1271, 1396, 1545, 1724, 2006, 2291, 1920, 1720, 1535, 1389, 1240, 1139, 1080, 1032, 1041, 1095, 1166, 1267, 1391, 1553, 1706, 1966, 2340, 1924, 1712, 1542, 1381, 1244, 1139, 1073, 1024, 1034, 1088, 1159, 1261, 1385, 1524, 1704, 1993, 2308, 1925, 1718, 1547, 1384, 1250, 1151, 1069, 1032, 1036, 1093, 1167, 1264, 1397, 1543, 1715, 2002, 2307, 1946, 1734, 1546, 1391, 1265, 1162, 1083, 1056, 1056, 1107, 1182, 1274, 1400, 1551, 1749, 2008, 2369, 1987, 1767, 1572, 1412, 1286, 1185, 1112, 1083, 1080, 1126, 1198, 1298, 1432, 1572, 1746, 2036, 2431, 2021, 1798, 1607, 1444, 1316, 1217, 1146, 1122, 1117, 1168, 1239, 1331, 1453, 1601, 1795, 2143, 2573, 2061, 1823, 1652, 1481, 1351, 1268, 1187, 1164, 1161, 1215, 1270, 1367, 1477, 1640, 1826, 2189, 2669, 2135, 1867, 1671, 1523, 1390, 1310, 1236, 1208, 1212, 1251, 1308, 1402, 1535, 1669, 1896, 2286, 2753, 2234, 1909, 1734, 1584, 1453, 1364, 1303, 1266, 1259, 1300, 1364, 1442, 1569, 1720, 1978, 2413, 2928, 2339, 2006, 1793, 1633, 1517, 1416, 1369, 1336, 1328, 1365, 1415, 1517, 1626, 1784, 2091, 2513, 3076, 2491, 2076, 1835, 1706, 1566, 1471, 1406, 1389, 1395, 1424, 1466, 1542, 1677, 1885, 2217, 2658]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2369, 1982, 1653, 1524, 1398, 1385, 1293, 1256, 1238, 1256, 1293, 1340, 1410, 1470, 1588, 1841, 2098, 2223, 1881, 1616, 1465, 1370, 1293, 1257, 1213, 1214, 1187, 1230, 1293, 1347, 1440, 1540, 1755, 2127, 2119, 1768, 1549, 1447, 1353, 1277, 1214, 1180, 1165, 1164, 1196, 1257, 1320, 1398, 1506, 1659, 1981, 2050, 1740, 1571, 1440, 1324, 1232, 1190, 1141, 1109, 1117, 1164, 1213, 1283, 1368, 1459, 1603, 1876, 2009, 1694, 1519, 1395, 1297, 1215, 1149, 1110, 1095, 1094, 1117, 1206, 1247, 1349, 1439, 1578, 1842, 1918, 1683, 1509, 1399, 1289, 1207, 1117, 1080, 1052, 1065, 1110, 1181, 1239, 1320, 1418, 1569, 1807, 1949, 1652, 1526, 1389, 1301, 1200, 1134, 1052, 1024, 1052, 1095, 1157, 1241, 1311, 1445, 1557, 1772, 1953, 1671, 1528, 1391, 1291, 1192, 1126, 1066, 1031, 1038, 1095, 1148, 1232, 1312, 1410, 1559, 1775, 1954, 1690, 1515, 1391, 1281, 1201, 1119, 1073, 1031, 1045, 1095, 1149, 1242, 1302, 1435, 1560, 1757, 1977, 1690, 1528, 1402, 1302, 1209, 1134, 1096, 1059, 1066, 1118, 1173, 1260, 1334, 1435, 1559, 1816, 2026, 1742, 1571, 1414, 1332, 1228, 1159, 1119, 1059, 1095, 1126, 1200, 1270, 1343, 1445, 1587, 1813, 2045, 1756, 1599, 1461, 1342, 1275, 1211, 1143, 1119, 1119, 1158, 1217, 1289, 1352, 1455, 1615, 1872, 2183, 1789, 1593, 1484, 1361, 1294, 1229, 1175, 1159, 1159, 1192, 1234, 1307, 1395, 1505, 1677, 1933, 2267, 1864, 1635, 1521, 1417, 1333, 1275, 1219, 1183, 1174, 1217, 1270, 1335, 1427, 1513, 1686, 1996, 2355, 1968, 1695, 1573, 1436, 1362, 1303, 1245, 1236, 1255, 1252, 1297, 1388, 1447, 1594, 1788, 2150, 2490, 2084, 1777, 1595, 1482, 1416, 1352, 1301, 1261, 1271, 1298, 1324, 1417, 1479, 1632, 1881, 2292, 2585, 2182, 1912, 1682, 1528, 1433, 1392, 1328, 1308, 1306, 1357, 1397, 1447, 1554, 1688, 2008, 2409]
                                       }
                                   }, {
                                       "name":    "1920x1080_TL84_100",
                                       "resolution":    "1920x1080",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3221, 2591, 2061, 1813, 1604, 1494, 1384, 1330, 1295, 1295, 1323, 1391, 1478, 1628, 1795, 2221, 2849, 3146, 2355, 1950, 1721, 1550, 1398, 1314, 1262, 1228, 1228, 1262, 1317, 1409, 1554, 1732, 2061, 2654, 2926, 2230, 1882, 1648, 1490, 1366, 1265, 1203, 1169, 1174, 1206, 1262, 1363, 1490, 1663, 1950, 2473, 2748, 2133, 1813, 1604, 1435, 1307, 1222, 1152, 1121, 1131, 1167, 1242, 1326, 1446, 1604, 1863, 2355, 2629, 2061, 1778, 1567, 1398, 1274, 1172, 1119, 1079, 1099, 1133, 1200, 1286, 1405, 1572, 1795, 2221, 2555, 2030, 1738, 1536, 1387, 1250, 1147, 1092, 1060, 1062, 1101, 1169, 1265, 1391, 1536, 1760, 2194, 2543, 2007, 1721, 1519, 1356, 1230, 1133, 1070, 1038, 1048, 1092, 1155, 1256, 1363, 1528, 1760, 2159, 2496, 1978, 1705, 1507, 1339, 1222, 1124, 1066, 1024, 1042, 1079, 1147, 1244, 1373, 1532, 1727, 2117, 2508, 1971, 1710, 1523, 1363, 1225, 1133, 1064, 1036, 1046, 1083, 1155, 1244, 1363, 1536, 1749, 2159, 2555, 2015, 1727, 1536, 1373, 1242, 1142, 1085, 1054, 1054, 1103, 1167, 1262, 1373, 1536, 1760, 2168, 2641, 2037, 1760, 1554, 1394, 1256, 1167, 1103, 1075, 1083, 1117, 1185, 1277, 1405, 1576, 1783, 2185, 2707, 2100, 1807, 1590, 1427, 1304, 1206, 1142, 1119, 1117, 1150, 1211, 1304, 1435, 1604, 1838, 2296, 2820, 2176, 1831, 1624, 1454, 1339, 1247, 1190, 1155, 1159, 1195, 1259, 1339, 1486, 1638, 1889, 2386, 3024, 2286, 1915, 1684, 1511, 1384, 1301, 1233, 1200, 1208, 1242, 1304, 1391, 1528, 1716, 2000, 2543, 3279, 2462, 2000, 1760, 1576, 1443, 1353, 1289, 1268, 1268, 1301, 1363, 1450, 1590, 1789, 2142, 2791, 3558, 2616, 2125, 1844, 1648, 1515, 1431, 1363, 1326, 1320, 1377, 1420, 1515, 1663, 1889, 2296, 3024, 3807, 2820, 2286, 1889, 1710, 1576, 1486, 1398, 1384, 1377, 1439, 1486, 1581, 1749, 2007, 2567, 3221]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3148, 2470, 2050, 1766, 1600, 1469, 1388, 1317, 1288, 1297, 1332, 1390, 1485, 1604, 1811, 2164, 2807, 2987, 2292, 1921, 1701, 1527, 1401, 1310, 1269, 1225, 1227, 1272, 1322, 1413, 1537, 1722, 2021, 2618, 2807, 2178, 1850, 1641, 1466, 1355, 1253, 1195, 1169, 1169, 1208, 1276, 1350, 1472, 1630, 1905, 2419, 2688, 2081, 1793, 1568, 1416, 1302, 1216, 1143, 1124, 1123, 1164, 1216, 1319, 1430, 1589, 1840, 2322, 2542, 2009, 1739, 1530, 1379, 1265, 1171, 1115, 1084, 1094, 1124, 1195, 1288, 1396, 1561, 1788, 2205, 2479, 1986, 1714, 1514, 1366, 1247, 1143, 1088, 1053, 1060, 1101, 1173, 1251, 1377, 1537, 1744, 2158, 2461, 1969, 1677, 1491, 1347, 1223, 1128, 1073, 1032, 1036, 1088, 1152, 1251, 1363, 1530, 1735, 2099, 2436, 1942, 1701, 1501, 1347, 1223, 1124, 1065, 1027, 1029, 1081, 1139, 1247, 1358, 1517, 1726, 2093, 2436, 1958, 1701, 1497, 1347, 1223, 1130, 1061, 1024, 1041, 1084, 1156, 1240, 1368, 1520, 1739, 2099, 2488, 1969, 1714, 1520, 1363, 1240, 1139, 1089, 1055, 1056, 1103, 1162, 1260, 1388, 1544, 1757, 2119, 2560, 2009, 1739, 1540, 1379, 1260, 1171, 1117, 1089, 1088, 1130, 1179, 1295, 1410, 1564, 1779, 2185, 2618, 2062, 1784, 1578, 1421, 1300, 1202, 1141, 1121, 1128, 1154, 1229, 1312, 1448, 1596, 1830, 2234, 2774, 2131, 1821, 1634, 1463, 1340, 1260, 1189, 1166, 1169, 1195, 1253, 1353, 1488, 1645, 1916, 2378, 2987, 2262, 1900, 1681, 1507, 1379, 1302, 1249, 1220, 1212, 1256, 1317, 1407, 1544, 1710, 1992, 2560, 3191, 2402, 1998, 1752, 1575, 1466, 1374, 1310, 1286, 1293, 1332, 1371, 1469, 1589, 1788, 2131, 2741, 3459, 2589, 2119, 1821, 1665, 1523, 1442, 1382, 1355, 1355, 1390, 1445, 1554, 1681, 1885, 2285, 2987, 3756, 2796, 2262, 1916, 1744, 1607, 1514, 1448, 1427, 1416, 1460, 1517, 1634, 1752, 2015, 2444, 3250]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3297, 2549, 2018, 1799, 1612, 1469, 1360, 1304, 1282, 1266, 1304, 1373, 1478, 1604, 1827, 2155, 2887, 3106, 2336, 1955, 1702, 1527, 1404, 1309, 1239, 1211, 1217, 1252, 1309, 1398, 1547, 1719, 2035, 2606, 2899, 2231, 1892, 1658, 1481, 1347, 1257, 1184, 1151, 1157, 1190, 1261, 1352, 1478, 1658, 1934, 2477, 2761, 2135, 1837, 1593, 1441, 1297, 1209, 1147, 1107, 1111, 1151, 1217, 1304, 1450, 1612, 1866, 2367, 2697, 2090, 1785, 1572, 1395, 1268, 1172, 1102, 1080, 1085, 1121, 1186, 1289, 1412, 1579, 1818, 2245, 2636, 2035, 1767, 1547, 1373, 1246, 1143, 1081, 1041, 1050, 1093, 1162, 1268, 1381, 1561, 1785, 2182, 2568, 2018, 1745, 1537, 1368, 1224, 1132, 1065, 1029, 1027, 1080, 1147, 1248, 1379, 1544, 1754, 2129, 2531, 2000, 1732, 1527, 1352, 1219, 1127, 1060, 1024, 1027, 1076, 1140, 1241, 1373, 1540, 1771, 2162, 2512, 2029, 1749, 1520, 1360, 1222, 1129, 1055, 1024, 1027, 1080, 1151, 1248, 1376, 1540, 1762, 2162, 2578, 2018, 1762, 1547, 1371, 1239, 1143, 1085, 1046, 1053, 1098, 1160, 1261, 1398, 1564, 1785, 2210, 2646, 2059, 1771, 1568, 1384, 1266, 1172, 1098, 1070, 1075, 1116, 1184, 1289, 1412, 1582, 1822, 2210, 2729, 2129, 1813, 1589, 1441, 1299, 1198, 1136, 1114, 1109, 1145, 1217, 1311, 1441, 1612, 1856, 2275, 2899, 2182, 1871, 1654, 1463, 1329, 1243, 1180, 1149, 1147, 1196, 1252, 1355, 1475, 1650, 1923, 2408, 2987, 2305, 1950, 1678, 1510, 1376, 1297, 1228, 1203, 1203, 1232, 1297, 1401, 1540, 1698, 1989, 2559, 3221, 2434, 1994, 1758, 1564, 1444, 1347, 1292, 1252, 1250, 1297, 1347, 1453, 1582, 1790, 2116, 2761, 3496, 2606, 2135, 1827, 1658, 1513, 1415, 1355, 1321, 1324, 1365, 1418, 1510, 1658, 1881, 2305, 2974, 3822, 2864, 2267, 1912, 1710, 1575, 1488, 1407, 1392, 1390, 1424, 1475, 1589, 1749, 1989, 2512, 3221]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3009, 2314, 1828, 1639, 1486, 1387, 1306, 1252, 1252, 1240, 1294, 1319, 1373, 1503, 1670, 2050, 2654, 2708, 2114, 1745, 1563, 1423, 1326, 1252, 1223, 1186, 1186, 1207, 1270, 1352, 1454, 1610, 1892, 2417, 2530, 2004, 1680, 1503, 1380, 1288, 1218, 1165, 1141, 1136, 1176, 1235, 1294, 1387, 1546, 1780, 2218, 2439, 1905, 1610, 1470, 1339, 1252, 1170, 1141, 1099, 1099, 1141, 1202, 1270, 1366, 1503, 1701, 2114, 2354, 1840, 1591, 1431, 1306, 1218, 1155, 1103, 1073, 1081, 1108, 1170, 1240, 1345, 1478, 1649, 2050, 2218, 1816, 1582, 1416, 1306, 1218, 1127, 1090, 1052, 1048, 1095, 1155, 1223, 1306, 1446, 1639, 1975, 2148, 1803, 1546, 1387, 1282, 1181, 1113, 1060, 1032, 1028, 1095, 1141, 1218, 1313, 1446, 1610, 1919, 2183, 1780, 1554, 1401, 1282, 1176, 1117, 1060, 1024, 1024, 1081, 1127, 1218, 1306, 1446, 1620, 1961, 2200, 1792, 1537, 1401, 1288, 1196, 1108, 1064, 1024, 1040, 1073, 1141, 1229, 1313, 1423, 1610, 1947, 2200, 1780, 1573, 1409, 1300, 1202, 1127, 1073, 1048, 1052, 1086, 1136, 1240, 1326, 1438, 1610, 1933, 2237, 1840, 1600, 1431, 1306, 1218, 1141, 1090, 1060, 1077, 1103, 1176, 1252, 1339, 1454, 1639, 2050, 2333, 1879, 1630, 1454, 1332, 1246, 1165, 1108, 1099, 1099, 1127, 1181, 1258, 1359, 1494, 1680, 2114, 2461, 1961, 1670, 1486, 1373, 1270, 1202, 1155, 1136, 1127, 1170, 1218, 1288, 1380, 1519, 1734, 2183, 2603, 2050, 1734, 1528, 1394, 1319, 1229, 1202, 1170, 1170, 1207, 1252, 1319, 1423, 1582, 1828, 2255, 2791, 2218, 1780, 1610, 1423, 1339, 1288, 1223, 1218, 1207, 1240, 1282, 1366, 1470, 1639, 1919, 2507, 3043, 2374, 1905, 1639, 1494, 1387, 1326, 1275, 1246, 1252, 1275, 1339, 1394, 1528, 1734, 2114, 2681, 3387, 2578, 2035, 1745, 1563, 1454, 1373, 1313, 1275, 1313, 1319, 1387, 1454, 1591, 1828, 2255, 2944]
                                       }
                                   }, {
                                       "name":    "1920x1080_TL84_70",
                                       "resolution":    "1920x1080",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2562, 2207, 1852, 1683, 1527, 1443, 1351, 1306, 1274, 1273, 1296, 1351, 1417, 1529, 1639, 1927, 2302, 2550, 2050, 1778, 1618, 1489, 1364, 1293, 1247, 1216, 1215, 1244, 1290, 1364, 1475, 1600, 1823, 2196, 2420, 1970, 1735, 1564, 1442, 1340, 1251, 1195, 1163, 1167, 1195, 1244, 1328, 1428, 1553, 1750, 2087, 2310, 1907, 1687, 1533, 1398, 1289, 1213, 1148, 1118, 1127, 1161, 1228, 1299, 1395, 1511, 1692, 2017, 2236, 1859, 1665, 1506, 1368, 1261, 1167, 1117, 1078, 1097, 1129, 1191, 1265, 1362, 1490, 1645, 1928, 2192, 1842, 1636, 1483, 1361, 1240, 1144, 1091, 1060, 1061, 1099, 1162, 1248, 1353, 1463, 1622, 1916, 2191, 1829, 1626, 1470, 1334, 1222, 1131, 1070, 1038, 1048, 1091, 1150, 1241, 1330, 1459, 1626, 1896, 2159, 1808, 1614, 1461, 1320, 1215, 1122, 1066, 1024, 1042, 1078, 1143, 1230, 1340, 1464, 1602, 1867, 2170, 1803, 1619, 1476, 1342, 1218, 1131, 1064, 1036, 1046, 1082, 1150, 1231, 1331, 1468, 1620, 1901, 2205, 1838, 1633, 1488, 1351, 1234, 1140, 1085, 1054, 1054, 1102, 1162, 1247, 1340, 1468, 1629, 1906, 2266, 1853, 1659, 1502, 1370, 1247, 1164, 1102, 1075, 1082, 1115, 1179, 1260, 1368, 1500, 1645, 1916, 2308, 1899, 1695, 1531, 1398, 1291, 1201, 1140, 1118, 1116, 1147, 1203, 1284, 1392, 1521, 1686, 1994, 2381, 1952, 1710, 1557, 1420, 1322, 1239, 1186, 1152, 1156, 1189, 1246, 1314, 1434, 1546, 1721, 2053, 2515, 2029, 1773, 1604, 1467, 1361, 1288, 1226, 1195, 1202, 1232, 1286, 1358, 1467, 1605, 1801, 2157, 2679, 2152, 1832, 1661, 1520, 1411, 1334, 1276, 1257, 1256, 1285, 1337, 1407, 1514, 1658, 1901, 2321, 2847, 2251, 1921, 1723, 1575, 1470, 1401, 1342, 1308, 1301, 1351, 1384, 1458, 1568, 1728, 2004, 2462, 2972, 2379, 2031, 1747, 1618, 1516, 1444, 1368, 1357, 1349, 1401, 1436, 1507, 1630, 1809, 2189, 2562]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2511, 2115, 1843, 1644, 1523, 1421, 1355, 1294, 1268, 1275, 1304, 1350, 1424, 1509, 1652, 1884, 2272, 2436, 2001, 1754, 1601, 1468, 1366, 1289, 1254, 1213, 1214, 1254, 1295, 1368, 1461, 1592, 1792, 2170, 2332, 1929, 1708, 1558, 1421, 1330, 1240, 1187, 1163, 1162, 1197, 1257, 1317, 1412, 1526, 1715, 2048, 2265, 1865, 1670, 1502, 1381, 1284, 1207, 1139, 1121, 1120, 1158, 1204, 1293, 1381, 1499, 1674, 1992, 2171, 1818, 1632, 1474, 1351, 1252, 1166, 1113, 1083, 1092, 1121, 1186, 1267, 1354, 1480, 1640, 1916, 2134, 1806, 1616, 1463, 1342, 1237, 1140, 1087, 1053, 1059, 1099, 1166, 1235, 1340, 1464, 1609, 1889, 2128, 1797, 1588, 1445, 1326, 1215, 1126, 1073, 1032, 1036, 1087, 1147, 1236, 1330, 1461, 1606, 1850, 2113, 1778, 1611, 1456, 1327, 1216, 1122, 1065, 1027, 1029, 1080, 1135, 1233, 1326, 1451, 1601, 1848, 2115, 1792, 1611, 1453, 1327, 1216, 1128, 1061, 1024, 1041, 1083, 1151, 1227, 1336, 1454, 1612, 1854, 2153, 1800, 1622, 1473, 1342, 1232, 1137, 1089, 1055, 1056, 1102, 1157, 1245, 1354, 1475, 1626, 1869, 2204, 1830, 1641, 1489, 1356, 1251, 1168, 1116, 1089, 1087, 1128, 1173, 1277, 1372, 1490, 1642, 1916, 2240, 1868, 1676, 1521, 1393, 1288, 1197, 1139, 1120, 1126, 1151, 1220, 1292, 1404, 1515, 1679, 1947, 2346, 1916, 1701, 1566, 1428, 1323, 1252, 1185, 1163, 1166, 1189, 1241, 1327, 1436, 1552, 1743, 2047, 2488, 2010, 1760, 1601, 1464, 1356, 1289, 1241, 1214, 1206, 1245, 1298, 1373, 1481, 1600, 1795, 2169, 2614, 2105, 1831, 1655, 1519, 1432, 1354, 1296, 1275, 1280, 1314, 1344, 1424, 1513, 1657, 1892, 2284, 2775, 2230, 1916, 1703, 1590, 1477, 1411, 1360, 1336, 1334, 1363, 1406, 1492, 1584, 1725, 1996, 2436, 2936, 2361, 2012, 1769, 1648, 1544, 1470, 1414, 1396, 1385, 1420, 1463, 1553, 1632, 1815, 2096, 2582]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2615, 2175, 1817, 1672, 1534, 1421, 1329, 1282, 1262, 1247, 1279, 1335, 1417, 1509, 1665, 1878, 2328, 2521, 2035, 1782, 1602, 1468, 1369, 1288, 1226, 1200, 1205, 1235, 1283, 1354, 1470, 1590, 1803, 2162, 2400, 1971, 1743, 1573, 1434, 1322, 1243, 1176, 1145, 1151, 1180, 1243, 1319, 1417, 1549, 1738, 2090, 2319, 1908, 1707, 1524, 1404, 1280, 1201, 1143, 1104, 1108, 1145, 1205, 1279, 1398, 1518, 1694, 2025, 2288, 1883, 1671, 1511, 1366, 1255, 1167, 1100, 1079, 1084, 1118, 1177, 1268, 1369, 1496, 1664, 1946, 2254, 1846, 1661, 1493, 1348, 1236, 1140, 1080, 1041, 1050, 1091, 1156, 1251, 1344, 1485, 1643, 1907, 2210, 1838, 1646, 1487, 1346, 1216, 1130, 1065, 1029, 1027, 1079, 1142, 1233, 1344, 1473, 1621, 1873, 2186, 1826, 1637, 1479, 1332, 1212, 1125, 1060, 1024, 1027, 1075, 1136, 1228, 1340, 1471, 1638, 1902, 2173, 1851, 1653, 1474, 1340, 1215, 1127, 1055, 1024, 1027, 1079, 1147, 1234, 1343, 1472, 1631, 1903, 2223, 1841, 1663, 1498, 1350, 1231, 1141, 1085, 1046, 1053, 1097, 1155, 1246, 1363, 1492, 1649, 1939, 2270, 1871, 1669, 1515, 1360, 1256, 1169, 1097, 1070, 1075, 1114, 1178, 1272, 1374, 1506, 1677, 1935, 2325, 1922, 1701, 1530, 1411, 1287, 1193, 1134, 1113, 1108, 1142, 1208, 1291, 1398, 1528, 1700, 1978, 2440, 1957, 1744, 1584, 1428, 1313, 1235, 1176, 1147, 1144, 1190, 1240, 1329, 1425, 1556, 1748, 2069, 2488, 2044, 1802, 1598, 1466, 1353, 1285, 1221, 1198, 1197, 1223, 1280, 1367, 1477, 1590, 1792, 2169, 2636, 2130, 1827, 1660, 1509, 1412, 1328, 1279, 1242, 1239, 1281, 1322, 1409, 1507, 1658, 1881, 2299, 2802, 2243, 1929, 1708, 1584, 1468, 1386, 1334, 1304, 1305, 1340, 1382, 1453, 1564, 1722, 2011, 2427, 2983, 2413, 2016, 1766, 1618, 1515, 1446, 1376, 1364, 1361, 1388, 1426, 1514, 1630, 1794, 2147, 2562]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2414, 1998, 1666, 1538, 1424, 1348, 1280, 1234, 1235, 1223, 1269, 1287, 1326, 1424, 1540, 1798, 2165, 2235, 1864, 1611, 1483, 1376, 1298, 1235, 1211, 1176, 1176, 1194, 1247, 1314, 1390, 1501, 1693, 2026, 2129, 1793, 1567, 1439, 1344, 1268, 1207, 1158, 1136, 1131, 1167, 1219, 1266, 1338, 1456, 1617, 1900, 2079, 1725, 1516, 1416, 1311, 1237, 1163, 1137, 1097, 1096, 1136, 1191, 1248, 1324, 1426, 1563, 1837, 2029, 1681, 1506, 1386, 1284, 1208, 1150, 1101, 1072, 1080, 1105, 1162, 1223, 1309, 1410, 1528, 1799, 1935, 1668, 1503, 1375, 1286, 1209, 1124, 1089, 1052, 1048, 1093, 1149, 1209, 1277, 1386, 1524, 1749, 1887, 1662, 1475, 1351, 1265, 1175, 1111, 1060, 1032, 1028, 1094, 1136, 1205, 1285, 1388, 1504, 1711, 1918, 1645, 1483, 1365, 1266, 1171, 1115, 1060, 1024, 1024, 1080, 1123, 1206, 1279, 1390, 1514, 1747, 1932, 1656, 1469, 1366, 1272, 1190, 1107, 1064, 1024, 1040, 1072, 1137, 1217, 1286, 1370, 1506, 1737, 1931, 1645, 1500, 1373, 1283, 1196, 1125, 1073, 1048, 1052, 1085, 1132, 1227, 1297, 1383, 1505, 1725, 1956, 1692, 1521, 1391, 1288, 1210, 1139, 1089, 1060, 1077, 1101, 1170, 1237, 1308, 1395, 1527, 1812, 2022, 1719, 1544, 1409, 1310, 1236, 1161, 1107, 1098, 1098, 1124, 1174, 1241, 1324, 1427, 1557, 1855, 2109, 1779, 1573, 1434, 1345, 1257, 1196, 1152, 1134, 1125, 1165, 1208, 1267, 1340, 1445, 1596, 1899, 2201, 1841, 1620, 1467, 1361, 1300, 1220, 1196, 1166, 1165, 1199, 1237, 1293, 1374, 1493, 1664, 1942, 2321, 1961, 1650, 1532, 1382, 1315, 1273, 1214, 1210, 1198, 1227, 1262, 1331, 1410, 1533, 1726, 2112, 2476, 2064, 1741, 1548, 1439, 1354, 1304, 1259, 1233, 1238, 1257, 1310, 1351, 1453, 1602, 1864, 2216, 2678, 2197, 1831, 1626, 1491, 1407, 1341, 1290, 1256, 1290, 1292, 1348, 1397, 1498, 1666, 1953, 2368]
                                       }
                                   }, {
                                       "name":    "1920x1080_GRAY_0",
                                       "resolution":    "1920x1080",
                                       "illumination":    "GRAY",
                                       "vignetting":    0,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024]
                                       }
                                   }],
                               "tableAll_len":    15
                           }
                       },
                       "colorAsGrey":    {
                           "param":    {
                               "enable":    0
                           }
                       },
                       "lumaDetect":    {
                           "luma_detect_en":    1,
                           "fixed_times":    0,
                           "mutation_threshold":    0.0002,
                           "mutation_threshold_level2":    1000
                       },
                       "aldch":    {
                           "param":    {
                               "ldch_en":    0,
                               "meshfile":    "LDCH_mesh_2688_1520_os04a10_4IR",
                               "correct_level":    255,
                               "correct_level_max":    255,
                               "light_center":    [1351.12, 739.486],
                               "coefficient":    [-1830.26, 0.000423795, -2.50767e-07, 1.27247e-10]
                           }
                       },
                       "ccm_calib":    {
                           "control":    {
                               "enable":    1,
                               "mode":    "CALIB_CCM_MODE_AUTO",
                               "wbgain_tolerance":    0.1,
                               "gain_tolerance":    0.2
                           },
                           "lumaCCM":    {
                               "rgb2y_para":    [38, 75, 15],
                               "low_bound_pos_bit":    8,
                               "y_alpha_curve":    [0, 64, 128, 192, 256, 320, 384, 448, 512, 576, 640, 704, 768, 832, 896, 960, 1024],
                               "gain_alphaScale_curve":    {
                                   "gain":    [1, 2, 4, 8, 16, 32, 64, 128, 256],
                                   "scale":    [1, 1, 0.95, 0.85, 0.7, 0.6, 0.5, 0.4, 0.3]
                               }
                           },
                           "manualPara":    {
                               "ccMatrix":    [1, 0, 0, 0, 1, 0, 0, 0, 1],
                               "ccOffsets":    [0, 0, 0]
                           },
                           "TuningPara":    {
                               "damp_enable":    1,
                               "illu_estim":    {
                                   "interp_enable":    0,
                                   "default_illu":    "A",
                                   "weightRB":    [1, 1],
                                   "prob_limit":    0.2,
                                   "frame_no":    8
                               },
                               "aCcmCof":    [{
                                       "name":    "A",
                                       "awbGain":    [0.9674, 2.6299],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_100", "A_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.4525, 2.386],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_100", "CWF_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [1.4444, 1.9112],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_100", "D50_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [1.6287, 1.5789],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_100", "D65_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [1.7462, 1.4721],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_100", "D75_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [0.7893, 2.8547],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_100", "HZ_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.3085, 2.4338],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_100", "TL84_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 4, 6, 16],
                                           "sat":    [100, 100, 90, 50]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [1.612, -0.3766, -0.2354, -0.4504, 1.8103, -0.3599, -0.146, -1.2828, 2.4288],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [1.2314, -0.0479, -0.1836, -0.2037, 1.4826, -0.279, -0.0294, -0.7166, 1.746],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [2.0855, -1.0742, -0.0113, -0.3911, 1.5315, -0.1404, -0.025, -0.7697, 1.7947],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [1.5898, -0.553, -0.0368, -0.1647, 1.25, -0.0853, 0.1, -0.4858, 1.3858],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [1.9546, -0.8563, -0.0983, -0.2655, 1.5138, -0.2483, 0.1031, -0.7988, 1.6958],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4687, -0.4134, -0.0553, -0.1072, 1.2374, -0.1302, 0.1976, -0.4303, 1.2326],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [1.8185, -0.6835, -0.135, -0.2442, 1.5272, -0.283, 0.04, -0.6343, 1.6543],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [1.472, -0.3378, -0.1342, -0.0853, 1.3059, -0.2206, 0.1519, -0.4021, 1.2502],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [1.804, -0.7254, -0.0286, -0.204, 1.498, -0.294, -0.0069, -0.6133, 1.6203],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4989, -0.4652, -0.0338, -0.0418, 1.2248, -0.183, 0.1278, -0.2968, 1.169],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [1.5208, -0.265, -0.2558, -0.5783, 1.892, -0.3138, -0.3336, -1.5702, 2.9038],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.1545, 0.0396, -0.1941, -0.3687, 1.5112, -0.1425, -0.0888, -0.9243, 2.0131],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [1.9364, -0.7474, -0.189, -0.3321, 1.5828, -0.2507, -0.0889, -0.8452, 1.9341],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [1.5135, -0.3802, -0.1333, -0.1391, 1.319, -0.1799, 0.05, -0.4741, 1.4241],
                                       "ccOffsets":    [0, 0, 0]
                                   }],
                               "matrixAll_len":    14
                           }
                       },
                       "lut3d_calib":    {
                           "common":    {
                               "enable":    0,
                               "mode":    "CALIB_Lut3D_MODE_AUTO",
                               "gain_tolerance":    0.1,
                               "wbgain_tolerance":    1
                           },
                           "MLut3D":    {
                               "Table":    {
                                   "look_up_table_r":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "look_up_table_g":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "look_up_table_b":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                               }
                           },
                           "ALut3D":    {
                               "damp_en":    1,
                               "lutAll":    [{
                                       "name":    "Normal",
                                       "awbGain":    [1, 1],
                                       "gain_alpha":    {
                                           "gain":    [1, 2, 4, 8, 16, 32, 64, 128, 256],
                                           "alpha":    [1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "Table":    {
                                           "look_up_table_r":    [0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 509, 511, 541, 616, 724, 850, 971, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 509, 510, 541, 616, 724, 850, 970, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 511, 512, 539, 614, 723, 849, 969, 1023, 1023, 677, 678, 686, 713, 758, 820, 896, 982, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 516, 518, 544, 610, 718, 845, 965, 1023, 1023, 678, 679, 687, 710, 755, 817, 893, 979, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 526, 528, 554, 618, 713, 841, 957, 1023, 1023, 680, 680, 688, 711, 750, 811, 888, 974, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 543, 544, 569, 632, 725, 838, 947, 1023, 1023, 682, 682, 691, 713, 751, 804, 880, 967, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 1, 17, 178, 357, 537, 715, 886, 1023, 1023, 569, 570, 594, 654, 745, 853, 935, 1023, 1023, 685, 686, 694, 716, 754, 806, 871, 957, 1023, 71, 83, 214, 402, 599, 791, 976, 1023, 1023, 72, 82, 212, 401, 597, 790, 975, 1023, 1023, 84, 93, 201, 386, 582, 776, 963, 1023, 1023, 114, 121, 215, 368, 561, 755, 942, 1023, 1023, 161, 166, 243, 384, 544, 735, 920, 1023, 1023, 230, 234, 293, 415, 563, 719, 900, 1023, 1023, 344, 347, 388, 482, 608, 747, 889, 1023, 1023, 608, 610, 632, 689, 776, 855, 936, 1023, 1023, 689, 690, 698, 720, 757, 808, 872, 945, 1023, 247, 250, 299, 407, 545, 693, 840, 978, 1023, 248, 251, 299, 407, 545, 693, 840, 978, 1023, 268, 271, 311, 413, 547, 693, 837, 975, 1023, 321, 323, 356, 435, 558, 695, 833, 968, 1023, 402, 403, 428, 489, 578, 700, 830, 960, 1023, 478, 479, 498, 546, 620, 711, 829, 951, 1023, 556, 557, 571, 608, 667, 743, 832, 943, 1023, 630, 630, 641, 669, 715, 777, 853, 936, 1023, 695, 695, 703, 725, 761, 811, 874, 946, 1023],
                                           "look_up_table_g":    [0, 0, 0, 1, 0, 1, 1, 637, 1771, 78, 78, 78, 78, 78, 78, 78, 663, 1778, 821, 820, 821, 821, 821, 821, 821, 1036, 1899, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1703, 2192, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 2442, 2596, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3170, 3049, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3837, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 1, 1, 1, 0, 0, 637, 1771, 78, 69, 69, 69, 69, 69, 69, 660, 1778, 820, 810, 810, 810, 810, 810, 810, 1033, 1898, 1662, 1650, 1650, 1650, 1650, 1650, 1650, 1700, 2191, 2503, 2491, 2491, 2491, 2491, 2491, 2491, 2439, 2595, 3317, 3305, 3305, 3305, 3305, 3305, 3305, 3168, 3049, 4095, 4091, 4091, 4091, 4091, 4091, 4091, 3836, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 0, 1, 1, 1, 0, 640, 1775, 78, 69, 69, 69, 69, 69, 69, 663, 1781, 821, 810, 713, 713, 713, 713, 713, 990, 1890, 1662, 1650, 1543, 1543, 1543, 1543, 1543, 1658, 2183, 2503, 2491, 2383, 2383, 2383, 2383, 2383, 2404, 2587, 3317, 3305, 3202, 3202, 3202, 3202, 3202, 3143, 3042, 4095, 4091, 3990, 3990, 3990, 3990, 3990, 3821, 3495, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3918, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 1, 1, 0, 1, 0, 2, 650, 1786, 78, 69, 69, 69, 69, 69, 69, 673, 1792, 821, 810, 713, 713, 713, 713, 713, 996, 1899, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1579, 2161, 2503, 2491, 2383, 2267, 2267, 2267, 2267, 2331, 2567, 3317, 3305, 3202, 3091, 3091, 3091, 3091, 3085, 3023, 4095, 4091, 3990, 3882, 3882, 3882, 3882, 3783, 3479, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3904, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 1, 1, 0, 1, 0, 668, 1805, 78, 69, 69, 69, 69, 69, 69, 690, 1811, 821, 810, 713, 713, 713, 713, 713, 1008, 1916, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1587, 2174, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2242, 2534, 3317, 3305, 3202, 3091, 2978, 2978, 2978, 3008, 2993, 4095, 4091, 3990, 3882, 3775, 3775, 3775, 3727, 3452, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3881, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 1, 0, 1, 1, 0, 697, 1834, 78, 69, 69, 69, 69, 69, 69, 718, 1840, 821, 810, 713, 713, 713, 713, 713, 1028, 1942, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1599, 2194, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2251, 2548, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2920, 2952, 4095, 4091, 3990, 3882, 3775, 3663, 3663, 3660, 3415, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3848, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 0, 2, 0, 0, 3, 737, 1874, 78, 69, 69, 69, 69, 69, 69, 758, 1880, 821, 810, 713, 713, 713, 713, 713, 1056, 1979, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1618, 2223, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2264, 2567, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2931, 2964, 4095, 4091, 3990, 3882, 3775, 3663, 3545, 3586, 3368, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3805, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 283, 284, 299, 339, 405, 501, 628, 793, 1927, 334, 328, 342, 378, 439, 529, 651, 812, 1932, 866, 861, 802, 820, 852, 903, 981, 1096, 2026, 1624, 1619, 1561, 1474, 1492, 1522, 1570, 1645, 2260, 2403, 2400, 2351, 2268, 2177, 2197, 2230, 2284, 2593, 3155, 3152, 3117, 3047, 2964, 2877, 2903, 2948, 2980, 3847, 3846, 3823, 3771, 3702, 3627, 3557, 3606, 3377, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3754, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 988, 989, 1014, 1082, 1198, 1367, 1588, 1785, 1992, 1003, 1003, 1027, 1094, 1209, 1377, 1596, 1791, 1997, 1245, 1244, 1243, 1299, 1396, 1543, 1724, 1899, 2086, 1751, 1750, 1745, 1741, 1813, 1918, 2029, 2161, 2307, 2354, 2354, 2347, 2330, 2313, 2366, 2437, 2525, 2626, 2923, 2923, 2916, 2898, 2873, 2846, 2887, 2939, 3000, 3449, 3449, 3442, 3425, 3399, 3365, 3328, 3355, 3387, 3916, 3915, 3910, 3894, 3869, 3834, 3792, 3745, 3758, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
                                           "look_up_table_b":    [0, 0, 0, 0, 0, 0, 0, 159, 443, 0, 0, 0, 0, 0, 0, 0, 160, 443, 0, 0, 0, 0, 0, 0, 0, 168, 452, 0, 0, 0, 0, 0, 0, 1, 193, 476, 0, 0, 0, 0, 0, 0, 0, 237, 514, 0, 0, 0, 0, 0, 0, 0, 313, 563, 0, 0, 0, 1, 0, 0, 1, 461, 617, 509, 509, 515, 531, 563, 623, 709, 724, 673, 677, 677, 678, 680, 684, 691, 700, 711, 725, 20, 20, 20, 20, 20, 20, 20, 165, 444, 20, 17, 17, 17, 17, 17, 17, 165, 444, 20, 17, 17, 17, 17, 17, 17, 173, 453, 20, 17, 17, 17, 17, 17, 17, 197, 477, 20, 17, 17, 17, 17, 17, 17, 240, 515, 20, 17, 17, 17, 17, 17, 17, 316, 564, 20, 17, 17, 17, 17, 17, 17, 462, 618, 510, 510, 516, 532, 565, 623, 709, 725, 673, 678, 678, 678, 681, 685, 691, 700, 711, 725, 205, 205, 205, 205, 205, 205, 205, 254, 467, 205, 202, 202, 202, 202, 202, 202, 253, 467, 205, 202, 178, 178, 178, 178, 178, 247, 472, 205, 202, 178, 178, 178, 178, 178, 264, 495, 205, 202, 178, 178, 178, 178, 178, 297, 530, 205, 202, 178, 178, 178, 178, 178, 359, 576, 205, 202, 178, 178, 178, 178, 178, 490, 628, 537, 537, 539, 554, 584, 640, 720, 734, 681, 687, 687, 686, 689, 693, 699, 707, 718, 731, 415, 415, 415, 416, 415, 416, 415, 417, 525, 415, 413, 413, 413, 413, 413, 413, 416, 525, 415, 413, 386, 386, 386, 386, 386, 407, 529, 416, 413, 386, 357, 357, 357, 357, 395, 540, 415, 413, 386, 357, 357, 357, 357, 415, 570, 416, 413, 386, 357, 357, 357, 357, 458, 610, 415, 413, 386, 357, 357, 357, 357, 557, 656, 606, 606, 606, 610, 636, 684, 747, 760, 704, 712, 712, 712, 710, 714, 719, 727, 737, 749, 626, 626, 626, 626, 626, 626, 626, 601, 614, 626, 623, 623, 623, 623, 623, 623, 600, 614, 626, 623, 596, 596, 596, 596, 596, 590, 616, 626, 623, 596, 567, 567, 567, 567, 573, 622, 626, 623, 596, 567, 537, 537, 537, 560, 634, 626, 623, 596, 567, 537, 537, 537, 587, 665, 626, 623, 596, 567, 537, 537, 537, 654, 702, 706, 706, 706, 707, 713, 752, 793, 803, 741, 755, 755, 755, 753, 750, 754, 761, 769, 780, 829, 829, 829, 829, 829, 829, 829, 789, 724, 829, 826, 826, 826, 826, 826, 826, 788, 724, 829, 826, 800, 800, 800, 800, 800, 777, 724, 829, 826, 800, 773, 773, 773, 773, 759, 726, 829, 826, 800, 773, 745, 745, 745, 741, 730, 829, 826, 800, 773, 745, 715, 715, 730, 738, 829, 826, 800, 773, 745, 715, 715, 771, 765, 829, 829, 827, 825, 825, 838, 856, 863, 794, 816, 816, 815, 813, 809, 804, 809, 816, 823, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 973, 848, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 972, 848, 1023, 1023, 997, 997, 997, 997, 997, 961, 846, 1023, 1023, 997, 971, 971, 971, 971, 942, 843, 1023, 1023, 997, 971, 944, 944, 944, 921, 841, 1023, 1023, 997, 971, 944, 916, 916, 902, 840, 1023, 1023, 997, 971, 944, 916, 886, 897, 842, 961, 961, 959, 953, 947, 946, 935, 938, 861, 893, 893, 892, 889, 884, 878, 871, 875, 880, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 975, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 969, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 961, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 952, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 945, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 938, 982, 982, 980, 977, 972, 965, 956, 945, 948, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
                                       }
                                   }],
                               "lutAll_len":    1
                           }
                       },
                       "af":    {
                           "TuningPara":    {
                               "af_mode":    "CalibDbV2_AF_MODE_NOT_SET",
                               "win_h_offs":    0,
                               "win_v_offs":    0,
                               "win_h_size":    0,
                               "win_v_size":    0,
                               "fixed_mode":    {
                                   "code":    8
                               },
                               "macro_mode":    {
                                   "code":    32
                               },
                               "infinity_mode":    {
                                   "code":    32
                               },
                               "contrast_af":    {
                                   "enable":    1,
                                   "Afss":    "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
                                   "FullDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "FullSteps":    9,
                                   "FullRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "AdaptiveDir":    "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
                                   "AdaptiveSteps":    9,
                                   "AdaptRangeTbl":    [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "TrigThers":    0.075,
                                   "LumaTrigThers":    0,
                                   "StableThers":    0.02,
                                   "StableFrames":    3,
                                   "StableTime":    200,
                                   "SceneDiffEnable":    0,
                                   "SceneDiffThers":    0,
                                   "SceneDiffBlkThers":    0,
                                   "CenterSceneDiffThers":    0,
                                   "ValidMaxMinRatio":    0,
                                   "ValidValueThers":    0,
                                   "OutFocusValue":    50,
                                   "OutFocusPos":    64,
                                   "WeightEnable":    0,
                                   "Weight":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                   "SearchPauseLumaEnable":    0,
                                   "SearchPauseLumaThers":    0,
                                   "SearchLumaStableFrames":    0,
                                   "SearchLumaStableThers":    0,
                                   "FlatValue":    0
                               },
                               "laser_af":    {
                                   "enable":    0,
                                   "vcmDot":    [0, 16, 32, 40, 48, 56, 64],
                                   "distanceDot":    [0.2, 0.24, 0.34, 0.4, 0.66, 1, 3]
                               },
                               "pdaf":    {
                                   "enable":    0
                               },
                               "vcmcfg":    {
                                   "start_current":    -1,
                                   "rated_current":    -1,
                                   "step_mode":    -1,
                                   "extra_delay":    0
                               },
                               "measiso_cfg":    [{
                                       "iso":    50,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    100,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    1600,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    3200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    6400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    12800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    25600,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    51200,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    102400,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }, {
                                       "iso":    204800,
                                       "afmThres":    4,
                                       "gammaY":    [0, 45, 108, 179, 245, 344, 409, 459, 500, 567, 622, 676, 759, 833, 896, 962, 1023],
                                       "gaussWeight":    [32, 16, 8]
                                   }],
                               "zoomfocus_tbl":    {
                                   "tbl_len":    0,
                                   "focal_length":    [],
                                   "focal_length_len":    0,
                                   "zoom_pos":    [],
                                   "zoom_pos_len":    0,
                                   "focus_infpos":    [],
                                   "focus_infpos_len":    0,
                                   "focus_macropos":    [],
                                   "focus_macropos_len":    0
                               }
                           }
                       },
                       "thumbnails":    {
                           "param":    {
                               "thumbnail_configs":    [{
                                       "owner_cookies":    0,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\u0002",
                                       "width_intfactor":    2,
                                       "height_intfactor":    2,
                                       "buffer_count":    0
                                   }, {
                                       "owner_cookies":    1,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\u0004",
                                       "width_intfactor":    4,
                                       "height_intfactor":    4,
                                       "buffer_count":    0
                                   }, {
                                       "owner_cookies":    2,
                                       "stream_type":    0,
                                       "after_nodes":    0,
                                       "before_node":    0,
                                       "format":    "NV12\b",
                                       "width_intfactor":    8,
                                       "height_intfactor":    8,
                                       "buffer_count":    0
                                   }],
                               "thumbnail_configs_len":    3
                           }
                       },
                       "bayernr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [259, 244, 231, 218, 197, 180, 167, 157, 149, 142, 135, 128, 121, 111, 101, 89]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [467, 425, 386, 351, 291, 248, 220, 206, 200, 198, 196, 190, 179, 163, 144, 125]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [833, 747, 668, 595, 470, 376, 315, 287, 282, 288, 292, 289, 275, 249, 212, 175]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1360, 1192, 1035, 890, 640, 458, 365, 364, 409, 457, 484, 484, 451, 387, 298, 210]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2024, 1784, 1561, 1355, 1001, 739, 593, 566, 610, 666, 701, 701, 659, 576, 460, 349]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2594, 2336, 2097, 1878, 1503, 1221, 1039, 951, 930, 938, 945, 931, 886, 807, 702, 597]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [3885, 3523, 3186, 2873, 2327, 1894, 1583, 1395, 1307, 1283, 1279, 1267, 1227, 1155, 1060, 971]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [4653, 4232, 3842, 3485, 2873, 2409, 2100, 1935, 1879, 1882, 1899, 1898, 1862, 1785, 1673, 1549]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [259, 244, 231, 218, 197, 180, 167, 157, 149, 142, 135, 128, 121, 111, 101, 89]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [467, 425, 386, 351, 291, 248, 220, 206, 200, 198, 196, 190, 179, 163, 144, 125]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [833, 747, 668, 595, 470, 376, 315, 287, 282, 288, 292, 289, 275, 249, 212, 175]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1360, 1192, 1035, 890, 640, 458, 365, 364, 409, 457, 484, 484, 451, 387, 298, 210]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2024, 1784, 1561, 1355, 1001, 739, 593, 566, 610, 666, 701, 701, 659, 576, 460, 349]
                                           }, {
                                               "iso":    1600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [2594, 2336, 2097, 1878, 1503, 1221, 1039, 951, 930, 938, 945, 931, 886, 807, 702, 597]
                                           }, {
                                               "iso":    3200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [3885, 3523, 3186, 2873, 2327, 1894, 1583, 1395, 1307, 1283, 1279, 1267, 1227, 1155, 1060, 971]
                                           }, {
                                               "iso":    6400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [4653, 4232, 3842, 3485, 2873, 2409, 2100, 1935, 1879, 1882, 1899, 1898, 1862, 1785, 1673, 1549]
                                           }, {
                                               "iso":    12800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    25600,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    51200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    102400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }, {
                                               "iso":    204800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr2D":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.2,
                                               "edgesofts":    2,
                                               "ratio":    0.08,
                                               "weight":    0.1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.3,
                                               "edgesofts":    2,
                                               "ratio":    0.07,
                                               "weight":    0.2
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.4,
                                               "edgesofts":    2,
                                               "ratio":    0.06,
                                               "weight":    0.3
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.04,
                                               "weight":    0.4
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.03,
                                               "weight":    0.5
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.55
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.6
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.65
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.3,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.75
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.8
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.9
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.2,
                                               "edgesofts":    2,
                                               "ratio":    0.08,
                                               "weight":    0.1
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.3,
                                               "edgesofts":    2,
                                               "ratio":    0.07,
                                               "weight":    0.2
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.4,
                                               "edgesofts":    2,
                                               "ratio":    0.06,
                                               "weight":    0.3
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.04,
                                               "weight":    0.4
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.03,
                                               "weight":    0.5
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.55
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.6
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.65
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.3,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.75
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.4,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.8
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.5,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.9
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.6,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "Bayernr3D":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.65,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.65
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.6
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.55,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.55
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.65,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.65
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.6
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.55,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.55
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.45,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.35,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.0625,
                                               "hi_clipwgt":    0.0625,
                                               "softwgt":    0.35
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "cnr_v1":    {
                           "Version":    "",
                           "TuningPara":    {
                               "enable":    1,
                               "Kernel_Coeff":    {
                                   "kernel_5x5":    [1, 0.8825, 0.7788, 0.6065, 0.3679]
                               },
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.1,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    35,
                                               "color_sat_adj_alpha":    0.75,
                                               "hf_spikes_reducion_strength":    0.2,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    6,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    6,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.7,
                                               "hf_spikes_reducion_strength":    0.3,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    3.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    1,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    3.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    20,
                                               "color_sat_adj_alpha":    0.6,
                                               "hf_spikes_reducion_strength":    0.4,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    2.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    2,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "lf_color_sat":    2.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    36,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    28,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    18,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    32,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    36,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    25,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    30,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    45,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    35,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.1,
                                               "hf_denoise_strength":    8,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    4,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    4,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    100,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    35,
                                               "color_sat_adj_alpha":    0.75,
                                               "hf_spikes_reducion_strength":    0.2,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    6,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    6,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.7,
                                               "hf_spikes_reducion_strength":    0.3,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    3.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    1,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    3.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    20,
                                               "color_sat_adj_alpha":    0.6,
                                               "hf_spikes_reducion_strength":    0.4,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    2.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    2,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "lf_color_sat":    2.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    36,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    1600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    24,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    28,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    18,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    32,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    36,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    25,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    40,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    30,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    45,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    35,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    10,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    50,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    1.5,
                                               "lf_denoise_alpha":    1
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "ynr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-5.0067e-13, 5.44935e-09, -2.36733e-05, 0.0396832, 16.6933],
                                               "ynr_ci_l":    0.258476,
                                               "ynr_ci_h":    0.178956
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-1.71779e-12, 1.68551e-08, -6.16277e-05, 0.0906081, 1.1538],
                                               "ynr_ci_l":    0.288191,
                                               "ynr_ci_h":    0.183552
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.39738e-12, 1.4327e-08, -5.62007e-05, 0.0827579, 39.2275],
                                               "ynr_ci_l":    0.256619,
                                               "ynr_ci_h":    0.163345
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-3.97452e-12, 3.83046e-08, -0.000136079, 0.188351, 23.8388],
                                               "ynr_ci_l":    0.24731,
                                               "ynr_ci_h":    0.163583
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-4.09947e-12, 3.82555e-08, -0.000129742, 0.158827, 83.2167],
                                               "ynr_ci_l":    0.245897,
                                               "ynr_ci_h":    0.166267
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.232421,
                                               "ynr_ci_h":    0.160838
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.232421,
                                               "ynr_ci_h":    0.151983
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.261392,
                                               "ynr_ci_h":    0.158006
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-5.0067e-13, 5.44935e-09, -2.36733e-05, 0.0396832, 16.6933],
                                               "ynr_ci_l":    0.258476,
                                               "ynr_ci_h":    0.178956
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-1.71779e-12, 1.68551e-08, -6.16277e-05, 0.0906081, 1.1538],
                                               "ynr_ci_l":    0.288191,
                                               "ynr_ci_h":    0.183552
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-1.39738e-12, 1.4327e-08, -5.62007e-05, 0.0827579, 39.2275],
                                               "ynr_ci_l":    0.256619,
                                               "ynr_ci_h":    0.163345
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-3.97452e-12, 3.83046e-08, -0.000136079, 0.188351, 23.8388],
                                               "ynr_ci_l":    0.24731,
                                               "ynr_ci_h":    0.163583
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-4.09947e-12, 3.82555e-08, -0.000129742, 0.158827, 83.2167],
                                               "ynr_ci_l":    0.245897,
                                               "ynr_ci_h":    0.166267
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.232421,
                                               "ynr_ci_h":    0.160838
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.232421,
                                               "ynr_ci_h":    0.151983
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.261392,
                                               "ynr_ci_h":    0.158006
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.19692,
                                               "ynr_ci_h":    0.196693
                                           }],
                                       "Calib_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           },
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1,
                                               "low_bf_1":    1,
                                               "low_thred_adj":    0.4,
                                               "low_peak_supress":    0.6,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.2,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.1,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.6,
                                               "high_weight":    0.8,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.5,
                                               "low_bf_1":    1.5,
                                               "low_thred_adj":    0.6,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.55,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.15,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.8,
                                               "high_weight":    0.75,
                                               "hi_min_adj":    0.85,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2,
                                               "low_bf_1":    2,
                                               "low_thred_adj":    0.9,
                                               "low_peak_supress":    0.4,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.5,
                                               "low_dist_adj":    7,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.7,
                                               "hi_min_adj":    0.8,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2.5,
                                               "low_bf_1":    2.5,
                                               "low_thred_adj":    1.2,
                                               "low_peak_supress":    0.3,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.45,
                                               "low_dist_adj":    6,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.65,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    90,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    3,
                                               "low_bf_1":    3,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    5,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    4,
                                               "low_bf_1":    4,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    6,
                                               "low_bf_1":    6,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    8,
                                               "low_bf_1":    8,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    10,
                                               "low_bf_1":    10,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    12,
                                               "low_bf_1":    12,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    15,
                                               "low_bf_1":    15,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    8,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    18,
                                               "low_bf_1":    18,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    8,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    8,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1,
                                               "low_bf_1":    1,
                                               "low_thred_adj":    0.4,
                                               "low_peak_supress":    0.6,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.2,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.1,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.6,
                                               "high_weight":    0.8,
                                               "hi_min_adj":    0.9,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    100,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    1.5,
                                               "low_bf_1":    1.5,
                                               "low_thred_adj":    0.6,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.55,
                                               "low_dist_adj":    8,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.15,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    0.8,
                                               "high_weight":    0.75,
                                               "hi_min_adj":    0.85,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2,
                                               "low_bf_1":    2,
                                               "low_thred_adj":    0.9,
                                               "low_peak_supress":    0.4,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.5,
                                               "low_dist_adj":    7,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.2,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1,
                                               "high_weight":    0.7,
                                               "hi_min_adj":    0.8,
                                               "hi_edge_thed":    100,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    2.5,
                                               "low_bf_1":    2.5,
                                               "low_thred_adj":    1.2,
                                               "low_peak_supress":    0.3,
                                               "low_edge_adj_thresh":    20,
                                               "low_center_weight":    0.45,
                                               "low_dist_adj":    6,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    1.5,
                                               "high_weight":    0.65,
                                               "hi_min_adj":    0.7,
                                               "hi_edge_thed":    90,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    3,
                                               "low_bf_1":    3,
                                               "low_thred_adj":    1.5,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    5,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    4,
                                               "low_bf_1":    4,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    6,
                                               "low_bf_1":    6,
                                               "low_thred_adj":    2,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    16,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    8,
                                               "low_bf_1":    8,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    10,
                                               "low_bf_1":    10,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    12,
                                               "low_bf_1":    12,
                                               "low_thred_adj":    3,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    12,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    15,
                                               "low_bf_1":    15,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    8,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    18,
                                               "low_bf_1":    18,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    8,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }, {
                                               "iso":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    20,
                                               "low_bf_1":    20,
                                               "low_thred_adj":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    8,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    4,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.4,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    2,
                                               "high_weight":    0.6,
                                               "hi_min_adj":    0.6,
                                               "hi_edge_thed":    80,
                                               "high_direction_weight":    [1, 1, 1, 1, 0.5, 0.5, 0.5, 0.5],
                                               "rnr_strength":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "sharp_v3":    {
                           "Version":    "",
                           "TuningPara":    {
                               "enable":    1,
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.4,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    2,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    12,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.4,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.6,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    4,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    12,
                                               "bf_gain":    0.6,
                                               "bf_ratio":    0.5,
                                               "bf_add":    4,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    6,
                                               "gaus_ratio":    0.6,
                                               "sharp_ratio":    10,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.6,
                                               "bf_add":    6,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    9,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    8,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.8,
                                               "bf_add":    9,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    1.2,
                                               "pbf_ratio":    1,
                                               "pbf_add":    12,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    6,
                                               "bf_gain":    1.2,
                                               "bf_ratio":    1,
                                               "bf_add":    12,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    1.3,
                                               "pbf_ratio":    1,
                                               "pbf_add":    15,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.3,
                                               "bf_ratio":    1,
                                               "bf_add":    15,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    1.4,
                                               "pbf_ratio":    1,
                                               "pbf_add":    18,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.4,
                                               "bf_ratio":    1,
                                               "bf_add":    18,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    21,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    1,
                                               "bf_add":    21,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1.6,
                                               "pbf_ratio":    1,
                                               "pbf_add":    24,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.6,
                                               "bf_ratio":    1,
                                               "bf_add":    24,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.7,
                                               "pbf_ratio":    1,
                                               "pbf_add":    27,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.7,
                                               "bf_ratio":    1,
                                               "bf_add":    27,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.8,
                                               "pbf_ratio":    1,
                                               "pbf_add":    30,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.8,
                                               "bf_ratio":    1,
                                               "bf_add":    30,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.9,
                                               "pbf_ratio":    1,
                                               "pbf_add":    33,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.9,
                                               "bf_ratio":    1,
                                               "bf_add":    33,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    2,
                                               "pbf_ratio":    1,
                                               "pbf_add":    36,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "bf_add":    36,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "pbf_gain":    0.4,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    2,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    12,
                                               "bf_gain":    0.4,
                                               "bf_ratio":    0.4,
                                               "bf_add":    2,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 1023, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    100,
                                               "pbf_gain":    0.6,
                                               "pbf_ratio":    0.5,
                                               "pbf_add":    4,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    12,
                                               "bf_gain":    0.6,
                                               "bf_ratio":    0.5,
                                               "bf_add":    4,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [640, 768, 896, 1023, 1023, 1023, 1023, 1023]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    6,
                                               "gaus_ratio":    0.6,
                                               "sharp_ratio":    10,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.6,
                                               "bf_add":    6,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    400,
                                               "pbf_gain":    1,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    9,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    8,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.8,
                                               "bf_add":    9,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    800,
                                               "pbf_gain":    1.2,
                                               "pbf_ratio":    1,
                                               "pbf_add":    12,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    6,
                                               "bf_gain":    1.2,
                                               "bf_ratio":    1,
                                               "bf_add":    12,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [128, 160, 224, 256, 256, 256, 224, 160],
                                                   "local_sharp_strength":    [512, 640, 768, 896, 896, 896, 896, 896]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    1600,
                                               "pbf_gain":    1.3,
                                               "pbf_ratio":    1,
                                               "pbf_add":    15,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1.3,
                                               "bf_ratio":    1,
                                               "bf_add":    15,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [256, 256, 256, 256, 256, 256, 256, 256]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    3200,
                                               "pbf_gain":    1.4,
                                               "pbf_ratio":    1,
                                               "pbf_add":    18,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    3,
                                               "bf_gain":    1.4,
                                               "bf_ratio":    1,
                                               "bf_add":    18,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    6400,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1,
                                               "pbf_add":    21,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    1,
                                               "bf_add":    21,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    12800,
                                               "pbf_gain":    1.6,
                                               "pbf_ratio":    1,
                                               "pbf_add":    24,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.6,
                                               "bf_ratio":    1,
                                               "bf_add":    24,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    25600,
                                               "pbf_gain":    1.7,
                                               "pbf_ratio":    1,
                                               "pbf_add":    27,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.7,
                                               "bf_ratio":    1,
                                               "bf_add":    27,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    51200,
                                               "pbf_gain":    1.8,
                                               "pbf_ratio":    1,
                                               "pbf_add":    30,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.8,
                                               "bf_ratio":    1,
                                               "bf_add":    30,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    102400,
                                               "pbf_gain":    1.9,
                                               "pbf_ratio":    1,
                                               "pbf_add":    33,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.9,
                                               "bf_ratio":    1,
                                               "bf_add":    33,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }, {
                                               "iso":    204800,
                                               "pbf_gain":    2,
                                               "pbf_ratio":    1,
                                               "pbf_add":    36,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    2,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "bf_add":    36,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "hf_clip":    [64, 96, 128, 160, 192, 160, 128, 0],
                                                   "local_sharp_strength":    [128, 128, 128, 128, 128, 128, 128, 128]
                                               },
                                               "kernel_para":    {
                                                   "prefilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "GaussianFilter_coeff":    [0.2042, 0.1238, 0.0751],
                                                   "hfBilateralFilter_coeff":    [0.2042, 0.1238, 0.0751]
                                               }
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       }
                   }
               }],
           "sub_scene_len":    1
       }],
   "main_scene_len":    1,
   "uapi":    [],
   "uapi_len":    0,
   "sys_static_cfg":    {
       "algoSwitch":    {
           "enable":    0,
           "enable_algos":    [],
           "enable_algos_len":    0
       }
   }
}