hc
2023-02-15 557890c7ca0980ccc625a4e8f0cfa8898649a5c6
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":    2592,
           "height":    1944
       },
       "Gain2Reg":    {
           "GainMode":    "EXPGAIN_MODE_LINEAR",
           "GainRange":    [1, 16, 64, 0, 1, 64, 1024],
           "GainRange_len":    7
       },
       "Time2Reg":    {
           "fCoeff":    [0, 0, 1, 0.5]
       },
       "CISGainSet":    {
           "CISAgainRange":    {
               "Min":    1,
               "Max":    16
           },
           "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":    [1, 0]
                   }
               }, {
                   "name":    "HDR_THREE_FRAME",
                   "CISTimeRegUnEqualEn":    1,
                   "CISTimeRegMin":    4,
                   "CISHdrTimeRegSumFac":    {
                       "fCoeff":    [1, 4]
                   },
                   "CISTimeRegMax":    {
                       "Coeff":    [0, 0, 0]
                   },
                   "CISTimeRegOdevity":    {
                       "fCoeff":    [1, 0]
                   }
               }]
       },
       "CISHdrSet":    {
           "hdr_en":    0,
           "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, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 4, 4, 4, 4, 4, 4, 2, 2, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3, 3, 3, 3, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 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],
                               "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.15,
                                   "DampUnder":    0.45,
                                   "DampDark2Bright":    0.15,
                                   "DampBright2Dark":    0.45
                               },
                               "AecDelayFrmNum":    {
                                   "BlackDelay":    2,
                                   "WhiteDelay":    2
                               },
                               "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":    1,
                                   "InitIspDGainValue":    1,
                                   "InitPIrisGainValue":    512,
                                   "InitDCIrisDutyValue":    100
                               },
                               "Route":    {
                                   "TimeDot":    [0, 0.03, 0.03, 0.06, 0.06, 0.1],
                                   "TimeDot_len":    6,
                                   "GainDot":    [1, 1, 2, 2, 8, 16],
                                   "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.048, 0.144, 0.32, 0.64, 1.28],
                                   "ExpLevel_len":    6,
                                   "DySetpoint":    [55, 55, 50, 40, 30, 15],
                                   "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.1, 0.2, 0.4, 0.64, 1.12, 1.6],
                                       "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, 28, 20, 15, 10, 10],
                                       "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, 16, 16],
                                   "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, 16, 16],
                                   "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, 16, 16],
                                   "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.0048, 0.0144, 0.024, 0.048, 0.096],
                                       "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.024, 0.048, 0.096, 0.24, 0.336, 0.48],
                                   "MExpLevel_len":    6,
                                   "MSetPoint":    [60, 60, 55, 50, 45, 40],
                                   "MSetPoint_len":    6
                               },
                               "SframeCtrl":    {
                                   "HLROIExpandEn":    0,
                                   "HLLumaTolerance":    12,
                                   "SfrmSetPoint":    {
                                       "SExpLevel":    [0, 0.0024, 0.0072, 0.012, 0.0192, 0.0288],
                                       "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.969696, 1, 1, 2.35737],
                                   "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_8X8",
                               "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.333335, 0.333346, 0.333319],
                                   "rotationMat":    [-0.624674, 0.780885, -0.120265, 0.780885, 0.624674, 0.350208, 0, 0, 1]
                               },
                               "rgb2RotationYuvMat":    [0.0410156, 0.138672, 0.015625, 30.25, -0.0898438, 0.0117188, 0.0625, 135.375, 0.0371094, -0.0625, 0.0585938, 113.562, 0, 0, 0, 1],
                               "extraWpRange":    [{
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-15, 10, -44, -59]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-1588, -1205, 52, 11]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-615, -401, 65, -41]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [238, 241, 262, 254]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [241, 244, 247, 241]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [-136, -102, -54, -68]
                                   }, {
                                       "domain":    "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
                                       "mode":    "CALIB_AWB_EXCLUDE_WP_MODE",
                                       "region":    [0, 0, 0, 0]
                                   }],
                               "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, 0.2, 0.7, 1, 1, 1, 0.7, 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.969696, 1, 1, 2.35737],
                                       "uvRegion":    {
                                           "u":    [124, 53.5, 53.5, 124],
                                           "v":    [129, 154.5, 119.5, 127.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.18389, -0.737222, 0.0668273, -0.0324582],
                                           "big":    [-1.18241, -0.736481, 0.102811, -0.073253]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 141.5, 113.562, 183.562, 90, 114.688],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45821, 1, 1, 2.06775],
                                       "defaultDayGainHigh":    [1.55986, 1, 1, 1.78524],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "CWF",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.45821, 1, 1, 2.06775],
                                       "uvRegion":    {
                                           "u":    [56.5, 68, 125, 124],
                                           "v":    [102, 71, 125, 127]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.735165, -0.427675, -0.0561178, -0.114378],
                                           "big":    [-0.73714, -0.427016, -0.056689, -0.132655]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 138.562, 114.875, 189.312, 115.75, 105.75],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45821, 1, 1, 2.06775],
                                       "defaultDayGainHigh":    [1.55986, 1, 1, 1.78524],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D50",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
                                       "standardGainValue":    [1.65986, 1, 1, 1.58524],
                                       "uvRegion":    {
                                           "u":    [65.5, 98, 126, 125],
                                           "v":    [75, 53, 123.5, 125]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.427428, -0.0146296, 0.0463008, -0.12905],
                                           "big":    [-0.428457, -0.0145885, 0.0959929, -0.165033]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 135.125, 113.75, 191, 134.188, 111.875],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45821, 1, 1, 2.06775],
                                       "defaultDayGainHigh":    [1.55986, 1, 1, 1.78524],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D65",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.65756, 1, 1, 1.40459],
                                       "uvRegion":    {
                                           "u":    [87.5, 106, 127, 126],
                                           "v":    [60, 48.5, 122.5, 124]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.0142593, 0.0894445, 0.117269, -0.0691834],
                                           "big":    [-0.0152469, 0.0900694, 0.132299, -0.108487]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 136.25, 114.125, 191, 135.375, 114.188],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45821, 1, 1, 2.06775],
                                       "defaultDayGainHigh":    [1.55986, 1, 1, 1.78524],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "D75",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_OUTDOOR",
                                       "standardGainValue":    [1.77918, 1, 1, 1.29324],
                                       "uvRegion":    {
                                           "u":    [128.5, 127, 99.5, 119],
                                           "v":    [120, 123, 52, 41.5]
                                       },
                                       "xyRegion":    {
                                           "normal":    [0.088786, 0.379815, 0.0354485, -0.0666131],
                                           "big":    [0.088786, 0.379156, 0.0594378, -0.0804998]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 135.25, 114, 190.875, 142.062, 115.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.45821, 1, 1, 2.06775],
                                       "defaultDayGainHigh":    [1.55986, 1, 1, 1.78524],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "HZ",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [0.801215, 1, 1, 2.798],
                                       "uvRegion":    {
                                           "u":    [123.5, 60, 53.5, 124],
                                           "v":    [132, 178, 155, 129]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-1.72167, -1.18093, 0.00899598, -0.0861044],
                                           "big":    [-1.72019, -1.18241, 0.0668273, -0.14008]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 144.125, 113, 177.375, 75.4375, 118.188],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45821, 1, 1, 2.06775],
                                       "defaultDayGainHigh":    [1.55986, 1, 1, 1.78524],
                                       "xyType2Enable":    1
                                   }, {
                                       "name":    "TL84",
                                       "doorType":    "CALIB_AWB_DOOR_TYPE_INDOOR",
                                       "standardGainValue":    [1.35293, 1, 1, 2.14173],
                                       "uvRegion":    {
                                           "u":    [124, 53.5, 65, 124.5],
                                           "v":    [127.5, 119.5, 77.5, 126]
                                       },
                                       "xyRegion":    {
                                           "normal":    [-0.736646, -0.426358, 0.071004, -0.0555466],
                                           "big":    [-0.737798, -0.425864, 0.0944221, -0.0561178]
                                       },
                                       "rtYuvRegion":    {
                                           "thcurve_u":    [50, 54, 70, 78, 110, 142],
                                           "thcure_th":    [2, 2.5, 3, 3.5, 4, 4],
                                           "lineVector":    [10, 138.938, 114.75, 188.75, 111.438, 106.25],
                                           "disP1P2":    15
                                       },
                                       "staWeight":    [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
                                       "dayGainLvThSet":    [1024, 8192],
                                       "defaultDayGainLow":    [1.45821, 1, 1, 2.06775],
                                       "defaultDayGainHigh":    [1.55986, 1, 1, 1.78524],
                                       "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, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 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, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 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, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 2000, 3000, 4000, 5000, 5500, 6500, 7500, 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":    [120],
                                       "low_len":    1,
                                       "high":    [240],
                                       "high_len":    1
                                   }
                               },
                               "defaultNightGain":    [0.969696, 1, 1, 2.35737],
                               "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.0025,
                                   "wpNumPercTh2":    0.2
                               },
                               "converged":    {
                                   "varThforUnDamp":    0.005,
                                   "varThforDamp":    0.005
                               },
                               "xyRegionStableSelection":    {
                                   "enable":    1,
                                   "wpNumTh":    {
                                       "lumaValue":    [0],
                                       "lumaValue_len":    1,
                                       "forBigType":    [240],
                                       "forBigType_len":    1,
                                       "forExtraType":    [240],
                                       "forExtraType_len":    1
                                   },
                                   "xyTypeListSize":    50,
                                   "varianceLumaTh":    0.06
                               },
                               "weightForNightGainCalc":    [25, 25, 25, 25],
                               "weightForNightGainCalc_len":    4,
                               "singleColorProces":    {
                                   "enable":    1,
                                   "colorBlock":    [{
                                           "index":    15,
                                           "meanC":    23.8428,
                                           "meanH":    30.3943
                                       }, {
                                           "index":    13,
                                           "meanC":    23.0836,
                                           "meanH":    -76.1131
                                       }, {
                                           "index":    5,
                                           "meanC":    12.1095,
                                           "meanH":    -66.6608
                                       }, {
                                           "index":    10,
                                           "meanC":    12.5065,
                                           "meanH":    -40.8763
                                       }, {
                                           "index":    14,
                                           "meanC":    18.626,
                                           "meanH":    144.807
                                       }, {
                                           "index":    16,
                                           "meanC":    28.0707,
                                           "meanH":    90.6748
                                       }],
                                   "colorBlock_len":    6,
                                   "lsUsedForEstimation":    [{
                                           "name":    "A",
                                           "RGain":    0.969696,
                                           "BGain":    2.35737
                                       }, {
                                           "name":    "TL84",
                                           "RGain":    1.65986,
                                           "BGain":    1.58524
                                       }, {
                                           "name":    "D50",
                                           "RGain":    1.35293,
                                           "BGain":    2.14173
                                       }],
                                   "lsUsedForEstimation_len":    3,
                                   "alpha":    0.9
                               },
                               "lineRgBg":    [-0.8395, -0.5434, -2.741],
                               "lineRgProjCCT":    [1, -0.0003, 0.4559],
                               "chrAdpttAdj":    {
                                   "enable":    0,
                                   "targetGain":    [1.6184, 1, 1, 1.5192],
                                   "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, 6, 11, 17, 22, 28, 33, 39, 44, 55, 66, 77, 88, 109, 130, 150, 170, 210, 248, 286, 323, 393, 460, 525, 586, 702, 809, 909, 1002, 1172, 1325, 1462, 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":    [255.75, 258.75, 257.562, 259.125, 258.188, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "R_Channel_len":    13,
                                   "Gr_Channel":    [257.125, 258.688, 258.188, 262.562, 265.062, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gr_Channel_len":    13,
                                   "Gb_Channel":    [255.75, 258.812, 255.375, 255.188, 251.125, 256, 256, 256, 256, 256, 256, 256, 256],
                                   "Gb_Channel_len":    13,
                                   "B_Channel":    [257.062, 258.688, 258.125, 262.375, 264.812, 256, 256, 256, 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":    0,
                                   "Single_enable":    0,
                                   "Double_enable":    0,
                                   "Triple_enable":    0,
                                   "Fast_Data":    {
                                       "ISO":    [50, 100, 200, 400, 800, 1600, 3200, 6400, 12800, 25600, 51200, 102400, 204800],
                                       "ISO_len":    13,
                                       "Single_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Single_level_len":    13,
                                       "Double_level":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "Double_level_len":    13,
                                       "Triple_level":    [0, 0, 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, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
                                       "fix_set":    [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set1":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                       "set2":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                       "set3":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                   },
                                   "set1":    {
                                       "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":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_line_thr":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_line_mad_fac":    [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
                                           "g_line_mad_fac":    [4, 4, 4, 4, 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":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
                                           "g_pg_fac":    [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                                           "g_rnd_thr":    [10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10],
                                           "rb_rnd_offs":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_offs":    [2, 2, 2, 2, 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, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
                                           "g_rg_fac":    [32, 32, 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":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_ro_lim":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       }
                                   },
                                   "set2":    {
                                       "RK":    {
                                           "RK_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_sw_mindis":    [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "g_sw_mindis":    [20, 20, 12, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "sw_dis_scale_min":    [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "sw_dis_scale_max":    [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "LC":    {
                                           "LC_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_line_thr":    [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "g_line_thr":    [20, 20, 12, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_mad_fac":    [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_line_mad_fac":    [10, 10, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "PG":    {
                                           "PG_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_pg_fac":    [5, 5, 5, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_pg_fac":    [4, 4, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "RND":    {
                                           "RND_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rnd_thr":    [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rnd_thr":    [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
                                           "rb_rnd_offs":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "g_rnd_offs":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
                                       },
                                       "RG":    {
                                           "RG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rg_fac":    [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8],
                                           "g_rg_fac":    [0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0],
                                           "rb_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3],
                                           "g_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3]
                                       }
                                   },
                                   "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":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_line_thr":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_line_thr":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_line_mad_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_line_mad_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "PG":    {
                                           "PG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_pg_fac":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "g_pg_fac":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
                                       },
                                       "RND":    {
                                           "RND_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_rnd_thr":    [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_thr":    [4, 4, 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "rb_rnd_offs":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rnd_offs":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "RG":    {
                                           "RG_enable":    [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
                                           "rb_rg_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
                                           "g_rg_fac":    [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
                                       },
                                       "RO":    {
                                           "RO_enable":    [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
                                           "rb_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1],
                                           "g_ro_lim":    [2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 1]
                                       }
                                   }
                               },
                               "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":    "2592x1944",
                                       "lsc_sect_size_x":    [162, 162, 162, 162, 162, 162, 162, 162],
                                       "lsc_sect_size_y":    [121, 122, 121, 122, 121, 122, 121, 122]
                                   }],
                               "resolutionAll_len":    1
                           },
                           "alscCoef":    {
                               "damp_enable":    1,
                               "illAll":    [{
                                       "usedForCase":    0,
                                       "name":    "A",
                                       "wbGain":    [0.9429, 2.4027],
                                       "tableUsed":    [{
                                               "name":    "A_100"
                                           }, {
                                               "name":    "A_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "CWF",
                                       "wbGain":    [1.3959, 2.0973],
                                       "tableUsed":    [{
                                               "name":    "CWF_100"
                                           }, {
                                               "name":    "CWF_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D50",
                                       "wbGain":    [1.7358, 1.5282],
                                       "tableUsed":    [{
                                               "name":    "D50_100"
                                           }, {
                                               "name":    "D50_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D65",
                                       "wbGain":    [1.5843, 1.4297],
                                       "tableUsed":    [{
                                               "name":    "D65_100"
                                           }, {
                                               "name":    "D65_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "D75",
                                       "wbGain":    [1.7166, 1.3201],
                                       "tableUsed":    [{
                                               "name":    "D75_100"
                                           }, {
                                               "name":    "D75_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "HZ",
                                       "wbGain":    [0.7802, 2.8084],
                                       "tableUsed":    [{
                                               "name":    "HZ_100"
                                           }, {
                                               "name":    "HZ_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [100, 100, 90, 70],
                                       "vig_len":    4
                                   }, {
                                       "usedForCase":    0,
                                       "name":    "TL84",
                                       "wbGain":    [1.3118, 2.1479],
                                       "tableUsed":    [{
                                               "name":    "TL84_100"
                                           }, {
                                               "name":    "TL84_70"
                                           }],
                                       "tableUsed_len":    2,
                                       "gains":    [1, 2, 4, 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, 2, 4, 8],
                                       "gains_len":    4,
                                       "vig":    [0, 0, 0, 0],
                                       "vig_len":    4
                                   }],
                               "illAll_len":    8
                           },
                           "tbl":    {
                               "tableAll":    [{
                                       "name":    "2592x1944_A_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "A",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2989, 2983, 2663, 2373, 2255, 2085, 1992, 1936, 1872, 1916, 1988, 2034, 2132, 2239, 2524, 2842, 3019, 3157, 2731, 2393, 2205, 2033, 1899, 1795, 1752, 1700, 1727, 1786, 1884, 2035, 2129, 2344, 2585, 2948, 3089, 2542, 2297, 2075, 1931, 1814, 1704, 1605, 1571, 1608, 1637, 1763, 1865, 2023, 2187, 2464, 2817, 2888, 2444, 2163, 1958, 1808, 1670, 1534, 1440, 1403, 1437, 1495, 1640, 1731, 1884, 2087, 2308, 2617, 2699, 2304, 2057, 1886, 1718, 1538, 1396, 1306, 1271, 1281, 1363, 1486, 1635, 1809, 2000, 2209, 2503, 2630, 2213, 1964, 1810, 1638, 1438, 1297, 1187, 1165, 1189, 1254, 1371, 1554, 1729, 1974, 2133, 2471, 2603, 2177, 1959, 1741, 1555, 1371, 1204, 1132, 1102, 1098, 1181, 1273, 1481, 1693, 1895, 2069, 2304, 2540, 2120, 1934, 1717, 1488, 1307, 1165, 1083, 1050, 1054, 1135, 1240, 1434, 1648, 1835, 2041, 2341, 2531, 2111, 1899, 1701, 1480, 1285, 1145, 1063, 1029, 1024, 1114, 1207, 1402, 1653, 1808, 2043, 2312, 2484, 2120, 1941, 1715, 1486, 1297, 1150, 1060, 1026, 1046, 1123, 1244, 1418, 1622, 1831, 2044, 2305, 2573, 2125, 1958, 1755, 1537, 1340, 1190, 1127, 1073, 1100, 1158, 1272, 1451, 1674, 1852, 2054, 2362, 2624, 2223, 1985, 1801, 1607, 1413, 1261, 1176, 1150, 1159, 1204, 1335, 1521, 1730, 1913, 2072, 2319, 2732, 2258, 2017, 1859, 1691, 1514, 1367, 1255, 1227, 1257, 1328, 1454, 1630, 1780, 1993, 2141, 2451, 2794, 2394, 2121, 1961, 1775, 1638, 1479, 1402, 1358, 1396, 1451, 1577, 1714, 1904, 2060, 2278, 2565, 2973, 2523, 2217, 2008, 1873, 1750, 1629, 1575, 1503, 1533, 1633, 1692, 1856, 2011, 2121, 2400, 2737, 3010, 2645, 2395, 2173, 1969, 1881, 1791, 1734, 1702, 1720, 1755, 1861, 1941, 2114, 2275, 2517, 2917, 2909, 2853, 2513, 2338, 2093, 2060, 1996, 1877, 1859, 1887, 1909, 2034, 2091, 2226, 2408, 2745, 2988]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2562, 2520, 2219, 2055, 1860, 1815, 1749, 1701, 1700, 1685, 1731, 1826, 1836, 1967, 2132, 2385, 2624, 2564, 2349, 2047, 1837, 1739, 1661, 1586, 1553, 1527, 1563, 1564, 1607, 1700, 1793, 1908, 2156, 2454, 2532, 2152, 1889, 1768, 1616, 1575, 1489, 1426, 1427, 1436, 1470, 1550, 1608, 1685, 1822, 2000, 2340, 2347, 2020, 1796, 1678, 1584, 1462, 1388, 1349, 1313, 1314, 1368, 1435, 1526, 1626, 1713, 1926, 2146, 2247, 1934, 1747, 1607, 1508, 1379, 1308, 1239, 1214, 1222, 1284, 1332, 1475, 1564, 1658, 1813, 2033, 2140, 1853, 1697, 1568, 1444, 1310, 1220, 1164, 1132, 1142, 1195, 1288, 1395, 1515, 1647, 1781, 1937, 2121, 1815, 1638, 1516, 1381, 1275, 1180, 1104, 1071, 1090, 1143, 1219, 1342, 1493, 1599, 1734, 1905, 2026, 1772, 1628, 1520, 1363, 1226, 1128, 1080, 1052, 1061, 1099, 1191, 1300, 1432, 1575, 1701, 1874, 2044, 1773, 1626, 1486, 1351, 1220, 1123, 1064, 1024, 1043, 1093, 1178, 1298, 1416, 1549, 1707, 1835, 2018, 1749, 1625, 1484, 1347, 1232, 1109, 1073, 1036, 1061, 1097, 1185, 1306, 1440, 1575, 1694, 1882, 2029, 1788, 1652, 1521, 1375, 1272, 1146, 1100, 1061, 1084, 1135, 1210, 1314, 1458, 1603, 1701, 1909, 2129, 1833, 1670, 1579, 1415, 1317, 1224, 1143, 1107, 1132, 1170, 1282, 1378, 1524, 1636, 1770, 1928, 2225, 1878, 1741, 1602, 1505, 1390, 1291, 1209, 1171, 1198, 1267, 1342, 1461, 1573, 1662, 1833, 2055, 2385, 1980, 1760, 1642, 1553, 1448, 1381, 1295, 1287, 1297, 1351, 1428, 1537, 1638, 1763, 1918, 2155, 2484, 2090, 1856, 1722, 1635, 1551, 1479, 1428, 1397, 1417, 1448, 1519, 1625, 1715, 1826, 1988, 2271, 2564, 2248, 1972, 1820, 1714, 1632, 1577, 1555, 1541, 1530, 1569, 1618, 1687, 1781, 1931, 2124, 2409, 2479, 2428, 2097, 1973, 1806, 1734, 1654, 1643, 1660, 1611, 1636, 1720, 1772, 1874, 2028, 2299, 2544]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2591, 2574, 2306, 2073, 1869, 1741, 1689, 1682, 1653, 1672, 1720, 1775, 1857, 1983, 2140, 2419, 2606, 2656, 2362, 2052, 1853, 1728, 1650, 1584, 1551, 1526, 1531, 1599, 1643, 1700, 1813, 1976, 2210, 2484, 2524, 2157, 1935, 1761, 1646, 1583, 1490, 1430, 1416, 1408, 1492, 1556, 1623, 1742, 1864, 2064, 2309, 2423, 2083, 1852, 1694, 1580, 1502, 1383, 1321, 1307, 1321, 1390, 1478, 1558, 1659, 1745, 1969, 2225, 2354, 1965, 1762, 1639, 1526, 1412, 1305, 1230, 1211, 1219, 1279, 1381, 1480, 1598, 1733, 1884, 2104, 2187, 1897, 1711, 1608, 1465, 1327, 1205, 1159, 1135, 1155, 1212, 1332, 1422, 1562, 1679, 1837, 2044, 2132, 1832, 1666, 1550, 1413, 1287, 1166, 1111, 1083, 1101, 1142, 1252, 1355, 1534, 1632, 1787, 1979, 2095, 1847, 1654, 1534, 1402, 1254, 1122, 1070, 1049, 1060, 1105, 1186, 1323, 1488, 1621, 1777, 1938, 2077, 1836, 1644, 1518, 1351, 1212, 1115, 1053, 1024, 1026, 1085, 1183, 1311, 1468, 1616, 1747, 1908, 2077, 1803, 1661, 1532, 1354, 1233, 1108, 1060, 1025, 1056, 1088, 1188, 1329, 1460, 1627, 1763, 1935, 2099, 1782, 1660, 1535, 1385, 1259, 1146, 1084, 1052, 1080, 1130, 1217, 1355, 1483, 1632, 1778, 1937, 2108, 1874, 1691, 1574, 1403, 1318, 1193, 1124, 1114, 1119, 1165, 1279, 1400, 1566, 1657, 1811, 1997, 2226, 1894, 1718, 1607, 1483, 1347, 1247, 1205, 1173, 1194, 1253, 1354, 1448, 1569, 1692, 1872, 2056, 2312, 1969, 1800, 1656, 1563, 1438, 1366, 1272, 1256, 1275, 1346, 1422, 1526, 1647, 1756, 1928, 2177, 2445, 2089, 1880, 1731, 1613, 1537, 1437, 1403, 1343, 1367, 1436, 1511, 1588, 1693, 1817, 2002, 2266, 2583, 2242, 1959, 1782, 1677, 1590, 1535, 1480, 1476, 1480, 1531, 1587, 1678, 1760, 1902, 2091, 2351, 2539, 2384, 2097, 1910, 1783, 1680, 1621, 1585, 1568, 1565, 1619, 1677, 1746, 1843, 2079, 2235, 2489]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2539, 2513, 2185, 1936, 1815, 1751, 1636, 1609, 1612, 1618, 1654, 1664, 1759, 1858, 2050, 2331, 2540, 2626, 2265, 1953, 1794, 1688, 1630, 1528, 1500, 1489, 1517, 1529, 1578, 1639, 1747, 1881, 2111, 2395, 2437, 2108, 1836, 1685, 1603, 1549, 1469, 1432, 1402, 1407, 1417, 1501, 1609, 1650, 1788, 1981, 2234, 2321, 1940, 1759, 1618, 1574, 1444, 1391, 1370, 1333, 1341, 1393, 1459, 1517, 1561, 1752, 1892, 2066, 2255, 1847, 1693, 1586, 1495, 1399, 1287, 1264, 1263, 1257, 1300, 1401, 1473, 1548, 1684, 1790, 1976, 2091, 1789, 1640, 1554, 1434, 1355, 1260, 1200, 1158, 1185, 1246, 1305, 1414, 1498, 1632, 1717, 1905, 2056, 1811, 1626, 1476, 1409, 1280, 1186, 1139, 1097, 1123, 1194, 1249, 1356, 1471, 1580, 1705, 1897, 2031, 1727, 1616, 1457, 1367, 1255, 1145, 1097, 1045, 1068, 1120, 1218, 1315, 1438, 1566, 1671, 1813, 2047, 1705, 1594, 1471, 1362, 1250, 1140, 1096, 1045, 1024, 1117, 1214, 1307, 1390, 1548, 1669, 1777, 1955, 1729, 1601, 1463, 1365, 1222, 1151, 1079, 1046, 1059, 1113, 1219, 1319, 1413, 1526, 1644, 1754, 2031, 1720, 1619, 1472, 1391, 1257, 1157, 1099, 1060, 1086, 1134, 1233, 1314, 1397, 1561, 1660, 1874, 2038, 1800, 1631, 1497, 1421, 1302, 1226, 1151, 1129, 1118, 1165, 1286, 1369, 1467, 1561, 1700, 1802, 2108, 1822, 1640, 1541, 1451, 1359, 1262, 1193, 1179, 1197, 1244, 1306, 1396, 1485, 1584, 1722, 1917, 2234, 1916, 1728, 1602, 1505, 1384, 1330, 1290, 1266, 1275, 1334, 1399, 1449, 1553, 1655, 1766, 2003, 2358, 2016, 1793, 1637, 1568, 1472, 1406, 1359, 1364, 1368, 1410, 1478, 1505, 1602, 1699, 1888, 2137, 2492, 2138, 1897, 1720, 1574, 1559, 1480, 1446, 1450, 1450, 1493, 1540, 1570, 1699, 1793, 2020, 2316, 2456, 2287, 2020, 1831, 1720, 1618, 1571, 1557, 1514, 1561, 1564, 1608, 1671, 1797, 1948, 2140, 2350]
                                       }
                                   }, {
                                       "name":    "2592x1944_A_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "A",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3831, 3648, 3116, 2680, 2489, 2256, 2130, 2055, 1980, 2032, 2125, 2197, 2342, 2515, 2938, 3458, 3874, 3955, 3239, 2720, 2432, 2190, 2012, 1880, 1824, 1764, 1797, 1870, 1995, 2193, 2341, 2659, 3050, 3668, 3782, 2943, 2561, 2246, 2047, 1894, 1761, 1647, 1609, 1650, 1688, 1838, 1973, 2186, 2428, 2844, 3418, 3456, 2780, 2370, 2087, 1890, 1721, 1565, 1461, 1421, 1458, 1524, 1689, 1805, 2003, 2280, 2611, 3102, 3170, 2579, 2224, 1989, 1778, 1569, 1412, 1315, 1278, 1290, 1378, 1514, 1688, 1903, 2158, 2463, 2919, 3052, 2449, 2101, 1892, 1682, 1458, 1305, 1190, 1167, 1192, 1261, 1387, 1592, 1803, 2113, 2353, 2851, 2998, 2392, 2086, 1809, 1588, 1384, 1208, 1133, 1103, 1099, 1184, 1282, 1509, 1756, 2013, 2264, 2625, 2908, 2317, 2051, 1778, 1514, 1316, 1167, 1083, 1050, 1054, 1137, 1247, 1457, 1703, 1940, 2224, 2661, 2893, 2304, 2010, 1759, 1505, 1293, 1147, 1063, 1029, 1024, 1115, 1212, 1422, 1707, 1907, 2224, 2622, 2839, 2317, 2059, 1776, 1512, 1306, 1152, 1060, 1026, 1046, 1125, 1251, 1440, 1675, 1935, 2228, 2616, 2961, 2331, 2084, 1824, 1569, 1352, 1193, 1128, 1073, 1101, 1161, 1281, 1477, 1735, 1964, 2246, 2697, 3045, 2461, 2125, 1882, 1649, 1431, 1268, 1179, 1152, 1162, 1209, 1350, 1557, 1804, 2043, 2280, 2660, 3212, 2523, 2178, 1959, 1748, 1544, 1382, 1263, 1233, 1265, 1341, 1480, 1682, 1870, 2150, 2381, 2852, 3333, 2718, 2321, 2091, 1853, 1687, 1507, 1421, 1374, 1415, 1477, 1621, 1786, 2026, 2248, 2574, 3035, 3627, 2919, 2465, 2168, 1981, 1824, 1679, 1615, 1536, 1570, 1684, 1760, 1962, 2171, 2348, 2763, 3311, 3753, 3128, 2722, 2394, 2116, 1992, 1876, 1804, 1767, 1789, 1836, 1969, 2084, 2324, 2573, 2962, 3626, 3717, 3473, 2924, 2637, 2296, 2227, 2134, 1988, 1965, 2000, 2035, 2197, 2293, 2499, 2791, 3329, 3830]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3221, 3028, 2549, 2290, 2019, 1943, 1852, 1789, 1786, 1771, 1832, 1956, 1990, 2182, 2438, 2846, 3309, 3141, 2743, 2291, 1993, 1851, 1743, 1648, 1605, 1575, 1616, 1623, 1682, 1805, 1941, 2119, 2493, 2989, 3038, 2450, 2069, 1889, 1692, 1631, 1528, 1455, 1455, 1466, 1507, 1603, 1683, 1793, 1987, 2257, 2781, 2750, 2255, 1937, 1769, 1643, 1497, 1410, 1366, 1327, 1329, 1389, 1467, 1579, 1709, 1838, 2139, 2488, 2591, 2129, 1864, 1676, 1550, 1401, 1320, 1246, 1220, 1229, 1295, 1351, 1514, 1628, 1761, 1983, 2316, 2433, 2017, 1795, 1625, 1474, 1324, 1226, 1167, 1134, 1144, 1200, 1300, 1422, 1566, 1738, 1931, 2177, 2396, 1963, 1721, 1562, 1403, 1284, 1183, 1105, 1071, 1091, 1145, 1226, 1362, 1537, 1677, 1867, 2125, 2269, 1907, 1706, 1564, 1382, 1232, 1130, 1080, 1052, 1061, 1100, 1196, 1315, 1468, 1646, 1823, 2080, 2289, 1906, 1702, 1526, 1369, 1226, 1124, 1064, 1024, 1043, 1094, 1183, 1313, 1450, 1616, 1828, 2030, 2260, 1880, 1702, 1524, 1365, 1239, 1110, 1073, 1036, 1061, 1098, 1190, 1322, 1477, 1646, 1815, 2090, 2281, 1931, 1737, 1568, 1397, 1281, 1149, 1101, 1061, 1085, 1137, 1217, 1332, 1499, 1681, 1828, 2131, 2419, 1994, 1765, 1637, 1443, 1331, 1230, 1145, 1108, 1134, 1174, 1294, 1403, 1576, 1726, 1918, 2166, 2563, 2062, 1857, 1671, 1546, 1412, 1303, 1215, 1175, 1204, 1278, 1361, 1499, 1638, 1765, 2007, 2345, 2800, 2206, 1894, 1728, 1608, 1481, 1403, 1309, 1299, 1311, 1371, 1460, 1591, 1723, 1897, 2129, 2500, 2973, 2371, 2029, 1835, 1713, 1605, 1517, 1457, 1423, 1445, 1483, 1569, 1702, 1827, 1992, 2242, 2689, 3141, 2612, 2198, 1973, 1822, 1710, 1638, 1608, 1590, 1580, 1629, 1695, 1790, 1926, 2147, 2452, 2928, 3103, 2904, 2394, 2189, 1955, 1849, 1743, 1724, 1741, 1688, 1723, 1832, 1914, 2068, 2305, 2732, 3196]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3262, 3100, 2660, 2312, 2029, 1857, 1783, 1768, 1733, 1757, 1819, 1897, 2015, 2201, 2448, 2892, 3284, 3267, 2760, 2297, 2012, 1838, 1731, 1646, 1603, 1574, 1581, 1662, 1723, 1805, 1965, 2203, 2563, 3030, 3027, 2456, 2124, 1881, 1726, 1640, 1529, 1460, 1443, 1436, 1531, 1610, 1699, 1859, 2038, 2338, 2740, 2849, 2333, 2003, 1787, 1638, 1540, 1405, 1336, 1320, 1336, 1412, 1514, 1614, 1747, 1876, 2193, 2591, 2728, 2167, 1881, 1712, 1569, 1436, 1317, 1237, 1217, 1225, 1290, 1403, 1519, 1667, 1848, 2069, 2407, 2493, 2070, 1812, 1669, 1497, 1341, 1210, 1162, 1137, 1158, 1218, 1347, 1451, 1618, 1775, 1998, 2312, 2409, 1983, 1753, 1600, 1437, 1297, 1169, 1112, 1083, 1102, 1144, 1261, 1376, 1582, 1714, 1929, 2218, 2355, 1995, 1735, 1579, 1423, 1261, 1123, 1070, 1049, 1060, 1106, 1191, 1340, 1529, 1698, 1912, 2160, 2330, 1980, 1723, 1560, 1369, 1218, 1116, 1053, 1024, 1026, 1086, 1188, 1326, 1506, 1691, 1875, 2121, 2333, 1943, 1743, 1577, 1372, 1240, 1109, 1060, 1025, 1056, 1089, 1193, 1346, 1498, 1705, 1896, 2156, 2368, 1924, 1746, 1583, 1407, 1268, 1149, 1085, 1052, 1081, 1132, 1224, 1375, 1526, 1714, 1919, 2166, 2393, 2043, 1788, 1631, 1430, 1332, 1198, 1126, 1115, 1121, 1169, 1291, 1427, 1623, 1750, 1967, 2253, 2564, 2081, 1830, 1676, 1522, 1367, 1257, 1211, 1177, 1200, 1263, 1374, 1485, 1634, 1800, 2054, 2346, 2704, 2193, 1941, 1744, 1619, 1471, 1387, 1285, 1267, 1288, 1366, 1454, 1579, 1733, 1889, 2142, 2529, 2921, 2370, 2058, 1846, 1688, 1589, 1471, 1430, 1365, 1392, 1470, 1561, 1660, 1802, 1981, 2260, 2682, 3166, 2605, 2182, 1928, 1779, 1663, 1591, 1525, 1519, 1525, 1587, 1660, 1780, 1902, 2112, 2408, 2847, 3188, 2845, 2393, 2111, 1927, 1786, 1706, 1658, 1637, 1636, 1704, 1783, 1883, 2029, 2371, 2646, 3117]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3188, 3018, 2506, 2143, 1965, 1869, 1723, 1685, 1687, 1696, 1743, 1768, 1899, 2048, 2334, 2774, 3190, 3225, 2634, 2175, 1942, 1792, 1708, 1584, 1547, 1533, 1566, 1585, 1650, 1735, 1886, 2085, 2434, 2908, 2911, 2394, 2005, 1793, 1677, 1602, 1506, 1462, 1428, 1435, 1450, 1550, 1684, 1752, 1947, 2234, 2640, 2716, 2156, 1893, 1700, 1631, 1477, 1414, 1388, 1348, 1357, 1416, 1493, 1569, 1635, 1884, 2097, 2384, 2601, 2024, 1801, 1653, 1536, 1422, 1298, 1272, 1270, 1265, 1312, 1424, 1512, 1610, 1791, 1954, 2243, 2372, 1941, 1730, 1609, 1464, 1371, 1267, 1204, 1160, 1188, 1253, 1318, 1442, 1548, 1721, 1854, 2137, 2314, 1958, 1707, 1519, 1433, 1290, 1189, 1140, 1098, 1124, 1198, 1257, 1377, 1513, 1655, 1832, 2115, 2276, 1853, 1692, 1495, 1386, 1262, 1147, 1097, 1045, 1068, 1121, 1224, 1331, 1475, 1636, 1788, 2005, 2293, 1826, 1666, 1510, 1380, 1257, 1142, 1096, 1045, 1024, 1118, 1220, 1322, 1422, 1615, 1784, 1958, 2181, 1856, 1675, 1502, 1384, 1228, 1153, 1079, 1046, 1059, 1114, 1225, 1336, 1447, 1591, 1756, 1932, 2283, 1850, 1700, 1514, 1414, 1266, 1160, 1100, 1060, 1087, 1136, 1241, 1332, 1432, 1634, 1779, 2087, 2305, 1954, 1720, 1547, 1450, 1315, 1232, 1154, 1131, 1120, 1169, 1298, 1394, 1513, 1640, 1834, 2006, 2413, 1993, 1740, 1603, 1488, 1379, 1272, 1199, 1184, 1203, 1254, 1323, 1428, 1540, 1674, 1872, 2168, 2603, 2127, 1856, 1682, 1555, 1413, 1349, 1303, 1277, 1288, 1353, 1429, 1493, 1626, 1770, 1941, 2302, 2806, 2278, 1952, 1737, 1637, 1518, 1438, 1383, 1388, 1393, 1442, 1524, 1567, 1696, 1839, 2116, 2510, 3041, 2469, 2105, 1854, 1660, 1628, 1530, 1488, 1491, 1492, 1545, 1607, 1655, 1829, 1976, 2317, 2799, 3069, 2716, 2295, 2015, 1852, 1714, 1649, 1627, 1576, 1631, 1641, 1703, 1794, 1973, 2203, 2519, 2918]
                                       }
                                   }, {
                                       "name":    "2592x1944_CWF_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "CWF",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2593, 2570, 2266, 2061, 1862, 1852, 1727, 1653, 1607, 1653, 1715, 1767, 1815, 1963, 2165, 2423, 2694, 2689, 2380, 2106, 1849, 1763, 1652, 1585, 1548, 1506, 1508, 1555, 1634, 1712, 1816, 1952, 2164, 2544, 2615, 2124, 1916, 1776, 1644, 1556, 1502, 1444, 1436, 1417, 1488, 1531, 1617, 1720, 1852, 2028, 2381, 2463, 2035, 1841, 1679, 1586, 1494, 1411, 1342, 1325, 1349, 1383, 1448, 1541, 1626, 1760, 1904, 2239, 2402, 1936, 1747, 1624, 1510, 1409, 1333, 1264, 1236, 1249, 1289, 1359, 1466, 1573, 1706, 1850, 2135, 2235, 1875, 1703, 1590, 1448, 1362, 1235, 1171, 1148, 1151, 1206, 1301, 1405, 1521, 1647, 1803, 2022, 2228, 1837, 1655, 1531, 1409, 1279, 1184, 1123, 1073, 1097, 1157, 1239, 1382, 1493, 1608, 1785, 1957, 2153, 1826, 1640, 1507, 1370, 1263, 1133, 1064, 1055, 1061, 1116, 1177, 1333, 1453, 1588, 1748, 1928, 2099, 1803, 1635, 1499, 1388, 1245, 1125, 1058, 1024, 1036, 1095, 1201, 1323, 1457, 1579, 1743, 1998, 2150, 1798, 1641, 1502, 1394, 1245, 1123, 1066, 1029, 1047, 1097, 1181, 1322, 1443, 1577, 1759, 1912, 2185, 1815, 1660, 1516, 1401, 1268, 1168, 1093, 1061, 1076, 1135, 1233, 1362, 1474, 1620, 1756, 1928, 2196, 1875, 1694, 1561, 1462, 1330, 1215, 1158, 1116, 1157, 1176, 1289, 1428, 1500, 1658, 1799, 2027, 2257, 1869, 1753, 1603, 1498, 1392, 1289, 1219, 1177, 1200, 1285, 1372, 1464, 1581, 1710, 1847, 2083, 2401, 2001, 1791, 1668, 1550, 1457, 1401, 1329, 1286, 1315, 1364, 1444, 1512, 1665, 1740, 1903, 2151, 2496, 2148, 1886, 1732, 1633, 1549, 1470, 1422, 1408, 1408, 1457, 1503, 1607, 1712, 1826, 1984, 2356, 2573, 2241, 1977, 1825, 1707, 1617, 1545, 1524, 1493, 1524, 1555, 1627, 1708, 1797, 1948, 2125, 2487, 2612, 2401, 2151, 1976, 1816, 1715, 1655, 1642, 1640, 1634, 1647, 1728, 1846, 1872, 2092, 2302, 2589]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2411, 2448, 2180, 1912, 1797, 1721, 1608, 1592, 1585, 1619, 1648, 1720, 1796, 1871, 2024, 2311, 2514, 2476, 2186, 1902, 1762, 1623, 1568, 1497, 1456, 1460, 1458, 1502, 1529, 1626, 1712, 1870, 2047, 2312, 2352, 1987, 1806, 1680, 1556, 1474, 1411, 1374, 1367, 1393, 1423, 1473, 1532, 1630, 1784, 1904, 2183, 2266, 1901, 1725, 1594, 1495, 1415, 1348, 1306, 1298, 1302, 1339, 1389, 1456, 1562, 1670, 1827, 2062, 2117, 1843, 1639, 1533, 1426, 1356, 1296, 1249, 1213, 1249, 1280, 1327, 1405, 1479, 1602, 1750, 1961, 2040, 1763, 1615, 1481, 1395, 1309, 1220, 1163, 1139, 1152, 1212, 1284, 1352, 1442, 1554, 1717, 1901, 1952, 1760, 1566, 1446, 1356, 1268, 1174, 1110, 1069, 1108, 1145, 1215, 1314, 1411, 1536, 1667, 1858, 1933, 1719, 1550, 1441, 1330, 1228, 1136, 1076, 1048, 1066, 1102, 1195, 1292, 1381, 1493, 1645, 1818, 1939, 1688, 1525, 1417, 1313, 1220, 1114, 1042, 1024, 1038, 1096, 1193, 1294, 1371, 1494, 1623, 1816, 1946, 1699, 1550, 1421, 1322, 1238, 1121, 1060, 1031, 1049, 1104, 1174, 1302, 1400, 1515, 1638, 1835, 1960, 1709, 1573, 1451, 1345, 1260, 1155, 1094, 1057, 1085, 1132, 1205, 1324, 1412, 1528, 1648, 1820, 2040, 1745, 1599, 1492, 1378, 1289, 1230, 1153, 1114, 1128, 1197, 1271, 1340, 1455, 1559, 1689, 1862, 2097, 1813, 1643, 1532, 1432, 1343, 1285, 1219, 1185, 1210, 1247, 1315, 1403, 1502, 1590, 1734, 1923, 2253, 1879, 1699, 1576, 1477, 1380, 1334, 1294, 1294, 1287, 1324, 1379, 1460, 1561, 1670, 1827, 2030, 2361, 2002, 1792, 1654, 1544, 1445, 1409, 1371, 1340, 1369, 1386, 1462, 1536, 1649, 1754, 1880, 2141, 2415, 2151, 1895, 1752, 1642, 1560, 1473, 1461, 1433, 1455, 1461, 1534, 1601, 1706, 1835, 2017, 2292, 2418, 2260, 2003, 1844, 1739, 1650, 1587, 1541, 1541, 1551, 1560, 1633, 1666, 1817, 1948, 2162, 2428]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2550, 2444, 2173, 1941, 1822, 1720, 1647, 1626, 1569, 1617, 1627, 1680, 1780, 1892, 2068, 2331, 2576, 2491, 2211, 1968, 1790, 1671, 1575, 1502, 1476, 1454, 1471, 1502, 1566, 1626, 1763, 1898, 2128, 2364, 2460, 2089, 1843, 1697, 1583, 1517, 1437, 1385, 1385, 1393, 1418, 1492, 1569, 1645, 1825, 1982, 2258, 2275, 1945, 1783, 1611, 1524, 1422, 1350, 1318, 1308, 1326, 1359, 1421, 1493, 1605, 1701, 1864, 2073, 2175, 1889, 1718, 1563, 1448, 1360, 1292, 1246, 1217, 1228, 1303, 1345, 1436, 1528, 1647, 1833, 2001, 2083, 1809, 1634, 1521, 1400, 1312, 1240, 1185, 1137, 1162, 1210, 1306, 1384, 1470, 1594, 1773, 1908, 2036, 1760, 1609, 1476, 1364, 1289, 1177, 1121, 1097, 1108, 1157, 1256, 1342, 1458, 1566, 1731, 1869, 1995, 1755, 1570, 1447, 1340, 1232, 1136, 1079, 1040, 1071, 1110, 1212, 1329, 1407, 1533, 1686, 1861, 1970, 1757, 1564, 1430, 1332, 1244, 1123, 1055, 1024, 1031, 1113, 1198, 1327, 1408, 1525, 1690, 1837, 1995, 1725, 1575, 1452, 1333, 1247, 1136, 1087, 1035, 1058, 1112, 1203, 1318, 1417, 1540, 1676, 1866, 1987, 1739, 1594, 1466, 1358, 1285, 1153, 1107, 1065, 1086, 1128, 1223, 1326, 1439, 1539, 1720, 1884, 2032, 1793, 1636, 1502, 1389, 1298, 1209, 1146, 1119, 1132, 1173, 1288, 1361, 1469, 1580, 1737, 1897, 2106, 1857, 1652, 1548, 1423, 1332, 1272, 1203, 1189, 1224, 1268, 1339, 1402, 1512, 1621, 1778, 1937, 2207, 1875, 1712, 1586, 1474, 1395, 1330, 1292, 1273, 1290, 1319, 1367, 1463, 1582, 1702, 1826, 2062, 2352, 1995, 1798, 1647, 1539, 1446, 1397, 1356, 1331, 1349, 1378, 1424, 1522, 1625, 1771, 1929, 2209, 2430, 2124, 1863, 1708, 1607, 1547, 1469, 1438, 1411, 1415, 1446, 1512, 1605, 1699, 1831, 2025, 2301, 2439, 2257, 2048, 1838, 1715, 1629, 1548, 1518, 1526, 1515, 1562, 1593, 1690, 1791, 1948, 2185, 2388]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2459, 2275, 2057, 1863, 1700, 1585, 1551, 1483, 1477, 1479, 1531, 1553, 1631, 1767, 1938, 2166, 2430, 2404, 2134, 1828, 1651, 1549, 1485, 1458, 1418, 1417, 1421, 1442, 1451, 1534, 1616, 1779, 1995, 2256, 2324, 1975, 1740, 1616, 1491, 1418, 1374, 1356, 1350, 1345, 1380, 1424, 1487, 1559, 1644, 1851, 2098, 2180, 1823, 1678, 1508, 1447, 1368, 1311, 1274, 1266, 1270, 1315, 1355, 1412, 1502, 1606, 1740, 1961, 2081, 1755, 1572, 1467, 1378, 1316, 1254, 1217, 1194, 1201, 1244, 1296, 1385, 1427, 1564, 1632, 1850, 1977, 1710, 1557, 1449, 1332, 1254, 1206, 1159, 1144, 1136, 1183, 1238, 1345, 1393, 1502, 1618, 1764, 1933, 1674, 1507, 1395, 1343, 1243, 1161, 1099, 1085, 1102, 1164, 1219, 1284, 1364, 1503, 1587, 1759, 1884, 1627, 1488, 1384, 1277, 1209, 1135, 1079, 1049, 1055, 1088, 1180, 1257, 1344, 1458, 1586, 1726, 1860, 1622, 1477, 1367, 1290, 1182, 1120, 1060, 1024, 1047, 1096, 1161, 1255, 1341, 1448, 1563, 1679, 1855, 1604, 1478, 1388, 1278, 1187, 1123, 1044, 1047, 1048, 1103, 1168, 1258, 1367, 1457, 1539, 1714, 1799, 1627, 1471, 1386, 1302, 1206, 1133, 1085, 1064, 1062, 1119, 1180, 1287, 1358, 1454, 1556, 1707, 1885, 1707, 1511, 1427, 1336, 1243, 1169, 1119, 1074, 1109, 1161, 1220, 1309, 1363, 1479, 1601, 1754, 2015, 1711, 1555, 1448, 1381, 1300, 1201, 1169, 1172, 1173, 1207, 1251, 1313, 1384, 1491, 1619, 1770, 2025, 1798, 1631, 1487, 1417, 1309, 1274, 1245, 1198, 1231, 1268, 1297, 1363, 1462, 1545, 1684, 1888, 2195, 1853, 1674, 1578, 1482, 1417, 1338, 1300, 1266, 1320, 1333, 1378, 1438, 1528, 1623, 1735, 1981, 2257, 2029, 1785, 1660, 1495, 1483, 1410, 1392, 1370, 1375, 1375, 1458, 1495, 1581, 1700, 1889, 2098, 2339, 2158, 1908, 1675, 1559, 1512, 1485, 1441, 1438, 1434, 1457, 1443, 1564, 1645, 1802, 2029, 2243]
                                       }
                                   }, {
                                       "name":    "2592x1944_CWF_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "CWF",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3266, 3095, 2609, 2297, 2021, 1986, 1827, 1735, 1681, 1735, 1813, 1887, 1965, 2177, 2480, 2897, 3410, 3312, 2784, 2364, 2008, 1878, 1733, 1647, 1600, 1552, 1556, 1613, 1713, 1819, 1968, 2173, 2503, 3113, 3149, 2414, 2101, 1898, 1723, 1610, 1542, 1474, 1464, 1445, 1527, 1583, 1693, 1833, 2024, 2293, 2836, 2902, 2274, 1990, 1770, 1645, 1531, 1435, 1358, 1339, 1366, 1405, 1481, 1595, 1709, 1894, 2112, 2609, 2789, 2132, 1864, 1696, 1552, 1432, 1346, 1272, 1242, 1257, 1301, 1379, 1504, 1639, 1816, 2028, 2447, 2554, 2044, 1802, 1649, 1478, 1378, 1241, 1174, 1150, 1154, 1212, 1314, 1432, 1573, 1738, 1957, 2285, 2530, 1989, 1741, 1579, 1433, 1289, 1187, 1124, 1073, 1098, 1160, 1247, 1404, 1537, 1687, 1927, 2191, 2427, 1970, 1719, 1550, 1389, 1271, 1135, 1064, 1055, 1061, 1117, 1182, 1350, 1491, 1661, 1878, 2148, 2358, 1941, 1712, 1540, 1408, 1252, 1126, 1058, 1024, 1036, 1096, 1206, 1339, 1494, 1649, 1871, 2232, 2423, 1937, 1721, 1544, 1415, 1252, 1124, 1066, 1029, 1047, 1098, 1186, 1339, 1480, 1648, 1891, 2128, 2476, 1963, 1746, 1562, 1424, 1277, 1171, 1094, 1061, 1077, 1137, 1241, 1383, 1516, 1701, 1893, 2154, 2504, 2044, 1792, 1617, 1494, 1345, 1221, 1161, 1118, 1160, 1181, 1302, 1457, 1550, 1751, 1953, 2291, 2604, 2051, 1871, 1672, 1539, 1415, 1301, 1225, 1182, 1206, 1296, 1393, 1502, 1647, 1821, 2024, 2380, 2821, 2232, 1931, 1757, 1605, 1491, 1424, 1344, 1298, 1330, 1385, 1477, 1563, 1754, 1870, 2111, 2495, 2989, 2444, 2065, 1847, 1711, 1602, 1507, 1451, 1434, 1436, 1493, 1552, 1681, 1824, 1992, 2237, 2803, 3153, 2603, 2205, 1979, 1813, 1693, 1602, 1574, 1538, 1574, 1614, 1705, 1815, 1946, 2169, 2453, 3034, 3293, 2868, 2463, 2193, 1966, 1827, 1745, 1723, 1718, 1714, 1736, 1842, 2002, 2065, 2387, 2736, 3260]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3006, 2931, 2499, 2114, 1944, 1834, 1691, 1666, 1656, 1697, 1737, 1833, 1943, 2064, 2300, 2748, 3152, 3020, 2532, 2111, 1904, 1716, 1638, 1549, 1499, 1502, 1501, 1555, 1594, 1720, 1844, 2072, 2352, 2794, 2798, 2241, 1968, 1787, 1624, 1520, 1443, 1399, 1391, 1420, 1456, 1519, 1597, 1729, 1942, 2136, 2572, 2645, 2108, 1852, 1673, 1544, 1446, 1368, 1320, 1311, 1316, 1358, 1418, 1501, 1636, 1787, 2017, 2379, 2424, 2019, 1739, 1594, 1461, 1376, 1308, 1257, 1219, 1256, 1291, 1345, 1438, 1533, 1695, 1906, 2224, 2307, 1909, 1701, 1529, 1422, 1322, 1226, 1166, 1141, 1155, 1218, 1296, 1376, 1486, 1631, 1854, 2131, 2184, 1898, 1639, 1486, 1377, 1277, 1177, 1111, 1069, 1109, 1147, 1222, 1332, 1447, 1605, 1787, 2067, 2154, 1844, 1618, 1478, 1347, 1235, 1138, 1076, 1048, 1066, 1103, 1200, 1307, 1412, 1554, 1757, 2011, 2159, 1806, 1589, 1451, 1329, 1226, 1115, 1042, 1024, 1038, 1097, 1198, 1309, 1401, 1554, 1730, 2007, 2170, 1821, 1618, 1456, 1339, 1245, 1122, 1060, 1031, 1049, 1105, 1179, 1318, 1433, 1578, 1749, 2032, 2194, 1837, 1647, 1491, 1365, 1269, 1158, 1095, 1057, 1086, 1134, 1212, 1343, 1449, 1596, 1764, 2019, 2307, 1888, 1683, 1541, 1403, 1302, 1236, 1156, 1116, 1130, 1202, 1283, 1363, 1500, 1637, 1821, 2082, 2398, 1982, 1743, 1593, 1467, 1362, 1296, 1225, 1190, 1216, 1257, 1333, 1436, 1559, 1681, 1887, 2176, 2628, 2081, 1822, 1653, 1524, 1408, 1353, 1308, 1307, 1300, 1342, 1407, 1506, 1635, 1787, 2017, 2337, 2810, 2260, 1951, 1756, 1610, 1488, 1441, 1396, 1362, 1394, 1416, 1507, 1601, 1751, 1906, 2106, 2516, 2935, 2486, 2103, 1892, 1738, 1629, 1522, 1504, 1472, 1498, 1509, 1600, 1691, 1837, 2029, 2312, 2766, 3016, 2679, 2273, 2031, 1875, 1751, 1667, 1608, 1607, 1620, 1636, 1732, 1788, 1998, 2203, 2548, 3029]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3204, 2926, 2490, 2150, 1974, 1832, 1736, 1705, 1638, 1695, 1713, 1786, 1924, 2090, 2356, 2775, 3241, 3040, 2564, 2193, 1937, 1772, 1646, 1555, 1521, 1495, 1515, 1555, 1636, 1720, 1905, 2107, 2456, 2865, 2942, 2370, 2013, 1806, 1654, 1567, 1471, 1411, 1410, 1420, 1451, 1539, 1639, 1746, 1991, 2235, 2672, 2656, 2163, 1921, 1692, 1576, 1453, 1370, 1333, 1321, 1341, 1380, 1452, 1542, 1685, 1824, 2063, 2393, 2499, 2075, 1830, 1627, 1485, 1381, 1304, 1253, 1223, 1235, 1315, 1365, 1472, 1588, 1748, 2007, 2276, 2362, 1965, 1723, 1573, 1427, 1326, 1247, 1188, 1139, 1165, 1216, 1319, 1410, 1517, 1677, 1922, 2141, 2289, 1898, 1688, 1519, 1385, 1299, 1180, 1122, 1098, 1109, 1160, 1265, 1362, 1499, 1639, 1863, 2081, 2231, 1886, 1640, 1484, 1358, 1239, 1138, 1079, 1040, 1071, 1111, 1218, 1346, 1441, 1599, 1805, 2065, 2197, 1887, 1633, 1465, 1349, 1251, 1124, 1055, 1024, 1031, 1114, 1203, 1343, 1441, 1588, 1808, 2033, 2231, 1851, 1646, 1490, 1350, 1254, 1138, 1087, 1035, 1058, 1113, 1209, 1334, 1452, 1606, 1793, 2070, 2228, 1872, 1671, 1508, 1379, 1295, 1156, 1108, 1065, 1087, 1130, 1231, 1345, 1478, 1609, 1850, 2099, 2297, 1945, 1725, 1552, 1415, 1311, 1215, 1148, 1121, 1134, 1177, 1301, 1385, 1515, 1661, 1879, 2126, 2410, 2036, 1754, 1611, 1457, 1351, 1283, 1209, 1194, 1231, 1279, 1358, 1435, 1570, 1718, 1940, 2193, 2567, 2076, 1837, 1664, 1521, 1424, 1349, 1306, 1285, 1303, 1337, 1394, 1509, 1659, 1825, 2016, 2378, 2797, 2251, 1958, 1748, 1605, 1489, 1428, 1380, 1352, 1373, 1407, 1465, 1586, 1723, 1926, 2168, 2607, 2956, 2452, 2063, 1840, 1698, 1614, 1518, 1479, 1448, 1454, 1493, 1575, 1696, 1829, 2024, 2323, 2779, 3045, 2675, 2331, 2023, 1846, 1727, 1623, 1582, 1590, 1579, 1638, 1685, 1817, 1965, 2203, 2579, 2972]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3074, 2699, 2342, 2054, 1828, 1676, 1626, 1543, 1534, 1538, 1603, 1639, 1746, 1936, 2191, 2554, 3033, 2921, 2465, 2020, 1771, 1631, 1545, 1506, 1457, 1455, 1460, 1488, 1506, 1614, 1730, 1959, 2284, 2717, 2760, 2226, 1889, 1712, 1551, 1458, 1403, 1380, 1373, 1368, 1410, 1465, 1546, 1646, 1773, 2069, 2458, 2533, 2012, 1797, 1575, 1491, 1395, 1329, 1287, 1277, 1283, 1333, 1381, 1453, 1568, 1712, 1909, 2247, 2378, 1912, 1661, 1520, 1409, 1334, 1264, 1223, 1199, 1207, 1254, 1313, 1416, 1475, 1651, 1763, 2082, 2227, 1846, 1635, 1494, 1354, 1265, 1212, 1162, 1146, 1138, 1188, 1248, 1368, 1432, 1572, 1736, 1958, 2161, 1795, 1572, 1430, 1363, 1251, 1164, 1100, 1085, 1103, 1167, 1226, 1300, 1396, 1568, 1692, 1943, 2093, 1736, 1548, 1416, 1291, 1215, 1137, 1079, 1049, 1055, 1089, 1185, 1270, 1372, 1514, 1687, 1896, 2061, 1728, 1535, 1396, 1304, 1187, 1121, 1060, 1024, 1047, 1097, 1165, 1267, 1368, 1502, 1659, 1836, 2057, 1708, 1536, 1420, 1292, 1192, 1124, 1044, 1047, 1048, 1104, 1173, 1271, 1397, 1513, 1632, 1882, 1993, 1740, 1532, 1420, 1319, 1213, 1135, 1086, 1064, 1062, 1121, 1186, 1303, 1389, 1512, 1655, 1878, 2112, 1842, 1582, 1469, 1358, 1253, 1173, 1121, 1075, 1111, 1165, 1229, 1330, 1398, 1545, 1715, 1946, 2294, 1859, 1641, 1499, 1412, 1317, 1209, 1174, 1176, 1178, 1215, 1265, 1338, 1427, 1567, 1747, 1979, 2330, 1981, 1742, 1551, 1458, 1331, 1289, 1256, 1206, 1242, 1283, 1319, 1398, 1523, 1640, 1840, 2152, 2588, 2072, 1809, 1668, 1540, 1457, 1364, 1320, 1283, 1342, 1359, 1414, 1491, 1610, 1747, 1923, 2302, 2719, 2328, 1967, 1782, 1569, 1542, 1453, 1428, 1403, 1410, 1414, 1514, 1569, 1688, 1861, 2146, 2500, 2902, 2542, 2152, 1823, 1660, 1591, 1550, 1496, 1491, 1487, 1518, 1511, 1666, 1786, 2017, 2370, 2765]
                                       }
                                   }, {
                                       "name":    "2592x1944_D50_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D50",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2708, 2591, 2304, 2133, 1907, 1819, 1790, 1702, 1660, 1673, 1787, 1780, 1904, 2030, 2155, 2504, 2714, 2759, 2411, 2090, 1891, 1807, 1679, 1595, 1567, 1511, 1588, 1582, 1667, 1728, 1854, 1976, 2249, 2589, 2685, 2237, 1978, 1818, 1659, 1591, 1506, 1440, 1419, 1456, 1465, 1523, 1610, 1745, 1891, 2095, 2438, 2538, 2109, 1881, 1734, 1608, 1493, 1406, 1343, 1321, 1318, 1377, 1450, 1552, 1663, 1807, 1957, 2278, 2422, 2025, 1810, 1659, 1528, 1405, 1312, 1269, 1233, 1251, 1294, 1362, 1489, 1607, 1753, 1911, 2123, 2342, 1948, 1752, 1641, 1474, 1363, 1257, 1185, 1148, 1139, 1229, 1309, 1419, 1558, 1674, 1832, 2077, 2266, 1924, 1709, 1561, 1423, 1303, 1205, 1108, 1078, 1069, 1153, 1256, 1367, 1517, 1655, 1778, 2033, 2225, 1866, 1687, 1540, 1379, 1281, 1132, 1066, 1039, 1041, 1115, 1217, 1323, 1461, 1617, 1781, 1974, 2197, 1852, 1694, 1553, 1364, 1269, 1132, 1052, 1024, 1031, 1076, 1184, 1340, 1468, 1618, 1747, 1997, 2206, 1877, 1666, 1520, 1399, 1265, 1142, 1069, 1034, 1047, 1110, 1218, 1326, 1479, 1611, 1789, 1968, 2232, 1867, 1715, 1588, 1424, 1291, 1183, 1110, 1058, 1071, 1148, 1247, 1354, 1514, 1642, 1787, 2032, 2292, 1911, 1760, 1608, 1469, 1357, 1262, 1159, 1129, 1156, 1206, 1293, 1434, 1543, 1665, 1869, 2068, 2410, 1967, 1789, 1654, 1534, 1405, 1313, 1250, 1239, 1243, 1279, 1367, 1478, 1602, 1723, 1925, 2143, 2499, 2089, 1876, 1747, 1587, 1491, 1425, 1335, 1321, 1325, 1372, 1458, 1557, 1656, 1807, 1956, 2240, 2638, 2226, 1972, 1808, 1715, 1567, 1517, 1443, 1431, 1430, 1464, 1571, 1641, 1762, 1899, 2078, 2428, 2722, 2276, 2075, 1901, 1792, 1687, 1608, 1568, 1537, 1552, 1583, 1661, 1767, 1854, 2007, 2175, 2551, 2663, 2554, 2300, 2103, 1923, 1811, 1728, 1699, 1675, 1669, 1691, 1770, 1864, 1954, 2102, 2461, 2712]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2530, 2447, 2200, 1970, 1839, 1736, 1660, 1628, 1604, 1620, 1647, 1710, 1798, 1925, 2074, 2307, 2606, 2579, 2249, 1990, 1784, 1677, 1601, 1528, 1486, 1462, 1476, 1526, 1553, 1649, 1746, 1937, 2137, 2428, 2425, 2114, 1863, 1703, 1573, 1500, 1455, 1416, 1398, 1411, 1445, 1482, 1572, 1656, 1806, 1977, 2261, 2283, 1985, 1752, 1617, 1524, 1445, 1374, 1338, 1305, 1321, 1365, 1421, 1488, 1583, 1722, 1899, 2112, 2210, 1894, 1680, 1574, 1466, 1376, 1299, 1250, 1206, 1237, 1299, 1347, 1434, 1515, 1635, 1813, 2029, 2112, 1809, 1646, 1517, 1424, 1319, 1223, 1164, 1139, 1146, 1210, 1303, 1392, 1492, 1595, 1770, 1949, 2046, 1786, 1609, 1480, 1387, 1275, 1169, 1103, 1066, 1088, 1143, 1246, 1336, 1449, 1568, 1721, 1906, 2007, 1777, 1589, 1480, 1366, 1235, 1143, 1084, 1041, 1045, 1101, 1190, 1312, 1427, 1520, 1685, 1873, 1999, 1736, 1578, 1451, 1349, 1220, 1133, 1062, 1024, 1032, 1102, 1182, 1304, 1413, 1519, 1673, 1839, 2019, 1740, 1586, 1473, 1372, 1243, 1135, 1074, 1024, 1052, 1108, 1190, 1318, 1440, 1563, 1691, 1836, 2045, 1760, 1600, 1474, 1393, 1262, 1164, 1112, 1065, 1074, 1145, 1217, 1367, 1445, 1574, 1713, 1909, 2067, 1817, 1644, 1524, 1416, 1329, 1229, 1147, 1111, 1137, 1184, 1268, 1402, 1489, 1605, 1737, 1935, 2143, 1881, 1686, 1549, 1462, 1386, 1319, 1212, 1192, 1219, 1258, 1356, 1431, 1523, 1653, 1798, 2029, 2265, 1986, 1766, 1616, 1537, 1428, 1382, 1315, 1298, 1300, 1358, 1417, 1493, 1598, 1708, 1876, 2114, 2402, 2060, 1862, 1720, 1592, 1513, 1450, 1408, 1393, 1383, 1432, 1486, 1562, 1654, 1798, 1968, 2244, 2494, 2225, 1996, 1811, 1662, 1604, 1534, 1490, 1459, 1491, 1514, 1579, 1639, 1731, 1913, 2093, 2372, 2491, 2435, 2137, 1958, 1778, 1675, 1633, 1594, 1569, 1585, 1592, 1683, 1745, 1879, 2015, 2296, 2519]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2561, 2468, 2221, 1993, 1841, 1741, 1676, 1642, 1605, 1629, 1675, 1704, 1839, 1934, 2130, 2429, 2588, 2608, 2310, 2027, 1783, 1696, 1633, 1537, 1514, 1485, 1500, 1534, 1586, 1679, 1772, 1975, 2178, 2474, 2487, 2129, 1892, 1738, 1623, 1542, 1451, 1410, 1409, 1422, 1447, 1511, 1606, 1679, 1814, 2042, 2298, 2385, 1995, 1813, 1664, 1548, 1458, 1397, 1339, 1317, 1329, 1389, 1438, 1499, 1614, 1741, 1914, 2164, 2213, 1975, 1719, 1615, 1472, 1405, 1299, 1256, 1217, 1237, 1303, 1374, 1444, 1557, 1686, 1839, 2063, 2151, 1843, 1676, 1545, 1441, 1346, 1241, 1183, 1159, 1161, 1218, 1308, 1408, 1497, 1622, 1768, 1990, 2087, 1807, 1635, 1511, 1403, 1291, 1175, 1115, 1088, 1090, 1152, 1243, 1365, 1460, 1594, 1753, 1921, 2034, 1797, 1604, 1473, 1397, 1251, 1131, 1076, 1046, 1065, 1119, 1194, 1327, 1445, 1560, 1704, 1900, 2053, 1767, 1615, 1475, 1366, 1242, 1130, 1070, 1024, 1042, 1103, 1201, 1333, 1429, 1548, 1693, 1910, 2027, 1795, 1620, 1486, 1389, 1241, 1140, 1073, 1026, 1056, 1101, 1198, 1335, 1444, 1558, 1719, 1870, 2039, 1788, 1619, 1515, 1397, 1302, 1171, 1106, 1065, 1079, 1152, 1238, 1363, 1451, 1585, 1728, 1917, 2147, 1846, 1670, 1535, 1411, 1319, 1230, 1144, 1118, 1143, 1187, 1295, 1396, 1481, 1626, 1745, 1956, 2190, 1908, 1715, 1572, 1480, 1370, 1288, 1222, 1196, 1229, 1267, 1360, 1425, 1548, 1651, 1831, 2016, 2311, 1965, 1770, 1644, 1531, 1432, 1377, 1310, 1270, 1305, 1352, 1419, 1490, 1581, 1703, 1883, 2094, 2433, 2060, 1872, 1689, 1599, 1492, 1447, 1404, 1382, 1396, 1435, 1475, 1565, 1664, 1792, 1985, 2224, 2559, 2222, 1960, 1786, 1667, 1582, 1528, 1460, 1463, 1464, 1488, 1563, 1666, 1760, 1896, 2071, 2336, 2480, 2384, 2118, 1926, 1794, 1674, 1610, 1567, 1565, 1571, 1596, 1645, 1735, 1854, 2002, 2213, 2504]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2417, 2396, 2071, 1877, 1685, 1620, 1558, 1494, 1499, 1542, 1597, 1593, 1676, 1819, 1996, 2302, 2473, 2464, 2177, 1935, 1720, 1595, 1535, 1461, 1431, 1425, 1438, 1465, 1516, 1566, 1694, 1811, 2060, 2297, 2361, 2023, 1774, 1652, 1529, 1448, 1398, 1374, 1347, 1375, 1398, 1452, 1494, 1599, 1703, 1947, 2126, 2225, 1881, 1703, 1545, 1461, 1406, 1335, 1270, 1273, 1286, 1321, 1397, 1454, 1514, 1642, 1804, 2011, 2121, 1818, 1618, 1506, 1418, 1330, 1270, 1209, 1190, 1198, 1260, 1326, 1396, 1459, 1591, 1711, 1957, 1994, 1756, 1587, 1488, 1379, 1283, 1201, 1156, 1114, 1139, 1194, 1243, 1358, 1433, 1550, 1677, 1858, 1957, 1697, 1559, 1415, 1360, 1217, 1150, 1118, 1059, 1095, 1144, 1208, 1317, 1410, 1516, 1644, 1816, 1969, 1664, 1506, 1425, 1301, 1207, 1111, 1075, 1036, 1059, 1101, 1179, 1283, 1393, 1485, 1614, 1754, 1938, 1676, 1513, 1413, 1292, 1201, 1097, 1042, 1035, 1024, 1080, 1160, 1280, 1390, 1446, 1601, 1749, 1919, 1685, 1516, 1429, 1320, 1200, 1096, 1051, 1048, 1043, 1094, 1174, 1292, 1380, 1485, 1605, 1754, 1935, 1684, 1542, 1422, 1350, 1227, 1136, 1079, 1051, 1059, 1127, 1182, 1274, 1402, 1472, 1606, 1767, 1974, 1689, 1558, 1465, 1376, 1272, 1188, 1135, 1102, 1121, 1162, 1230, 1346, 1421, 1518, 1644, 1793, 2065, 1777, 1608, 1520, 1399, 1312, 1259, 1182, 1164, 1170, 1219, 1266, 1373, 1460, 1531, 1701, 1917, 2223, 1846, 1651, 1555, 1446, 1374, 1322, 1250, 1215, 1258, 1258, 1350, 1428, 1507, 1616, 1763, 1991, 2294, 2009, 1770, 1609, 1514, 1450, 1400, 1360, 1329, 1326, 1390, 1419, 1493, 1579, 1677, 1844, 2117, 2443, 2120, 1866, 1667, 1586, 1509, 1453, 1429, 1406, 1418, 1425, 1518, 1526, 1624, 1734, 1947, 2256, 2430, 2230, 2027, 1769, 1675, 1581, 1527, 1495, 1469, 1487, 1512, 1527, 1584, 1739, 1895, 2123, 2388]
                                       }
                                   }, {
                                       "name":    "2592x1944_D50_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D50",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3429, 3122, 2658, 2385, 2075, 1947, 1899, 1791, 1741, 1758, 1896, 1902, 2071, 2259, 2467, 3006, 3438, 3408, 2824, 2344, 2057, 1929, 1763, 1658, 1621, 1558, 1644, 1644, 1750, 1838, 2014, 2203, 2614, 3175, 3242, 2557, 2176, 1947, 1740, 1649, 1546, 1470, 1446, 1487, 1502, 1574, 1685, 1862, 2071, 2378, 2912, 2999, 2365, 2037, 1832, 1669, 1530, 1429, 1359, 1335, 1333, 1399, 1484, 1607, 1752, 1949, 2178, 2660, 2815, 2240, 1937, 1735, 1571, 1428, 1325, 1277, 1239, 1259, 1306, 1383, 1529, 1676, 1871, 2101, 2432, 2689, 2131, 1858, 1705, 1506, 1379, 1264, 1188, 1150, 1141, 1235, 1322, 1447, 1614, 1769, 1992, 2354, 2577, 2092, 1802, 1612, 1448, 1313, 1209, 1109, 1078, 1069, 1156, 1265, 1388, 1564, 1740, 1919, 2286, 2517, 2017, 1772, 1585, 1399, 1289, 1134, 1066, 1039, 1041, 1116, 1223, 1340, 1499, 1694, 1917, 2205, 2479, 1999, 1779, 1598, 1382, 1276, 1133, 1052, 1024, 1031, 1077, 1189, 1357, 1506, 1693, 1876, 2231, 2493, 2030, 1749, 1564, 1420, 1273, 1144, 1069, 1034, 1047, 1111, 1224, 1343, 1519, 1687, 1927, 2198, 2535, 2024, 1808, 1641, 1449, 1301, 1186, 1111, 1058, 1072, 1151, 1255, 1374, 1560, 1726, 1929, 2285, 2625, 2087, 1868, 1669, 1501, 1373, 1269, 1162, 1131, 1159, 1212, 1306, 1463, 1597, 1759, 2036, 2342, 2799, 2170, 1913, 1729, 1578, 1428, 1326, 1258, 1245, 1250, 1290, 1388, 1517, 1671, 1836, 2118, 2457, 2948, 2341, 2031, 1847, 1646, 1528, 1450, 1351, 1335, 1340, 1393, 1492, 1613, 1744, 1949, 2176, 2610, 3179, 2543, 2169, 1935, 1803, 1622, 1558, 1473, 1459, 1460, 1501, 1627, 1720, 1882, 2080, 2356, 2899, 3358, 2649, 2326, 2070, 1912, 1773, 1672, 1622, 1586, 1604, 1645, 1743, 1883, 2014, 2242, 2517, 3122, 3366, 3073, 2652, 2348, 2094, 1938, 1828, 1787, 1758, 1753, 1786, 1891, 2023, 2166, 2400, 2949, 3435]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3175, 2930, 2525, 2185, 1994, 1851, 1750, 1707, 1677, 1698, 1736, 1821, 1945, 2130, 2364, 2742, 3284, 3161, 2613, 2220, 1930, 1779, 1675, 1583, 1532, 1504, 1521, 1581, 1621, 1746, 1885, 2155, 2468, 2954, 2895, 2401, 2037, 1814, 1643, 1548, 1491, 1444, 1424, 1439, 1480, 1529, 1642, 1759, 1968, 2229, 2676, 2667, 2212, 1885, 1699, 1576, 1478, 1395, 1354, 1318, 1336, 1386, 1452, 1536, 1660, 1849, 2106, 2444, 2543, 2081, 1786, 1640, 1504, 1398, 1311, 1258, 1211, 1244, 1311, 1367, 1469, 1574, 1734, 1983, 2311, 2398, 1965, 1737, 1569, 1453, 1333, 1229, 1167, 1141, 1148, 1216, 1316, 1419, 1541, 1679, 1918, 2192, 2302, 1928, 1688, 1523, 1410, 1284, 1172, 1104, 1066, 1089, 1145, 1254, 1355, 1489, 1642, 1851, 2127, 2246, 1912, 1662, 1520, 1385, 1242, 1145, 1084, 1041, 1045, 1102, 1195, 1328, 1463, 1584, 1804, 2079, 2233, 1862, 1648, 1488, 1367, 1226, 1134, 1062, 1024, 1032, 1103, 1187, 1319, 1447, 1582, 1788, 2035, 2261, 1869, 1658, 1513, 1391, 1250, 1137, 1074, 1024, 1052, 1109, 1195, 1335, 1477, 1632, 1811, 2033, 2301, 1898, 1678, 1516, 1416, 1271, 1167, 1113, 1065, 1075, 1147, 1224, 1388, 1485, 1649, 1842, 2130, 2341, 1974, 1735, 1576, 1444, 1343, 1235, 1149, 1112, 1139, 1189, 1280, 1429, 1538, 1690, 1878, 2175, 2458, 2065, 1793, 1612, 1500, 1408, 1332, 1218, 1197, 1226, 1268, 1376, 1466, 1582, 1755, 1964, 2311, 2643, 2214, 1901, 1698, 1591, 1460, 1404, 1330, 1311, 1314, 1378, 1448, 1542, 1678, 1832, 2077, 2446, 2864, 2333, 2036, 1833, 1665, 1563, 1486, 1436, 1418, 1409, 1466, 1533, 1631, 1757, 1959, 2217, 2653, 3044, 2582, 2228, 1962, 1761, 1679, 1590, 1536, 1501, 1537, 1568, 1651, 1735, 1867, 2125, 2411, 2877, 3120, 2914, 2444, 2171, 1921, 1780, 1719, 1669, 1638, 1658, 1673, 1789, 1882, 2074, 2289, 2727, 3160]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3220, 2958, 2552, 2213, 1996, 1857, 1769, 1723, 1679, 1708, 1767, 1814, 1994, 2141, 2436, 2906, 3258, 3201, 2693, 2266, 1929, 1801, 1711, 1593, 1562, 1529, 1547, 1590, 1658, 1781, 1916, 2202, 2522, 3016, 2977, 2420, 2072, 1854, 1699, 1595, 1487, 1438, 1436, 1451, 1482, 1560, 1680, 1786, 1978, 2311, 2725, 2800, 2224, 1956, 1753, 1603, 1492, 1420, 1355, 1331, 1345, 1411, 1471, 1549, 1696, 1871, 2125, 2512, 2547, 2179, 1831, 1685, 1511, 1428, 1311, 1264, 1223, 1244, 1315, 1395, 1480, 1621, 1793, 2014, 2355, 2448, 2005, 1771, 1599, 1471, 1361, 1248, 1186, 1161, 1164, 1224, 1321, 1436, 1547, 1710, 1916, 2244, 2353, 1953, 1718, 1557, 1426, 1301, 1178, 1116, 1088, 1091, 1155, 1251, 1386, 1501, 1671, 1889, 2145, 2280, 1936, 1679, 1513, 1418, 1258, 1133, 1076, 1046, 1065, 1120, 1199, 1344, 1482, 1629, 1826, 2113, 2300, 1899, 1690, 1514, 1385, 1249, 1131, 1070, 1024, 1042, 1104, 1206, 1350, 1464, 1614, 1812, 2123, 2271, 1934, 1697, 1527, 1409, 1248, 1142, 1073, 1026, 1056, 1102, 1204, 1352, 1481, 1627, 1844, 2076, 2293, 1931, 1700, 1561, 1420, 1312, 1174, 1107, 1065, 1080, 1155, 1246, 1384, 1491, 1661, 1859, 2140, 2442, 2009, 1765, 1588, 1439, 1333, 1236, 1146, 1120, 1145, 1192, 1308, 1423, 1529, 1714, 1888, 2201, 2517, 2098, 1827, 1637, 1519, 1391, 1300, 1229, 1201, 1236, 1278, 1380, 1460, 1610, 1752, 2004, 2295, 2703, 2187, 1906, 1730, 1584, 1464, 1399, 1325, 1282, 1319, 1372, 1450, 1539, 1658, 1826, 2086, 2420, 2905, 2333, 2048, 1797, 1672, 1539, 1482, 1432, 1407, 1423, 1469, 1521, 1634, 1768, 1951, 2239, 2627, 3133, 2578, 2183, 1932, 1767, 1654, 1583, 1503, 1505, 1508, 1539, 1633, 1766, 1902, 2104, 2383, 2827, 3104, 2845, 2420, 2131, 1940, 1779, 1693, 1638, 1634, 1643, 1677, 1745, 1870, 2043, 2272, 2616, 3138]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3014, 2861, 2360, 2071, 1810, 1716, 1634, 1555, 1559, 1610, 1678, 1685, 1800, 2000, 2265, 2736, 3094, 3003, 2520, 2153, 1854, 1684, 1601, 1509, 1471, 1463, 1479, 1514, 1580, 1650, 1823, 1999, 2369, 2773, 2809, 2287, 1930, 1754, 1593, 1491, 1429, 1399, 1369, 1401, 1429, 1496, 1554, 1692, 1844, 2191, 2495, 2591, 2084, 1827, 1617, 1507, 1436, 1354, 1283, 1285, 1299, 1339, 1426, 1499, 1582, 1755, 1989, 2312, 2429, 1989, 1714, 1564, 1452, 1349, 1281, 1215, 1195, 1204, 1270, 1344, 1428, 1511, 1683, 1858, 2219, 2249, 1901, 1669, 1536, 1404, 1295, 1206, 1159, 1116, 1141, 1199, 1253, 1382, 1476, 1627, 1807, 2077, 2191, 1823, 1631, 1452, 1381, 1224, 1153, 1119, 1059, 1096, 1146, 1215, 1335, 1446, 1583, 1760, 2014, 2199, 1779, 1568, 1460, 1316, 1213, 1112, 1075, 1036, 1059, 1102, 1184, 1298, 1425, 1544, 1720, 1932, 2158, 1792, 1575, 1446, 1307, 1206, 1098, 1042, 1035, 1024, 1081, 1164, 1294, 1421, 1499, 1703, 1923, 2136, 1804, 1579, 1465, 1337, 1206, 1097, 1051, 1048, 1043, 1095, 1179, 1307, 1411, 1545, 1710, 1931, 2163, 1807, 1612, 1460, 1370, 1235, 1138, 1080, 1051, 1059, 1129, 1188, 1290, 1438, 1533, 1715, 1953, 2224, 1821, 1636, 1511, 1401, 1284, 1193, 1137, 1103, 1123, 1166, 1240, 1369, 1463, 1590, 1767, 1995, 2357, 1939, 1703, 1579, 1431, 1330, 1269, 1187, 1168, 1175, 1228, 1281, 1403, 1512, 1613, 1847, 2168, 2588, 2040, 1765, 1629, 1490, 1402, 1340, 1261, 1224, 1270, 1272, 1376, 1470, 1574, 1724, 1938, 2286, 2720, 2269, 1925, 1704, 1577, 1493, 1431, 1384, 1350, 1348, 1420, 1459, 1553, 1669, 1812, 2060, 2483, 2974, 2446, 2067, 1790, 1674, 1571, 1500, 1469, 1442, 1457, 1469, 1582, 1604, 1739, 1903, 2222, 2717, 3032, 2639, 2304, 1938, 1799, 1671, 1599, 1556, 1525, 1547, 1581, 1608, 1690, 1902, 2136, 2496, 2973]
                                       }
                                   }, {
                                       "name":    "2592x1944_D65_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D65",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2806, 2833, 2483, 2261, 2082, 1996, 1887, 1819, 1779, 1798, 1797, 1910, 1975, 2147, 2311, 2591, 2833, 2912, 2534, 2264, 2002, 1896, 1788, 1680, 1668, 1604, 1619, 1698, 1718, 1859, 1930, 2082, 2364, 2695, 2792, 2364, 2128, 1930, 1784, 1694, 1601, 1533, 1520, 1482, 1599, 1648, 1737, 1845, 1976, 2220, 2576, 2663, 2198, 2045, 1849, 1724, 1549, 1494, 1411, 1379, 1384, 1446, 1544, 1645, 1775, 1903, 2064, 2341, 2542, 2161, 1924, 1766, 1615, 1489, 1365, 1303, 1287, 1295, 1334, 1414, 1533, 1657, 1825, 1978, 2251, 2479, 2137, 1862, 1682, 1559, 1393, 1315, 1217, 1169, 1194, 1256, 1367, 1465, 1633, 1793, 1915, 2176, 2472, 1985, 1874, 1688, 1506, 1354, 1200, 1126, 1096, 1109, 1164, 1272, 1424, 1571, 1746, 1921, 2103, 2314, 2004, 1807, 1600, 1457, 1310, 1172, 1077, 1048, 1051, 1115, 1240, 1373, 1571, 1698, 1894, 2088, 2316, 1951, 1786, 1615, 1459, 1285, 1158, 1064, 1024, 1033, 1092, 1214, 1374, 1522, 1693, 1866, 2079, 2341, 1991, 1782, 1610, 1450, 1309, 1142, 1071, 1034, 1049, 1093, 1233, 1355, 1531, 1689, 1851, 2074, 2341, 2010, 1824, 1637, 1463, 1330, 1211, 1108, 1077, 1102, 1144, 1265, 1410, 1563, 1729, 1889, 2140, 2406, 2019, 1848, 1689, 1543, 1384, 1271, 1180, 1127, 1164, 1219, 1335, 1464, 1625, 1769, 1942, 2211, 2524, 2118, 1865, 1738, 1640, 1468, 1333, 1281, 1243, 1278, 1328, 1412, 1520, 1701, 1807, 1966, 2255, 2711, 2201, 1972, 1825, 1686, 1547, 1443, 1381, 1351, 1358, 1389, 1508, 1588, 1778, 1906, 2064, 2345, 2791, 2356, 2072, 1885, 1794, 1669, 1564, 1498, 1466, 1493, 1536, 1609, 1732, 1840, 2006, 2162, 2538, 2865, 2487, 2166, 2000, 1891, 1759, 1690, 1615, 1595, 1604, 1640, 1736, 1798, 1911, 2055, 2304, 2632, 2808, 2693, 2336, 2143, 1974, 1895, 1836, 1768, 1738, 1760, 1777, 1853, 1952, 2072, 2275, 2541, 2733]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2431, 2522, 2210, 1994, 1861, 1716, 1685, 1646, 1598, 1642, 1654, 1756, 1804, 1922, 2060, 2336, 2502, 2573, 2261, 1975, 1812, 1684, 1609, 1537, 1498, 1498, 1495, 1519, 1564, 1651, 1754, 1879, 2092, 2385, 2469, 2126, 1870, 1705, 1595, 1530, 1437, 1423, 1398, 1398, 1444, 1481, 1549, 1675, 1778, 1974, 2256, 2315, 1973, 1763, 1629, 1534, 1454, 1378, 1352, 1334, 1329, 1364, 1421, 1502, 1567, 1696, 1856, 2093, 2186, 1883, 1717, 1575, 1476, 1386, 1314, 1253, 1224, 1235, 1290, 1355, 1431, 1516, 1632, 1796, 2013, 2076, 1831, 1673, 1519, 1416, 1345, 1251, 1171, 1145, 1181, 1209, 1308, 1384, 1465, 1595, 1758, 1900, 2063, 1798, 1624, 1501, 1382, 1285, 1171, 1116, 1076, 1108, 1157, 1245, 1337, 1436, 1558, 1691, 1885, 2022, 1766, 1604, 1474, 1371, 1257, 1154, 1086, 1045, 1070, 1113, 1190, 1326, 1412, 1531, 1676, 1841, 2003, 1781, 1602, 1459, 1366, 1240, 1132, 1062, 1024, 1033, 1102, 1175, 1315, 1412, 1527, 1671, 1858, 2013, 1760, 1599, 1472, 1372, 1249, 1142, 1067, 1047, 1063, 1113, 1203, 1326, 1423, 1556, 1703, 1865, 1999, 1795, 1613, 1493, 1385, 1286, 1163, 1116, 1074, 1085, 1135, 1232, 1337, 1439, 1568, 1689, 1872, 2099, 1802, 1644, 1507, 1408, 1329, 1223, 1162, 1124, 1146, 1183, 1274, 1369, 1477, 1588, 1718, 1940, 2180, 1888, 1690, 1546, 1449, 1367, 1311, 1236, 1197, 1222, 1264, 1349, 1424, 1525, 1650, 1784, 1979, 2294, 1970, 1740, 1619, 1514, 1432, 1373, 1312, 1287, 1309, 1346, 1406, 1480, 1614, 1710, 1864, 2051, 2346, 2064, 1828, 1695, 1597, 1485, 1434, 1389, 1387, 1397, 1410, 1465, 1552, 1659, 1799, 1932, 2191, 2472, 2210, 1927, 1792, 1661, 1584, 1512, 1486, 1474, 1477, 1489, 1558, 1639, 1757, 1883, 2060, 2313, 2470, 2372, 2058, 1893, 1765, 1701, 1617, 1575, 1559, 1568, 1576, 1632, 1728, 1858, 2014, 2212, 2495]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2501, 2475, 2216, 1989, 1912, 1751, 1717, 1662, 1630, 1640, 1675, 1737, 1822, 1926, 2116, 2385, 2570, 2549, 2296, 1998, 1823, 1692, 1607, 1564, 1506, 1487, 1494, 1532, 1588, 1665, 1791, 1920, 2134, 2385, 2440, 2097, 1889, 1725, 1615, 1551, 1445, 1413, 1404, 1399, 1448, 1514, 1583, 1684, 1808, 1979, 2245, 2338, 1992, 1793, 1638, 1536, 1443, 1389, 1362, 1348, 1351, 1376, 1410, 1499, 1597, 1708, 1884, 2092, 2227, 1944, 1726, 1596, 1482, 1381, 1324, 1266, 1232, 1258, 1323, 1360, 1437, 1548, 1640, 1813, 2008, 2110, 1844, 1690, 1546, 1435, 1356, 1244, 1170, 1158, 1173, 1221, 1309, 1394, 1502, 1583, 1778, 1943, 2121, 1852, 1616, 1507, 1416, 1304, 1180, 1123, 1100, 1101, 1157, 1244, 1361, 1453, 1571, 1712, 1901, 2056, 1801, 1604, 1491, 1375, 1263, 1151, 1088, 1054, 1071, 1129, 1213, 1338, 1422, 1552, 1684, 1886, 1999, 1779, 1608, 1482, 1361, 1249, 1123, 1067, 1028, 1031, 1107, 1208, 1311, 1420, 1527, 1691, 1868, 2007, 1769, 1620, 1493, 1373, 1241, 1122, 1075, 1024, 1045, 1106, 1190, 1322, 1444, 1563, 1697, 1849, 2064, 1801, 1612, 1506, 1392, 1300, 1169, 1104, 1072, 1088, 1148, 1230, 1342, 1433, 1559, 1715, 1876, 2114, 1839, 1660, 1516, 1400, 1320, 1227, 1161, 1117, 1129, 1191, 1276, 1378, 1466, 1584, 1759, 1911, 2171, 1882, 1677, 1560, 1452, 1364, 1285, 1212, 1192, 1215, 1274, 1338, 1407, 1523, 1637, 1811, 1984, 2259, 1951, 1752, 1637, 1522, 1425, 1359, 1320, 1270, 1284, 1336, 1384, 1445, 1571, 1703, 1860, 2061, 2361, 2051, 1858, 1700, 1572, 1488, 1414, 1386, 1372, 1382, 1412, 1466, 1544, 1636, 1745, 1936, 2197, 2536, 2205, 1931, 1771, 1652, 1567, 1487, 1456, 1443, 1461, 1490, 1544, 1630, 1709, 1871, 2050, 2260, 2427, 2337, 2084, 1890, 1749, 1647, 1576, 1556, 1547, 1557, 1553, 1628, 1690, 1826, 2006, 2164, 2427]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2467, 2371, 2079, 1857, 1693, 1629, 1572, 1537, 1503, 1547, 1549, 1616, 1684, 1790, 1956, 2228, 2402, 2466, 2165, 1889, 1725, 1610, 1537, 1492, 1443, 1456, 1438, 1473, 1496, 1567, 1664, 1785, 2003, 2277, 2364, 2023, 1780, 1632, 1526, 1457, 1420, 1388, 1341, 1369, 1385, 1455, 1478, 1580, 1686, 1872, 2088, 2157, 1923, 1684, 1565, 1477, 1414, 1332, 1292, 1281, 1281, 1323, 1384, 1450, 1514, 1642, 1775, 2007, 2115, 1825, 1621, 1497, 1429, 1339, 1256, 1219, 1193, 1218, 1249, 1321, 1413, 1472, 1559, 1682, 1873, 2007, 1724, 1568, 1488, 1363, 1292, 1218, 1167, 1141, 1140, 1190, 1252, 1335, 1438, 1552, 1632, 1812, 1978, 1675, 1552, 1455, 1362, 1237, 1152, 1104, 1083, 1103, 1138, 1210, 1291, 1405, 1505, 1622, 1748, 1894, 1660, 1525, 1416, 1300, 1212, 1123, 1077, 1052, 1067, 1109, 1174, 1268, 1358, 1473, 1594, 1713, 1908, 1660, 1520, 1425, 1299, 1205, 1099, 1065, 1024, 1046, 1081, 1155, 1255, 1372, 1478, 1568, 1722, 1866, 1669, 1532, 1440, 1301, 1212, 1104, 1055, 1029, 1041, 1092, 1159, 1257, 1362, 1457, 1549, 1717, 1880, 1696, 1544, 1436, 1324, 1199, 1126, 1092, 1064, 1080, 1116, 1189, 1287, 1379, 1493, 1601, 1742, 1946, 1722, 1574, 1456, 1364, 1256, 1187, 1129, 1099, 1110, 1164, 1218, 1331, 1426, 1483, 1620, 1803, 2052, 1762, 1592, 1496, 1400, 1308, 1215, 1180, 1174, 1175, 1207, 1279, 1367, 1457, 1535, 1643, 1844, 2168, 1821, 1649, 1529, 1440, 1359, 1308, 1251, 1215, 1229, 1280, 1334, 1398, 1486, 1587, 1716, 1943, 2266, 1989, 1724, 1596, 1508, 1449, 1392, 1337, 1319, 1323, 1374, 1424, 1461, 1549, 1644, 1826, 2009, 2343, 2035, 1854, 1653, 1553, 1500, 1435, 1411, 1396, 1416, 1438, 1489, 1534, 1607, 1723, 1951, 2158, 2334, 2272, 1988, 1743, 1635, 1552, 1486, 1482, 1448, 1465, 1471, 1518, 1590, 1694, 1836, 2057, 2257]
                                       }
                                   }, {
                                       "name":    "2592x1944_D65_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D65",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3570, 3446, 2886, 2543, 2283, 2153, 2010, 1923, 1875, 1899, 1907, 2053, 2156, 2402, 2667, 3122, 3608, 3619, 2983, 2560, 2190, 2032, 1886, 1752, 1732, 1659, 1678, 1772, 1808, 1989, 2104, 2335, 2763, 3321, 3385, 2718, 2357, 2077, 1881, 1762, 1649, 1570, 1554, 1515, 1647, 1711, 1828, 1978, 2174, 2536, 3096, 3163, 2476, 2231, 1963, 1797, 1591, 1523, 1431, 1396, 1402, 1472, 1585, 1710, 1879, 2063, 2310, 2743, 2968, 2405, 2069, 1855, 1666, 1517, 1380, 1312, 1295, 1304, 1348, 1438, 1577, 1732, 1954, 2183, 2596, 2862, 2358, 1985, 1751, 1598, 1410, 1324, 1221, 1171, 1197, 1263, 1383, 1497, 1697, 1906, 2092, 2479, 2834, 2164, 1989, 1751, 1536, 1366, 1204, 1127, 1097, 1110, 1167, 1281, 1449, 1623, 1844, 2088, 2373, 2627, 2180, 1908, 1651, 1481, 1319, 1174, 1077, 1048, 1051, 1116, 1247, 1393, 1619, 1785, 2050, 2347, 2627, 2116, 1883, 1666, 1483, 1293, 1160, 1064, 1024, 1033, 1093, 1220, 1393, 1565, 1778, 2016, 2333, 2661, 2165, 1880, 1662, 1474, 1318, 1144, 1071, 1034, 1049, 1094, 1240, 1374, 1576, 1775, 2000, 2329, 2671, 2194, 1932, 1695, 1490, 1342, 1215, 1109, 1077, 1103, 1146, 1274, 1434, 1614, 1824, 2050, 2419, 2770, 2216, 1968, 1759, 1580, 1401, 1278, 1183, 1129, 1167, 1225, 1350, 1496, 1688, 1878, 2124, 2523, 2945, 2353, 2001, 1823, 1693, 1495, 1347, 1290, 1250, 1286, 1341, 1436, 1563, 1782, 1934, 2168, 2601, 3225, 2479, 2144, 1936, 1755, 1588, 1469, 1399, 1366, 1375, 1411, 1546, 1647, 1883, 2067, 2310, 2748, 3383, 2708, 2289, 2025, 1892, 1735, 1609, 1532, 1496, 1527, 1579, 1668, 1823, 1973, 2210, 2462, 3046, 3554, 2923, 2438, 2188, 2026, 1854, 1763, 1673, 1650, 1661, 1708, 1828, 1919, 2081, 2301, 2685, 3234, 3572, 3259, 2698, 2398, 2154, 2036, 1951, 1865, 1829, 1856, 1884, 1987, 2128, 2310, 2621, 3055, 3465]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3034, 3030, 2538, 2215, 2020, 1828, 1779, 1727, 1671, 1723, 1743, 1874, 1952, 2126, 2346, 2781, 3136, 3153, 2629, 2202, 1964, 1787, 1685, 1594, 1545, 1543, 1542, 1573, 1634, 1749, 1894, 2083, 2410, 2895, 2953, 2417, 2046, 1816, 1668, 1581, 1471, 1452, 1424, 1425, 1479, 1527, 1616, 1781, 1934, 2224, 2669, 2708, 2197, 1898, 1713, 1587, 1488, 1400, 1369, 1349, 1345, 1385, 1452, 1552, 1642, 1818, 2053, 2419, 2512, 2067, 1829, 1641, 1515, 1408, 1327, 1261, 1230, 1242, 1302, 1375, 1466, 1575, 1730, 1962, 2291, 2353, 1991, 1768, 1571, 1444, 1360, 1258, 1174, 1147, 1184, 1215, 1321, 1410, 1511, 1679, 1903, 2130, 2323, 1942, 1705, 1546, 1404, 1295, 1174, 1117, 1076, 1109, 1160, 1253, 1356, 1475, 1630, 1815, 2101, 2265, 1900, 1679, 1514, 1390, 1264, 1156, 1086, 1045, 1070, 1114, 1195, 1343, 1446, 1596, 1793, 2039, 2239, 1915, 1675, 1496, 1384, 1246, 1133, 1062, 1024, 1033, 1103, 1180, 1331, 1445, 1591, 1786, 2059, 2253, 1892, 1673, 1511, 1391, 1256, 1144, 1067, 1047, 1063, 1114, 1209, 1343, 1458, 1625, 1825, 2069, 2243, 1939, 1693, 1537, 1407, 1296, 1166, 1117, 1074, 1086, 1137, 1240, 1356, 1478, 1642, 1813, 2084, 2382, 1956, 1735, 1557, 1436, 1343, 1229, 1165, 1126, 1148, 1188, 1286, 1394, 1524, 1670, 1856, 2181, 2505, 2073, 1798, 1608, 1486, 1388, 1324, 1243, 1202, 1229, 1275, 1369, 1458, 1585, 1751, 1947, 2247, 2681, 2194, 1870, 1701, 1565, 1464, 1394, 1327, 1299, 1324, 1366, 1436, 1528, 1696, 1835, 2062, 2364, 2789, 2339, 1995, 1804, 1670, 1532, 1468, 1416, 1412, 1424, 1442, 1510, 1620, 1762, 1960, 2172, 2582, 3014, 2563, 2142, 1939, 1760, 1656, 1566, 1532, 1517, 1522, 1540, 1627, 1735, 1898, 2088, 2368, 2795, 3089, 2829, 2344, 2091, 1906, 1811, 1701, 1647, 1627, 1639, 1654, 1730, 1862, 2048, 2287, 2615, 3125]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3134, 2967, 2545, 2208, 2081, 1869, 1815, 1745, 1707, 1721, 1767, 1852, 1974, 2131, 2418, 2847, 3233, 3120, 2675, 2231, 1977, 1796, 1682, 1623, 1554, 1531, 1541, 1588, 1661, 1765, 1938, 2134, 2464, 2895, 2915, 2380, 2068, 1839, 1691, 1604, 1480, 1441, 1430, 1426, 1483, 1564, 1654, 1791, 1971, 2231, 2655, 2738, 2221, 1933, 1723, 1589, 1476, 1411, 1379, 1363, 1368, 1398, 1441, 1549, 1676, 1832, 2087, 2417, 2565, 2141, 1839, 1664, 1521, 1403, 1337, 1274, 1238, 1266, 1336, 1381, 1473, 1610, 1740, 1982, 2284, 2395, 2007, 1787, 1601, 1465, 1372, 1251, 1173, 1160, 1176, 1227, 1323, 1421, 1552, 1665, 1927, 2185, 2396, 2007, 1696, 1553, 1440, 1315, 1183, 1124, 1101, 1102, 1160, 1252, 1382, 1493, 1645, 1841, 2121, 2307, 1941, 1679, 1532, 1395, 1271, 1153, 1088, 1054, 1071, 1131, 1219, 1356, 1457, 1620, 1803, 2096, 2233, 1913, 1682, 1521, 1379, 1256, 1124, 1067, 1028, 1031, 1108, 1214, 1326, 1454, 1591, 1810, 2071, 2246, 1903, 1697, 1534, 1393, 1248, 1123, 1075, 1024, 1045, 1107, 1195, 1339, 1481, 1633, 1818, 2049, 2324, 1946, 1692, 1551, 1415, 1310, 1172, 1105, 1072, 1089, 1151, 1238, 1362, 1471, 1631, 1844, 2089, 2401, 2001, 1753, 1567, 1427, 1334, 1233, 1164, 1119, 1131, 1196, 1288, 1403, 1512, 1666, 1905, 2144, 2493, 2066, 1783, 1624, 1489, 1385, 1296, 1218, 1197, 1221, 1285, 1357, 1440, 1582, 1736, 1980, 2254, 2635, 2170, 1884, 1722, 1574, 1457, 1380, 1335, 1282, 1297, 1355, 1413, 1489, 1647, 1827, 2058, 2377, 2809, 2322, 2031, 1810, 1642, 1535, 1446, 1412, 1396, 1408, 1444, 1511, 1611, 1736, 1894, 2177, 2590, 3102, 2557, 2147, 1914, 1750, 1637, 1538, 1499, 1483, 1504, 1541, 1611, 1724, 1841, 2073, 2356, 2723, 3028, 2783, 2377, 2087, 1887, 1748, 1654, 1626, 1613, 1627, 1628, 1726, 1817, 2008, 2278, 2551, 3028]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3085, 2828, 2371, 2046, 1820, 1727, 1650, 1604, 1564, 1615, 1624, 1712, 1809, 1964, 2213, 2637, 2993, 3005, 2505, 2095, 1860, 1702, 1603, 1543, 1484, 1497, 1479, 1523, 1557, 1652, 1787, 1966, 2295, 2746, 2813, 2287, 1937, 1731, 1590, 1501, 1453, 1414, 1363, 1394, 1415, 1499, 1536, 1671, 1823, 2096, 2445, 2503, 2135, 1804, 1640, 1524, 1445, 1351, 1306, 1293, 1294, 1341, 1413, 1495, 1582, 1755, 1952, 2307, 2422, 1997, 1718, 1553, 1464, 1358, 1266, 1226, 1198, 1224, 1259, 1339, 1447, 1525, 1645, 1823, 2112, 2266, 1863, 1647, 1537, 1387, 1305, 1224, 1170, 1143, 1142, 1195, 1263, 1357, 1481, 1629, 1753, 2019, 2217, 1797, 1624, 1496, 1383, 1245, 1155, 1105, 1083, 1104, 1140, 1217, 1308, 1441, 1570, 1734, 1929, 2106, 1775, 1590, 1451, 1315, 1218, 1125, 1077, 1052, 1067, 1110, 1179, 1282, 1387, 1531, 1696, 1881, 2121, 1773, 1583, 1460, 1314, 1210, 1100, 1065, 1024, 1046, 1082, 1159, 1268, 1402, 1536, 1665, 1890, 2071, 1785, 1597, 1477, 1317, 1218, 1105, 1055, 1029, 1041, 1093, 1163, 1270, 1392, 1513, 1644, 1885, 2094, 1822, 1614, 1475, 1343, 1206, 1128, 1093, 1064, 1081, 1118, 1195, 1303, 1412, 1557, 1709, 1922, 2188, 1860, 1655, 1501, 1388, 1267, 1192, 1131, 1100, 1112, 1168, 1227, 1353, 1468, 1550, 1738, 2008, 2341, 1920, 1684, 1552, 1432, 1325, 1223, 1185, 1178, 1180, 1215, 1295, 1396, 1509, 1618, 1776, 2074, 2517, 2010, 1763, 1599, 1483, 1386, 1325, 1263, 1224, 1239, 1296, 1358, 1437, 1550, 1689, 1880, 2223, 2682, 2244, 1869, 1689, 1570, 1492, 1423, 1360, 1339, 1345, 1403, 1465, 1517, 1634, 1772, 2037, 2340, 2837, 2336, 2052, 1774, 1636, 1561, 1480, 1449, 1432, 1455, 1484, 1549, 1614, 1719, 1890, 2227, 2583, 2896, 2695, 2255, 1907, 1751, 1637, 1552, 1542, 1502, 1523, 1534, 1598, 1697, 1846, 2061, 2408, 2785]
                                       }
                                   }, {
                                       "name":    "2592x1944_D75_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D75",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2754, 2703, 2403, 2164, 1973, 1910, 1801, 1760, 1765, 1761, 1819, 1891, 1946, 2087, 2294, 2636, 2775, 2712, 2472, 2161, 1922, 1822, 1752, 1633, 1642, 1573, 1582, 1638, 1687, 1774, 1859, 2022, 2343, 2567, 2735, 2305, 2026, 1882, 1740, 1647, 1564, 1474, 1468, 1480, 1532, 1584, 1730, 1805, 1938, 2197, 2482, 2616, 2168, 1927, 1784, 1652, 1534, 1446, 1364, 1348, 1374, 1427, 1501, 1595, 1708, 1883, 2000, 2295, 2461, 2049, 1849, 1691, 1578, 1455, 1330, 1295, 1256, 1258, 1310, 1423, 1529, 1634, 1762, 1927, 2195, 2415, 1974, 1838, 1659, 1531, 1363, 1254, 1187, 1153, 1164, 1218, 1350, 1446, 1580, 1725, 1905, 2139, 2336, 1924, 1747, 1585, 1482, 1335, 1182, 1118, 1070, 1087, 1152, 1271, 1387, 1542, 1674, 1833, 2057, 2232, 1927, 1745, 1580, 1426, 1284, 1140, 1067, 1038, 1055, 1107, 1225, 1372, 1515, 1671, 1835, 2030, 2318, 1888, 1722, 1581, 1425, 1272, 1139, 1044, 1024, 1029, 1088, 1207, 1352, 1529, 1655, 1832, 1992, 2199, 1903, 1718, 1577, 1398, 1290, 1149, 1054, 1026, 1032, 1104, 1236, 1340, 1521, 1672, 1844, 1975, 2290, 1902, 1756, 1619, 1448, 1300, 1180, 1086, 1052, 1079, 1146, 1234, 1398, 1539, 1674, 1873, 2050, 2391, 1967, 1783, 1640, 1476, 1370, 1249, 1166, 1123, 1148, 1204, 1318, 1417, 1609, 1724, 1879, 2128, 2424, 2028, 1856, 1691, 1564, 1434, 1337, 1261, 1218, 1249, 1298, 1397, 1527, 1658, 1766, 1931, 2200, 2532, 2088, 1870, 1765, 1631, 1518, 1432, 1351, 1329, 1343, 1388, 1473, 1578, 1704, 1839, 1985, 2234, 2679, 2224, 2023, 1833, 1736, 1600, 1522, 1479, 1411, 1440, 1490, 1592, 1702, 1793, 1879, 2102, 2429, 2736, 2339, 2112, 1920, 1802, 1706, 1659, 1594, 1556, 1595, 1598, 1707, 1753, 1868, 2016, 2281, 2491, 2819, 2610, 2274, 2095, 1959, 1863, 1786, 1694, 1686, 1706, 1728, 1795, 1896, 1993, 2147, 2476, 2696]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2431, 2494, 2192, 1970, 1800, 1739, 1672, 1603, 1588, 1631, 1662, 1708, 1765, 1938, 2050, 2322, 2481, 2492, 2182, 1990, 1767, 1679, 1571, 1511, 1494, 1484, 1479, 1523, 1576, 1624, 1717, 1881, 2098, 2361, 2453, 2101, 1840, 1701, 1581, 1511, 1464, 1424, 1411, 1420, 1447, 1490, 1558, 1643, 1770, 1961, 2244, 2262, 1945, 1764, 1616, 1523, 1450, 1373, 1341, 1307, 1312, 1370, 1425, 1503, 1569, 1693, 1863, 2098, 2162, 1839, 1667, 1565, 1474, 1385, 1283, 1261, 1210, 1230, 1278, 1360, 1441, 1523, 1627, 1780, 2011, 2061, 1783, 1631, 1519, 1436, 1318, 1226, 1161, 1154, 1153, 1205, 1306, 1398, 1488, 1595, 1737, 1947, 2009, 1763, 1588, 1480, 1376, 1271, 1175, 1111, 1076, 1097, 1143, 1243, 1325, 1465, 1558, 1707, 1888, 1989, 1744, 1567, 1481, 1369, 1226, 1156, 1085, 1034, 1060, 1106, 1187, 1310, 1427, 1532, 1682, 1857, 1986, 1710, 1571, 1467, 1341, 1232, 1114, 1061, 1030, 1038, 1095, 1184, 1310, 1436, 1529, 1680, 1846, 1965, 1713, 1594, 1470, 1359, 1241, 1129, 1063, 1024, 1046, 1099, 1191, 1319, 1454, 1551, 1673, 1857, 2020, 1754, 1600, 1481, 1399, 1265, 1153, 1098, 1062, 1089, 1144, 1208, 1335, 1449, 1556, 1682, 1902, 2057, 1783, 1619, 1519, 1429, 1308, 1219, 1147, 1107, 1137, 1176, 1271, 1392, 1471, 1583, 1717, 1931, 2148, 1825, 1659, 1565, 1466, 1384, 1287, 1223, 1185, 1201, 1263, 1339, 1455, 1535, 1635, 1765, 1982, 2249, 1927, 1714, 1609, 1490, 1433, 1359, 1308, 1288, 1276, 1342, 1411, 1490, 1576, 1709, 1844, 2082, 2338, 2017, 1798, 1664, 1559, 1485, 1439, 1394, 1379, 1391, 1426, 1479, 1551, 1635, 1769, 1955, 2213, 2431, 2159, 1930, 1757, 1621, 1577, 1511, 1477, 1472, 1478, 1505, 1543, 1624, 1701, 1854, 2068, 2289, 2424, 2311, 2078, 1912, 1746, 1640, 1591, 1545, 1554, 1534, 1571, 1628, 1701, 1800, 2021, 2231, 2451]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2478, 2452, 2151, 1986, 1840, 1757, 1684, 1614, 1635, 1605, 1654, 1682, 1790, 1910, 2085, 2346, 2552, 2500, 2247, 1984, 1781, 1680, 1595, 1527, 1495, 1491, 1498, 1527, 1598, 1630, 1726, 1881, 2140, 2357, 2429, 2088, 1878, 1698, 1597, 1516, 1464, 1429, 1416, 1430, 1463, 1502, 1573, 1655, 1778, 1981, 2220, 2316, 1987, 1753, 1634, 1515, 1450, 1402, 1322, 1309, 1327, 1383, 1449, 1504, 1591, 1696, 1868, 2100, 2177, 1895, 1695, 1578, 1478, 1393, 1303, 1244, 1214, 1229, 1289, 1363, 1463, 1531, 1670, 1808, 1996, 2126, 1824, 1636, 1529, 1449, 1321, 1234, 1161, 1137, 1159, 1218, 1312, 1396, 1492, 1587, 1749, 1983, 2052, 1787, 1627, 1511, 1403, 1274, 1159, 1108, 1084, 1107, 1146, 1249, 1344, 1460, 1575, 1717, 1889, 1977, 1740, 1584, 1471, 1354, 1243, 1130, 1068, 1055, 1071, 1112, 1198, 1329, 1434, 1534, 1685, 1857, 2013, 1741, 1561, 1474, 1334, 1233, 1116, 1056, 1024, 1030, 1101, 1189, 1300, 1429, 1548, 1657, 1799, 1986, 1727, 1567, 1479, 1364, 1230, 1123, 1061, 1026, 1046, 1109, 1174, 1303, 1458, 1529, 1700, 1817, 1996, 1744, 1619, 1485, 1360, 1259, 1145, 1081, 1054, 1065, 1138, 1227, 1336, 1462, 1552, 1678, 1833, 2051, 1792, 1622, 1507, 1400, 1295, 1206, 1136, 1107, 1133, 1181, 1271, 1367, 1481, 1587, 1728, 1932, 2143, 1857, 1673, 1548, 1459, 1351, 1254, 1202, 1173, 1203, 1235, 1328, 1427, 1514, 1624, 1777, 1983, 2230, 1915, 1710, 1601, 1500, 1417, 1332, 1284, 1263, 1286, 1316, 1417, 1474, 1559, 1692, 1829, 2060, 2346, 2042, 1822, 1662, 1565, 1472, 1429, 1385, 1353, 1366, 1440, 1469, 1539, 1629, 1725, 1963, 2166, 2475, 2111, 1883, 1724, 1633, 1548, 1505, 1456, 1445, 1465, 1486, 1530, 1615, 1686, 1844, 2040, 2265, 2400, 2314, 2042, 1855, 1705, 1625, 1569, 1544, 1521, 1524, 1561, 1621, 1709, 1799, 1970, 2172, 2408]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2299, 2305, 2025, 1808, 1643, 1601, 1551, 1522, 1480, 1498, 1531, 1605, 1650, 1741, 1908, 2128, 2341, 2412, 2103, 1805, 1665, 1547, 1480, 1419, 1384, 1378, 1395, 1408, 1485, 1547, 1635, 1747, 1989, 2238, 2266, 1951, 1726, 1599, 1468, 1402, 1353, 1334, 1307, 1313, 1342, 1384, 1462, 1575, 1661, 1848, 2084, 2115, 1825, 1642, 1505, 1417, 1343, 1277, 1247, 1242, 1251, 1282, 1323, 1398, 1486, 1604, 1738, 1939, 1994, 1737, 1595, 1460, 1371, 1291, 1219, 1196, 1175, 1185, 1214, 1282, 1344, 1429, 1535, 1658, 1847, 1935, 1676, 1565, 1440, 1338, 1244, 1178, 1150, 1119, 1140, 1176, 1218, 1307, 1386, 1509, 1622, 1770, 1885, 1666, 1512, 1362, 1296, 1202, 1145, 1105, 1079, 1112, 1135, 1193, 1272, 1346, 1465, 1595, 1717, 1821, 1623, 1450, 1368, 1266, 1187, 1115, 1084, 1048, 1064, 1102, 1163, 1254, 1336, 1431, 1579, 1748, 1822, 1624, 1468, 1373, 1255, 1176, 1107, 1050, 1029, 1032, 1089, 1150, 1239, 1318, 1422, 1552, 1676, 1798, 1613, 1442, 1376, 1263, 1189, 1119, 1062, 1024, 1050, 1100, 1151, 1242, 1333, 1431, 1573, 1672, 1870, 1642, 1479, 1369, 1284, 1197, 1133, 1081, 1060, 1066, 1122, 1156, 1257, 1343, 1423, 1588, 1687, 1898, 1649, 1508, 1416, 1295, 1227, 1165, 1129, 1095, 1117, 1146, 1203, 1292, 1375, 1454, 1606, 1720, 1955, 1693, 1548, 1431, 1349, 1275, 1210, 1167, 1148, 1150, 1189, 1250, 1339, 1395, 1510, 1632, 1785, 2038, 1774, 1612, 1509, 1373, 1316, 1242, 1211, 1193, 1219, 1250, 1293, 1367, 1445, 1571, 1684, 1875, 2158, 1869, 1678, 1575, 1471, 1380, 1319, 1298, 1263, 1283, 1311, 1369, 1431, 1527, 1629, 1779, 1968, 2257, 2030, 1762, 1632, 1516, 1448, 1391, 1352, 1346, 1342, 1367, 1427, 1489, 1592, 1697, 1890, 2114, 2292, 2109, 1907, 1703, 1601, 1538, 1467, 1424, 1422, 1425, 1459, 1508, 1577, 1655, 1815, 2027, 2205]
                                       }
                                   }, {
                                       "name":    "2592x1944_D75_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "D75",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3495, 3273, 2784, 2423, 2153, 2053, 1911, 1856, 1859, 1857, 1932, 2031, 2121, 2329, 2645, 3183, 3526, 3344, 2903, 2432, 2094, 1946, 1846, 1700, 1703, 1625, 1637, 1706, 1772, 1891, 2019, 2260, 2736, 3145, 3309, 2643, 2234, 2022, 1832, 1710, 1609, 1507, 1499, 1513, 1574, 1641, 1820, 1932, 2128, 2507, 2971, 3101, 2439, 2091, 1889, 1718, 1574, 1472, 1381, 1363, 1392, 1452, 1539, 1655, 1803, 2039, 2231, 2683, 2865, 2269, 1982, 1770, 1626, 1481, 1343, 1304, 1263, 1266, 1322, 1447, 1573, 1707, 1881, 2121, 2524, 2781, 2163, 1957, 1725, 1567, 1379, 1261, 1190, 1155, 1167, 1224, 1365, 1476, 1638, 1828, 2080, 2432, 2664, 2092, 1845, 1638, 1510, 1347, 1185, 1119, 1070, 1088, 1155, 1280, 1409, 1591, 1762, 1984, 2316, 2526, 2090, 1838, 1629, 1449, 1292, 1142, 1067, 1038, 1055, 1108, 1231, 1392, 1558, 1754, 1981, 2275, 2629, 2041, 1811, 1629, 1447, 1279, 1141, 1044, 1024, 1029, 1089, 1213, 1370, 1573, 1735, 1976, 2225, 2484, 2061, 1807, 1626, 1419, 1298, 1151, 1054, 1026, 1032, 1105, 1243, 1358, 1565, 1756, 1991, 2206, 2607, 2066, 1855, 1675, 1474, 1310, 1183, 1087, 1052, 1080, 1149, 1242, 1421, 1587, 1762, 2031, 2307, 2750, 2154, 1894, 1704, 1508, 1386, 1256, 1169, 1125, 1150, 1209, 1332, 1445, 1670, 1826, 2049, 2418, 2817, 2244, 1991, 1771, 1610, 1459, 1351, 1269, 1224, 1257, 1310, 1420, 1570, 1734, 1886, 2126, 2530, 2992, 2339, 2024, 1868, 1694, 1557, 1457, 1368, 1343, 1359, 1410, 1509, 1636, 1798, 1987, 2212, 2603, 3234, 2541, 2230, 1965, 1827, 1658, 1563, 1512, 1438, 1470, 1529, 1650, 1789, 1918, 2056, 2386, 2900, 3377, 2730, 2372, 2092, 1923, 1794, 1729, 1650, 1607, 1652, 1661, 1795, 1867, 2030, 2253, 2655, 3040, 3588, 3148, 2620, 2339, 2136, 1999, 1894, 1782, 1770, 1795, 1828, 1920, 2062, 2213, 2457, 2969, 3412]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3034, 2993, 2515, 2185, 1947, 1855, 1764, 1679, 1660, 1710, 1753, 1819, 1906, 2146, 2333, 2762, 3106, 3041, 2527, 2221, 1910, 1781, 1642, 1565, 1541, 1528, 1524, 1578, 1647, 1718, 1850, 2086, 2418, 2862, 2932, 2385, 2009, 1811, 1652, 1561, 1501, 1453, 1438, 1449, 1482, 1537, 1626, 1744, 1925, 2208, 2653, 2640, 2163, 1899, 1698, 1575, 1484, 1394, 1357, 1320, 1327, 1391, 1457, 1553, 1644, 1815, 2061, 2425, 2482, 2014, 1771, 1629, 1513, 1407, 1294, 1269, 1216, 1237, 1289, 1380, 1477, 1582, 1725, 1942, 2288, 2334, 1933, 1720, 1571, 1466, 1332, 1232, 1164, 1156, 1156, 1210, 1319, 1425, 1537, 1678, 1879, 2190, 2256, 1901, 1664, 1523, 1398, 1280, 1178, 1112, 1076, 1098, 1145, 1251, 1344, 1507, 1630, 1834, 2104, 2224, 1873, 1637, 1521, 1388, 1232, 1158, 1085, 1034, 1060, 1107, 1192, 1326, 1463, 1598, 1800, 2060, 2218, 1832, 1640, 1505, 1358, 1238, 1115, 1061, 1030, 1038, 1096, 1189, 1325, 1472, 1593, 1797, 2044, 2194, 1837, 1667, 1509, 1378, 1248, 1131, 1063, 1024, 1046, 1100, 1196, 1336, 1492, 1619, 1790, 2060, 2270, 1890, 1678, 1524, 1422, 1274, 1156, 1099, 1062, 1090, 1146, 1215, 1354, 1489, 1628, 1805, 2122, 2329, 1933, 1706, 1571, 1458, 1321, 1225, 1149, 1108, 1139, 1181, 1283, 1419, 1518, 1665, 1854, 2169, 2464, 1997, 1762, 1629, 1504, 1406, 1299, 1230, 1190, 1207, 1273, 1358, 1492, 1596, 1734, 1924, 2251, 2623, 2141, 1840, 1690, 1539, 1465, 1380, 1322, 1300, 1289, 1361, 1442, 1539, 1652, 1834, 2038, 2404, 2779, 2279, 1958, 1768, 1627, 1532, 1474, 1421, 1404, 1418, 1459, 1525, 1618, 1734, 1923, 2200, 2612, 2957, 2497, 2146, 1898, 1714, 1648, 1565, 1522, 1515, 1523, 1558, 1610, 1718, 1831, 2052, 2379, 2763, 3024, 2748, 2369, 2114, 1883, 1740, 1672, 1613, 1621, 1601, 1649, 1726, 1829, 1977, 2297, 2641, 3062]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3101, 2936, 2462, 2205, 1995, 1876, 1778, 1691, 1713, 1681, 1743, 1788, 1935, 2112, 2378, 2794, 3207, 3053, 2611, 2213, 1926, 1782, 1669, 1582, 1542, 1536, 1545, 1582, 1672, 1724, 1861, 2085, 2472, 2856, 2900, 2369, 2055, 1808, 1670, 1566, 1501, 1458, 1443, 1460, 1500, 1551, 1643, 1758, 1934, 2234, 2621, 2710, 2215, 1886, 1719, 1566, 1484, 1425, 1337, 1323, 1342, 1405, 1483, 1554, 1669, 1818, 2068, 2428, 2501, 2082, 1803, 1644, 1517, 1416, 1315, 1251, 1220, 1236, 1301, 1384, 1501, 1592, 1774, 1976, 2269, 2416, 1983, 1726, 1582, 1480, 1335, 1240, 1164, 1139, 1162, 1224, 1326, 1423, 1541, 1669, 1893, 2235, 2310, 1929, 1709, 1557, 1427, 1283, 1162, 1109, 1084, 1108, 1149, 1257, 1364, 1501, 1650, 1846, 2106, 2208, 1869, 1656, 1510, 1373, 1250, 1132, 1068, 1055, 1071, 1113, 1204, 1346, 1470, 1600, 1804, 2059, 2251, 1868, 1629, 1513, 1351, 1239, 1117, 1056, 1024, 1030, 1102, 1194, 1315, 1464, 1614, 1770, 1986, 2220, 1853, 1637, 1519, 1383, 1237, 1125, 1061, 1026, 1046, 1110, 1179, 1319, 1496, 1594, 1822, 2010, 2239, 1878, 1700, 1528, 1381, 1268, 1148, 1082, 1054, 1065, 1140, 1235, 1355, 1503, 1624, 1800, 2036, 2321, 1944, 1710, 1557, 1427, 1308, 1212, 1138, 1108, 1135, 1186, 1283, 1392, 1529, 1669, 1868, 2171, 2457, 2036, 1778, 1610, 1496, 1371, 1264, 1208, 1177, 1209, 1244, 1347, 1462, 1572, 1721, 1939, 2252, 2597, 2126, 1835, 1681, 1550, 1448, 1351, 1297, 1274, 1299, 1334, 1448, 1521, 1633, 1813, 2019, 2376, 2789, 2311, 1987, 1766, 1634, 1517, 1463, 1411, 1376, 1391, 1475, 1514, 1605, 1728, 1870, 2211, 2549, 3018, 2435, 2088, 1858, 1728, 1616, 1558, 1499, 1485, 1509, 1537, 1595, 1707, 1813, 2040, 2343, 2730, 2989, 2752, 2323, 2044, 1834, 1722, 1646, 1612, 1584, 1589, 1637, 1718, 1839, 1975, 2231, 2562, 3001]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2846, 2740, 2302, 1986, 1761, 1694, 1626, 1587, 1538, 1560, 1603, 1699, 1769, 1904, 2152, 2503, 2905, 2931, 2424, 1991, 1788, 1629, 1539, 1463, 1420, 1412, 1432, 1450, 1545, 1629, 1752, 1920, 2276, 2692, 2683, 2196, 1872, 1693, 1525, 1440, 1380, 1356, 1327, 1334, 1368, 1421, 1518, 1665, 1793, 2066, 2439, 2447, 2014, 1755, 1572, 1458, 1368, 1293, 1258, 1252, 1263, 1298, 1347, 1437, 1550, 1710, 1907, 2218, 2267, 1890, 1687, 1512, 1401, 1307, 1228, 1202, 1180, 1190, 1222, 1298, 1371, 1477, 1618, 1794, 2078, 2174, 1805, 1644, 1484, 1361, 1254, 1183, 1153, 1121, 1142, 1181, 1227, 1327, 1424, 1580, 1740, 1966, 2101, 1786, 1578, 1394, 1313, 1209, 1147, 1106, 1079, 1113, 1137, 1199, 1287, 1376, 1525, 1702, 1890, 2015, 1731, 1505, 1398, 1280, 1192, 1116, 1084, 1048, 1064, 1103, 1167, 1267, 1363, 1483, 1679, 1924, 2014, 1731, 1524, 1403, 1267, 1181, 1108, 1050, 1029, 1032, 1090, 1154, 1251, 1343, 1473, 1646, 1833, 1986, 1719, 1496, 1407, 1276, 1194, 1120, 1062, 1024, 1050, 1101, 1155, 1254, 1360, 1484, 1672, 1829, 2082, 1757, 1541, 1402, 1300, 1204, 1135, 1082, 1060, 1066, 1124, 1161, 1271, 1373, 1477, 1693, 1853, 2128, 1773, 1579, 1457, 1315, 1237, 1169, 1131, 1096, 1119, 1150, 1211, 1311, 1412, 1517, 1722, 1903, 2216, 1837, 1633, 1480, 1377, 1290, 1218, 1172, 1152, 1154, 1196, 1264, 1366, 1439, 1588, 1762, 1999, 2347, 1951, 1719, 1576, 1410, 1339, 1255, 1221, 1201, 1229, 1264, 1314, 1403, 1503, 1671, 1840, 2134, 2538, 2092, 1814, 1665, 1528, 1416, 1344, 1318, 1279, 1302, 1335, 1404, 1483, 1609, 1754, 1978, 2285, 2718, 2329, 1938, 1749, 1593, 1503, 1431, 1385, 1377, 1374, 1405, 1479, 1561, 1701, 1857, 2148, 2522, 2835, 2477, 2151, 1857, 1711, 1621, 1530, 1476, 1473, 1477, 1521, 1586, 1682, 1798, 2033, 2367, 2711]
                                       }
                                   }, {
                                       "name":    "2592x1944_HZ_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "HZ",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3051, 3098, 2760, 2468, 2307, 2212, 2118, 2023, 1965, 2006, 2049, 2135, 2247, 2383, 2612, 2933, 3129, 3159, 2864, 2522, 2286, 2172, 1975, 1840, 1826, 1758, 1780, 1832, 1934, 2061, 2233, 2400, 2712, 3035, 3125, 2633, 2346, 2157, 2019, 1847, 1727, 1643, 1603, 1617, 1690, 1790, 1936, 2117, 2267, 2508, 2881, 3047, 2502, 2267, 2037, 1903, 1724, 1574, 1512, 1474, 1496, 1552, 1640, 1794, 1985, 2182, 2401, 2764, 2884, 2360, 2181, 1988, 1764, 1578, 1455, 1360, 1300, 1321, 1420, 1541, 1697, 1879, 2110, 2290, 2623, 2749, 2337, 2081, 1883, 1673, 1511, 1346, 1219, 1185, 1215, 1301, 1436, 1589, 1784, 2009, 2207, 2495, 2715, 2274, 2014, 1801, 1591, 1419, 1250, 1140, 1104, 1116, 1193, 1324, 1546, 1693, 1946, 2183, 2474, 2627, 2239, 2006, 1772, 1556, 1354, 1185, 1077, 1043, 1054, 1138, 1277, 1496, 1677, 1919, 2144, 2405, 2647, 2209, 1985, 1744, 1562, 1344, 1170, 1059, 1024, 1024, 1124, 1253, 1455, 1664, 1879, 2148, 2386, 2619, 2244, 1999, 1763, 1563, 1345, 1181, 1079, 1038, 1043, 1115, 1264, 1477, 1657, 1893, 2126, 2384, 2709, 2227, 2029, 1814, 1570, 1391, 1209, 1130, 1069, 1095, 1174, 1311, 1516, 1717, 1931, 2173, 2423, 2728, 2282, 2077, 1852, 1647, 1481, 1294, 1203, 1163, 1174, 1263, 1405, 1565, 1790, 1980, 2208, 2490, 2934, 2344, 2152, 1924, 1708, 1567, 1419, 1317, 1272, 1299, 1367, 1528, 1657, 1867, 2068, 2292, 2560, 3011, 2477, 2217, 2039, 1821, 1659, 1546, 1477, 1415, 1439, 1532, 1630, 1764, 1966, 2165, 2345, 2738, 3102, 2617, 2308, 2147, 2005, 1793, 1666, 1610, 1562, 1596, 1657, 1737, 1931, 2115, 2232, 2486, 2790, 3140, 2776, 2454, 2258, 2101, 1982, 1811, 1774, 1732, 1749, 1821, 1948, 2038, 2189, 2317, 2635, 2976, 3046, 2952, 2653, 2415, 2248, 2140, 2022, 1974, 1945, 1962, 1970, 2108, 2201, 2331, 2520, 2886, 3118]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2585, 2623, 2285, 2101, 1951, 1867, 1786, 1778, 1765, 1768, 1802, 1843, 1892, 2036, 2198, 2493, 2740, 2683, 2343, 2084, 1873, 1794, 1699, 1630, 1551, 1537, 1607, 1632, 1663, 1768, 1839, 1982, 2191, 2459, 2604, 2218, 1986, 1811, 1710, 1601, 1504, 1455, 1477, 1472, 1495, 1580, 1662, 1771, 1860, 2077, 2343, 2390, 2041, 1870, 1758, 1611, 1511, 1406, 1381, 1344, 1360, 1400, 1469, 1555, 1677, 1785, 1939, 2224, 2296, 1972, 1782, 1660, 1534, 1435, 1348, 1274, 1251, 1257, 1325, 1376, 1471, 1600, 1726, 1890, 2104, 2173, 1933, 1754, 1601, 1494, 1343, 1260, 1190, 1174, 1185, 1231, 1318, 1415, 1527, 1689, 1817, 2010, 2155, 1889, 1704, 1536, 1421, 1315, 1223, 1139, 1077, 1124, 1175, 1267, 1355, 1511, 1655, 1776, 1948, 2103, 1840, 1671, 1533, 1390, 1273, 1178, 1097, 1063, 1061, 1110, 1223, 1334, 1462, 1608, 1777, 1957, 2128, 1813, 1661, 1504, 1381, 1251, 1149, 1074, 1024, 1051, 1115, 1217, 1311, 1448, 1579, 1755, 1932, 2077, 1814, 1689, 1535, 1392, 1280, 1164, 1095, 1052, 1054, 1108, 1208, 1334, 1467, 1607, 1742, 1972, 2155, 1841, 1717, 1543, 1417, 1300, 1216, 1127, 1087, 1095, 1171, 1253, 1366, 1502, 1655, 1786, 1958, 2235, 1867, 1746, 1618, 1466, 1342, 1275, 1202, 1151, 1163, 1230, 1314, 1412, 1555, 1697, 1804, 2046, 2331, 1955, 1797, 1659, 1531, 1420, 1329, 1267, 1234, 1250, 1286, 1377, 1495, 1629, 1749, 1864, 2102, 2371, 2035, 1830, 1737, 1594, 1486, 1411, 1336, 1331, 1340, 1387, 1478, 1569, 1713, 1803, 1940, 2194, 2531, 2159, 1936, 1795, 1693, 1588, 1528, 1474, 1438, 1429, 1486, 1574, 1655, 1777, 1878, 2044, 2388, 2691, 2331, 2038, 1879, 1797, 1718, 1634, 1575, 1540, 1585, 1631, 1682, 1746, 1818, 1991, 2167, 2450, 2693, 2453, 2227, 2010, 1866, 1805, 1739, 1715, 1702, 1697, 1748, 1793, 1854, 1934, 2116, 2306, 2622]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2699, 2572, 2343, 2100, 1939, 1848, 1776, 1704, 1734, 1740, 1745, 1806, 1876, 2030, 2187, 2508, 2708, 2689, 2400, 2100, 1889, 1771, 1664, 1606, 1566, 1529, 1576, 1597, 1684, 1736, 1844, 2044, 2282, 2536, 2617, 2275, 1957, 1832, 1697, 1614, 1492, 1456, 1437, 1440, 1497, 1551, 1674, 1757, 1918, 2126, 2399, 2479, 2118, 1879, 1738, 1612, 1520, 1414, 1356, 1340, 1359, 1414, 1500, 1582, 1742, 1835, 2033, 2253, 2421, 2004, 1831, 1707, 1542, 1438, 1325, 1268, 1244, 1279, 1311, 1389, 1508, 1626, 1783, 1915, 2151, 2245, 1943, 1789, 1630, 1489, 1360, 1249, 1199, 1176, 1187, 1232, 1330, 1455, 1586, 1731, 1859, 2055, 2184, 1934, 1762, 1606, 1437, 1305, 1212, 1134, 1088, 1124, 1186, 1256, 1396, 1542, 1678, 1842, 2011, 2149, 1880, 1706, 1547, 1406, 1269, 1151, 1100, 1053, 1071, 1141, 1232, 1377, 1514, 1695, 1828, 2023, 2167, 1848, 1731, 1547, 1377, 1255, 1135, 1054, 1026, 1040, 1103, 1221, 1353, 1488, 1679, 1792, 1967, 2166, 1862, 1702, 1542, 1393, 1257, 1155, 1069, 1024, 1048, 1118, 1218, 1368, 1491, 1680, 1805, 2034, 2138, 1873, 1705, 1579, 1431, 1285, 1191, 1102, 1069, 1084, 1159, 1248, 1378, 1512, 1686, 1851, 2037, 2257, 1904, 1751, 1614, 1446, 1330, 1227, 1163, 1133, 1152, 1217, 1305, 1427, 1570, 1732, 1844, 2080, 2269, 1956, 1784, 1669, 1510, 1384, 1274, 1231, 1216, 1227, 1280, 1382, 1471, 1627, 1771, 1917, 2099, 2351, 2045, 1842, 1730, 1605, 1455, 1370, 1305, 1287, 1299, 1357, 1445, 1543, 1708, 1801, 1979, 2239, 2503, 2129, 1912, 1785, 1685, 1532, 1464, 1414, 1384, 1394, 1449, 1508, 1622, 1741, 1894, 2077, 2330, 2598, 2278, 1996, 1853, 1720, 1647, 1556, 1502, 1485, 1524, 1546, 1632, 1746, 1803, 1930, 2209, 2420, 2566, 2431, 2183, 1946, 1833, 1742, 1666, 1611, 1604, 1605, 1659, 1733, 1775, 1914, 2093, 2345, 2554]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2483, 2475, 2197, 1945, 1831, 1726, 1668, 1605, 1639, 1671, 1640, 1736, 1805, 1947, 2119, 2408, 2496, 2650, 2313, 1959, 1770, 1722, 1638, 1569, 1529, 1560, 1549, 1572, 1599, 1672, 1770, 1902, 2165, 2373, 2472, 2092, 1889, 1703, 1642, 1545, 1488, 1431, 1444, 1494, 1502, 1555, 1600, 1682, 1856, 2000, 2296, 2323, 2007, 1776, 1690, 1574, 1473, 1415, 1353, 1344, 1361, 1392, 1460, 1543, 1625, 1773, 1880, 2204, 2307, 1947, 1737, 1631, 1521, 1415, 1341, 1283, 1260, 1255, 1324, 1415, 1469, 1556, 1682, 1827, 2005, 2186, 1830, 1671, 1565, 1443, 1362, 1235, 1198, 1163, 1208, 1239, 1356, 1448, 1532, 1669, 1809, 1957, 2087, 1780, 1657, 1511, 1421, 1304, 1224, 1134, 1129, 1119, 1199, 1283, 1403, 1488, 1591, 1723, 1934, 2045, 1797, 1645, 1505, 1376, 1256, 1142, 1079, 1043, 1080, 1120, 1224, 1348, 1459, 1561, 1722, 1884, 2099, 1748, 1577, 1481, 1378, 1250, 1165, 1080, 1024, 1030, 1099, 1195, 1340, 1439, 1578, 1683, 1853, 2051, 1741, 1626, 1498, 1375, 1275, 1159, 1069, 1042, 1035, 1111, 1207, 1341, 1461, 1550, 1690, 1838, 2069, 1733, 1634, 1525, 1412, 1278, 1168, 1115, 1067, 1075, 1118, 1229, 1353, 1461, 1574, 1704, 1892, 1999, 1776, 1650, 1523, 1433, 1338, 1217, 1146, 1111, 1135, 1186, 1283, 1401, 1493, 1586, 1716, 1919, 2121, 1874, 1649, 1589, 1462, 1377, 1293, 1228, 1207, 1223, 1239, 1325, 1411, 1554, 1606, 1764, 1929, 2257, 1912, 1725, 1629, 1530, 1439, 1355, 1309, 1267, 1309, 1323, 1415, 1450, 1557, 1672, 1805, 2086, 2379, 2065, 1790, 1683, 1627, 1493, 1455, 1416, 1384, 1379, 1443, 1459, 1544, 1622, 1720, 1892, 2100, 2452, 2163, 1902, 1739, 1653, 1560, 1510, 1496, 1469, 1476, 1453, 1538, 1601, 1702, 1820, 2014, 2322, 2521, 2267, 1984, 1825, 1727, 1619, 1589, 1571, 1534, 1538, 1567, 1588, 1694, 1753, 1938, 2129, 2381]
                                       }
                                   }, {
                                       "name":    "2592x1944_HZ_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "HZ",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3920, 3801, 3240, 2796, 2551, 2404, 2274, 2154, 2084, 2134, 2195, 2315, 2479, 2692, 3051, 3580, 4031, 3958, 3412, 2880, 2528, 2351, 2098, 1930, 1905, 1828, 1855, 1921, 2051, 2223, 2465, 2728, 3215, 3788, 3829, 3057, 2620, 2341, 2146, 1931, 1786, 1688, 1643, 1660, 1745, 1868, 2052, 2295, 2525, 2899, 3504, 3664, 2852, 2493, 2177, 1995, 1779, 1608, 1537, 1495, 1520, 1584, 1689, 1874, 2118, 2393, 2726, 3294, 3406, 2647, 2368, 2103, 1828, 1612, 1474, 1371, 1308, 1331, 1437, 1573, 1755, 1981, 2286, 2562, 3072, 3203, 2597, 2236, 1973, 1720, 1534, 1356, 1223, 1188, 1219, 1309, 1456, 1630, 1863, 2153, 2442, 2882, 3138, 2507, 2148, 1874, 1626, 1434, 1255, 1141, 1105, 1117, 1197, 1335, 1578, 1756, 2071, 2400, 2837, 3017, 2458, 2133, 1838, 1586, 1365, 1187, 1077, 1043, 1054, 1140, 1285, 1522, 1735, 2034, 2346, 2741, 3037, 2420, 2107, 1806, 1591, 1354, 1172, 1059, 1024, 1024, 1125, 1260, 1478, 1719, 1988, 2348, 2714, 3006, 2463, 2125, 1828, 1593, 1355, 1183, 1079, 1038, 1043, 1116, 1272, 1502, 1713, 2005, 2324, 2715, 3131, 2452, 2165, 1888, 1604, 1405, 1213, 1131, 1069, 1096, 1177, 1322, 1547, 1782, 2054, 2388, 2773, 3176, 2532, 2231, 1939, 1692, 1503, 1302, 1207, 1165, 1177, 1270, 1423, 1604, 1870, 2120, 2443, 2875, 3470, 2627, 2334, 2031, 1767, 1600, 1436, 1327, 1279, 1308, 1382, 1559, 1711, 1968, 2237, 2564, 2992, 3617, 2821, 2434, 2180, 1904, 1709, 1578, 1500, 1434, 1460, 1563, 1678, 1841, 2097, 2373, 2657, 3261, 3799, 3037, 2574, 2330, 2130, 1871, 1719, 1653, 1599, 1637, 1710, 1809, 2047, 2293, 2482, 2872, 3382, 3932, 3297, 2795, 2495, 2269, 2106, 1898, 1848, 1799, 1821, 1909, 2067, 2196, 2413, 2625, 3115, 3707, 3912, 3606, 3103, 2732, 2480, 2321, 2164, 2098, 2062, 2084, 2104, 2283, 2425, 2629, 2934, 3517, 4016]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3254, 3166, 2634, 2346, 2127, 2003, 1894, 1877, 1859, 1865, 1913, 1976, 2057, 2266, 2522, 2991, 3476, 3304, 2735, 2337, 2036, 1914, 1786, 1697, 1603, 1586, 1665, 1699, 1745, 1884, 1996, 2211, 2538, 2996, 3134, 2533, 2185, 1939, 1798, 1660, 1544, 1486, 1508, 1505, 1534, 1637, 1744, 1892, 2033, 2355, 2785, 2806, 2281, 2024, 1860, 1672, 1550, 1429, 1399, 1359, 1377, 1423, 1504, 1610, 1768, 1924, 2155, 2590, 2653, 2176, 1905, 1736, 1578, 1460, 1362, 1282, 1258, 1265, 1338, 1398, 1509, 1669, 1839, 2076, 2408, 2475, 2113, 1861, 1661, 1528, 1358, 1267, 1193, 1177, 1188, 1237, 1332, 1443, 1580, 1786, 1974, 2269, 2438, 2050, 1796, 1584, 1446, 1326, 1227, 1140, 1077, 1125, 1178, 1276, 1375, 1557, 1741, 1916, 2179, 2365, 1987, 1755, 1578, 1410, 1281, 1180, 1097, 1063, 1061, 1111, 1229, 1351, 1501, 1683, 1912, 2184, 2394, 1953, 1742, 1545, 1400, 1258, 1151, 1074, 1024, 1051, 1116, 1223, 1326, 1484, 1649, 1885, 2151, 2333, 1956, 1775, 1580, 1413, 1288, 1166, 1095, 1052, 1054, 1109, 1214, 1351, 1506, 1682, 1871, 2202, 2438, 1994, 1811, 1592, 1441, 1310, 1220, 1128, 1087, 1096, 1174, 1262, 1387, 1547, 1740, 1928, 2192, 2553, 2034, 1852, 1680, 1498, 1357, 1283, 1206, 1153, 1166, 1236, 1328, 1440, 1610, 1795, 1959, 2315, 2698, 2155, 1922, 1735, 1575, 1444, 1342, 1275, 1240, 1258, 1297, 1399, 1536, 1701, 1866, 2044, 2405, 2781, 2274, 1977, 1836, 1654, 1522, 1435, 1352, 1346, 1356, 1409, 1514, 1626, 1809, 1945, 2157, 2550, 3037, 2459, 2125, 1920, 1779, 1645, 1570, 1507, 1467, 1458, 1525, 1630, 1736, 1899, 2055, 2313, 2845, 3315, 2720, 2280, 2043, 1918, 1808, 1701, 1630, 1589, 1641, 1698, 1767, 1859, 1970, 2222, 2507, 2983, 3408, 2938, 2560, 2234, 2026, 1931, 1841, 1805, 1788, 1785, 1851, 1917, 2012, 2141, 2418, 2741, 3307]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3417, 3097, 2708, 2345, 2113, 1981, 1883, 1793, 1824, 1833, 1848, 1932, 2038, 2259, 2509, 3011, 3429, 3312, 2810, 2357, 2055, 1887, 1746, 1670, 1620, 1577, 1631, 1660, 1769, 1847, 2002, 2287, 2656, 3102, 3151, 2605, 2151, 1964, 1783, 1674, 1531, 1487, 1466, 1470, 1536, 1604, 1757, 1876, 2103, 2417, 2860, 2922, 2377, 2035, 1837, 1673, 1559, 1438, 1373, 1355, 1376, 1438, 1538, 1640, 1842, 1983, 2272, 2628, 2813, 2215, 1962, 1789, 1587, 1463, 1338, 1276, 1251, 1288, 1324, 1411, 1550, 1698, 1906, 2106, 2468, 2566, 2125, 1901, 1693, 1522, 1376, 1256, 1203, 1179, 1190, 1238, 1345, 1486, 1645, 1834, 2024, 2326, 2475, 2104, 1862, 1661, 1463, 1316, 1216, 1135, 1088, 1125, 1189, 1265, 1419, 1591, 1766, 1995, 2258, 2422, 2034, 1794, 1593, 1427, 1277, 1153, 1100, 1053, 1071, 1143, 1239, 1397, 1557, 1782, 1973, 2266, 2442, 1994, 1821, 1592, 1396, 1262, 1136, 1054, 1026, 1040, 1104, 1227, 1371, 1528, 1762, 1929, 2194, 2444, 2013, 1790, 1588, 1414, 1264, 1157, 1069, 1024, 1048, 1119, 1224, 1387, 1532, 1765, 1946, 2279, 2417, 2032, 1797, 1631, 1456, 1295, 1194, 1103, 1069, 1085, 1162, 1256, 1400, 1558, 1776, 2005, 2291, 2581, 2079, 1857, 1676, 1476, 1345, 1233, 1166, 1135, 1155, 1223, 1318, 1456, 1627, 1836, 2007, 2358, 2619, 2156, 1907, 1746, 1552, 1406, 1285, 1238, 1222, 1234, 1291, 1404, 1509, 1699, 1892, 2109, 2401, 2755, 2287, 1991, 1828, 1666, 1489, 1391, 1319, 1299, 1313, 1377, 1478, 1597, 1803, 1942, 2205, 2609, 2999, 2421, 2096, 1909, 1770, 1584, 1501, 1442, 1409, 1421, 1484, 1557, 1698, 1858, 2075, 2355, 2768, 3187, 2651, 2228, 2012, 1829, 1727, 1615, 1549, 1529, 1574, 1603, 1710, 1859, 1953, 2146, 2562, 2942, 3227, 2908, 2503, 2156, 1986, 1858, 1757, 1688, 1677, 1681, 1749, 1848, 1917, 2116, 2388, 2793, 3209]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [3108, 2967, 2521, 2155, 1984, 1840, 1759, 1681, 1717, 1756, 1727, 1851, 1953, 2157, 2422, 2877, 3127, 3258, 2697, 2182, 1913, 1831, 1717, 1629, 1579, 1611, 1601, 1632, 1673, 1773, 1913, 2112, 2505, 2878, 2958, 2374, 2068, 1813, 1721, 1598, 1527, 1461, 1473, 1528, 1542, 1609, 1674, 1789, 2028, 2257, 2722, 2719, 2240, 1913, 1782, 1632, 1509, 1439, 1370, 1359, 1378, 1415, 1494, 1597, 1708, 1909, 2083, 2564, 2668, 2145, 1852, 1703, 1564, 1439, 1355, 1292, 1267, 1263, 1337, 1439, 1507, 1620, 1788, 1999, 2280, 2492, 1990, 1766, 1622, 1473, 1378, 1241, 1201, 1165, 1212, 1246, 1372, 1479, 1585, 1763, 1965, 2202, 2353, 1921, 1743, 1557, 1446, 1315, 1228, 1135, 1130, 1120, 1203, 1293, 1426, 1532, 1668, 1854, 2162, 2293, 1936, 1725, 1547, 1396, 1263, 1144, 1079, 1043, 1080, 1121, 1230, 1366, 1497, 1630, 1848, 2093, 2358, 1877, 1647, 1520, 1397, 1257, 1167, 1080, 1024, 1030, 1100, 1200, 1357, 1475, 1648, 1800, 2053, 2301, 1870, 1704, 1540, 1395, 1283, 1161, 1069, 1042, 1035, 1112, 1213, 1359, 1500, 1618, 1810, 2036, 2331, 1866, 1717, 1572, 1436, 1288, 1171, 1116, 1067, 1076, 1120, 1237, 1373, 1502, 1648, 1831, 2109, 2255, 1925, 1741, 1575, 1462, 1353, 1223, 1148, 1112, 1137, 1191, 1295, 1428, 1542, 1668, 1853, 2154, 2429, 2057, 1750, 1656, 1500, 1399, 1305, 1235, 1212, 1230, 1248, 1343, 1444, 1617, 1700, 1923, 2183, 2633, 2122, 1853, 1713, 1583, 1472, 1375, 1324, 1279, 1324, 1341, 1446, 1495, 1631, 1790, 1990, 2410, 2833, 2340, 1949, 1790, 1704, 1541, 1491, 1444, 1409, 1405, 1478, 1503, 1611, 1719, 1864, 2121, 2461, 2986, 2502, 2112, 1876, 1751, 1629, 1563, 1543, 1511, 1521, 1500, 1604, 1691, 1832, 2010, 2309, 2808, 3163, 2689, 2249, 2007, 1860, 1715, 1669, 1643, 1599, 1605, 1644, 1679, 1821, 1919, 2191, 2504, 2963]
                                       }
                                   }, {
                                       "name":    "2592x1944_TL84_70",
                                       "resolution":    "2592x1944",
                                       "illumination":    "TL84",
                                       "vignetting":    70,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [2489, 2474, 2162, 1936, 1806, 1729, 1637, 1617, 1592, 1622, 1645, 1712, 1777, 1890, 2038, 2331, 2488, 2608, 2254, 1988, 1802, 1689, 1627, 1539, 1498, 1463, 1477, 1538, 1630, 1686, 1772, 1921, 2144, 2498, 2498, 2105, 1865, 1728, 1624, 1529, 1456, 1388, 1382, 1371, 1434, 1501, 1602, 1679, 1826, 1984, 2272, 2384, 1985, 1819, 1646, 1535, 1419, 1360, 1291, 1288, 1300, 1332, 1397, 1482, 1610, 1716, 1883, 2154, 2254, 1878, 1719, 1595, 1484, 1348, 1282, 1228, 1201, 1210, 1246, 1328, 1413, 1582, 1683, 1800, 2036, 2178, 1827, 1651, 1507, 1433, 1301, 1208, 1147, 1130, 1144, 1191, 1271, 1384, 1501, 1629, 1756, 2001, 2192, 1795, 1644, 1518, 1367, 1232, 1158, 1099, 1076, 1101, 1144, 1210, 1341, 1449, 1594, 1703, 1937, 2087, 1765, 1635, 1475, 1325, 1208, 1125, 1078, 1040, 1050, 1115, 1180, 1282, 1427, 1571, 1711, 1882, 2081, 1775, 1608, 1452, 1343, 1213, 1116, 1056, 1024, 1035, 1096, 1172, 1280, 1432, 1559, 1691, 1865, 2056, 1744, 1609, 1453, 1308, 1204, 1122, 1061, 1038, 1040, 1092, 1166, 1293, 1416, 1565, 1698, 1891, 2130, 1765, 1644, 1497, 1342, 1252, 1143, 1099, 1076, 1088, 1121, 1204, 1321, 1451, 1595, 1740, 1925, 2140, 1811, 1662, 1541, 1390, 1276, 1193, 1136, 1106, 1125, 1167, 1248, 1371, 1488, 1618, 1763, 1980, 2263, 1853, 1695, 1576, 1429, 1342, 1251, 1185, 1179, 1174, 1227, 1314, 1422, 1559, 1656, 1781, 2004, 2321, 1969, 1736, 1631, 1531, 1450, 1345, 1280, 1257, 1266, 1316, 1399, 1491, 1607, 1704, 1868, 2131, 2433, 2049, 1849, 1689, 1585, 1485, 1408, 1383, 1342, 1373, 1396, 1477, 1565, 1673, 1780, 1974, 2224, 2530, 2187, 1958, 1777, 1668, 1598, 1510, 1495, 1463, 1493, 1511, 1589, 1636, 1763, 1910, 2088, 2392, 2502, 2349, 2093, 1879, 1805, 1698, 1650, 1588, 1588, 1587, 1633, 1691, 1755, 1842, 2050, 2273, 2542]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [2438, 2411, 2149, 1965, 1814, 1695, 1646, 1615, 1592, 1593, 1630, 1697, 1765, 1892, 2046, 2313, 2497, 2471, 2194, 1949, 1740, 1653, 1571, 1522, 1490, 1464, 1478, 1517, 1530, 1623, 1727, 1845, 2057, 2345, 2386, 2036, 1822, 1678, 1582, 1495, 1449, 1419, 1397, 1428, 1457, 1494, 1543, 1627, 1753, 1949, 2186, 2236, 1940, 1718, 1605, 1495, 1438, 1387, 1335, 1324, 1305, 1368, 1422, 1477, 1547, 1673, 1830, 2086, 2119, 1846, 1665, 1555, 1461, 1383, 1296, 1256, 1210, 1230, 1291, 1358, 1433, 1510, 1603, 1741, 1962, 2036, 1764, 1603, 1505, 1423, 1307, 1236, 1168, 1158, 1168, 1212, 1297, 1375, 1460, 1576, 1690, 1899, 1989, 1733, 1581, 1471, 1366, 1273, 1182, 1118, 1077, 1115, 1156, 1231, 1334, 1456, 1547, 1670, 1869, 1936, 1726, 1545, 1455, 1336, 1234, 1148, 1082, 1054, 1058, 1098, 1185, 1310, 1420, 1510, 1647, 1821, 1944, 1685, 1517, 1452, 1338, 1226, 1119, 1054, 1024, 1044, 1102, 1194, 1290, 1416, 1514, 1628, 1792, 1948, 1696, 1535, 1456, 1341, 1215, 1125, 1072, 1049, 1059, 1103, 1190, 1317, 1427, 1523, 1635, 1816, 1993, 1728, 1581, 1463, 1356, 1264, 1153, 1104, 1074, 1075, 1135, 1220, 1343, 1443, 1541, 1681, 1861, 2045, 1751, 1600, 1488, 1417, 1300, 1214, 1159, 1124, 1137, 1186, 1285, 1376, 1485, 1570, 1715, 1893, 2118, 1790, 1645, 1531, 1452, 1356, 1295, 1222, 1195, 1212, 1257, 1333, 1438, 1499, 1607, 1747, 1954, 2207, 1904, 1725, 1590, 1509, 1429, 1357, 1306, 1286, 1297, 1338, 1402, 1473, 1567, 1661, 1808, 2063, 2349, 1977, 1790, 1654, 1545, 1476, 1439, 1400, 1398, 1391, 1443, 1482, 1539, 1625, 1741, 1911, 2143, 2476, 2125, 1898, 1745, 1629, 1555, 1508, 1482, 1474, 1478, 1502, 1540, 1623, 1691, 1827, 2038, 2312, 2432, 2272, 2092, 1859, 1706, 1644, 1590, 1547, 1535, 1558, 1579, 1640, 1718, 1817, 1999, 2175, 2420]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [2458, 2411, 2156, 1975, 1813, 1689, 1634, 1608, 1582, 1579, 1641, 1685, 1777, 1905, 2050, 2332, 2544, 2518, 2242, 1974, 1750, 1671, 1581, 1518, 1471, 1459, 1482, 1519, 1552, 1645, 1727, 1902, 2120, 2393, 2389, 2102, 1850, 1683, 1584, 1510, 1446, 1429, 1401, 1402, 1445, 1488, 1569, 1645, 1779, 1996, 2217, 2321, 1969, 1747, 1624, 1523, 1458, 1372, 1336, 1308, 1331, 1384, 1428, 1485, 1581, 1713, 1885, 2101, 2180, 1889, 1675, 1571, 1469, 1403, 1304, 1252, 1221, 1237, 1298, 1369, 1443, 1524, 1635, 1825, 2023, 2108, 1798, 1627, 1525, 1438, 1336, 1234, 1175, 1150, 1170, 1209, 1316, 1408, 1491, 1612, 1743, 1964, 2040, 1757, 1591, 1485, 1405, 1297, 1176, 1120, 1086, 1113, 1148, 1242, 1352, 1455, 1554, 1691, 1894, 1986, 1735, 1573, 1459, 1390, 1228, 1124, 1081, 1049, 1066, 1112, 1204, 1342, 1431, 1541, 1682, 1878, 2003, 1714, 1580, 1454, 1351, 1221, 1127, 1048, 1024, 1041, 1103, 1210, 1316, 1426, 1535, 1685, 1850, 1984, 1737, 1567, 1469, 1361, 1230, 1121, 1061, 1027, 1047, 1110, 1191, 1323, 1436, 1534, 1695, 1853, 2017, 1730, 1589, 1464, 1381, 1261, 1156, 1091, 1058, 1084, 1137, 1223, 1353, 1436, 1547, 1710, 1888, 2070, 1768, 1597, 1492, 1414, 1310, 1204, 1134, 1115, 1135, 1183, 1274, 1387, 1488, 1578, 1747, 1892, 2154, 1832, 1657, 1514, 1448, 1344, 1258, 1199, 1189, 1194, 1260, 1337, 1435, 1491, 1644, 1781, 1973, 2241, 1906, 1703, 1575, 1493, 1410, 1330, 1290, 1252, 1278, 1319, 1410, 1485, 1561, 1677, 1834, 2065, 2301, 2022, 1780, 1654, 1548, 1452, 1422, 1385, 1349, 1374, 1397, 1447, 1529, 1641, 1750, 1931, 2168, 2460, 2138, 1885, 1723, 1603, 1547, 1466, 1448, 1427, 1446, 1467, 1517, 1622, 1688, 1820, 2042, 2273, 2432, 2283, 2032, 1870, 1682, 1615, 1540, 1525, 1521, 1502, 1534, 1591, 1668, 1769, 1975, 2152, 2383]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2351, 2270, 2032, 1765, 1631, 1549, 1541, 1472, 1457, 1482, 1506, 1556, 1605, 1716, 1912, 2166, 2344, 2319, 2092, 1849, 1636, 1521, 1482, 1411, 1382, 1396, 1391, 1399, 1429, 1524, 1592, 1728, 1916, 2173, 2188, 1925, 1711, 1548, 1443, 1413, 1349, 1312, 1318, 1306, 1331, 1406, 1470, 1507, 1619, 1841, 2038, 2122, 1791, 1608, 1501, 1404, 1346, 1290, 1251, 1216, 1262, 1279, 1326, 1421, 1470, 1554, 1694, 1917, 2040, 1718, 1565, 1441, 1355, 1292, 1253, 1189, 1164, 1168, 1214, 1261, 1322, 1411, 1508, 1627, 1848, 1927, 1629, 1502, 1391, 1291, 1215, 1172, 1149, 1118, 1114, 1166, 1238, 1315, 1380, 1494, 1603, 1798, 1854, 1622, 1450, 1341, 1292, 1201, 1109, 1085, 1069, 1069, 1121, 1178, 1262, 1340, 1447, 1556, 1688, 1830, 1588, 1456, 1336, 1276, 1178, 1093, 1066, 1038, 1044, 1096, 1164, 1231, 1311, 1425, 1506, 1693, 1871, 1600, 1450, 1339, 1241, 1159, 1077, 1031, 1025, 1024, 1067, 1146, 1212, 1308, 1417, 1523, 1626, 1821, 1596, 1421, 1340, 1264, 1175, 1080, 1052, 1031, 1037, 1073, 1124, 1218, 1306, 1407, 1514, 1660, 1871, 1604, 1469, 1372, 1282, 1190, 1090, 1057, 1057, 1058, 1095, 1139, 1231, 1331, 1413, 1552, 1681, 1881, 1629, 1506, 1385, 1323, 1205, 1137, 1101, 1097, 1088, 1111, 1169, 1263, 1339, 1435, 1544, 1714, 1933, 1695, 1536, 1432, 1337, 1252, 1198, 1135, 1133, 1144, 1185, 1232, 1301, 1389, 1467, 1592, 1762, 2034, 1731, 1560, 1463, 1397, 1298, 1234, 1212, 1198, 1199, 1233, 1261, 1354, 1417, 1515, 1657, 1835, 2153, 1883, 1659, 1522, 1438, 1372, 1326, 1291, 1267, 1279, 1290, 1326, 1411, 1481, 1563, 1742, 1935, 2251, 1963, 1739, 1575, 1482, 1430, 1376, 1352, 1358, 1338, 1366, 1433, 1461, 1526, 1667, 1835, 2116, 2202, 2107, 1866, 1680, 1581, 1470, 1436, 1434, 1383, 1423, 1410, 1473, 1529, 1604, 1750, 1978, 2204]
                                       }
                                   }, {
                                       "name":    "2592x1944_TL84_100",
                                       "resolution":    "2592x1944",
                                       "illumination":    "TL84",
                                       "vignetting":    100,
                                       "lsc_samples_red":    {
                                           "uCoeff":    [3117, 2966, 2477, 2144, 1954, 1843, 1724, 1695, 1664, 1700, 1733, 1823, 1920, 2087, 2318, 2775, 3116, 3201, 2620, 2218, 1951, 1793, 1705, 1596, 1545, 1505, 1522, 1595, 1708, 1789, 1916, 2135, 2478, 3049, 2992, 2390, 2039, 1843, 1701, 1580, 1492, 1414, 1407, 1396, 1468, 1550, 1676, 1786, 1992, 2237, 2691, 2798, 2212, 1964, 1732, 1588, 1450, 1381, 1305, 1300, 1314, 1351, 1427, 1530, 1691, 1842, 2086, 2499, 2599, 2062, 1831, 1663, 1524, 1368, 1293, 1235, 1206, 1216, 1256, 1347, 1446, 1649, 1789, 1967, 2320, 2481, 1986, 1743, 1558, 1462, 1314, 1214, 1149, 1132, 1146, 1196, 1283, 1410, 1551, 1718, 1901, 2258, 2485, 1939, 1728, 1565, 1388, 1240, 1161, 1100, 1076, 1102, 1146, 1217, 1361, 1489, 1671, 1830, 2166, 2345, 1898, 1714, 1515, 1342, 1214, 1127, 1078, 1040, 1050, 1116, 1185, 1296, 1462, 1642, 1835, 2091, 2335, 1909, 1682, 1489, 1360, 1219, 1117, 1056, 1024, 1035, 1097, 1176, 1294, 1467, 1627, 1810, 2067, 2307, 1873, 1684, 1491, 1324, 1210, 1123, 1061, 1038, 1040, 1093, 1171, 1308, 1450, 1635, 1819, 2102, 2407, 1903, 1728, 1542, 1362, 1261, 1145, 1100, 1076, 1089, 1123, 1211, 1339, 1491, 1672, 1874, 2151, 2434, 1967, 1755, 1595, 1416, 1288, 1198, 1138, 1107, 1127, 1171, 1259, 1396, 1537, 1705, 1909, 2231, 2611, 2031, 1803, 1642, 1464, 1361, 1261, 1190, 1184, 1179, 1236, 1332, 1456, 1623, 1758, 1944, 2279, 2716, 2192, 1866, 1715, 1584, 1484, 1365, 1293, 1268, 1278, 1334, 1429, 1540, 1688, 1828, 2068, 2469, 2905, 2319, 2020, 1797, 1657, 1532, 1440, 1409, 1364, 1398, 1427, 1523, 1634, 1779, 1937, 2224, 2626, 3094, 2533, 2181, 1922, 1768, 1672, 1564, 1542, 1505, 1539, 1565, 1662, 1731, 1905, 2121, 2405, 2904, 3136, 2799, 2389, 2073, 1953, 1807, 1739, 1662, 1660, 1661, 1719, 1799, 1894, 2028, 2333, 2697, 3192]
                                       },
                                       "lsc_samples_greenR":    {
                                           "uCoeff":    [3044, 2881, 2460, 2179, 1964, 1803, 1734, 1692, 1664, 1667, 1716, 1806, 1906, 2089, 2328, 2750, 3128, 3012, 2542, 2170, 1877, 1751, 1641, 1577, 1536, 1506, 1523, 1571, 1595, 1717, 1862, 2041, 2364, 2839, 2843, 2303, 1987, 1784, 1653, 1543, 1484, 1448, 1423, 1457, 1493, 1542, 1609, 1725, 1904, 2193, 2576, 2606, 2156, 1844, 1686, 1544, 1471, 1409, 1351, 1338, 1319, 1389, 1453, 1524, 1619, 1791, 2021, 2410, 2426, 2023, 1769, 1618, 1499, 1405, 1308, 1264, 1216, 1237, 1303, 1378, 1468, 1568, 1697, 1895, 2226, 2302, 1911, 1688, 1555, 1452, 1320, 1242, 1171, 1160, 1171, 1218, 1310, 1400, 1506, 1657, 1822, 2129, 2231, 1865, 1656, 1513, 1387, 1282, 1185, 1119, 1077, 1116, 1159, 1239, 1353, 1497, 1618, 1791, 2080, 2158, 1852, 1612, 1493, 1353, 1241, 1150, 1082, 1054, 1058, 1099, 1190, 1326, 1455, 1573, 1759, 2015, 2165, 1802, 1580, 1489, 1355, 1232, 1120, 1054, 1024, 1044, 1103, 1199, 1304, 1450, 1576, 1735, 1977, 2172, 1817, 1601, 1494, 1359, 1221, 1127, 1072, 1049, 1059, 1104, 1195, 1333, 1463, 1587, 1745, 2008, 2236, 1859, 1656, 1504, 1377, 1273, 1156, 1105, 1074, 1076, 1137, 1227, 1363, 1483, 1611, 1804, 2070, 2314, 1895, 1684, 1536, 1445, 1313, 1220, 1162, 1126, 1139, 1191, 1297, 1401, 1533, 1650, 1852, 2122, 2425, 1954, 1745, 1591, 1489, 1376, 1307, 1229, 1200, 1218, 1267, 1352, 1474, 1556, 1701, 1902, 2215, 2568, 2112, 1852, 1668, 1560, 1461, 1377, 1320, 1298, 1311, 1357, 1432, 1520, 1642, 1777, 1993, 2380, 2794, 2229, 1949, 1756, 1612, 1522, 1474, 1427, 1424, 1418, 1478, 1529, 1605, 1723, 1890, 2145, 2518, 3019, 2453, 2106, 1884, 1723, 1624, 1561, 1527, 1517, 1523, 1555, 1606, 1716, 1819, 2019, 2340, 2794, 3035, 2695, 2387, 2049, 1836, 1744, 1670, 1615, 1600, 1628, 1658, 1740, 1850, 1997, 2269, 2566, 3018]
                                       },
                                       "lsc_samples_greenB":    {
                                           "uCoeff":    [3072, 2881, 2469, 2192, 1963, 1797, 1721, 1684, 1653, 1652, 1729, 1792, 1920, 2106, 2333, 2776, 3195, 3077, 2604, 2201, 1890, 1772, 1653, 1572, 1515, 1501, 1527, 1573, 1620, 1742, 1862, 2112, 2446, 2905, 2847, 2387, 2021, 1790, 1655, 1559, 1481, 1458, 1427, 1429, 1480, 1535, 1639, 1746, 1935, 2253, 2617, 2716, 2192, 1879, 1707, 1575, 1492, 1393, 1352, 1321, 1347, 1406, 1460, 1533, 1658, 1838, 2088, 2429, 2505, 2075, 1780, 1636, 1507, 1426, 1316, 1260, 1227, 1244, 1310, 1390, 1479, 1584, 1734, 1997, 2304, 2393, 1952, 1715, 1577, 1468, 1351, 1240, 1178, 1152, 1173, 1215, 1330, 1436, 1540, 1698, 1885, 2211, 2294, 1894, 1668, 1528, 1429, 1307, 1179, 1121, 1086, 1114, 1151, 1250, 1372, 1496, 1626, 1815, 2112, 2220, 1863, 1644, 1497, 1411, 1235, 1126, 1081, 1049, 1066, 1113, 1210, 1360, 1467, 1608, 1800, 2086, 2238, 1837, 1650, 1491, 1369, 1227, 1128, 1048, 1024, 1041, 1104, 1216, 1332, 1461, 1600, 1803, 2049, 2217, 1865, 1637, 1508, 1380, 1237, 1122, 1061, 1027, 1047, 1111, 1196, 1340, 1472, 1600, 1816, 2055, 2266, 1862, 1665, 1506, 1403, 1270, 1159, 1092, 1058, 1085, 1139, 1231, 1373, 1475, 1618, 1838, 2104, 2345, 1915, 1681, 1541, 1442, 1324, 1209, 1136, 1117, 1137, 1188, 1286, 1413, 1536, 1659, 1890, 2120, 2472, 2006, 1759, 1573, 1484, 1364, 1268, 1205, 1194, 1200, 1270, 1356, 1470, 1547, 1744, 1943, 2240, 2612, 2114, 1827, 1651, 1542, 1440, 1349, 1304, 1263, 1291, 1337, 1440, 1533, 1635, 1796, 2025, 2382, 2729, 2285, 1937, 1756, 1615, 1495, 1455, 1411, 1371, 1399, 1428, 1490, 1593, 1741, 1900, 2170, 2552, 2997, 2469, 2090, 1857, 1693, 1614, 1515, 1490, 1465, 1488, 1516, 1581, 1715, 1816, 2010, 2345, 2740, 3035, 2710, 2311, 2063, 1807, 1711, 1613, 1590, 1584, 1565, 1607, 1683, 1790, 1938, 2238, 2535, 2965]
                                       },
                                       "lsc_samples_blue":    {
                                           "uCoeff":    [2920, 2692, 2310, 1934, 1746, 1634, 1615, 1531, 1512, 1542, 1574, 1642, 1715, 1873, 2158, 2554, 2910, 2803, 2410, 2046, 1754, 1599, 1541, 1454, 1418, 1432, 1427, 1440, 1481, 1602, 1701, 1896, 2181, 2603, 2579, 2163, 1853, 1633, 1496, 1453, 1376, 1333, 1338, 1326, 1357, 1445, 1527, 1586, 1742, 2056, 2378, 2457, 1972, 1714, 1567, 1444, 1372, 1306, 1263, 1225, 1274, 1295, 1350, 1462, 1532, 1651, 1852, 2189, 2325, 1867, 1652, 1491, 1383, 1308, 1263, 1194, 1168, 1173, 1222, 1275, 1348, 1457, 1586, 1756, 2080, 2164, 1749, 1572, 1429, 1310, 1224, 1176, 1152, 1120, 1116, 1170, 1248, 1336, 1417, 1563, 1718, 2001, 2062, 1734, 1508, 1371, 1309, 1208, 1111, 1086, 1069, 1069, 1123, 1184, 1277, 1370, 1504, 1655, 1854, 2026, 1689, 1512, 1363, 1290, 1183, 1094, 1066, 1038, 1044, 1097, 1168, 1243, 1336, 1477, 1593, 1855, 2075, 1702, 1504, 1366, 1253, 1163, 1078, 1031, 1025, 1024, 1068, 1150, 1222, 1332, 1467, 1612, 1771, 2015, 1699, 1472, 1368, 1277, 1180, 1081, 1052, 1031, 1037, 1074, 1127, 1229, 1331, 1456, 1602, 1814, 2083, 1712, 1529, 1405, 1298, 1196, 1091, 1057, 1057, 1058, 1096, 1143, 1244, 1360, 1466, 1651, 1846, 2107, 1749, 1576, 1423, 1344, 1214, 1140, 1103, 1098, 1089, 1114, 1176, 1280, 1372, 1495, 1647, 1896, 2188, 1839, 1619, 1481, 1364, 1266, 1206, 1139, 1136, 1148, 1192, 1245, 1325, 1433, 1539, 1714, 1969, 2342, 1898, 1657, 1524, 1436, 1320, 1247, 1222, 1206, 1208, 1246, 1280, 1389, 1472, 1604, 1807, 2082, 2532, 2109, 1791, 1603, 1491, 1407, 1351, 1310, 1284, 1298, 1312, 1357, 1461, 1555, 1675, 1932, 2241, 2710, 2243, 1909, 1681, 1554, 1482, 1415, 1384, 1390, 1369, 1404, 1486, 1529, 1623, 1821, 2076, 2525, 2707, 2475, 2099, 1829, 1687, 1542, 1495, 1487, 1428, 1475, 1465, 1546, 1625, 1736, 1950, 2302, 2710]
                                       }
                                   }, {
                                       "name":    "2592x1944_GRAY_0",
                                       "resolution":    "2592x1944",
                                       "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.9, 0.75, 0.5, 0.3, 0.2, 0.1, 0.05]
                               }
                           },
                           "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.9699, 2.3617],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["A_100", "A_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 2, 4, 8],
                                           "sat":    [100, 100, 85, 74]
                                       }
                                   }, {
                                       "name":    "CWF",
                                       "awbGain":    [1.4586, 2.0764],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["CWF_100", "CWF_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 2, 4, 8],
                                           "sat":    [100, 100, 85, 74]
                                       }
                                   }, {
                                       "name":    "D50",
                                       "awbGain":    [1.6575, 1.5776],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D50_100", "D50_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 2, 4, 8],
                                           "sat":    [100, 100, 85, 74]
                                       }
                                   }, {
                                       "name":    "D65",
                                       "awbGain":    [1.6671, 1.4173],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D65_100", "D65_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 2, 4, 8],
                                           "sat":    [100, 100, 85, 70]
                                       }
                                   }, {
                                       "name":    "D75",
                                       "awbGain":    [1.7845, 1.2932],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["D75_100", "D75_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 2, 4, 8],
                                           "sat":    [100, 100, 85, 74]
                                       }
                                   }, {
                                       "name":    "HZ",
                                       "awbGain":    [0.8054, 2.8152],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["HZ_100", "HZ_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 2, 4, 8],
                                           "sat":    [100, 100, 85, 74]
                                       }
                                   }, {
                                       "name":    "TL84",
                                       "awbGain":    [1.3682, 2.166],
                                       "minDist":    0.05,
                                       "matrixUsed":    ["TL84_100", "TL84_74"],
                                       "matrixUsed_len":    2,
                                       "gain_sat_curve":    {
                                           "gains":    [1, 2, 4, 8],
                                           "sat":    [100, 100, 85, 74]
                                       }
                                   }],
                               "aCcmCof_len":    7,
                               "matrixAll":    [{
                                       "name":    "A_100",
                                       "illumination":    "A",
                                       "saturation":    100,
                                       "ccMatrix":    [1.4175, -0.31, -0.1075, -0.3639, 1.6135, -0.2496, -0.1058, -1.0207, 2.1265],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "A_74",
                                       "illumination":    "A",
                                       "saturation":    74,
                                       "ccMatrix":    [1.1353, -0.0503, -0.085, -0.1918, 1.3592, -0.1673, -0.0388, -0.3245, 1.4633],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_100",
                                       "illumination":    "CWF",
                                       "saturation":    100,
                                       "ccMatrix":    [1.8445, -0.8017, -0.0428, -0.3029, 1.4366, -0.1337, -0.0136, -0.697, 1.7106],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "CWF_74",
                                       "illumination":    "CWF",
                                       "saturation":    74,
                                       "ccMatrix":    [1.6501, -0.6545, 0.0044, -0.1904, 1.2246, -0.0341, 0.12, -0.3904, 1.2705],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_100",
                                       "illumination":    "D50",
                                       "saturation":    100,
                                       "ccMatrix":    [1.8911, -0.8573, -0.0338, -0.2245, 1.4379, -0.2134, 0.0458, -0.5116, 1.4658],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D50_74",
                                       "illumination":    "D50",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4465, -0.4405, -0.006, -0.0853, 1.1954, -0.1101, 0.1754, -0.2821, 1.1067],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_100",
                                       "illumination":    "D65",
                                       "saturation":    100,
                                       "ccMatrix":    [1.7206, -0.6509, -0.0697, -0.2246, 1.6024, -0.3778, 0.0491, -0.5009, 1.4518],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D65_74",
                                       "illumination":    "D65",
                                       "saturation":    74,
                                       "ccMatrix":    [1.4437, -0.3768, -0.0669, -0.0941, 1.3397, -0.2456, 0.1719, -0.2139, 1.042],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_100",
                                       "illumination":    "D75",
                                       "saturation":    100,
                                       "ccMatrix":    [1.7024, -0.618, -0.0844, -0.2285, 1.6259, -0.3974, 0.0146, -0.4254, 1.4108],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "D75_74",
                                       "illumination":    "D75",
                                       "saturation":    74,
                                       "ccMatrix":    [1.3101, -0.2263, -0.0839, -0.0911, 1.3073, -0.2162, 0.1511, -0.2078, 1.0567],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_100",
                                       "illumination":    "HZ",
                                       "saturation":    100,
                                       "ccMatrix":    [1.277, -0.1106, -0.1664, -0.4267, 1.5814, -0.1547, -0.3419, -1.2115, 2.5534],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "HZ_74",
                                       "illumination":    "HZ",
                                       "saturation":    74,
                                       "ccMatrix":    [1.0749, 0.0032, -0.0781, -0.2056, 1.2816, -0.0759, -0.1679, -0.4918, 1.6596],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_100",
                                       "illumination":    "TL84",
                                       "saturation":    100,
                                       "ccMatrix":    [1.7216, -0.64, -0.0815, -0.2871, 1.4706, -0.1835, -0.016, -0.6586, 1.6746],
                                       "ccOffsets":    [0, 0, 0]
                                   }, {
                                       "name":    "TL84_74",
                                       "illumination":    "TL84",
                                       "saturation":    74,
                                       "ccMatrix":    [1.2784, -0.239, -0.0393, -0.1486, 1.2642, -0.1157, 0.0837, -0.3589, 1.2752],
                                       "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.1,
                                   "LumaTrigThers":    0,
                                   "StableThers":    0.03,
                                   "StableFrames":    3,
                                   "StableTime":    200,
                                   "SceneDiffEnable":    0,
                                   "SceneDiffThers":    0,
                                   "SceneDiffBlkThers":    0,
                                   "CenterSceneDiffThers":    0,
                                   "ValidMaxMinRatio":    0,
                                   "ValidValueThers":    0,
                                   "OutFocusValue":    200,
                                   "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":    [360, 324, 291, 262, 214, 183, 168, 164, 166, 169, 170, 165, 155, 140, 122, 105]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [799, 687, 581, 481, 302, 152, 87, 114, 187, 240, 269, 274, 254, 210, 145, 87]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1001, 868, 744, 629, 428, 279, 210, 230, 285, 333, 361, 363, 338, 288, 216, 148]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1168, 1031, 905, 790, 598, 468, 409, 412, 446, 483, 507, 510, 491, 449, 388, 321]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1503, 1359, 1227, 1106, 904, 761, 679, 653, 664, 691, 718, 731, 726, 698, 644, 562]
                                           }, {
                                               "iso":    1600,
                                               "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":    3200,
                                               "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":    6400,
                                               "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":    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":    [360, 324, 291, 262, 214, 183, 168, 164, 166, 169, 170, 165, 155, 140, 122, 105]
                                           }, {
                                               "iso":    100,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [799, 687, 581, 481, 302, 152, 87, 114, 187, 240, 269, 274, 254, 210, 145, 87]
                                           }, {
                                               "iso":    200,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1001, 868, 744, 629, 428, 279, 210, 230, 285, 333, 361, 363, 338, 288, 216, 148]
                                           }, {
                                               "iso":    400,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1168, 1031, 905, 790, 598, 468, 409, 412, 446, 483, 507, 510, 491, 449, 388, 321]
                                           }, {
                                               "iso":    800,
                                               "lumapoint":    [512, 1024, 1536, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336],
                                               "sigma":    [1503, 1359, 1227, 1106, 904, 761, 679, 653, 664, 691, 718, 731, 726, 698, 644, 562]
                                           }, {
                                               "iso":    1600,
                                               "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":    3200,
                                               "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":    6400,
                                               "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":    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.15
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.4,
                                               "edgesofts":    2,
                                               "ratio":    0.06,
                                               "weight":    0.25
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.05,
                                               "weight":    0.35
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.04,
                                               "weight":    0.45
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.5
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.6
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.65
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.8
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.3,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.9
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.4,
                                               "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.05
                                           }, {
                                               "iso":    100,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.3,
                                               "edgesofts":    2,
                                               "ratio":    0.07,
                                               "weight":    0.1
                                           }, {
                                               "iso":    200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.4,
                                               "edgesofts":    2,
                                               "ratio":    0.06,
                                               "weight":    0.15
                                           }, {
                                               "iso":    400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.5,
                                               "edgesofts":    2,
                                               "ratio":    0.05,
                                               "weight":    0.2
                                           }, {
                                               "iso":    800,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.6,
                                               "edgesofts":    2,
                                               "ratio":    0.04,
                                               "weight":    0.3
                                           }, {
                                               "iso":    1600,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.7,
                                               "edgesofts":    2,
                                               "ratio":    0.03,
                                               "weight":    0.4
                                           }, {
                                               "iso":    3200,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.8,
                                               "edgesofts":    2,
                                               "ratio":    0.02,
                                               "weight":    0.5
                                           }, {
                                               "iso":    6400,
                                               "gauss_guide":    1,
                                               "filter_strength":    0.9,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.55
                                           }, {
                                               "iso":    12800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.6
                                           }, {
                                               "iso":    25600,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.1,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.7
                                           }, {
                                               "iso":    51200,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.2,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.8
                                           }, {
                                               "iso":    102400,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.3,
                                               "edgesofts":    2,
                                               "ratio":    0.01,
                                               "weight":    0.9
                                           }, {
                                               "iso":    204800,
                                               "gauss_guide":    1,
                                               "filter_strength":    1.4,
                                               "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.7,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.6
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.65,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.55
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.6,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.5
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.4,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.55
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.5
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.45
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.5,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.125,
                                               "hi_clipwgt":    0.125,
                                               "softwgt":    0.4
                                           }],
                                       "Tuning_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Tuning_ISO":    [{
                                               "iso":    50,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    100,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.55,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    200,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    400,
                                               "filter_strength":    0.2,
                                               "sp_filter_strength":    0.6,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    800,
                                               "filter_strength":    0.15,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    1600,
                                               "filter_strength":    0.1,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    3200,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.65,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    6400,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    12800,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    25600,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    51200,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    102400,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }, {
                                               "iso":    204800,
                                               "filter_strength":    0.06,
                                               "sp_filter_strength":    0.7,
                                               "lo_clipwgt":    0.03215,
                                               "hi_clipwgt":    0.03215,
                                               "softwgt":    0
                                           }],
                                       "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.25,
                                               "hf_denoise_strength":    10,
                                               "hf_color_sat":    1.5,
                                               "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.3,
                                               "hf_denoise_strength":    12,
                                               "hf_color_sat":    1.4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    1,
                                               "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.65,
                                               "hf_spikes_reducion_strength":    0.35,
                                               "hf_denoise_strength":    16,
                                               "hf_color_sat":    1.2,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    2,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    8,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    8,
                                               "lf_color_sat":    4,
                                               "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.55,
                                               "hf_spikes_reducion_strength":    0.4,
                                               "hf_denoise_strength":    24,
                                               "hf_color_sat":    0.8,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    4,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    10,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    10,
                                               "lf_color_sat":    4,
                                               "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.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    36,
                                               "hf_color_sat":    0.4,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    6,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    12,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    12,
                                               "lf_color_sat":    4,
                                               "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.4,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    36,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    8,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    14,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    14,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    3200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    21,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    8,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    16,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    16,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    6400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    25,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    18,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    18,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    12800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    30,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    20,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    20,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    25600,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "color_sat_adj_alpha":    0.5,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    35,
                                               "hf_color_sat":    1.5,
                                               "hf_denoise_alpha":    0,
                                               "hf_bf_wgt_clip":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    25,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    25,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    51200,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "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":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    30,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    30,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    102400,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "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":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    35,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    35,
                                               "lf_color_sat":    4,
                                               "lf_denoise_alpha":    1
                                           }, {
                                               "iso":    204800,
                                               "hf_bypass":    0,
                                               "lf_bypass":    0,
                                               "cnr_exgain":    1,
                                               "cnr_g_gain":    1,
                                               "color_sat_adj":    30,
                                               "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":    0,
                                               "thumb_spikes_reducion_strength":    0.2,
                                               "thumb_denoise_strength":    40,
                                               "thumb_color_sat":    4,
                                               "lf_denoise_strength":    40,
                                               "lf_color_sat":    4,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    40,
                                               "color_sat_adj_alpha":    0.8,
                                               "hf_spikes_reducion_strength":    0.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    200,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    400,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    800,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    1600,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    3200,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    6400,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    12800,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    25600,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    51200,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    102400,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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":    204800,
                                               "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.5,
                                               "hf_denoise_strength":    10.2,
                                               "hf_color_sat":    1.5,
                                               "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
                                           }],
                                       "Tuning_ISO_len":    13
                                   }],
                               "Setting_len":    2
                           }
                       },
                       "ynr_v2":    {
                           "Version":    "",
                           "CalibPara":    {
                               "Setting":    [{
                                       "SNR_Mode":    "LSNR",
                                       "Sensor_Mode":    "lcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-2.01825e-12, 1.90444e-08, -6.28566e-05, 0.0774906, 6.86676],
                                               "ynr_ci_l":    0.262378,
                                               "ynr_ci_h":    0.176902
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-2.19391e-12, 2.06738e-08, -6.81322e-05, 0.0845674, 3.4344],
                                               "ynr_ci_l":    0.298697,
                                               "ynr_ci_h":    0.182885
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-4.07182e-12, 3.78581e-08, -0.000123025, 0.148403, 16.0399],
                                               "ynr_ci_l":    0.242014,
                                               "ynr_ci_h":    0.165278
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-5.20157e-12, 4.79241e-08, -0.000152584, 0.172995, 44.7511],
                                               "ynr_ci_l":    0.233888,
                                               "ynr_ci_h":    0.156357
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-8.81466e-12, 8.01419e-08, -0.000249005, 0.270988, 69.3144],
                                               "ynr_ci_l":    0.225813,
                                               "ynr_ci_h":    0.154392
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.225813,
                                               "ynr_ci_h":    0.154392
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.225813,
                                               "ynr_ci_h":    0.154392
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.225813,
                                               "ynr_ci_h":    0.154392
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.225813,
                                               "ynr_ci_h":    0.155111
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.155111,
                                               "ynr_ci_h":    0.155111
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.155111,
                                               "ynr_ci_h":    0.155111
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.155111,
                                               "ynr_ci_h":    0.155111
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.155111,
                                               "ynr_ci_h":    0.155111
                                           }],
                                       "Calib_ISO_len":    13
                                   }, {
                                       "SNR_Mode":    "HSNR",
                                       "Sensor_Mode":    "hcg",
                                       "Calib_ISO":    [{
                                               "iso":    50,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    100,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    1600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    3200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    6400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    12800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    25600,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    51200,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    102400,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }, {
                                               "iso":    204800,
                                               "sigma_curve":    [-7.80229e-13, 6.77367e-09, -2.20431e-05, 0.0298751, 10.9382],
                                               "ynr_ci_l":    0.5,
                                               "ynr_ci_h":    1
                                           }],
                                       "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.5,
                                               "low_peak_supress":    0.45,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.4,
                                               "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":    2,
                                               "high_weight":    0.75,
                                               "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.5,
                                               "low_peak_supress":    0.4,
                                               "low_edge_adj_thresh":    21,
                                               "low_center_weight":    0.6,
                                               "low_dist_adj":    7,
                                               "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":    3,
                                               "high_weight":    0.7,
                                               "hi_min_adj":    0.85,
                                               "hi_edge_thed":    95,
                                               "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":    1,
                                               "low_peak_supress":    0.35,
                                               "low_edge_adj_thresh":    18,
                                               "low_center_weight":    0.55,
                                               "low_dist_adj":    6,
                                               "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":    4,
                                               "high_weight":    0.65,
                                               "hi_min_adj":    0.75,
                                               "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":    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":    2,
                                               "low_peak_supress":    0.25,
                                               "low_edge_adj_thresh":    15,
                                               "low_center_weight":    0.5,
                                               "low_dist_adj":    5,
                                               "low_weight":    0,
                                               "low_filt_strength_0":    0.7,
                                               "low_filt_strength_1":    0.85,
                                               "low_bi_weight":    0.25,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    6,
                                               "high_weight":    0.65,
                                               "hi_min_adj":    0.65,
                                               "hi_edge_thed":    85,
                                               "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":    4,
                                               "low_peak_supress":    0.15,
                                               "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.35,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    8,
                                               "high_weight":    0.55,
                                               "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":    4,
                                               "low_peak_supress":    0.25,
                                               "low_edge_adj_thresh":    24,
                                               "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.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    8,
                                               "high_weight":    0.55,
                                               "hi_min_adj":    0.6,
                                               "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":    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":    4,
                                               "low_peak_supress":    0.2,
                                               "low_edge_adj_thresh":    24,
                                               "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.3,
                                               "base_filter_weight_0":    0.28,
                                               "base_filter_weight_1":    0.46,
                                               "base_filter_weight_2":    0.26,
                                               "high_thred_adj":    8,
                                               "high_weight":    0.55,
                                               "hi_min_adj":    0.6,
                                               "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":    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":    4,
                                               "low_peak_supress":    0.15,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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,
                                               "high_weight":    0.78,
                                               "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":    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":    0.5,
                                               "low_peak_supress":    0.1,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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,
                                               "high_weight":    0.78,
                                               "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":    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":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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,
                                               "high_weight":    0.78,
                                               "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":    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":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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,
                                               "high_weight":    0.78,
                                               "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":    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":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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,
                                               "high_weight":    0.78,
                                               "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":    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":    0.5,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    24,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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,
                                               "high_weight":    0.78,
                                               "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]
                                           }],
                                       "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":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "low_weight":    0.5,
                                               "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.78,
                                               "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":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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":    200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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":    400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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":    800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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":    1600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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":    3200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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":    6400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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":    12800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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":    25600,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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":    51200,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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":    102400,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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":    204800,
                                               "ynr_bft3x3_bypass":    0,
                                               "ynr_lbft5x5_bypass":    0,
                                               "ynr_lgft3x3_bypass":    0,
                                               "ynr_flt1x1_bypass":    0,
                                               "ynr_sft5x5_bypass":    0,
                                               "low_bf_0":    0.5,
                                               "low_bf_1":    0.6,
                                               "low_thred_adj":    0.25,
                                               "low_peak_supress":    0.5,
                                               "low_edge_adj_thresh":    7,
                                               "low_center_weight":    0.4,
                                               "low_dist_adj":    8,
                                               "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.78,
                                               "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]
                                           }],
                                       "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.6,
                                               "pbf_ratio":    0.6,
                                               "pbf_add":    4,
                                               "gaus_ratio":    0.4,
                                               "sharp_ratio":    10,
                                               "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.8,
                                               "pbf_ratio":    0.8,
                                               "pbf_add":    6,
                                               "gaus_ratio":    0.5,
                                               "sharp_ratio":    8,
                                               "bf_gain":    0.6,
                                               "bf_ratio":    0.45,
                                               "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":    1,
                                               "pbf_ratio":    1,
                                               "pbf_add":    8,
                                               "gaus_ratio":    0.55,
                                               "sharp_ratio":    6,
                                               "bf_gain":    0.8,
                                               "bf_ratio":    0.5,
                                               "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.2,
                                               "pbf_ratio":    1.2,
                                               "pbf_add":    12,
                                               "gaus_ratio":    0.6,
                                               "sharp_ratio":    4,
                                               "bf_gain":    1,
                                               "bf_ratio":    0.55,
                                               "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.5,
                                               "pbf_ratio":    1.6,
                                               "pbf_add":    18,
                                               "gaus_ratio":    0.7,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.2,
                                               "bf_ratio":    0.6,
                                               "bf_add":    12,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [48, 56, 64, 80, 96, 80, 64, 56],
                                                   "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.1,
                                               "pbf_ratio":    1.6,
                                               "pbf_add":    12,
                                               "gaus_ratio":    0.7,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.2,
                                               "bf_ratio":    0.65,
                                               "bf_add":    12,
                                               "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.2,
                                               "pbf_ratio":    1.6,
                                               "pbf_add":    14,
                                               "gaus_ratio":    0.75,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.2,
                                               "bf_ratio":    0.7,
                                               "bf_add":    14,
                                               "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.3,
                                               "pbf_ratio":    1.6,
                                               "pbf_add":    16,
                                               "gaus_ratio":    0.8,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.3,
                                               "bf_ratio":    0.75,
                                               "bf_add":    16,
                                               "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.4,
                                               "pbf_ratio":    1.6,
                                               "pbf_add":    18,
                                               "gaus_ratio":    0.85,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.4,
                                               "bf_ratio":    0.8,
                                               "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":    25600,
                                               "pbf_gain":    1.5,
                                               "pbf_ratio":    1.6,
                                               "pbf_add":    20,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.5,
                                               "bf_ratio":    0.85,
                                               "bf_add":    20,
                                               "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.6,
                                               "pbf_ratio":    1.8,
                                               "pbf_add":    22,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.6,
                                               "bf_ratio":    0.9,
                                               "bf_add":    22,
                                               "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.7,
                                               "pbf_ratio":    1.8,
                                               "pbf_add":    24,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.7,
                                               "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":    204800,
                                               "pbf_gain":    1.8,
                                               "pbf_ratio":    1.8,
                                               "pbf_add":    28,
                                               "gaus_ratio":    0.9,
                                               "sharp_ratio":    2,
                                               "bf_gain":    1.8,
                                               "bf_ratio":    1,
                                               "bf_add":    26,
                                               "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.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    2,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [8, 12, 16, 16, 24, 20, 16, 16],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [1023, 1023, 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.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    3,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [12, 16, 20, 24, 28, 24, 20, 20],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [1023, 1023, 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":    200,
                                               "pbf_gain":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    6,
                                               "bf_gain":    3,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [24, 32, 40, 48, 56, 48, 48, 40],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "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":    0.8,
                                               "pbf_ratio":    0,
                                               "pbf_add":    1,
                                               "gaus_ratio":    0,
                                               "sharp_ratio":    7,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [32, 40, 48, 56, 64, 56, 48, 40],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "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":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    7,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "luma_para":    {
                                                   "luma_point":    [0, 64, 128, 256, 384, 640, 896, 1024],
                                                   "luma_sigma":    [40, 48, 56, 64, 80, 64, 56, 48],
                                                   "hf_clip":    [64, 96, 12, 16, 19, 16, 12, 0],
                                                   "local_sharp_strength":    [512, 512, 512, 512, 512, 512, 512, 512]
                                               },
                                               "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":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "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, 12, 16, 19, 16, 12, 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":    0.8,
                                               "pbf_ratio":    0.2,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "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, 12, 16, 19, 16, 12, 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":    0.8,
                                               "pbf_ratio":    0.3,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "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, 12, 16, 19, 16, 12, 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":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "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, 12, 16, 19, 16, 12, 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":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "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, 12, 16, 19, 16, 12, 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":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "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, 12, 16, 19, 16, 12, 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":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "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, 12, 16, 19, 16, 12, 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":    0.8,
                                               "pbf_ratio":    0.4,
                                               "pbf_add":    1,
                                               "gaus_ratio":    1,
                                               "sharp_ratio":    8,
                                               "bf_gain":    4,
                                               "bf_ratio":    1,
                                               "bf_add":    32,
                                               "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, 12, 16, 19, 16, 12, 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
       }
   }
}