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
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
| {
| "sensor_calib": {
| "resolution": {
| "width": 2688,
| "height": 1520
| },
| "Gain2Reg": {
| "GainMode": "EXPGAIN_MODE_LINEAR",
| "GainRange": [1, 246.45, 16, 0, 1, 16, 3943],
| "GainRange_len": 7
| },
| "Time2Reg": {
| "fCoeff": [0, 0, 1, 0.5]
| },
| "CISGainSet": {
| "CISAgainRange": {
| "Min": 1,
| "Max": 15.5
| },
| "CISExtraAgainRange": {
| "Min": 3.5,
| "Max": 54.25
| },
| "CISDgainRange": {
| "Min": 1,
| "Max": 15.9
| },
| "CISIspDgainRange": {
| "Min": 1,
| "Max": 1
| },
| "CISHdrGainIndSetEn": 1
| },
| "CISTimeSet": {
| "Linear": {
| "CISTimeRegMin": 2,
| "CISLinTimeRegMaxFac": {
| "fCoeff": [1, 10]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| },
| "Hdr": [{
| "name": "HDR_TWO_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 2,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 10]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }, {
| "name": "HDR_THREE_FRAME",
| "CISTimeRegUnEqualEn": 1,
| "CISTimeRegMin": 2,
| "CISHdrTimeRegSumFac": {
| "fCoeff": [1, 10]
| },
| "CISTimeRegMax": {
| "Coeff": [0, 0, 0]
| },
| "CISTimeRegOdevity": {
| "fCoeff": [1, 0]
| }
| }]
| },
| "CISHdrSet": {
| "hdr_en": 1,
| "hdr_mode": "RK_AIQ_ISP_HDR_MODE_2_LINE_HDR",
| "line_mode": "RK_AIQ_SENSOR_HDR_LINE_MODE_STAGGER"
| },
| "CISDcgSet": {
| "Linear": {
| "support_en": 1,
| "dcg_optype": "RK_AIQ_OP_MODE_AUTO",
| "dcg_mode": {
| "Coeff": [0, 0, 0]
| },
| "dcg_ratio": 3.5,
| "sync_switch": 0,
| "lcg2hcg_gain_th": 32,
| "hcg2lcg_gain_th": 16
| },
| "Hdr": {
| "support_en": 1,
| "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": 1
| },
| "Hdr": {
| "time_update": 2,
| "gain_update": 2,
| "dcg_update": 1
| }
| },
| "CISMinFps": 10,
| "CISFlip": 0
| },
| "module_calib": {
| "sensor_module": {
| "FNumber": 1.6,
| "EFL": 7.7,
| "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, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 2, 3, 3, 4, 4, 5, 4, 4, 3, 3, 2, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 3, 3, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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],
| "AecManualCtrl": {
| "LinearAE": {
| "ManualTimeEn": 1,
| "ManualGainEn": 1,
| "ManualIspDgainEn": 1,
| "TimeValue": 0.01,
| "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": 1,
| "FpsValue": 0
| },
| "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": 15,
| "Evbias": 0,
| "StrategyMode": "AECV2_STRATEGY_MODE_LOWLIGHT_PRIOR",
| "InitExp": {
| "InitTimeValue": 0.003,
| "InitGainValue": 1,
| "InitIspDGainValue": 1,
| "InitPIrisGainValue": 512,
| "InitDCIrisDutyValue": 100
| },
| "Route": {
| "TimeDot": [0, 0.01, 0.01, 0.02, 0.03, 0.03],
| "TimeDot_len": 6,
| "GainDot": [1, 1, 4, 8, 15.5, 64],
| "GainDot_len": 6,
| "IspDGainDot": [1, 1, 1, 1, 1, 2],
| "IspDGainDot_len": 6,
| "PIrisDot": [512, 512, 512, 512, 512, 512],
| "PIrisDot_len": 6
| },
| "DySetpoint": {
| "ExpLevel": [0, 0.096, 0.192, 0.576, 0.96, 1.344],
| "ExpLevel_len": 6,
| "DySetpoint": [45, 45, 40, 38, 33, 30],
| "DySetpoint_len": 6
| },
| "BackLightCtrl": {
| "Enable": 0,
| "StrBias": 0,
| "MeasArea": "AECV2_MEASURE_AREA_AUTO",
| "OEROILowTh": 150,
| "LumaDistTh": 10,
| "LvLowTh": 0.3125,
| "LvHighTh": 7.5,
| "BacklitSetPoint": {
| "ExpLevel": [0.096, 0.192, 0.384, 0.576, 0.96, 1.344],
| "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": [25, 22, 20, 18, 15, 12],
| "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, 15.5, 32],
| "Frm0GainDot_len": 6,
| "Frm0IspDGainDot": [1, 1, 1, 1, 1, 1],
| "Frm0IspDGainDot_len": 6,
| "Frm1TimeDot": [0, 0.03, 0.03, 0.03, 0.03, 0.03],
| "Frm1TimeDot_len": 6,
| "Frm1GainDot": [1, 1, 4, 8, 15.5, 64],
| "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, 15.5, 64],
| "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.0192, 0.0576, 0.096, 0.192, 0.384],
| "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.096, 0.192, 0.384, 0.96, 1.344, 1.92],
| "MExpLevel_len": 6,
| "MSetPoint": [60, 60, 55, 50, 45, 40],
| "MSetPoint_len": 6
| },
| "SframeCtrl": {
| "HLROIExpandEn": 0,
| "HLLumaTolerance": 12,
| "SfrmSetPoint": {
| "SExpLevel": [0, 0.0048, 0.0144, 0.024, 0.0384, 0.0576],
| "SExpLevel_len": 6,
| "SSetPoint": [18, 18, 15, 12, 12, 12],
| "SSetPoint_len": 6,
| "TargetHLLuma": [100, 100, 100, 90, 80, 70],
| "TargetHLLuma_len": 6
| }
| }
| },
| "IrisCtrl": {
| "Enable": 0,
| "IrisType": "IRISV2_DC_TYPE",
| "ManualEn": 0,
| "ManualAttr": {
| "PIrisGainValue": 1,
| "DCIrisHoldValue": 30
| },
| "InitAttr": {
| "PIrisGainValue": 512,
| "DCIrisHoldValue": 100
| },
| "PIrisAttr": {
| "TotalStep": 81,
| "EffcStep": 44,
| "ZeroIsMax": 1,
| "StepTable": [512, 511, 506, 499, 491, 483, 474, 465, 456, 446, 437, 427, 417, 408, 398, 388, 378, 368, 359, 349, 339, 329, 319, 309, 300, 290, 280, 271, 261, 252, 242, 233, 224, 214, 205, 196, 187, 178, 170, 161, 153, 144, 136, 128, 120, 112, 105, 98, 90, 83, 77, 70, 64, 58, 52, 46, 41, 36, 31, 27, 23, 19, 16, 13, 10, 8, 6, 4, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "DCIrisAttr": {
| "Kp": 0.5,
| "Ki": 0.2,
| "Kd": 0.3,
| "MinPwmDuty": 0,
| "MaxPwmDuty": 100,
| "OpenPwmDuty": 40,
| "ClosePwmDuty": 22
| }
| },
| "SyncTest": {
| "Enable": 0,
| "IntervalFrm": 60,
| "AlterExp": {
| "LinearAE": [{
| "TimeValue": 0.02,
| "GainValue": 1,
| "IspDGainValue": 1,
| "PIrisGainValue": 1,
| "DcgMode": 0
| }, {
| "TimeValue": 0.02,
| "GainValue": 6,
| "IspDGainValue": 1,
| "PIrisGainValue": 29,
| "DcgMode": 0
| }],
| "LinearAE_len": 2,
| "HdrAE": [{
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [1, 1, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 1,
| "DcgMode": [0, 0, 0]
| }, {
| "TimeValue": [0.01, 0.02, 0.03],
| "GainValue": [6, 6, 1],
| "IspDGainValue": [1, 1, 1],
| "PIrisGainValue": 29,
| "DcgMode": [0, 0, 0]
| }],
| "HdrAE_len": 2
| }
| }
| },
| "wb_v21": {
| "control": {
| "byPass": 0,
| "mode": "CALIB_WB_MODE_AUTO"
| },
| "manualPara": {
| "mode": "CALIB_MWB_MODE_SCENE",
| "cfg": {
| "mwbGain": [1.2804, 1, 1, 2.9801],
| "scene": "CALIB_WB_SCENE_CLOUDY_DAYLIGHT",
| "cct": {
| "CCT": 5000,
| "CCRI": 0
| }
| }
| },
| "autoPara": {
| "hdrPara": {
| "frameChooseMode": "CALIB_AWB_HDR_FRAME_CHOOSE_MODE_MANUAL",
| "frameChoose": 1
| },
| "lscBypassEnable": 1,
| "uvDetectionEnable": 0,
| "xyDetectionEnable": 0,
| "yuvDetectionEnable": 0,
| "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_FIXED",
| "window": [0, 0, 1, 1]
| },
| "limitRange": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "maxR": [230],
| "maxR_len": 1,
| "minR": [6],
| "minR_len": 1,
| "maxG": [230],
| "maxG_len": 1,
| "minG": [9],
| "minG_len": 1,
| "maxB": [230],
| "maxB_len": 1,
| "minB": [6],
| "minB_len": 1,
| "maxY": [210],
| "maxY_len": 1,
| "minY": [9],
| "minY_len": 1
| },
| "rgb2TcsPara": {
| "pseudoLuminanceWeight": [0.29609, 0.453725, 0.250185],
| "rotationMat": [-0.559665, 0.828719, -0.191196, 0.828719, 0.559665, 0.642808, 0, 0, 1]
| },
| "rgb2RotationYuvMat": [0.0351562, 0.134766, 0.0117188, 35.25, -0.0820312, -0.00195312, 0.0742188, 133.25, 0.0527344, -0.0546875, 0.046875, 109.188, 0, 0, 0, 1],
| "extraWpRange": [{
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [244, 249, 228, 211]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-1096, -985, 140, 65]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-40, 158, 121, 16]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_XY",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [-235, -40, 237, 80]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }, {
| "domain": "CALIB_AWB_EXTRA_RANGE_DOMAIN_UV",
| "mode": "CALIB_AWB_EXCLUDE_WP_MODE",
| "region": [0, 0, 0, 0]
| }],
| "wpDiffLumaWeight": {
| "enable": 0,
| "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.5, 1, 1, 1, 0.5, 0]
| }],
| "ratioSet_len": 3
| }],
| "wpDiffWeightLvSet_len": 2
| },
| "wpDiffBlkWeiEnable": 0,
| "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": [1.2804, 1, 1, 2.9801],
| "uvRegion": {
| "u": [123, 44, 53.5, 122.5],
| "v": [129, 123, 101, 126.5]
| },
| "xyRegion": {
| "normal": [-0.216122, 0.214822, 0.109935, -0.0724128],
| "big": [-0.214384, 0.213117, 0.207768, -0.164]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.1875, 0.1875, 0.1875, 0.75, 1, 4],
| "lineVector": [10, 180.188, 154.125, 92.5625, 106.312, 107.938],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [2.0505, 1, 1, 1.5066],
| "defaultDayGainHigh": [1.757, 1, 1, 1.7957],
| "xyType2Enable": 1
| }, {
| "name": "CWF",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.7517, 1, 1, 2.5722],
| "uvRegion": {
| "u": [58.5, 62.5, 123.5, 123],
| "v": [86, 76, 123.5, 125.5]
| },
| "xyRegion": {
| "normal": [0.215925, 0.666685, -0.0656572, -0.179653],
| "big": [0.240625, 0.661399, -0.0645353, -0.330438]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.125, 0.1875, 0.1875, 0.75, 1, 4],
| "lineVector": [10, 187.625, 147.875, 115, 109.438, 98],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 70, 60, 50, 40],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [2.0505, 1, 1, 1.5066],
| "defaultDayGainHigh": [1.757, 1, 1, 1.7957],
| "xyType2Enable": 1
| }, {
| "name": "D50",
| "doorType": "CALIB_AWB_DOOR_TYPE_AMBIGUITY",
| "standardGainValue": [1.757, 1, 1, 1.7957],
| "uvRegion": {
| "u": [63, 76, 125, 124],
| "v": [76, 53, 123, 124]
| },
| "xyRegion": {
| "normal": [0.550179, 1.13321, 0.0942814, -0.0704053],
| "big": [0.54931, 1.13408, 0.179397, -0.0733403]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.1875, 0.3125, 0.375, 0.75, 1, 4],
| "lineVector": [10, 189.438, 146.312, 122.562, 108.125, 105.438],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [2.0505, 1, 1, 1.5066],
| "defaultDayGainHigh": [1.757, 1, 1, 1.7957],
| "xyType2Enable": 1
| }, {
| "name": "D65",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [2.0505, 1, 1, 1.5066],
| "uvRegion": {
| "u": [76, 84.5, 126, 125],
| "v": [53, 38, 122, 123]
| },
| "xyRegion": {
| "normal": [1.1498, 1.33833, 0.090368, -0.166005],
| "big": [1.14806, 1.33611, 0.160546, -0.242266]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.1875, 0.5, 0.5, 0.8125, 1, 4],
| "lineVector": [10, 190.75, 143.875, 134.562, 107.75, 107.25],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [2.0505, 1, 1, 1.5066],
| "defaultDayGainHigh": [1.757, 1, 1, 1.7957],
| "xyType2Enable": 1
| }, {
| "name": "D75",
| "doorType": "CALIB_AWB_DOOR_TYPE_OUTDOOR",
| "standardGainValue": [2.1544, 1, 1, 1.4068],
| "uvRegion": {
| "u": [127, 126, 84.5, 93],
| "v": [121, 122, 38, 32]
| },
| "xyRegion": {
| "normal": [1.33938, 1.49312, 0.0667494, -0.124318],
| "big": [1.33167, 1.49167, 0.142018, -0.179901]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.1875, 0.3125, 0.5, 0.75, 1, 4],
| "lineVector": [10, 190.938, 143, 138.562, 107.562, 108.688],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [2.0505, 1, 1, 1.5066],
| "defaultDayGainHigh": [1.757, 1, 1, 1.7957],
| "xyType2Enable": 1
| }, {
| "name": "HZ",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.0649, 1, 1, 3.6068],
| "uvRegion": {
| "u": [121.5, 46, 44.5, 122.5],
| "v": [129, 140.5, 123.5, 128.5]
| },
| "xyRegion": {
| "normal": [-0.525452, -0.223073, -0.011379, -0.160086],
| "big": [-0.548043, -0.223073, 0.0629746, -0.17574]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.1875, 0.3125, 0.3125, 0.75, 1, 4],
| "lineVector": [10, 175.938, 155.688, 83.3125, 107.938, 107.625],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 75, 50],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [2.0505, 1, 1, 1.5066],
| "defaultDayGainHigh": [1.757, 1, 1, 1.7957],
| "xyType2Enable": 1
| }, {
| "name": "TL84",
| "doorType": "CALIB_AWB_DOOR_TYPE_INDOOR",
| "standardGainValue": [1.4221, 1, 1, 2.466],
| "uvRegion": {
| "u": [122.5, 53.5, 58.5, 123],
| "v": [126.5, 100.5, 86, 125.5]
| },
| "xyRegion": {
| "normal": [0.219127, 0.554524, 0.0737363, -0.0586653],
| "big": [0.223471, 0.550179, 0.188202, -0.0880154]
| },
| "rtYuvRegion": {
| "thcurve_u": [50, 54, 70, 78, 110, 142],
| "thcure_th": [0.1875, 0.1875, 0.3125, 0.75, 1, 4],
| "lineVector": [10, 185.875, 149.688, 107.062, 108.125, 104.312],
| "disP1P2": 15
| },
| "staWeight": [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 90, 80, 70, 60, 60],
| "dayGainLvThSet": [1024, 8192],
| "defaultDayGainLow": [2.0505, 1, 1, 1.5066],
| "defaultDayGainHigh": [1.757, 1, 1, 1.7957],
| "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.05,
| "dFMin": 0.7,
| "dFMax": 0.9,
| "lvIIRsize": 4,
| "lvVarTh": 0.04
| },
| "wbGainAdjust": {
| "enable": 0,
| "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, 6000, 7000, 8000, 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, 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, 6000, 7000, 8000, 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, 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, 6000, 7000, 8000, 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, 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": [150],
| "low_len": 1,
| "high": [216],
| "high_len": 1
| }
| },
| "defaultNightGain": [1.2804, 1, 1, 2.9801],
| "lumaValueMatrix": [0, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144],
| "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.0031,
| "wpNumPercTh2": 0.2
| },
| "converged": {
| "varThforUnDamp": 0.005,
| "varThforDamp": 0.005
| },
| "xyRegionStableSelection": {
| "enable": 1,
| "wpNumTh": {
| "lumaValue": [0],
| "lumaValue_len": 1,
| "forBigType": [216],
| "forBigType_len": 1,
| "forExtraType": [216],
| "forExtraType_len": 1
| },
| "xyTypeListSize": 50,
| "varianceLumaTh": 0.06
| },
| "weightForNightGainCalc": [25, 25, 25, 25],
| "weightForNightGainCalc_len": 4,
| "singleColorProces": {
| "enable": 1,
| "colorBlock": [{
| "index": 15,
| "meanC": 26.0328,
| "meanH": 43.4112
| }, {
| "index": 13,
| "meanC": 25.6141,
| "meanH": -71.8043
| }, {
| "index": 5,
| "meanC": 12.6348,
| "meanH": -67.1633
| }, {
| "index": 10,
| "meanC": 11.7494,
| "meanH": -44.6744
| }, {
| "index": 14,
| "meanC": 17.039,
| "meanH": 151.389
| }, {
| "index": 16,
| "meanC": 31.4491,
| "meanH": 94.9397
| }],
| "colorBlock_len": 6,
| "lsUsedForEstimation": [{
| "name": "A",
| "RGain": 1.2804,
| "BGain": 2.9801
| }, {
| "name": "D50",
| "RGain": 1.75704,
| "BGain": 1.79569
| }, {
| "name": "TL84",
| "RGain": 1.4221,
| "BGain": 2.46597
| }],
| "lsUsedForEstimation_len": 3,
| "alpha": 0.9
| },
| "lineRgBg": [-0.877717, -0.479179, -2.75292],
| "lineRgProjCCT": [1, -0.000241257, 0.638007],
| "chrAdpttAdj": {
| "enable": 0,
| "targetGain": [2.1924, 1, 1, 1.4355],
| "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": [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256],
| "R_Channel_len": 13,
| "Gr_Channel": [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256],
| "Gr_Channel_len": 13,
| "Gb_Channel": [256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256],
| "Gb_Channel_len": 13,
| "B_Channel": [256, 256, 256, 256, 256, 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.25, 1.25, 1.2, 1.2, 1.2, 1.1, 1.1, 1],
| "enhance_value_len": 9,
| "enhance_chroma": [1.5, 1.4, 1.3, 1.2, 1.2, 1.2, 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": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set1": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "set2": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "set3": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "set1": {
| "RK": {
| "RK_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_thr": [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": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [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": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RG": {
| "RG_enable": [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": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_ro_lim": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| }
| },
| "set2": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_line_thr": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "g_line_thr": [24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24],
| "rb_line_mad_fac": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "g_line_mad_fac": [12, 12, 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "PG": {
| "PG_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_pg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rnd_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [8, 8, 8, 8, 8, 8, 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": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_rg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rg_fac": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_ro_lim": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "set3": {
| "RK": {
| "RK_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "g_sw_mindis": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_min": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "sw_dis_scale_max": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| },
| "LC": {
| "LC_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_line_thr": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "g_line_thr": [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32],
| "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": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_pg_fac": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RND": {
| "RND_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rnd_thr": [8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8],
| "g_rnd_thr": [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6],
| "rb_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3],
| "g_rnd_offs": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3]
| },
| "RG": {
| "RG_enable": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "rb_rg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4],
| "g_rg_fac": [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4]
| },
| "RO": {
| "RO_enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "rb_ro_lim": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2],
| "g_ro_lim": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2]
| }
| }
| },
| "Dpcc_pdaf": {
| "en": 0,
| "point_en": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "offsetx": 0,
| "offsety": 0,
| "wrapx": 0,
| "wrapy": 0,
| "wrapx_num": 0,
| "wrapy_num": 0,
| "point_x": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "point_y": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "forward_med": 0
| },
| "Sensor_dpcc": {
| "sensor_dpcc_auto_en": 0,
| "max_level": 20,
| "SensorDpcc_Data": {
| "ISO": [50, 100, 200, 400, 800, 1500, 1507, 1510, 3200, 6400, 12800, 102400, 204800],
| "ISO_len": 13,
| "level_single": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_single_len": 13,
| "level_multiple": [19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19],
| "level_multiple_len": 13
| }
| }
| }
| },
| "amerge_calib": {
| "MergeTuningPara": {
| "OECurve": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "Smooth_len": 13,
| "Offset": [210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210],
| "Offset_len": 13
| },
| "MDCurve": {
| "MoveCoef": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "MoveCoef_len": 13,
| "LM_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "LM_smooth_len": 13,
| "LM_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "LM_offset_len": 13,
| "MS_smooth": [0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4],
| "MS_smooth_len": 13,
| "MS_offset": [0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38, 0.38],
| "MS_offset_len": 13
| },
| "ByPassThr": 0,
| "OECurve_damp": 0.3,
| "MDCurveLM_damp": 0.3,
| "MDCurveMS_damp": 0.3
| }
| },
| "adrc_calib": {
| "DrcTuningPara": {
| "Enable": 0,
| "DrcGain": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "DrcGain": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "DrcGain_len": 13,
| "Alpha": [0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2],
| "Alpha_len": 13,
| "Clip": [16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16],
| "Clip_len": 13
| },
| "HiLight": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "Strength": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "Strength_len": 13
| },
| "LocalTMOSetting": {
| "LocalTMOData": {
| "EnvLv": [0, 0.005, 0.01, 0.05, 0.1, 0.15, 0.2, 0.3, 0.4, 0.5, 0.6, 0.8, 1],
| "EnvLv_len": 13,
| "LocalWeit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
| "LocalWeit_len": 13,
| "GlobalContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "GlobalContrast_len": 13,
| "LoLitContrast": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "LoLitContrast_len": 13
| },
| "curPixWeit": 0.376471,
| "preFrameWeit": 1,
| "Range_force_sgm": 0,
| "Range_sgm_cur": 0.125015,
| "Range_sgm_pre": 0.125015,
| "Space_sgm_cur": 4068,
| "Space_sgm_pre": 3968
| },
| "CompressSetting": {
| "Mode": "COMPRESS_AUTO",
| "Manual_curve": [0, 558, 1087, 1588, 2063, 2515, 2944, 3353, 3744, 4473, 5139, 5751, 6316, 6838, 7322, 7772, 8192]
| },
| "Scale_y": [0, 2, 20, 76, 193, 381, 631, 772, 919, 1066, 1211, 1479, 1700, 1863, 1968, 2024, 2048],
| "ByPassThr": 0,
| "Edge_Weit": 0.0627451,
| "OutPutLongFrame": 0,
| "IIR_frame": 16,
| "Tolerance": 0,
| "damp": 0.9
| }
| },
| "cpsl": {
| "param": {
| "enable": 1,
| "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": "2688x1520",
| "lsc_sect_size_x": [168, 168, 168, 168, 168, 168, 168, 168],
| "lsc_sect_size_y": [95, 95, 95, 95, 95, 95, 95, 95]
| }, {
| "name": "2560x1440",
| "lsc_sect_size_x": [160, 160, 160, 160, 160, 160, 160, 160],
| "lsc_sect_size_y": [90, 90, 90, 90, 90, 90, 90, 90]
| }],
| "resolutionAll_len": 2
| },
| "alscCoef": {
| "damp_enable": 1,
| "illAll": [{
| "usedForCase": 0,
| "name": "A",
| "wbGain": [1.2804, 2.9801],
| "tableUsed": [{
| "name": "A_100"
| }, {
| "name": "A_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "CWF",
| "wbGain": [1.7517, 2.5722],
| "tableUsed": [{
| "name": "CWF_100"
| }, {
| "name": "CWF_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D50",
| "wbGain": [1.757, 1.7957],
| "tableUsed": [{
| "name": "D50_100"
| }, {
| "name": "D50_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D65",
| "wbGain": [2.0505, 1.5066],
| "tableUsed": [{
| "name": "D65_100"
| }, {
| "name": "D65_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "D75",
| "wbGain": [2.1544, 1.4068],
| "tableUsed": [{
| "name": "D75_100"
| }, {
| "name": "D75_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "HZ",
| "wbGain": [1.0649, 3.6068],
| "tableUsed": [{
| "name": "HZ_100"
| }, {
| "name": "HZ_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 0,
| "name": "TL84",
| "wbGain": [1.4221, 2.466],
| "tableUsed": [{
| "name": "TL84_100"
| }, {
| "name": "TL84_70"
| }],
| "tableUsed_len": 2,
| "gains": [1, 4, 6, 8],
| "gains_len": 4,
| "vig": [100, 100, 90, 70],
| "vig_len": 4
| }, {
| "usedForCase": 2,
| "name": "GRAY",
| "wbGain": [1, 1],
| "tableUsed": [{
| "name": "GRAY_0"
| }],
| "tableUsed_len": 1,
| "gains": [1, 10, 31, 64],
| "gains_len": 4,
| "vig": [90, 60, 25, 0],
| "vig_len": 4
| }],
| "illAll_len": 8
| },
| "tbl": {
| "tableAll": [{
| "name": "2560x1440_A_100",
| "resolution": "2560x1440",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3488, 2679, 2181, 1892, 1691, 1543, 1456, 1392, 1384, 1404, 1450, 1536, 1674, 1871, 2153, 2690, 3470, 3220, 2499, 2048, 1776, 1606, 1459, 1381, 1318, 1303, 1316, 1370, 1456, 1579, 1772, 2036, 2480, 3189, 2990, 2342, 1947, 1717, 1532, 1395, 1311, 1271, 1238, 1254, 1313, 1392, 1522, 1695, 1947, 2333, 2990, 2862, 2247, 1886, 1654, 1478, 1358, 1261, 1213, 1196, 1211, 1259, 1347, 1469, 1645, 1865, 2225, 2814, 2711, 2153, 1825, 1598, 1434, 1305, 1229, 1175, 1155, 1167, 1215, 1303, 1428, 1595, 1820, 2140, 2711, 2596, 2086, 1772, 1561, 1389, 1273, 1185, 1129, 1109, 1126, 1177, 1261, 1384, 1547, 1776, 2080, 2586, 2537, 2023, 1722, 1512, 1353, 1238, 1149, 1098, 1072, 1092, 1139, 1229, 1350, 1508, 1730, 2036, 2508, 2480, 1987, 1691, 1485, 1326, 1207, 1116, 1063, 1046, 1060, 1112, 1198, 1321, 1475, 1678, 1976, 2444, 2435, 1952, 1658, 1462, 1293, 1183, 1096, 1038, 1024, 1043, 1091, 1175, 1293, 1453, 1658, 1936, 2400, 2392, 1936, 1649, 1446, 1293, 1173, 1091, 1032, 1012, 1030, 1085, 1165, 1285, 1443, 1654, 1924, 2392, 2444, 1941, 1658, 1456, 1295, 1181, 1098, 1035, 1019, 1038, 1087, 1175, 1298, 1450, 1645, 1930, 2418, 2480, 1976, 1687, 1482, 1329, 1209, 1122, 1070, 1051, 1065, 1107, 1200, 1316, 1475, 1683, 1993, 2453, 2606, 2054, 1735, 1515, 1367, 1249, 1165, 1101, 1085, 1103, 1151, 1236, 1361, 1519, 1739, 2054, 2556, 2711, 2146, 1810, 1587, 1419, 1300, 1209, 1159, 1133, 1153, 1200, 1288, 1416, 1576, 1815, 2140, 2733, 2912, 2270, 1892, 1662, 1492, 1367, 1273, 1218, 1202, 1202, 1266, 1361, 1482, 1658, 1897, 2278, 2899, 3115, 2418, 1999, 1758, 1576, 1434, 1345, 1293, 1268, 1290, 1347, 1440, 1572, 1758, 2005, 2409, 3115, 3332, 2596, 2140, 1840, 1666, 1505, 1413, 1356, 1326, 1361, 1416, 1529, 1658, 1840, 2119, 2606, 3332]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3272, 2528, 2064, 1807, 1629, 1497, 1416, 1370, 1361, 1356, 1418, 1508, 1632, 1799, 2059, 2504, 3233, 2994, 2359, 1950, 1715, 1557, 1428, 1352, 1300, 1283, 1294, 1343, 1431, 1548, 1711, 1950, 2338, 2973, 2818, 2229, 1873, 1659, 1499, 1375, 1292, 1242, 1225, 1240, 1287, 1370, 1477, 1652, 1869, 2217, 2798, 2660, 2146, 1803, 1597, 1446, 1330, 1244, 1200, 1184, 1200, 1250, 1325, 1443, 1606, 1815, 2118, 2652, 2592, 2054, 1752, 1557, 1406, 1298, 1209, 1169, 1147, 1160, 1205, 1289, 1401, 1554, 1760, 2054, 2568, 2481, 2013, 1715, 1525, 1370, 1252, 1177, 1122, 1105, 1119, 1175, 1254, 1365, 1522, 1719, 2003, 2451, 2408, 1955, 1683, 1480, 1336, 1223, 1144, 1092, 1076, 1083, 1137, 1216, 1336, 1488, 1690, 1964, 2400, 2345, 1918, 1652, 1454, 1304, 1198, 1117, 1063, 1045, 1064, 1111, 1196, 1298, 1451, 1649, 1909, 2325, 2311, 1891, 1616, 1428, 1287, 1174, 1097, 1045, 1024, 1044, 1086, 1170, 1285, 1428, 1616, 1882, 2298, 2305, 1873, 1609, 1421, 1281, 1169, 1092, 1036, 1020, 1033, 1083, 1167, 1273, 1418, 1606, 1882, 2298, 2305, 1873, 1616, 1431, 1285, 1170, 1097, 1046, 1027, 1040, 1095, 1170, 1287, 1431, 1613, 1891, 2318, 2393, 1918, 1642, 1464, 1315, 1209, 1125, 1074, 1056, 1077, 1113, 1193, 1312, 1454, 1652, 1918, 2359, 2474, 1988, 1693, 1505, 1356, 1240, 1160, 1111, 1090, 1113, 1160, 1236, 1356, 1499, 1704, 1988, 2474, 2609, 2080, 1775, 1563, 1413, 1298, 1214, 1164, 1144, 1165, 1214, 1294, 1416, 1563, 1771, 2080, 2634, 2779, 2217, 1856, 1652, 1483, 1368, 1281, 1233, 1211, 1220, 1271, 1356, 1480, 1645, 1861, 2199, 2760, 3017, 2359, 1964, 1726, 1563, 1446, 1354, 1296, 1277, 1306, 1352, 1436, 1563, 1730, 1964, 2359, 2983, 3195, 2512, 2064, 1795, 1635, 1505, 1418, 1363, 1352, 1372, 1425, 1505, 1635, 1807, 2075, 2497, 3170]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3228, 2512, 2093, 1814, 1629, 1503, 1412, 1363, 1360, 1372, 1420, 1495, 1633, 1810, 2062, 2512, 3280, 3002, 2353, 1948, 1722, 1558, 1435, 1345, 1308, 1285, 1298, 1349, 1432, 1552, 1715, 1953, 2339, 3002, 2826, 2237, 1864, 1652, 1489, 1376, 1296, 1244, 1227, 1246, 1291, 1372, 1489, 1659, 1877, 2225, 2796, 2668, 2132, 1802, 1601, 1450, 1334, 1256, 1202, 1190, 1198, 1248, 1331, 1447, 1607, 1822, 2137, 2668, 2568, 2067, 1759, 1570, 1402, 1293, 1213, 1166, 1148, 1164, 1213, 1285, 1402, 1561, 1767, 2062, 2568, 2489, 2001, 1726, 1523, 1374, 1254, 1181, 1129, 1106, 1123, 1176, 1256, 1369, 1523, 1737, 2021, 2482, 2401, 1953, 1694, 1484, 1340, 1225, 1146, 1094, 1071, 1091, 1140, 1227, 1340, 1487, 1694, 1962, 2401, 2339, 1916, 1642, 1445, 1314, 1193, 1120, 1064, 1045, 1065, 1115, 1197, 1310, 1455, 1649, 1921, 2353, 2313, 1885, 1616, 1435, 1291, 1176, 1098, 1038, 1024, 1046, 1091, 1178, 1285, 1427, 1623, 1890, 2300, 2306, 1877, 1607, 1424, 1279, 1174, 1090, 1036, 1018, 1036, 1090, 1171, 1275, 1424, 1616, 1872, 2300, 2313, 1890, 1620, 1435, 1291, 1178, 1100, 1046, 1023, 1038, 1087, 1176, 1289, 1429, 1616, 1894, 2326, 2380, 1930, 1649, 1465, 1323, 1198, 1127, 1072, 1057, 1072, 1112, 1200, 1308, 1458, 1652, 1925, 2373, 2489, 1981, 1701, 1509, 1360, 1239, 1163, 1107, 1094, 1115, 1161, 1244, 1351, 1503, 1711, 1986, 2467, 2634, 2083, 1759, 1576, 1415, 1291, 1216, 1159, 1146, 1161, 1211, 1291, 1415, 1564, 1771, 2077, 2609, 2796, 2201, 1851, 1642, 1487, 1363, 1285, 1229, 1215, 1224, 1275, 1360, 1479, 1639, 1860, 2207, 2787, 2991, 2380, 1953, 1733, 1564, 1429, 1351, 1300, 1281, 1300, 1349, 1437, 1564, 1722, 1958, 2360, 3002, 3178, 2544, 2072, 1822, 1639, 1506, 1417, 1354, 1345, 1363, 1427, 1509, 1636, 1826, 2093, 2520, 3215]
| },
| "lsc_samples_blue": {
| "uCoeff": [3141, 2447, 1987, 1722, 1592, 1453, 1392, 1351, 1321, 1336, 1384, 1471, 1592, 1788, 2039, 2447, 3141, 2870, 2257, 1905, 1684, 1519, 1417, 1336, 1299, 1277, 1284, 1336, 1409, 1529, 1709, 1921, 2301, 2870, 2735, 2172, 1830, 1626, 1471, 1359, 1291, 1243, 1223, 1243, 1291, 1367, 1490, 1660, 1860, 2214, 2735, 2583, 2075, 1774, 1571, 1435, 1321, 1243, 1198, 1180, 1198, 1256, 1328, 1453, 1603, 1816, 2113, 2612, 2447, 2057, 1735, 1550, 1392, 1291, 1217, 1168, 1151, 1162, 1223, 1299, 1417, 1581, 1774, 2094, 2554, 2396, 1987, 1697, 1519, 1367, 1263, 1186, 1134, 1107, 1128, 1168, 1277, 1400, 1560, 1748, 2021, 2447, 2324, 1905, 1660, 1490, 1336, 1230, 1151, 1096, 1071, 1102, 1134, 1230, 1351, 1509, 1709, 1970, 2372, 2257, 1890, 1637, 1444, 1313, 1198, 1112, 1076, 1047, 1066, 1118, 1211, 1306, 1481, 1660, 1937, 2372, 2193, 1830, 1614, 1435, 1291, 1174, 1096, 1052, 1024, 1042, 1091, 1180, 1299, 1453, 1626, 1875, 2301, 2193, 1816, 1592, 1426, 1284, 1162, 1086, 1024, 1015, 1038, 1091, 1168, 1291, 1426, 1626, 1875, 2301, 2214, 1845, 1603, 1417, 1284, 1162, 1096, 1038, 1015, 1033, 1076, 1180, 1284, 1435, 1637, 1890, 2257, 2279, 1875, 1637, 1435, 1313, 1192, 1128, 1071, 1047, 1066, 1107, 1192, 1313, 1462, 1672, 1921, 2324, 2324, 1937, 1684, 1490, 1336, 1236, 1156, 1091, 1076, 1096, 1162, 1236, 1375, 1500, 1722, 1987, 2421, 2499, 2039, 1722, 1550, 1400, 1277, 1204, 1134, 1118, 1151, 1192, 1277, 1426, 1571, 1788, 2094, 2554, 2641, 2152, 1802, 1626, 1471, 1336, 1256, 1204, 1192, 1180, 1243, 1351, 1481, 1649, 1860, 2172, 2672, 2801, 2279, 1905, 1684, 1509, 1409, 1321, 1277, 1250, 1277, 1336, 1435, 1571, 1722, 1953, 2324, 2942, 3059, 2421, 2039, 1774, 1603, 1471, 1384, 1306, 1299, 1336, 1417, 1519, 1637, 1816, 2057, 2473, 3059]
| }
| }, {
| "name": "2560x1440_A_70",
| "resolution": "2560x1440",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2442, 2000, 1709, 1541, 1421, 1328, 1275, 1231, 1228, 1242, 1269, 1322, 1407, 1524, 1687, 2008, 2429, 2343, 1926, 1653, 1490, 1389, 1292, 1244, 1199, 1189, 1197, 1234, 1290, 1366, 1486, 1643, 1911, 2321, 2239, 1853, 1612, 1477, 1359, 1267, 1210, 1185, 1158, 1169, 1212, 1264, 1350, 1458, 1612, 1846, 2239, 2193, 1818, 1596, 1452, 1338, 1259, 1188, 1155, 1142, 1152, 1186, 1249, 1330, 1445, 1578, 1799, 2157, 2117, 1773, 1571, 1428, 1320, 1230, 1177, 1137, 1121, 1129, 1165, 1228, 1315, 1425, 1567, 1761, 2117, 2055, 1741, 1546, 1413, 1296, 1216, 1151, 1107, 1091, 1103, 1142, 1204, 1291, 1400, 1550, 1736, 2047, 2029, 1705, 1516, 1382, 1274, 1193, 1125, 1086, 1064, 1081, 1116, 1184, 1271, 1378, 1524, 1715, 2006, 1995, 1684, 1498, 1365, 1256, 1169, 1100, 1058, 1044, 1054, 1096, 1161, 1251, 1356, 1487, 1674, 1966, 1963, 1658, 1471, 1346, 1227, 1149, 1082, 1035, 1024, 1040, 1076, 1141, 1227, 1338, 1471, 1644, 1935, 1924, 1640, 1461, 1329, 1224, 1137, 1075, 1027, 1010, 1025, 1069, 1129, 1217, 1326, 1465, 1631, 1924, 1955, 1636, 1460, 1330, 1220, 1138, 1076, 1024, 1012, 1027, 1065, 1132, 1222, 1325, 1449, 1626, 1933, 1964, 1649, 1472, 1341, 1240, 1154, 1089, 1049, 1034, 1044, 1074, 1146, 1227, 1335, 1468, 1663, 1942, 2034, 1691, 1493, 1354, 1258, 1178, 1116, 1066, 1054, 1068, 1103, 1164, 1253, 1357, 1497, 1691, 1995, 2078, 1736, 1531, 1394, 1285, 1205, 1139, 1103, 1082, 1097, 1131, 1193, 1282, 1384, 1536, 1730, 2095, 2180, 1796, 1567, 1429, 1323, 1241, 1175, 1135, 1125, 1121, 1169, 1236, 1314, 1426, 1571, 1802, 2171, 2267, 1863, 1614, 1474, 1363, 1270, 1211, 1176, 1158, 1174, 1214, 1276, 1360, 1474, 1619, 1856, 2267, 2332, 1938, 1676, 1499, 1400, 1295, 1237, 1199, 1177, 1204, 1240, 1316, 1393, 1499, 1660, 1946, 2332]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2291, 1887, 1617, 1472, 1369, 1288, 1239, 1212, 1208, 1200, 1242, 1298, 1372, 1465, 1613, 1870, 2263, 2179, 1818, 1574, 1439, 1347, 1265, 1218, 1183, 1172, 1177, 1210, 1267, 1339, 1436, 1574, 1802, 2163, 2110, 1764, 1552, 1427, 1329, 1248, 1192, 1158, 1146, 1156, 1188, 1244, 1310, 1421, 1548, 1754, 2095, 2039, 1736, 1525, 1402, 1309, 1232, 1172, 1142, 1130, 1142, 1178, 1228, 1307, 1411, 1535, 1713, 2032, 2024, 1691, 1508, 1391, 1294, 1223, 1158, 1131, 1114, 1123, 1155, 1215, 1290, 1388, 1515, 1691, 2005, 1965, 1680, 1496, 1380, 1278, 1195, 1143, 1100, 1087, 1097, 1141, 1197, 1274, 1378, 1499, 1672, 1941, 1925, 1647, 1482, 1353, 1258, 1179, 1121, 1080, 1068, 1071, 1114, 1172, 1258, 1360, 1488, 1655, 1920, 1887, 1625, 1463, 1336, 1235, 1161, 1101, 1058, 1043, 1059, 1094, 1159, 1229, 1334, 1460, 1618, 1870, 1863, 1606, 1434, 1315, 1221, 1140, 1083, 1042, 1024, 1040, 1072, 1136, 1219, 1315, 1434, 1598, 1853, 1854, 1588, 1426, 1305, 1213, 1133, 1075, 1030, 1018, 1028, 1067, 1131, 1206, 1303, 1423, 1595, 1849, 1843, 1579, 1423, 1307, 1210, 1128, 1075, 1035, 1019, 1029, 1072, 1128, 1212, 1307, 1420, 1593, 1854, 1895, 1600, 1433, 1325, 1226, 1154, 1092, 1053, 1039, 1056, 1080, 1139, 1224, 1316, 1441, 1600, 1867, 1931, 1637, 1458, 1345, 1249, 1169, 1112, 1075, 1058, 1077, 1112, 1165, 1249, 1340, 1467, 1637, 1931, 2000, 1682, 1502, 1373, 1279, 1203, 1144, 1107, 1092, 1109, 1144, 1199, 1282, 1373, 1499, 1682, 2019, 2081, 1754, 1537, 1421, 1315, 1242, 1183, 1149, 1132, 1137, 1173, 1231, 1312, 1415, 1541, 1740, 2067, 2195, 1818, 1586, 1448, 1352, 1281, 1220, 1179, 1166, 1188, 1218, 1272, 1352, 1451, 1586, 1818, 2171, 2237, 1876, 1617, 1462, 1374, 1295, 1242, 1206, 1200, 1214, 1248, 1295, 1374, 1472, 1626, 1864, 2219]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2260, 1876, 1640, 1478, 1369, 1294, 1236, 1205, 1207, 1213, 1243, 1287, 1372, 1475, 1615, 1876, 2296, 2185, 1813, 1573, 1445, 1348, 1271, 1211, 1190, 1173, 1181, 1215, 1268, 1342, 1439, 1577, 1803, 2185, 2116, 1770, 1544, 1421, 1321, 1249, 1196, 1160, 1148, 1162, 1192, 1245, 1321, 1427, 1554, 1760, 2094, 2045, 1724, 1525, 1406, 1313, 1236, 1183, 1144, 1136, 1141, 1176, 1234, 1310, 1411, 1542, 1728, 2045, 2004, 1701, 1514, 1402, 1291, 1219, 1162, 1128, 1114, 1127, 1162, 1211, 1291, 1394, 1521, 1697, 2004, 1971, 1670, 1506, 1379, 1282, 1197, 1147, 1107, 1088, 1101, 1142, 1199, 1278, 1379, 1515, 1686, 1965, 1920, 1646, 1492, 1356, 1262, 1181, 1123, 1082, 1063, 1080, 1117, 1183, 1262, 1359, 1492, 1654, 1920, 1882, 1624, 1455, 1328, 1245, 1156, 1103, 1059, 1043, 1060, 1098, 1160, 1241, 1337, 1461, 1628, 1893, 1864, 1601, 1434, 1321, 1225, 1142, 1084, 1035, 1024, 1043, 1077, 1143, 1219, 1314, 1440, 1605, 1854, 1855, 1590, 1423, 1309, 1211, 1138, 1073, 1030, 1016, 1030, 1073, 1135, 1208, 1309, 1432, 1587, 1850, 1850, 1592, 1426, 1311, 1216, 1135, 1078, 1035, 1015, 1027, 1065, 1133, 1214, 1306, 1424, 1596, 1860, 1885, 1611, 1439, 1327, 1234, 1144, 1094, 1051, 1040, 1051, 1079, 1146, 1220, 1320, 1442, 1607, 1879, 1943, 1631, 1464, 1348, 1253, 1167, 1114, 1072, 1062, 1079, 1112, 1173, 1244, 1343, 1473, 1635, 1926, 2019, 1684, 1488, 1384, 1281, 1197, 1146, 1103, 1094, 1105, 1141, 1197, 1281, 1373, 1498, 1680, 1999, 2094, 1741, 1533, 1413, 1318, 1237, 1186, 1146, 1136, 1141, 1177, 1235, 1311, 1410, 1540, 1746, 2087, 2177, 1834, 1577, 1454, 1353, 1266, 1217, 1183, 1170, 1183, 1215, 1273, 1353, 1445, 1581, 1818, 2185, 2224, 1899, 1623, 1484, 1378, 1296, 1241, 1197, 1193, 1205, 1249, 1299, 1375, 1488, 1640, 1882, 2251]
| },
| "lsc_samples_blue": {
| "uCoeff": [2199, 1827, 1557, 1403, 1338, 1251, 1219, 1195, 1172, 1182, 1211, 1266, 1338, 1457, 1598, 1827, 2199, 2088, 1739, 1538, 1413, 1314, 1255, 1203, 1182, 1166, 1168, 1203, 1248, 1323, 1434, 1551, 1774, 2088, 2048, 1719, 1516, 1398, 1305, 1234, 1192, 1159, 1144, 1159, 1192, 1241, 1321, 1428, 1540, 1752, 2048, 1979, 1679, 1501, 1379, 1299, 1224, 1171, 1140, 1127, 1140, 1184, 1231, 1315, 1408, 1536, 1709, 2002, 1910, 1693, 1493, 1385, 1282, 1217, 1166, 1130, 1117, 1125, 1172, 1224, 1305, 1413, 1527, 1724, 1994, 1897, 1658, 1480, 1375, 1276, 1206, 1151, 1112, 1089, 1106, 1134, 1219, 1306, 1412, 1525, 1687, 1937, 1859, 1605, 1462, 1362, 1258, 1185, 1127, 1085, 1063, 1090, 1111, 1185, 1273, 1379, 1505, 1660, 1897, 1816, 1602, 1450, 1327, 1244, 1161, 1096, 1071, 1045, 1061, 1101, 1173, 1237, 1361, 1471, 1642, 1908, 1768, 1554, 1433, 1321, 1225, 1140, 1082, 1048, 1024, 1039, 1077, 1146, 1232, 1338, 1443, 1592, 1855, 1764, 1539, 1410, 1311, 1216, 1126, 1070, 1019, 1013, 1032, 1075, 1132, 1223, 1311, 1440, 1589, 1852, 1770, 1554, 1412, 1295, 1209, 1120, 1074, 1027, 1008, 1022, 1054, 1137, 1209, 1311, 1442, 1592, 1805, 1804, 1564, 1428, 1299, 1225, 1138, 1095, 1050, 1030, 1045, 1074, 1138, 1225, 1324, 1459, 1603, 1840, 1815, 1595, 1450, 1331, 1230, 1165, 1108, 1056, 1045, 1061, 1114, 1165, 1266, 1340, 1482, 1635, 1890, 1916, 1649, 1457, 1361, 1268, 1184, 1135, 1079, 1067, 1095, 1123, 1184, 1291, 1379, 1513, 1694, 1958, 1978, 1703, 1492, 1398, 1305, 1213, 1160, 1123, 1115, 1100, 1147, 1227, 1313, 1418, 1540, 1719, 2001, 2038, 1756, 1538, 1413, 1306, 1248, 1190, 1162, 1141, 1162, 1203, 1271, 1359, 1444, 1577, 1791, 2141, 2141, 1808, 1598, 1446, 1347, 1266, 1211, 1155, 1152, 1182, 1241, 1308, 1376, 1479, 1612, 1847, 2141]
| }
| }, {
| "name": "2560x1440_D50_100",
| "resolution": "2560x1440",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2554, 2063, 1760, 1586, 1496, 1387, 1342, 1330, 1317, 1342, 1396, 1480, 1649, 1805, 2084, 2538, 3298, 2421, 1939, 1669, 1512, 1387, 1330, 1273, 1250, 1239, 1265, 1317, 1420, 1529, 1703, 1939, 2366, 3057, 2240, 1829, 1592, 1454, 1338, 1265, 1221, 1200, 1186, 1210, 1258, 1351, 1470, 1630, 1853, 2216, 2811, 2126, 1752, 1551, 1415, 1313, 1239, 1186, 1154, 1147, 1167, 1214, 1301, 1405, 1563, 1790, 2126, 2685, 2014, 1716, 1507, 1378, 1293, 1207, 1163, 1123, 1111, 1132, 1170, 1261, 1378, 1534, 1745, 2073, 2585, 1966, 1682, 1480, 1364, 1273, 1190, 1129, 1094, 1077, 1099, 1154, 1228, 1351, 1512, 1716, 2004, 2493, 1921, 1636, 1475, 1347, 1250, 1183, 1111, 1068, 1060, 1077, 1123, 1203, 1325, 1470, 1682, 1966, 2421, 1887, 1611, 1454, 1330, 1239, 1157, 1091, 1044, 1034, 1050, 1102, 1193, 1305, 1454, 1649, 1930, 2393, 1837, 1599, 1434, 1321, 1228, 1141, 1074, 1027, 1024, 1039, 1082, 1167, 1281, 1429, 1623, 1912, 2353, 1805, 1586, 1429, 1317, 1232, 1141, 1068, 1022, 1009, 1024, 1079, 1144, 1269, 1410, 1617, 1878, 2314, 1829, 1586, 1434, 1325, 1228, 1144, 1068, 1022, 1007, 1027, 1071, 1147, 1265, 1415, 1611, 1870, 2327, 1837, 1605, 1464, 1355, 1246, 1160, 1094, 1047, 1032, 1047, 1096, 1170, 1285, 1434, 1623, 1895, 2366, 1895, 1655, 1507, 1382, 1285, 1193, 1123, 1071, 1063, 1082, 1123, 1207, 1313, 1464, 1669, 1966, 2478, 1976, 1716, 1580, 1439, 1325, 1239, 1176, 1132, 1117, 1132, 1173, 1254, 1373, 1529, 1745, 2063, 2538, 2115, 1821, 1662, 1523, 1396, 1293, 1235, 1186, 1170, 1190, 1243, 1321, 1449, 1605, 1829, 2159, 2737, 2252, 1957, 1752, 1617, 1490, 1382, 1317, 1265, 1250, 1261, 1305, 1396, 1517, 1703, 1939, 2327, 2970, 2435, 2126, 1853, 1703, 1574, 1470, 1387, 1347, 1325, 1342, 1405, 1496, 1611, 1805, 2043, 2508, 3247]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2770, 2189, 1851, 1648, 1522, 1429, 1361, 1336, 1323, 1346, 1393, 1460, 1593, 1761, 2012, 2475, 3119, 2563, 2052, 1748, 1562, 1431, 1348, 1295, 1263, 1248, 1272, 1321, 1398, 1519, 1663, 1900, 2272, 2893, 2409, 1941, 1663, 1503, 1382, 1300, 1237, 1206, 1190, 1208, 1254, 1333, 1452, 1607, 1805, 2163, 2708, 2279, 1870, 1618, 1460, 1346, 1261, 1196, 1159, 1146, 1171, 1212, 1295, 1403, 1552, 1752, 2058, 2563, 2156, 1814, 1589, 1431, 1321, 1231, 1172, 1130, 1114, 1139, 1182, 1256, 1374, 1522, 1727, 1995, 2467, 2106, 1782, 1562, 1417, 1302, 1210, 1148, 1106, 1089, 1102, 1156, 1233, 1348, 1491, 1694, 1962, 2417, 2081, 1752, 1538, 1398, 1281, 1192, 1127, 1076, 1066, 1079, 1134, 1208, 1323, 1469, 1667, 1941, 2377, 2052, 1714, 1522, 1382, 1272, 1178, 1106, 1060, 1045, 1062, 1114, 1194, 1295, 1452, 1644, 1900, 2308, 1995, 1690, 1503, 1364, 1256, 1163, 1086, 1042, 1024, 1048, 1091, 1172, 1279, 1426, 1622, 1865, 2251, 1989, 1674, 1494, 1361, 1246, 1157, 1087, 1034, 1021, 1033, 1079, 1159, 1270, 1412, 1593, 1846, 2258, 1989, 1674, 1497, 1366, 1250, 1159, 1083, 1039, 1021, 1039, 1084, 1157, 1272, 1406, 1593, 1861, 2265, 2017, 1706, 1509, 1387, 1270, 1172, 1104, 1056, 1040, 1056, 1104, 1180, 1290, 1423, 1604, 1870, 2316, 2081, 1765, 1562, 1423, 1300, 1210, 1139, 1096, 1081, 1096, 1139, 1210, 1326, 1457, 1651, 1915, 2377, 2209, 1846, 1629, 1475, 1364, 1267, 1196, 1146, 1134, 1139, 1190, 1265, 1377, 1522, 1718, 2012, 2527, 2316, 1946, 1718, 1562, 1429, 1323, 1254, 1214, 1196, 1212, 1256, 1333, 1440, 1604, 1796, 2124, 2688, 2510, 2100, 1828, 1648, 1509, 1406, 1333, 1286, 1265, 1283, 1331, 1414, 1529, 1686, 1905, 2265, 2905, 2688, 2272, 1941, 1739, 1589, 1488, 1414, 1356, 1348, 1364, 1412, 1494, 1625, 1787, 2034, 2467, 3132]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2748, 2180, 1848, 1629, 1519, 1414, 1350, 1323, 1318, 1332, 1395, 1472, 1586, 1779, 1997, 2431, 3146, 2534, 2037, 1732, 1548, 1425, 1342, 1280, 1251, 1242, 1260, 1301, 1392, 1503, 1663, 1877, 2255, 2881, 2367, 1922, 1652, 1490, 1371, 1292, 1227, 1193, 1181, 1207, 1253, 1323, 1442, 1593, 1801, 2128, 2696, 2241, 1848, 1597, 1451, 1332, 1258, 1183, 1149, 1136, 1160, 1215, 1282, 1392, 1542, 1753, 2049, 2561, 2166, 1784, 1562, 1425, 1313, 1221, 1160, 1118, 1110, 1127, 1166, 1258, 1358, 1506, 1711, 1997, 2439, 2115, 1766, 1552, 1400, 1292, 1207, 1136, 1101, 1084, 1094, 1149, 1230, 1342, 1487, 1691, 1938, 2407, 2072, 1736, 1525, 1387, 1278, 1185, 1118, 1067, 1051, 1075, 1127, 1203, 1313, 1460, 1652, 1927, 2336, 2031, 1703, 1516, 1376, 1258, 1171, 1098, 1046, 1036, 1051, 1106, 1187, 1292, 1434, 1629, 1887, 2306, 1964, 1667, 1494, 1353, 1247, 1152, 1080, 1028, 1024, 1037, 1088, 1167, 1276, 1417, 1604, 1858, 2262, 1959, 1660, 1481, 1353, 1232, 1145, 1068, 1020, 1014, 1027, 1076, 1152, 1267, 1406, 1590, 1834, 2262, 1970, 1671, 1475, 1355, 1238, 1147, 1073, 1027, 1014, 1028, 1075, 1151, 1267, 1400, 1583, 1843, 2277, 1992, 1695, 1509, 1371, 1260, 1164, 1091, 1051, 1034, 1051, 1094, 1175, 1282, 1417, 1597, 1867, 2277, 2061, 1732, 1545, 1414, 1287, 1199, 1124, 1081, 1070, 1081, 1127, 1209, 1313, 1451, 1641, 1917, 2375, 2180, 1815, 1615, 1466, 1342, 1251, 1179, 1136, 1120, 1134, 1179, 1255, 1368, 1506, 1699, 2009, 2490, 2313, 1927, 1703, 1545, 1414, 1318, 1245, 1205, 1185, 1201, 1245, 1328, 1428, 1586, 1797, 2128, 2666, 2456, 2084, 1806, 1629, 1500, 1389, 1325, 1273, 1258, 1278, 1320, 1400, 1506, 1679, 1897, 2269, 2869, 2647, 2248, 1922, 1723, 1586, 1472, 1389, 1348, 1337, 1350, 1403, 1472, 1600, 1766, 2003, 2448, 3119]
| },
| "lsc_samples_blue": {
| "uCoeff": [2354, 1909, 1637, 1486, 1421, 1333, 1270, 1275, 1275, 1301, 1350, 1453, 1566, 1716, 1943, 2389, 2987, 2194, 1792, 1558, 1427, 1322, 1265, 1236, 1226, 1231, 1231, 1290, 1355, 1486, 1646, 1865, 2209, 2781, 2029, 1698, 1493, 1373, 1285, 1231, 1190, 1173, 1173, 1195, 1236, 1317, 1434, 1589, 1782, 2095, 2601, 1920, 1654, 1466, 1344, 1265, 1208, 1169, 1132, 1132, 1156, 1208, 1280, 1384, 1522, 1734, 2003, 2444, 1843, 1605, 1440, 1338, 1250, 1195, 1144, 1116, 1105, 1124, 1173, 1250, 1367, 1507, 1698, 1955, 2444, 1822, 1597, 1434, 1327, 1241, 1177, 1128, 1090, 1086, 1101, 1144, 1231, 1333, 1486, 1671, 1931, 2354, 1772, 1566, 1427, 1317, 1236, 1164, 1112, 1068, 1061, 1086, 1128, 1213, 1311, 1460, 1646, 1886, 2304, 1772, 1551, 1409, 1301, 1231, 1148, 1101, 1058, 1041, 1065, 1112, 1190, 1290, 1440, 1621, 1875, 2256, 1707, 1507, 1390, 1306, 1222, 1140, 1072, 1031, 1024, 1044, 1090, 1164, 1285, 1427, 1597, 1843, 2240, 1680, 1493, 1373, 1290, 1213, 1132, 1068, 1024, 1011, 1034, 1075, 1156, 1260, 1409, 1589, 1833, 2194, 1689, 1493, 1378, 1301, 1213, 1132, 1068, 1031, 1021, 1027, 1079, 1156, 1255, 1390, 1573, 1802, 2179, 1716, 1529, 1415, 1322, 1241, 1156, 1086, 1041, 1034, 1047, 1090, 1173, 1275, 1409, 1589, 1833, 2240, 1763, 1558, 1453, 1350, 1255, 1190, 1120, 1082, 1072, 1079, 1124, 1204, 1311, 1453, 1629, 1875, 2288, 1833, 1629, 1514, 1415, 1322, 1241, 1169, 1136, 1120, 1132, 1177, 1241, 1361, 1507, 1680, 1979, 2425, 1955, 1725, 1605, 1486, 1378, 1295, 1236, 1199, 1182, 1190, 1241, 1311, 1434, 1581, 1782, 2095, 2580, 2042, 1854, 1698, 1573, 1453, 1361, 1311, 1270, 1245, 1265, 1317, 1390, 1507, 1663, 1886, 2225, 2829, 2225, 2003, 1812, 1671, 1543, 1440, 1384, 1350, 1317, 1355, 1390, 1460, 1605, 1763, 1991, 2425, 3015]
| }
| }, {
| "name": "2560x1440_D50_70",
| "resolution": "2560x1440",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [1788, 1541, 1379, 1292, 1257, 1194, 1175, 1176, 1169, 1187, 1222, 1274, 1386, 1471, 1633, 1895, 2308, 1762, 1494, 1347, 1268, 1200, 1178, 1147, 1138, 1131, 1151, 1186, 1258, 1322, 1428, 1565, 1823, 2225, 1677, 1447, 1319, 1251, 1186, 1149, 1127, 1119, 1110, 1129, 1161, 1226, 1303, 1402, 1535, 1753, 2105, 1629, 1417, 1312, 1243, 1189, 1148, 1118, 1098, 1096, 1110, 1144, 1205, 1272, 1373, 1514, 1719, 2058, 1572, 1413, 1297, 1231, 1190, 1137, 1115, 1087, 1079, 1095, 1121, 1189, 1269, 1371, 1502, 1707, 2018, 1557, 1404, 1291, 1235, 1188, 1136, 1096, 1072, 1059, 1078, 1120, 1173, 1260, 1369, 1497, 1672, 1974, 1536, 1379, 1299, 1231, 1177, 1140, 1088, 1057, 1053, 1065, 1100, 1160, 1248, 1343, 1481, 1657, 1936, 1518, 1365, 1288, 1222, 1173, 1121, 1074, 1039, 1032, 1044, 1086, 1156, 1235, 1336, 1461, 1636, 1925, 1481, 1357, 1273, 1216, 1165, 1108, 1060, 1023, 1024, 1036, 1068, 1133, 1215, 1316, 1441, 1624, 1897, 1452, 1345, 1266, 1210, 1166, 1106, 1053, 1016, 1007, 1019, 1063, 1109, 1202, 1296, 1432, 1592, 1862, 1463, 1337, 1263, 1211, 1157, 1103, 1047, 1011, 999, 1016, 1049, 1106, 1191, 1293, 1419, 1575, 1861, 1454, 1339, 1278, 1227, 1163, 1108, 1061, 1026, 1015, 1026, 1064, 1117, 1199, 1298, 1416, 1581, 1874, 1479, 1363, 1297, 1235, 1183, 1125, 1076, 1037, 1032, 1047, 1076, 1137, 1209, 1308, 1436, 1619, 1935, 1514, 1388, 1337, 1264, 1200, 1148, 1108, 1077, 1066, 1077, 1105, 1162, 1243, 1343, 1476, 1669, 1945, 1584, 1441, 1376, 1310, 1238, 1173, 1140, 1106, 1094, 1109, 1147, 1199, 1285, 1380, 1515, 1708, 2050, 1639, 1508, 1415, 1356, 1289, 1224, 1186, 1151, 1141, 1148, 1175, 1237, 1313, 1428, 1565, 1793, 2161, 1704, 1587, 1452, 1387, 1323, 1265, 1214, 1191, 1176, 1187, 1231, 1288, 1354, 1471, 1601, 1873, 2273]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1939, 1635, 1450, 1342, 1279, 1230, 1192, 1181, 1174, 1190, 1219, 1257, 1339, 1434, 1576, 1848, 2183, 1865, 1581, 1411, 1310, 1238, 1194, 1166, 1149, 1139, 1157, 1190, 1238, 1314, 1395, 1534, 1751, 2105, 1804, 1536, 1377, 1293, 1225, 1180, 1142, 1124, 1113, 1126, 1158, 1210, 1287, 1382, 1495, 1711, 2028, 1747, 1513, 1369, 1283, 1218, 1168, 1127, 1103, 1095, 1114, 1142, 1200, 1271, 1363, 1482, 1664, 1964, 1683, 1493, 1368, 1279, 1216, 1160, 1123, 1094, 1082, 1102, 1133, 1184, 1265, 1360, 1486, 1642, 1926, 1667, 1487, 1363, 1283, 1215, 1155, 1114, 1084, 1071, 1081, 1122, 1177, 1258, 1350, 1478, 1637, 1914, 1665, 1476, 1355, 1278, 1206, 1149, 1104, 1065, 1059, 1068, 1111, 1164, 1246, 1343, 1468, 1636, 1901, 1651, 1453, 1348, 1270, 1204, 1142, 1089, 1055, 1043, 1056, 1098, 1157, 1226, 1334, 1456, 1610, 1857, 1608, 1435, 1334, 1256, 1192, 1129, 1072, 1038, 1024, 1044, 1077, 1138, 1213, 1313, 1439, 1584, 1814, 1600, 1419, 1323, 1251, 1179, 1122, 1071, 1029, 1019, 1028, 1063, 1123, 1202, 1297, 1411, 1565, 1816, 1591, 1411, 1318, 1248, 1177, 1117, 1061, 1028, 1014, 1028, 1062, 1115, 1198, 1285, 1403, 1568, 1811, 1597, 1424, 1317, 1256, 1185, 1119, 1072, 1035, 1023, 1035, 1072, 1127, 1204, 1288, 1399, 1561, 1834, 1625, 1453, 1344, 1271, 1197, 1140, 1091, 1060, 1049, 1060, 1091, 1140, 1221, 1302, 1422, 1577, 1856, 1693, 1493, 1378, 1296, 1234, 1175, 1127, 1091, 1082, 1084, 1121, 1173, 1246, 1337, 1454, 1627, 1937, 1734, 1540, 1423, 1343, 1267, 1201, 1158, 1132, 1119, 1130, 1160, 1210, 1277, 1379, 1487, 1681, 2013, 1826, 1618, 1476, 1382, 1306, 1246, 1201, 1170, 1155, 1168, 1199, 1253, 1322, 1414, 1538, 1745, 2114, 1881, 1696, 1521, 1417, 1336, 1281, 1238, 1199, 1196, 1206, 1236, 1286, 1366, 1456, 1594, 1842, 2193]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1924, 1628, 1448, 1327, 1277, 1217, 1182, 1170, 1169, 1179, 1221, 1267, 1333, 1449, 1565, 1815, 2202, 1844, 1570, 1398, 1299, 1233, 1189, 1153, 1138, 1134, 1146, 1172, 1233, 1300, 1395, 1515, 1738, 2096, 1772, 1521, 1368, 1282, 1215, 1173, 1133, 1112, 1105, 1125, 1157, 1201, 1279, 1370, 1492, 1684, 2019, 1717, 1495, 1351, 1275, 1206, 1165, 1115, 1093, 1085, 1104, 1145, 1188, 1260, 1354, 1483, 1657, 1963, 1691, 1468, 1345, 1273, 1209, 1151, 1111, 1082, 1077, 1091, 1117, 1185, 1250, 1346, 1473, 1644, 1904, 1675, 1474, 1354, 1268, 1205, 1152, 1103, 1079, 1067, 1073, 1115, 1174, 1252, 1347, 1475, 1617, 1905, 1657, 1463, 1343, 1267, 1203, 1142, 1096, 1055, 1043, 1063, 1104, 1159, 1236, 1334, 1455, 1624, 1868, 1634, 1443, 1343, 1265, 1191, 1135, 1081, 1041, 1034, 1046, 1090, 1150, 1223, 1318, 1443, 1599, 1855, 1584, 1416, 1325, 1245, 1183, 1119, 1065, 1025, 1024, 1034, 1074, 1133, 1210, 1305, 1423, 1577, 1824, 1576, 1407, 1312, 1243, 1166, 1110, 1052, 1014, 1012, 1022, 1060, 1117, 1199, 1292, 1408, 1554, 1820, 1575, 1408, 1299, 1238, 1166, 1105, 1051, 1016, 1006, 1018, 1053, 1109, 1193, 1280, 1394, 1553, 1821, 1577, 1414, 1317, 1241, 1175, 1111, 1059, 1030, 1017, 1030, 1062, 1122, 1196, 1283, 1393, 1558, 1803, 1609, 1426, 1330, 1263, 1185, 1130, 1077, 1046, 1039, 1046, 1080, 1139, 1209, 1297, 1412, 1578, 1854, 1670, 1468, 1366, 1288, 1215, 1159, 1111, 1081, 1069, 1079, 1111, 1163, 1239, 1323, 1437, 1624, 1908, 1732, 1525, 1410, 1329, 1254, 1196, 1149, 1123, 1108, 1119, 1149, 1205, 1266, 1364, 1488, 1684, 1997, 1787, 1606, 1458, 1367, 1297, 1231, 1194, 1159, 1148, 1163, 1189, 1240, 1303, 1408, 1531, 1749, 2088, 1853, 1679, 1506, 1404, 1333, 1267, 1216, 1192, 1187, 1194, 1228, 1267, 1345, 1439, 1569, 1828, 2183]
| },
| "lsc_samples_blue": {
| "uCoeff": [1648, 1425, 1283, 1211, 1194, 1147, 1112, 1128, 1131, 1150, 1182, 1251, 1316, 1398, 1522, 1784, 2091, 1597, 1381, 1258, 1197, 1144, 1120, 1113, 1116, 1124, 1120, 1162, 1200, 1286, 1380, 1505, 1703, 2023, 1519, 1343, 1237, 1181, 1139, 1118, 1099, 1094, 1097, 1114, 1141, 1195, 1271, 1367, 1476, 1657, 1948, 1471, 1338, 1240, 1180, 1145, 1120, 1101, 1077, 1081, 1100, 1138, 1186, 1253, 1336, 1467, 1620, 1873, 1439, 1321, 1240, 1196, 1151, 1126, 1096, 1080, 1072, 1088, 1124, 1178, 1258, 1347, 1461, 1609, 1908, 1443, 1333, 1251, 1202, 1157, 1124, 1095, 1068, 1068, 1079, 1110, 1175, 1243, 1346, 1458, 1612, 1864, 1417, 1319, 1257, 1203, 1164, 1122, 1090, 1057, 1053, 1075, 1105, 1169, 1235, 1334, 1449, 1589, 1843, 1426, 1314, 1248, 1195, 1166, 1112, 1085, 1052, 1039, 1059, 1096, 1153, 1222, 1323, 1436, 1589, 1815, 1376, 1280, 1234, 1202, 1159, 1107, 1058, 1027, 1024, 1040, 1076, 1131, 1219, 1314, 1417, 1565, 1806, 1352, 1266, 1216, 1186, 1148, 1097, 1052, 1019, 1009, 1029, 1059, 1120, 1193, 1295, 1407, 1553, 1765, 1351, 1258, 1214, 1189, 1142, 1091, 1046, 1020, 1013, 1016, 1057, 1114, 1182, 1271, 1386, 1518, 1743, 1358, 1276, 1234, 1197, 1157, 1104, 1054, 1020, 1017, 1027, 1058, 1120, 1189, 1275, 1386, 1529, 1774, 1376, 1283, 1251, 1206, 1156, 1122, 1073, 1047, 1040, 1044, 1077, 1134, 1207, 1298, 1402, 1544, 1786, 1405, 1318, 1281, 1243, 1197, 1150, 1101, 1081, 1069, 1077, 1109, 1150, 1232, 1324, 1421, 1600, 1859, 1464, 1365, 1329, 1278, 1222, 1176, 1141, 1118, 1105, 1110, 1145, 1190, 1271, 1360, 1476, 1657, 1932, 1486, 1429, 1371, 1320, 1257, 1206, 1181, 1155, 1137, 1151, 1186, 1232, 1304, 1395, 1523, 1714, 2059, 1557, 1496, 1420, 1362, 1297, 1240, 1212, 1194, 1168, 1199, 1217, 1256, 1349, 1436, 1560, 1811, 2110]
| }
| }, {
| "name": "2560x1440_D65_100",
| "resolution": "2560x1440",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3452, 2627, 2158, 1878, 1686, 1562, 1456, 1394, 1378, 1394, 1438, 1530, 1655, 1869, 2132, 2608, 3388, 3125, 2466, 2014, 1768, 1590, 1468, 1373, 1323, 1295, 1313, 1368, 1450, 1549, 1751, 1992, 2417, 3125, 2923, 2294, 1898, 1678, 1510, 1389, 1309, 1263, 1237, 1246, 1299, 1368, 1492, 1678, 1888, 2266, 2877, 2746, 2171, 1831, 1618, 1444, 1333, 1241, 1200, 1185, 1200, 1246, 1323, 1427, 1611, 1840, 2158, 2788, 2589, 2095, 1777, 1556, 1405, 1281, 1204, 1147, 1129, 1147, 1185, 1272, 1389, 1549, 1751, 2083, 2589, 2483, 2025, 1710, 1510, 1353, 1233, 1158, 1109, 1085, 1098, 1147, 1246, 1343, 1492, 1710, 2003, 2483, 2466, 1949, 1678, 1474, 1323, 1208, 1129, 1076, 1057, 1072, 1126, 1204, 1318, 1474, 1663, 1938, 2417, 2385, 1938, 1655, 1462, 1313, 1189, 1112, 1051, 1036, 1054, 1098, 1181, 1285, 1444, 1633, 1928, 2417, 2385, 1918, 1640, 1438, 1290, 1189, 1092, 1042, 1024, 1045, 1092, 1173, 1281, 1427, 1640, 1918, 2354, 2354, 1908, 1648, 1450, 1285, 1185, 1098, 1045, 1027, 1036, 1092, 1173, 1272, 1422, 1626, 1908, 2354, 2369, 1938, 1655, 1468, 1304, 1192, 1109, 1057, 1030, 1054, 1098, 1173, 1290, 1450, 1648, 1918, 2369, 2466, 1970, 1702, 1486, 1323, 1216, 1129, 1076, 1060, 1072, 1122, 1196, 1318, 1474, 1663, 1970, 2449, 2553, 2014, 1734, 1517, 1368, 1241, 1162, 1109, 1095, 1102, 1154, 1233, 1343, 1504, 1726, 2014, 2500, 2665, 2095, 1777, 1556, 1405, 1285, 1204, 1151, 1136, 1158, 1200, 1276, 1400, 1556, 1768, 2095, 2646, 2810, 2210, 1849, 1633, 1468, 1343, 1259, 1208, 1192, 1204, 1246, 1338, 1433, 1611, 1840, 2171, 2788, 2971, 2339, 1949, 1726, 1536, 1405, 1328, 1281, 1254, 1267, 1323, 1400, 1530, 1702, 1938, 2324, 2971, 3237, 2517, 2071, 1812, 1611, 1492, 1405, 1338, 1323, 1343, 1394, 1498, 1626, 1795, 2071, 2500, 3295]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3205, 2502, 2052, 1799, 1634, 1496, 1426, 1380, 1347, 1370, 1426, 1496, 1608, 1781, 2052, 2485, 3177, 2958, 2349, 1932, 1706, 1544, 1423, 1340, 1304, 1279, 1295, 1340, 1429, 1534, 1706, 1922, 2311, 2899, 2757, 2187, 1821, 1616, 1475, 1357, 1281, 1227, 1219, 1229, 1268, 1357, 1469, 1619, 1821, 2187, 2746, 2590, 2087, 1764, 1560, 1418, 1297, 1229, 1180, 1165, 1181, 1217, 1304, 1402, 1557, 1760, 2057, 2572, 2502, 2006, 1710, 1518, 1370, 1257, 1180, 1132, 1110, 1127, 1174, 1252, 1362, 1509, 1706, 1985, 2451, 2372, 1942, 1663, 1475, 1335, 1223, 1146, 1096, 1075, 1086, 1141, 1219, 1323, 1463, 1663, 1932, 2372, 2341, 1897, 1634, 1440, 1302, 1189, 1113, 1066, 1048, 1057, 1111, 1185, 1295, 1432, 1630, 1882, 2311, 2275, 1858, 1608, 1423, 1283, 1185, 1093, 1046, 1025, 1045, 1090, 1172, 1277, 1418, 1605, 1858, 2283, 2268, 1849, 1591, 1418, 1277, 1163, 1080, 1033, 1024, 1030, 1082, 1161, 1263, 1407, 1601, 1840, 2247, 2275, 1840, 1601, 1418, 1274, 1168, 1088, 1039, 1023, 1036, 1082, 1159, 1274, 1399, 1598, 1844, 2283, 2319, 1873, 1619, 1426, 1288, 1181, 1105, 1058, 1033, 1046, 1095, 1174, 1277, 1412, 1616, 1868, 2283, 2372, 1907, 1637, 1455, 1316, 1203, 1130, 1080, 1061, 1074, 1118, 1203, 1306, 1452, 1637, 1897, 2341, 2451, 1958, 1675, 1496, 1352, 1242, 1159, 1115, 1098, 1111, 1152, 1229, 1337, 1484, 1671, 1942, 2403, 2563, 2040, 1743, 1541, 1391, 1281, 1205, 1159, 1139, 1152, 1201, 1274, 1391, 1531, 1726, 2023, 2510, 2716, 2148, 1799, 1616, 1452, 1337, 1257, 1207, 1195, 1207, 1250, 1330, 1437, 1588, 1790, 2136, 2686, 2888, 2290, 1902, 1671, 1521, 1402, 1325, 1277, 1257, 1265, 1311, 1402, 1515, 1667, 1897, 2254, 2865, 3109, 2451, 2023, 1768, 1608, 1472, 1394, 1342, 1311, 1342, 1375, 1460, 1581, 1743, 2018, 2419, 3122]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3208, 2518, 2072, 1812, 1642, 1508, 1426, 1386, 1371, 1383, 1437, 1505, 1614, 1808, 2083, 2526, 3222, 2975, 2342, 1946, 1711, 1559, 1437, 1353, 1312, 1289, 1305, 1348, 1437, 1549, 1711, 1941, 2334, 2963, 2763, 2195, 1839, 1635, 1487, 1376, 1289, 1235, 1223, 1243, 1291, 1368, 1481, 1639, 1848, 2202, 2763, 2616, 2083, 1760, 1576, 1421, 1312, 1235, 1191, 1168, 1187, 1233, 1307, 1418, 1566, 1777, 2083, 2625, 2492, 2010, 1723, 1520, 1381, 1267, 1183, 1140, 1126, 1136, 1187, 1263, 1365, 1517, 1719, 1999, 2475, 2403, 1946, 1668, 1490, 1333, 1229, 1150, 1104, 1086, 1102, 1148, 1223, 1336, 1478, 1668, 1946, 2411, 2334, 1896, 1631, 1457, 1317, 1203, 1124, 1072, 1050, 1073, 1124, 1195, 1303, 1454, 1653, 1896, 2334, 2284, 1867, 1617, 1432, 1294, 1189, 1102, 1053, 1040, 1055, 1100, 1180, 1287, 1426, 1631, 1881, 2298, 2298, 1872, 1610, 1426, 1287, 1182, 1096, 1041, 1024, 1044, 1087, 1168, 1276, 1410, 1614, 1862, 2284, 2284, 1867, 1610, 1429, 1294, 1176, 1099, 1049, 1028, 1046, 1086, 1170, 1278, 1418, 1607, 1872, 2284, 2305, 1891, 1617, 1437, 1294, 1183, 1114, 1056, 1036, 1058, 1100, 1180, 1287, 1435, 1624, 1891, 2320, 2372, 1926, 1646, 1466, 1321, 1215, 1134, 1079, 1064, 1076, 1131, 1203, 1312, 1466, 1657, 1921, 2372, 2451, 1983, 1688, 1508, 1353, 1245, 1167, 1119, 1102, 1115, 1163, 1233, 1346, 1499, 1691, 1977, 2451, 2597, 2054, 1748, 1549, 1405, 1291, 1211, 1168, 1143, 1161, 1209, 1282, 1394, 1543, 1752, 2054, 2570, 2732, 2169, 1825, 1610, 1463, 1346, 1265, 1215, 1193, 1217, 1260, 1343, 1452, 1600, 1812, 2144, 2683, 2916, 2298, 1911, 1695, 1533, 1407, 1333, 1285, 1263, 1278, 1317, 1405, 1520, 1688, 1896, 2277, 2893, 3167, 2475, 2032, 1790, 1603, 1478, 1402, 1350, 1331, 1350, 1399, 1475, 1596, 1764, 2026, 2442, 3087]
| },
| "lsc_samples_blue": {
| "uCoeff": [3089, 2394, 1995, 1749, 1596, 1484, 1403, 1353, 1358, 1358, 1398, 1496, 1596, 1757, 2016, 2439, 3064, 2837, 2280, 1896, 1695, 1526, 1418, 1344, 1294, 1285, 1289, 1334, 1418, 1526, 1695, 1896, 2280, 2858, 2641, 2128, 1815, 1630, 1456, 1353, 1277, 1231, 1224, 1235, 1281, 1353, 1467, 1616, 1824, 2128, 2660, 2520, 2070, 1757, 1551, 1424, 1303, 1224, 1178, 1171, 1182, 1231, 1303, 1408, 1551, 1749, 2048, 2520, 2379, 1984, 1687, 1520, 1368, 1268, 1189, 1147, 1126, 1136, 1189, 1268, 1363, 1514, 1702, 1984, 2394, 2335, 1905, 1651, 1462, 1330, 1224, 1150, 1104, 1088, 1101, 1150, 1220, 1330, 1473, 1658, 1934, 2321, 2253, 1868, 1616, 1456, 1312, 1197, 1120, 1067, 1052, 1079, 1126, 1201, 1303, 1451, 1630, 1887, 2280, 2266, 1832, 1596, 1424, 1294, 1189, 1110, 1049, 1035, 1052, 1104, 1178, 1281, 1434, 1609, 1859, 2240, 2227, 1832, 1589, 1424, 1285, 1178, 1097, 1044, 1024, 1046, 1088, 1164, 1277, 1418, 1602, 1841, 2227, 2201, 1832, 1596, 1418, 1289, 1175, 1094, 1046, 1035, 1046, 1091, 1171, 1277, 1413, 1602, 1850, 2253, 2253, 1850, 1602, 1424, 1303, 1189, 1113, 1058, 1041, 1061, 1104, 1186, 1289, 1434, 1616, 1868, 2240, 2293, 1887, 1630, 1462, 1325, 1212, 1133, 1088, 1070, 1076, 1130, 1212, 1325, 1456, 1651, 1905, 2321, 2350, 1944, 1672, 1496, 1344, 1243, 1168, 1120, 1104, 1117, 1171, 1243, 1349, 1484, 1680, 1964, 2394, 2503, 2026, 1733, 1538, 1408, 1285, 1212, 1171, 1143, 1161, 1197, 1298, 1393, 1544, 1725, 2026, 2503, 2623, 2128, 1798, 1602, 1451, 1334, 1264, 1216, 1201, 1216, 1252, 1334, 1445, 1596, 1806, 2116, 2641, 2795, 2253, 1887, 1687, 1520, 1403, 1325, 1281, 1260, 1272, 1316, 1393, 1514, 1680, 1887, 2240, 2795, 2992, 2424, 2016, 1757, 1596, 1479, 1388, 1349, 1334, 1349, 1383, 1473, 1609, 1749, 2016, 2424, 3016]
| }
| }, {
| "name": "2560x1440_D65_70",
| "resolution": "2560x1440",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2417, 1961, 1691, 1530, 1417, 1345, 1275, 1233, 1223, 1233, 1259, 1317, 1391, 1522, 1671, 1947, 2371, 2274, 1900, 1626, 1483, 1375, 1300, 1237, 1204, 1182, 1195, 1232, 1284, 1340, 1469, 1608, 1862, 2274, 2189, 1815, 1572, 1443, 1339, 1261, 1208, 1178, 1157, 1161, 1199, 1242, 1323, 1443, 1564, 1793, 2154, 2105, 1756, 1549, 1421, 1307, 1235, 1170, 1142, 1131, 1142, 1174, 1226, 1292, 1415, 1557, 1745, 2137, 2021, 1725, 1530, 1390, 1294, 1207, 1154, 1110, 1096, 1110, 1135, 1199, 1279, 1384, 1507, 1715, 2021, 1966, 1690, 1492, 1367, 1262, 1177, 1124, 1087, 1067, 1077, 1113, 1189, 1252, 1351, 1492, 1671, 1966, 1972, 1642, 1478, 1347, 1246, 1164, 1106, 1064, 1049, 1061, 1103, 1161, 1241, 1347, 1465, 1633, 1933, 1919, 1643, 1466, 1343, 1244, 1152, 1095, 1045, 1034, 1048, 1082, 1144, 1217, 1327, 1446, 1634, 1944, 1922, 1629, 1456, 1324, 1224, 1154, 1078, 1038, 1024, 1041, 1078, 1139, 1215, 1314, 1456, 1629, 1897, 1894, 1617, 1459, 1333, 1217, 1148, 1082, 1039, 1025, 1030, 1076, 1137, 1204, 1306, 1440, 1617, 1894, 1895, 1633, 1458, 1341, 1228, 1149, 1086, 1046, 1022, 1043, 1076, 1131, 1215, 1325, 1451, 1616, 1895, 1953, 1644, 1485, 1345, 1234, 1161, 1096, 1054, 1042, 1051, 1089, 1142, 1230, 1334, 1451, 1644, 1939, 1993, 1658, 1493, 1355, 1260, 1170, 1113, 1073, 1063, 1066, 1106, 1162, 1236, 1344, 1486, 1658, 1952, 2043, 1695, 1503, 1366, 1272, 1191, 1135, 1095, 1085, 1102, 1131, 1183, 1267, 1366, 1496, 1695, 2028, 2104, 1749, 1532, 1404, 1301, 1219, 1162, 1127, 1115, 1123, 1150, 1214, 1270, 1386, 1524, 1718, 2088, 2162, 1802, 1573, 1448, 1329, 1245, 1196, 1165, 1145, 1153, 1192, 1240, 1323, 1428, 1565, 1791, 2162, 2266, 1880, 1623, 1477, 1354, 1284, 1230, 1183, 1174, 1187, 1221, 1289, 1366, 1462, 1623, 1867, 2307]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2243, 1868, 1607, 1465, 1373, 1288, 1249, 1221, 1196, 1212, 1249, 1288, 1352, 1451, 1607, 1855, 2224, 2152, 1810, 1560, 1431, 1335, 1261, 1207, 1186, 1167, 1178, 1207, 1266, 1327, 1431, 1552, 1781, 2110, 2064, 1730, 1508, 1390, 1308, 1232, 1182, 1144, 1140, 1146, 1170, 1232, 1303, 1393, 1508, 1730, 2057, 1985, 1688, 1492, 1371, 1284, 1202, 1158, 1123, 1112, 1124, 1147, 1208, 1269, 1368, 1489, 1664, 1971, 1953, 1652, 1472, 1356, 1261, 1184, 1130, 1095, 1077, 1090, 1125, 1180, 1254, 1348, 1469, 1634, 1914, 1878, 1621, 1451, 1336, 1245, 1168, 1113, 1075, 1058, 1065, 1107, 1164, 1234, 1325, 1451, 1612, 1878, 1872, 1598, 1439, 1316, 1226, 1146, 1090, 1055, 1040, 1045, 1089, 1142, 1219, 1308, 1436, 1586, 1849, 1831, 1575, 1425, 1308, 1215, 1149, 1077, 1041, 1024, 1039, 1074, 1136, 1209, 1303, 1422, 1575, 1836, 1829, 1570, 1412, 1306, 1211, 1129, 1066, 1029, 1024, 1026, 1068, 1127, 1198, 1295, 1421, 1562, 1812, 1831, 1559, 1419, 1303, 1207, 1132, 1072, 1033, 1021, 1030, 1066, 1123, 1207, 1286, 1415, 1563, 1836, 1854, 1578, 1426, 1303, 1213, 1139, 1082, 1047, 1025, 1035, 1072, 1131, 1202, 1291, 1423, 1574, 1825, 1878, 1591, 1428, 1317, 1227, 1149, 1097, 1059, 1044, 1053, 1085, 1149, 1219, 1314, 1428, 1583, 1854, 1914, 1612, 1442, 1337, 1245, 1170, 1110, 1079, 1066, 1075, 1103, 1158, 1231, 1326, 1439, 1599, 1876, 1964, 1650, 1475, 1353, 1259, 1187, 1135, 1103, 1088, 1096, 1132, 1181, 1259, 1345, 1461, 1636, 1924, 2034, 1700, 1490, 1390, 1287, 1214, 1160, 1125, 1118, 1125, 1154, 1207, 1275, 1365, 1482, 1690, 2011, 2101, 1765, 1536, 1402, 1316, 1241, 1194, 1161, 1147, 1151, 1181, 1241, 1311, 1399, 1532, 1737, 2085, 2176, 1830, 1585, 1441, 1352, 1267, 1220, 1187, 1163, 1187, 1204, 1257, 1328, 1420, 1581, 1806, 2186]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2246, 1880, 1623, 1476, 1380, 1298, 1249, 1226, 1216, 1224, 1259, 1295, 1356, 1472, 1632, 1886, 2255, 2165, 1805, 1571, 1435, 1349, 1273, 1219, 1194, 1177, 1187, 1214, 1273, 1340, 1435, 1567, 1799, 2156, 2069, 1737, 1523, 1406, 1318, 1249, 1190, 1151, 1144, 1159, 1192, 1242, 1313, 1409, 1531, 1742, 2069, 2005, 1685, 1489, 1384, 1286, 1216, 1164, 1134, 1116, 1130, 1162, 1212, 1284, 1375, 1503, 1685, 2012, 1945, 1654, 1483, 1358, 1271, 1194, 1134, 1103, 1093, 1099, 1138, 1190, 1257, 1356, 1480, 1645, 1932, 1902, 1624, 1456, 1349, 1244, 1173, 1117, 1082, 1068, 1080, 1115, 1167, 1246, 1338, 1456, 1624, 1909, 1867, 1598, 1437, 1332, 1240, 1159, 1101, 1060, 1043, 1062, 1101, 1152, 1227, 1329, 1456, 1598, 1867, 1837, 1582, 1432, 1316, 1225, 1152, 1086, 1048, 1038, 1049, 1084, 1143, 1219, 1311, 1445, 1594, 1849, 1852, 1589, 1429, 1313, 1221, 1147, 1081, 1038, 1024, 1041, 1073, 1134, 1210, 1298, 1432, 1581, 1841, 1837, 1582, 1426, 1313, 1225, 1140, 1082, 1043, 1026, 1040, 1070, 1134, 1210, 1303, 1423, 1586, 1837, 1843, 1593, 1424, 1314, 1218, 1141, 1091, 1045, 1028, 1047, 1078, 1137, 1212, 1311, 1431, 1593, 1855, 1878, 1607, 1436, 1327, 1233, 1160, 1101, 1058, 1046, 1055, 1098, 1148, 1224, 1327, 1446, 1603, 1878, 1913, 1632, 1453, 1347, 1246, 1174, 1118, 1083, 1070, 1079, 1114, 1162, 1239, 1339, 1456, 1628, 1913, 1991, 1662, 1479, 1361, 1272, 1197, 1141, 1112, 1091, 1105, 1139, 1188, 1262, 1355, 1482, 1662, 1970, 2046, 1716, 1512, 1385, 1297, 1221, 1167, 1132, 1116, 1134, 1163, 1219, 1287, 1376, 1501, 1697, 2009, 2122, 1771, 1543, 1422, 1326, 1246, 1201, 1169, 1153, 1163, 1186, 1244, 1315, 1416, 1531, 1754, 2105, 2217, 1848, 1592, 1458, 1347, 1272, 1227, 1194, 1181, 1194, 1225, 1270, 1341, 1437, 1587, 1824, 2161]
| },
| "lsc_samples_blue": {
| "uCoeff": [2162, 1787, 1563, 1425, 1341, 1278, 1228, 1197, 1205, 1201, 1224, 1288, 1341, 1431, 1579, 1821, 2145, 2064, 1757, 1531, 1421, 1320, 1256, 1210, 1177, 1173, 1173, 1202, 1256, 1320, 1421, 1531, 1757, 2080, 1978, 1684, 1503, 1402, 1291, 1228, 1178, 1148, 1145, 1152, 1182, 1228, 1301, 1390, 1510, 1684, 1992, 1931, 1674, 1486, 1362, 1289, 1207, 1153, 1121, 1118, 1125, 1160, 1207, 1275, 1362, 1480, 1656, 1931, 1857, 1634, 1452, 1358, 1259, 1195, 1140, 1110, 1094, 1100, 1140, 1195, 1255, 1352, 1465, 1634, 1869, 1849, 1590, 1440, 1323, 1241, 1168, 1116, 1082, 1070, 1079, 1116, 1165, 1241, 1334, 1446, 1614, 1838, 1802, 1574, 1423, 1331, 1235, 1153, 1097, 1055, 1044, 1067, 1104, 1157, 1227, 1326, 1435, 1590, 1823, 1823, 1553, 1413, 1308, 1225, 1153, 1094, 1044, 1033, 1047, 1087, 1142, 1213, 1318, 1425, 1576, 1802, 1795, 1556, 1410, 1311, 1219, 1144, 1083, 1040, 1024, 1043, 1074, 1130, 1211, 1306, 1422, 1563, 1795, 1771, 1553, 1413, 1304, 1221, 1138, 1078, 1041, 1033, 1041, 1075, 1135, 1209, 1299, 1419, 1568, 1812, 1802, 1559, 1411, 1301, 1227, 1146, 1091, 1047, 1033, 1050, 1081, 1143, 1214, 1311, 1423, 1574, 1791, 1816, 1574, 1422, 1323, 1236, 1157, 1100, 1067, 1052, 1055, 1097, 1157, 1236, 1318, 1440, 1590, 1838, 1834, 1600, 1440, 1337, 1237, 1172, 1119, 1084, 1072, 1080, 1122, 1172, 1242, 1326, 1446, 1617, 1869, 1918, 1639, 1466, 1351, 1275, 1191, 1142, 1115, 1092, 1104, 1128, 1203, 1261, 1356, 1460, 1639, 1918, 1964, 1684, 1489, 1378, 1286, 1211, 1167, 1134, 1123, 1134, 1155, 1211, 1281, 1372, 1496, 1674, 1978, 2034, 1736, 1523, 1415, 1315, 1243, 1194, 1165, 1150, 1158, 1185, 1234, 1309, 1409, 1523, 1726, 2034, 2094, 1810, 1579, 1431, 1341, 1273, 1215, 1193, 1184, 1193, 1211, 1268, 1352, 1425, 1579, 1810, 2111]
| }
| }, {
| "name": "2560x1440_D75_100",
| "resolution": "2560x1440",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3439, 2661, 2209, 1889, 1688, 1545, 1452, 1397, 1376, 1391, 1408, 1506, 1613, 1805, 2048, 2480, 3255, 3170, 2480, 2037, 1787, 1606, 1458, 1376, 1311, 1293, 1302, 1340, 1413, 1538, 1688, 1929, 2293, 2964, 2940, 2307, 1939, 1688, 1525, 1397, 1307, 1253, 1223, 1232, 1275, 1340, 1452, 1606, 1805, 2132, 2741, 2783, 2196, 1860, 1627, 1458, 1326, 1244, 1187, 1168, 1168, 1211, 1279, 1386, 1538, 1736, 2037, 2567, 2642, 2107, 1787, 1565, 1402, 1270, 1191, 1132, 1111, 1118, 1168, 1236, 1345, 1470, 1665, 1960, 2447, 2567, 2048, 1736, 1538, 1360, 1244, 1146, 1095, 1069, 1079, 1125, 1191, 1302, 1441, 1620, 1879, 2337, 2532, 2003, 1696, 1500, 1345, 1211, 1136, 1066, 1042, 1051, 1098, 1176, 1275, 1402, 1599, 1850, 2278, 2480, 1981, 1696, 1482, 1326, 1211, 1111, 1057, 1036, 1039, 1085, 1150, 1261, 1397, 1585, 1832, 2223, 2480, 1981, 1703, 1470, 1326, 1207, 1108, 1045, 1024, 1039, 1075, 1154, 1253, 1402, 1565, 1832, 2250, 2497, 2025, 1703, 1494, 1316, 1191, 1108, 1045, 1024, 1039, 1075, 1146, 1257, 1402, 1565, 1814, 2250, 2532, 2003, 1711, 1506, 1330, 1207, 1122, 1057, 1033, 1042, 1082, 1165, 1261, 1397, 1571, 1823, 2278, 2567, 2048, 1744, 1513, 1350, 1227, 1125, 1075, 1048, 1060, 1098, 1168, 1275, 1418, 1606, 1850, 2278, 2642, 2095, 1753, 1532, 1376, 1240, 1154, 1098, 1075, 1082, 1118, 1191, 1293, 1430, 1613, 1879, 2337, 2762, 2170, 1814, 1585, 1408, 1288, 1191, 1136, 1118, 1118, 1157, 1219, 1335, 1470, 1657, 1939, 2430, 2916, 2264, 1899, 1657, 1464, 1326, 1248, 1176, 1165, 1161, 1207, 1270, 1370, 1532, 1703, 2025, 2514, 3143, 2414, 1981, 1728, 1532, 1391, 1302, 1244, 1219, 1227, 1266, 1335, 1447, 1578, 1796, 2157, 2720, 3344, 2642, 2132, 1832, 1613, 1470, 1386, 1311, 1279, 1293, 1330, 1418, 1513, 1680, 1909, 2278, 2940]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3236, 2580, 2116, 1849, 1659, 1531, 1438, 1391, 1372, 1381, 1432, 1490, 1604, 1760, 2017, 2404, 3082, 3046, 2389, 1976, 1741, 1565, 1443, 1360, 1307, 1287, 1294, 1332, 1411, 1516, 1662, 1884, 2231, 2804, 2824, 2238, 1862, 1659, 1493, 1364, 1289, 1238, 1213, 1224, 1260, 1332, 1438, 1584, 1773, 2093, 2615, 2641, 2116, 1789, 1584, 1424, 1307, 1228, 1171, 1153, 1164, 1203, 1273, 1376, 1504, 1699, 1981, 2450, 2538, 2038, 1729, 1519, 1374, 1256, 1173, 1123, 1104, 1117, 1153, 1221, 1329, 1454, 1641, 1884, 2339, 2481, 1976, 1688, 1496, 1343, 1234, 1147, 1084, 1066, 1077, 1120, 1189, 1287, 1417, 1591, 1844, 2238, 2434, 1956, 1662, 1465, 1320, 1205, 1117, 1062, 1040, 1049, 1098, 1167, 1268, 1394, 1578, 1806, 2181, 2412, 1936, 1659, 1462, 1309, 1196, 1106, 1050, 1028, 1040, 1086, 1155, 1256, 1389, 1553, 1797, 2175, 2397, 1936, 1670, 1459, 1309, 1192, 1098, 1042, 1024, 1038, 1081, 1150, 1254, 1379, 1540, 1785, 2163, 2427, 1946, 1670, 1465, 1313, 1191, 1110, 1048, 1029, 1034, 1077, 1155, 1252, 1376, 1556, 1781, 2175, 2457, 1961, 1677, 1476, 1320, 1196, 1118, 1055, 1035, 1048, 1084, 1162, 1262, 1386, 1553, 1797, 2169, 2481, 2001, 1703, 1493, 1334, 1217, 1130, 1071, 1055, 1062, 1103, 1167, 1268, 1396, 1572, 1810, 2206, 2555, 2049, 1725, 1519, 1360, 1234, 1155, 1101, 1077, 1087, 1127, 1191, 1298, 1422, 1588, 1840, 2257, 2706, 2110, 1785, 1556, 1396, 1277, 1181, 1135, 1112, 1118, 1157, 1224, 1325, 1456, 1631, 1898, 2353, 2804, 2212, 1853, 1617, 1446, 1322, 1238, 1185, 1162, 1173, 1200, 1264, 1369, 1507, 1684, 1971, 2473, 3022, 2375, 1946, 1695, 1516, 1384, 1298, 1242, 1221, 1219, 1256, 1327, 1427, 1565, 1757, 2082, 2624, 3264, 2546, 2071, 1789, 1597, 1465, 1364, 1300, 1279, 1296, 1325, 1394, 1490, 1652, 1857, 2251, 2824]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3245, 2570, 2110, 1840, 1656, 1532, 1444, 1395, 1368, 1380, 1433, 1508, 1618, 1777, 2017, 2418, 3066, 3054, 2410, 1976, 1741, 1566, 1449, 1363, 1304, 1289, 1302, 1340, 1415, 1526, 1667, 1889, 2244, 2852, 2821, 2237, 1876, 1646, 1488, 1365, 1286, 1233, 1216, 1224, 1263, 1335, 1433, 1595, 1777, 2087, 2622, 2658, 2121, 1794, 1576, 1423, 1306, 1222, 1169, 1155, 1163, 1203, 1270, 1375, 1508, 1707, 1981, 2464, 2545, 2043, 1726, 1523, 1373, 1259, 1179, 1126, 1098, 1113, 1156, 1222, 1326, 1460, 1639, 1913, 2338, 2464, 1981, 1692, 1488, 1340, 1218, 1141, 1087, 1063, 1081, 1121, 1188, 1297, 1423, 1595, 1845, 2270, 2418, 1946, 1667, 1474, 1324, 1203, 1115, 1066, 1036, 1053, 1096, 1169, 1268, 1402, 1582, 1827, 2199, 2403, 1941, 1653, 1469, 1308, 1186, 1112, 1049, 1034, 1042, 1084, 1158, 1257, 1387, 1560, 1798, 2193, 2396, 1951, 1667, 1455, 1302, 1188, 1105, 1043, 1024, 1038, 1076, 1153, 1255, 1382, 1547, 1798, 2163, 2403, 1961, 1656, 1463, 1308, 1194, 1105, 1046, 1027, 1036, 1076, 1153, 1259, 1380, 1560, 1794, 2187, 2441, 1971, 1674, 1477, 1315, 1201, 1117, 1059, 1029, 1040, 1088, 1158, 1261, 1397, 1560, 1794, 2199, 2496, 2006, 1700, 1488, 1337, 1212, 1130, 1070, 1049, 1060, 1101, 1176, 1272, 1397, 1572, 1815, 2237, 2578, 2038, 1730, 1520, 1361, 1241, 1150, 1099, 1076, 1088, 1131, 1197, 1286, 1418, 1602, 1858, 2263, 2658, 2110, 1781, 1554, 1397, 1272, 1190, 1135, 1118, 1118, 1155, 1230, 1326, 1463, 1635, 1903, 2345, 2771, 2218, 1827, 1612, 1447, 1319, 1231, 1179, 1153, 1165, 1199, 1268, 1368, 1503, 1689, 1976, 2472, 2995, 2352, 1936, 1692, 1511, 1385, 1299, 1237, 1212, 1222, 1261, 1328, 1423, 1560, 1765, 2098, 2622, 3259, 2528, 2060, 1798, 1592, 1460, 1361, 1302, 1274, 1284, 1319, 1390, 1503, 1639, 1871, 2244, 2821]
| },
| "lsc_samples_blue": {
| "uCoeff": [3131, 2533, 2048, 1789, 1641, 1496, 1437, 1374, 1344, 1361, 1396, 1481, 1577, 1732, 1965, 2382, 2961, 2902, 2331, 1939, 1725, 1549, 1437, 1353, 1304, 1278, 1297, 1332, 1391, 1506, 1666, 1849, 2191, 2739, 2739, 2191, 1841, 1635, 1481, 1361, 1289, 1228, 1211, 1217, 1263, 1328, 1418, 1565, 1746, 2038, 2504, 2548, 2077, 1774, 1549, 1423, 1304, 1228, 1178, 1144, 1166, 1194, 1259, 1370, 1491, 1679, 1948, 2356, 2462, 1992, 1699, 1517, 1370, 1256, 1178, 1124, 1107, 1115, 1147, 1221, 1320, 1446, 1617, 1873, 2295, 2382, 1939, 1666, 1491, 1336, 1217, 1147, 1090, 1074, 1077, 1124, 1191, 1281, 1405, 1582, 1819, 2180, 2344, 1914, 1660, 1476, 1324, 1204, 1115, 1064, 1044, 1054, 1096, 1166, 1263, 1396, 1549, 1767, 2138, 2307, 1906, 1648, 1456, 1312, 1194, 1107, 1054, 1034, 1048, 1090, 1156, 1256, 1378, 1538, 1774, 2097, 2344, 1931, 1654, 1451, 1316, 1185, 1104, 1051, 1024, 1039, 1082, 1156, 1252, 1383, 1532, 1767, 2128, 2331, 1922, 1648, 1461, 1320, 1194, 1107, 1046, 1031, 1044, 1090, 1163, 1256, 1383, 1538, 1767, 2107, 2382, 1939, 1654, 1466, 1324, 1204, 1118, 1061, 1031, 1048, 1082, 1156, 1263, 1387, 1543, 1782, 2138, 2382, 1957, 1673, 1496, 1328, 1217, 1130, 1072, 1051, 1061, 1101, 1166, 1270, 1391, 1549, 1782, 2148, 2448, 2001, 1712, 1501, 1353, 1231, 1153, 1098, 1079, 1082, 1124, 1194, 1281, 1405, 1571, 1819, 2191, 2563, 2067, 1753, 1554, 1387, 1274, 1181, 1132, 1112, 1118, 1153, 1221, 1316, 1446, 1611, 1857, 2271, 2656, 2170, 1811, 1600, 1428, 1312, 1224, 1172, 1153, 1153, 1191, 1263, 1357, 1486, 1641, 1939, 2382, 2846, 2307, 1897, 1666, 1486, 1374, 1293, 1224, 1197, 1204, 1252, 1316, 1405, 1538, 1732, 2038, 2533, 3086, 2435, 2010, 1767, 1577, 1442, 1340, 1301, 1270, 1274, 1308, 1396, 1481, 1629, 1826, 2170, 2656]
| }
| }, {
| "name": "2560x1440_D75_70",
| "resolution": "2560x1440",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2407, 1987, 1731, 1539, 1418, 1330, 1272, 1235, 1221, 1231, 1232, 1297, 1356, 1470, 1605, 1852, 2278, 2307, 1911, 1644, 1499, 1389, 1292, 1239, 1193, 1180, 1185, 1207, 1252, 1331, 1416, 1557, 1767, 2157, 2202, 1826, 1606, 1452, 1352, 1268, 1206, 1168, 1144, 1148, 1177, 1217, 1288, 1381, 1495, 1687, 2053, 2133, 1776, 1574, 1429, 1320, 1228, 1172, 1130, 1116, 1112, 1141, 1185, 1255, 1351, 1469, 1647, 1968, 2062, 1735, 1538, 1398, 1291, 1197, 1141, 1096, 1079, 1082, 1120, 1165, 1239, 1313, 1433, 1613, 1910, 2033, 1709, 1514, 1393, 1269, 1188, 1113, 1073, 1051, 1057, 1092, 1137, 1215, 1304, 1413, 1568, 1850, 2025, 1688, 1493, 1371, 1267, 1167, 1113, 1055, 1034, 1039, 1076, 1133, 1200, 1281, 1408, 1559, 1822, 1995, 1679, 1502, 1362, 1255, 1174, 1095, 1051, 1034, 1033, 1069, 1114, 1194, 1284, 1404, 1553, 1788, 1999, 1682, 1512, 1353, 1258, 1172, 1094, 1041, 1024, 1035, 1061, 1120, 1188, 1291, 1388, 1556, 1814, 2009, 1716, 1509, 1373, 1246, 1154, 1092, 1039, 1022, 1033, 1059, 1111, 1190, 1289, 1386, 1537, 1810, 2025, 1688, 1507, 1377, 1253, 1163, 1099, 1045, 1025, 1031, 1060, 1122, 1188, 1276, 1384, 1536, 1822, 2033, 1709, 1522, 1369, 1260, 1172, 1092, 1054, 1030, 1039, 1066, 1116, 1189, 1284, 1401, 1544, 1804, 2062, 1725, 1509, 1368, 1267, 1169, 1105, 1063, 1044, 1047, 1071, 1123, 1190, 1277, 1389, 1547, 1824, 2117, 1755, 1534, 1392, 1274, 1194, 1123, 1081, 1068, 1064, 1090, 1130, 1209, 1291, 1402, 1568, 1863, 2184, 1792, 1573, 1425, 1298, 1203, 1152, 1096, 1089, 1082, 1114, 1153, 1215, 1317, 1411, 1602, 1883, 2287, 1860, 1600, 1449, 1325, 1232, 1173, 1132, 1113, 1117, 1140, 1183, 1251, 1324, 1450, 1662, 1980, 2341, 1973, 1670, 1492, 1356, 1265, 1214, 1160, 1135, 1143, 1165, 1221, 1271, 1369, 1495, 1701, 2058]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2266, 1927, 1658, 1506, 1394, 1318, 1259, 1230, 1217, 1222, 1254, 1283, 1348, 1434, 1580, 1795, 2158, 2216, 1841, 1595, 1460, 1354, 1278, 1225, 1189, 1175, 1177, 1199, 1250, 1312, 1394, 1521, 1720, 2040, 2115, 1771, 1542, 1427, 1324, 1238, 1190, 1154, 1135, 1141, 1163, 1209, 1275, 1363, 1468, 1656, 1958, 2024, 1711, 1514, 1392, 1290, 1211, 1157, 1114, 1101, 1107, 1134, 1179, 1246, 1321, 1437, 1602, 1877, 1981, 1678, 1488, 1357, 1265, 1184, 1123, 1087, 1072, 1081, 1105, 1150, 1224, 1299, 1413, 1551, 1826, 1964, 1649, 1472, 1354, 1253, 1178, 1113, 1063, 1049, 1055, 1087, 1135, 1201, 1282, 1388, 1539, 1772, 1947, 1648, 1464, 1339, 1243, 1162, 1094, 1051, 1033, 1038, 1076, 1125, 1194, 1274, 1390, 1521, 1744, 1940, 1641, 1469, 1344, 1240, 1159, 1089, 1045, 1026, 1035, 1069, 1119, 1189, 1276, 1375, 1523, 1750, 1932, 1644, 1482, 1344, 1242, 1158, 1084, 1038, 1024, 1034, 1067, 1116, 1190, 1270, 1367, 1516, 1744, 1952, 1649, 1479, 1346, 1244, 1154, 1094, 1042, 1028, 1028, 1061, 1119, 1186, 1265, 1378, 1509, 1750, 1965, 1652, 1477, 1349, 1243, 1153, 1096, 1043, 1027, 1036, 1062, 1120, 1189, 1267, 1367, 1514, 1735, 1964, 1670, 1485, 1352, 1244, 1162, 1097, 1050, 1037, 1041, 1070, 1114, 1183, 1264, 1371, 1510, 1747, 1994, 1686, 1485, 1357, 1252, 1163, 1107, 1065, 1045, 1052, 1079, 1122, 1195, 1270, 1367, 1515, 1762, 2074, 1706, 1510, 1366, 1264, 1183, 1113, 1080, 1062, 1064, 1090, 1135, 1199, 1279, 1380, 1535, 1803, 2100, 1750, 1535, 1391, 1282, 1200, 1143, 1105, 1087, 1093, 1107, 1148, 1214, 1296, 1395, 1559, 1852, 2199, 1830, 1571, 1422, 1312, 1226, 1169, 1130, 1114, 1109, 1131, 1175, 1234, 1313, 1418, 1604, 1909, 2285, 1901, 1622, 1457, 1343, 1261, 1194, 1150, 1135, 1146, 1160, 1200, 1252, 1346, 1455, 1681, 1977]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2271, 1919, 1653, 1499, 1392, 1319, 1264, 1234, 1214, 1221, 1255, 1299, 1360, 1448, 1580, 1806, 2146, 2222, 1858, 1595, 1461, 1355, 1284, 1228, 1186, 1176, 1184, 1207, 1254, 1320, 1398, 1525, 1729, 2076, 2113, 1770, 1554, 1415, 1320, 1240, 1187, 1150, 1138, 1141, 1166, 1212, 1271, 1372, 1472, 1651, 1963, 2037, 1716, 1518, 1384, 1288, 1210, 1151, 1112, 1103, 1107, 1133, 1177, 1245, 1325, 1444, 1602, 1888, 1986, 1682, 1486, 1361, 1264, 1187, 1130, 1090, 1066, 1077, 1108, 1151, 1221, 1305, 1411, 1575, 1825, 1951, 1653, 1476, 1347, 1250, 1163, 1108, 1066, 1046, 1060, 1089, 1134, 1210, 1288, 1392, 1539, 1797, 1934, 1640, 1468, 1347, 1246, 1159, 1092, 1055, 1029, 1042, 1074, 1126, 1194, 1282, 1393, 1540, 1759, 1933, 1645, 1464, 1350, 1239, 1150, 1095, 1043, 1032, 1037, 1068, 1122, 1191, 1275, 1382, 1524, 1764, 1931, 1657, 1479, 1340, 1235, 1154, 1091, 1040, 1024, 1034, 1062, 1119, 1191, 1273, 1373, 1527, 1743, 1933, 1662, 1467, 1345, 1239, 1157, 1089, 1041, 1025, 1031, 1060, 1117, 1193, 1268, 1382, 1520, 1759, 1952, 1661, 1474, 1350, 1238, 1157, 1094, 1048, 1022, 1029, 1066, 1116, 1188, 1277, 1374, 1511, 1759, 1976, 1674, 1483, 1347, 1248, 1157, 1096, 1049, 1032, 1039, 1069, 1122, 1186, 1265, 1372, 1514, 1771, 2013, 1678, 1489, 1358, 1253, 1170, 1101, 1064, 1045, 1053, 1084, 1128, 1185, 1267, 1379, 1529, 1767, 2037, 1706, 1507, 1365, 1265, 1179, 1121, 1080, 1068, 1064, 1088, 1139, 1200, 1285, 1384, 1539, 1797, 2075, 1755, 1513, 1386, 1283, 1198, 1137, 1099, 1079, 1086, 1107, 1151, 1213, 1292, 1398, 1563, 1851, 2179, 1813, 1563, 1419, 1307, 1227, 1170, 1126, 1107, 1112, 1136, 1176, 1231, 1308, 1425, 1617, 1908, 2281, 1888, 1614, 1465, 1338, 1257, 1191, 1151, 1130, 1136, 1155, 1196, 1263, 1335, 1466, 1675, 1975]
| },
| "lsc_samples_blue": {
| "uCoeff": [2191, 1892, 1605, 1457, 1380, 1288, 1258, 1215, 1193, 1204, 1222, 1275, 1325, 1411, 1540, 1779, 2073, 2112, 1797, 1566, 1447, 1340, 1273, 1218, 1187, 1166, 1180, 1200, 1232, 1303, 1398, 1493, 1689, 1993, 2051, 1734, 1525, 1407, 1313, 1236, 1190, 1145, 1133, 1135, 1166, 1206, 1258, 1346, 1446, 1613, 1875, 1953, 1680, 1501, 1360, 1288, 1209, 1157, 1121, 1093, 1109, 1125, 1167, 1240, 1309, 1421, 1575, 1806, 1922, 1640, 1462, 1355, 1261, 1183, 1129, 1087, 1075, 1079, 1099, 1151, 1215, 1292, 1392, 1542, 1791, 1886, 1618, 1454, 1350, 1247, 1162, 1114, 1069, 1057, 1056, 1091, 1137, 1196, 1272, 1380, 1518, 1726, 1874, 1613, 1462, 1349, 1247, 1160, 1093, 1052, 1036, 1042, 1073, 1123, 1189, 1276, 1364, 1489, 1710, 1856, 1615, 1459, 1338, 1243, 1157, 1090, 1048, 1032, 1043, 1074, 1121, 1189, 1267, 1362, 1504, 1687, 1889, 1639, 1468, 1336, 1249, 1150, 1090, 1048, 1024, 1035, 1068, 1123, 1188, 1273, 1360, 1501, 1715, 1876, 1629, 1459, 1343, 1250, 1157, 1090, 1041, 1029, 1038, 1074, 1127, 1189, 1271, 1362, 1498, 1695, 1905, 1634, 1457, 1340, 1247, 1160, 1095, 1050, 1024, 1037, 1060, 1114, 1189, 1267, 1359, 1501, 1710, 1886, 1633, 1459, 1354, 1239, 1162, 1096, 1050, 1034, 1040, 1069, 1113, 1185, 1260, 1351, 1487, 1701, 1911, 1647, 1474, 1341, 1246, 1160, 1105, 1063, 1048, 1047, 1077, 1125, 1180, 1255, 1352, 1497, 1711, 1964, 1672, 1483, 1365, 1256, 1181, 1113, 1078, 1062, 1064, 1087, 1131, 1192, 1270, 1363, 1502, 1740, 1989, 1717, 1500, 1376, 1266, 1191, 1130, 1093, 1079, 1075, 1099, 1147, 1203, 1278, 1359, 1534, 1784, 2071, 1778, 1532, 1398, 1285, 1217, 1165, 1114, 1093, 1096, 1128, 1166, 1215, 1290, 1399, 1571, 1843, 2160, 1818, 1575, 1440, 1325, 1241, 1173, 1150, 1127, 1127, 1145, 1202, 1244, 1327, 1431, 1620, 1859]
| }
| }, {
| "name": "2560x1440_CWF_100",
| "resolution": "2560x1440",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3350, 2619, 2129, 1847, 1649, 1532, 1450, 1389, 1363, 1372, 1417, 1516, 1631, 1831, 2098, 2572, 3350, 3065, 2414, 1982, 1742, 1560, 1436, 1359, 1302, 1298, 1302, 1350, 1436, 1554, 1729, 1964, 2374, 3087, 2900, 2262, 1879, 1656, 1500, 1376, 1294, 1249, 1228, 1242, 1282, 1367, 1485, 1643, 1855, 2239, 2806, 2701, 2161, 1808, 1595, 1436, 1313, 1231, 1181, 1162, 1181, 1228, 1309, 1421, 1566, 1808, 2108, 2684, 2572, 2048, 1742, 1538, 1385, 1253, 1181, 1137, 1111, 1137, 1177, 1264, 1372, 1527, 1735, 2038, 2512, 2483, 1973, 1681, 1485, 1330, 1228, 1149, 1100, 1080, 1091, 1140, 1221, 1334, 1475, 1675, 1947, 2428, 2387, 1921, 1656, 1465, 1313, 1207, 1117, 1064, 1044, 1064, 1111, 1194, 1309, 1455, 1643, 1921, 2336, 2349, 1904, 1643, 1440, 1294, 1174, 1097, 1046, 1031, 1044, 1091, 1171, 1282, 1421, 1631, 1895, 2299, 2323, 1895, 1618, 1436, 1286, 1171, 1086, 1034, 1024, 1034, 1091, 1171, 1282, 1421, 1625, 1871, 2323, 2336, 1895, 1637, 1440, 1286, 1177, 1091, 1039, 1029, 1034, 1088, 1165, 1278, 1417, 1625, 1887, 2323, 2374, 1921, 1643, 1440, 1306, 1184, 1105, 1046, 1036, 1054, 1097, 1181, 1290, 1440, 1625, 1912, 2336, 2455, 1955, 1668, 1465, 1317, 1204, 1125, 1078, 1057, 1072, 1122, 1197, 1306, 1475, 1662, 1929, 2387, 2512, 2010, 1695, 1506, 1346, 1235, 1159, 1108, 1094, 1102, 1162, 1235, 1346, 1500, 1695, 1982, 2483, 2619, 2098, 1757, 1554, 1394, 1278, 1200, 1152, 1131, 1149, 1194, 1282, 1389, 1543, 1750, 2068, 2603, 2788, 2171, 1816, 1618, 1455, 1330, 1253, 1214, 1187, 1204, 1253, 1334, 1445, 1606, 1808, 2161, 2735, 2980, 2299, 1921, 1675, 1527, 1403, 1317, 1267, 1253, 1264, 1309, 1389, 1516, 1688, 1904, 2299, 2960, 3225, 2498, 2048, 1793, 1625, 1470, 1394, 1350, 1317, 1326, 1385, 1460, 1595, 1764, 2019, 2455, 3177]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3236, 2531, 2079, 1804, 1637, 1513, 1427, 1379, 1367, 1372, 1427, 1493, 1631, 1800, 2062, 2499, 3170, 2999, 2355, 1939, 1702, 1546, 1425, 1344, 1303, 1284, 1299, 1344, 1420, 1546, 1706, 1934, 2334, 2976, 2795, 2196, 1843, 1627, 1473, 1353, 1288, 1225, 1221, 1233, 1278, 1355, 1462, 1620, 1825, 2184, 2755, 2608, 2084, 1763, 1559, 1414, 1297, 1225, 1175, 1158, 1168, 1214, 1292, 1402, 1562, 1756, 2073, 2565, 2499, 1989, 1702, 1505, 1360, 1251, 1174, 1126, 1107, 1125, 1175, 1249, 1353, 1502, 1698, 1983, 2452, 2414, 1939, 1655, 1468, 1325, 1218, 1138, 1088, 1070, 1085, 1131, 1210, 1325, 1465, 1648, 1925, 2377, 2341, 1892, 1634, 1438, 1297, 1184, 1110, 1060, 1040, 1059, 1105, 1181, 1290, 1435, 1624, 1883, 2313, 2306, 1869, 1610, 1422, 1280, 1174, 1098, 1040, 1024, 1045, 1087, 1165, 1275, 1412, 1600, 1865, 2293, 2293, 1874, 1604, 1417, 1271, 1172, 1087, 1035, 1024, 1035, 1084, 1161, 1267, 1409, 1594, 1851, 2247, 2300, 1869, 1610, 1417, 1278, 1174, 1093, 1040, 1023, 1038, 1087, 1165, 1271, 1407, 1604, 1865, 2266, 2327, 1878, 1620, 1438, 1288, 1188, 1102, 1053, 1035, 1047, 1096, 1183, 1288, 1427, 1600, 1883, 2313, 2384, 1920, 1655, 1457, 1314, 1210, 1129, 1079, 1065, 1078, 1120, 1201, 1308, 1457, 1637, 1897, 2362, 2467, 1978, 1687, 1496, 1348, 1237, 1151, 1112, 1096, 1107, 1155, 1235, 1346, 1485, 1683, 1954, 2444, 2565, 2051, 1744, 1543, 1394, 1282, 1203, 1153, 1143, 1156, 1197, 1275, 1397, 1528, 1728, 2030, 2556, 2726, 2165, 1804, 1610, 1449, 1339, 1253, 1206, 1195, 1201, 1247, 1330, 1438, 1594, 1800, 2124, 2698, 2942, 2293, 1892, 1673, 1516, 1397, 1321, 1267, 1249, 1269, 1319, 1387, 1510, 1669, 1892, 2253, 2867, 3170, 2459, 2009, 1771, 1594, 1471, 1389, 1339, 1325, 1332, 1384, 1471, 1578, 1732, 1999, 2436, 3107]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3248, 2543, 2090, 1819, 1637, 1514, 1431, 1383, 1361, 1380, 1439, 1511, 1633, 1810, 2068, 2519, 3208, 3011, 2381, 1959, 1719, 1559, 1439, 1354, 1309, 1290, 1305, 1354, 1436, 1562, 1715, 1949, 2345, 2988, 2797, 2220, 1853, 1643, 1477, 1368, 1283, 1237, 1223, 1241, 1286, 1354, 1474, 1637, 1853, 2176, 2757, 2619, 2101, 1773, 1571, 1418, 1305, 1231, 1179, 1164, 1179, 1223, 1303, 1418, 1565, 1769, 2090, 2593, 2519, 2004, 1715, 1516, 1371, 1259, 1179, 1132, 1114, 1132, 1176, 1253, 1361, 1514, 1715, 2009, 2463, 2403, 1954, 1675, 1474, 1329, 1223, 1145, 1095, 1073, 1095, 1142, 1220, 1329, 1477, 1675, 1940, 2410, 2345, 1912, 1643, 1449, 1309, 1196, 1119, 1066, 1047, 1066, 1113, 1194, 1296, 1447, 1637, 1912, 2332, 2304, 1871, 1623, 1426, 1292, 1183, 1106, 1049, 1040, 1051, 1097, 1178, 1283, 1423, 1616, 1879, 2284, 2304, 1879, 1603, 1433, 1283, 1176, 1092, 1040, 1024, 1042, 1089, 1172, 1279, 1423, 1613, 1884, 2264, 2318, 1884, 1613, 1433, 1290, 1178, 1098, 1040, 1031, 1046, 1097, 1176, 1283, 1431, 1610, 1875, 2291, 2345, 1902, 1630, 1441, 1298, 1192, 1114, 1057, 1042, 1057, 1106, 1188, 1298, 1441, 1630, 1889, 2325, 2374, 1926, 1643, 1468, 1327, 1210, 1130, 1083, 1064, 1080, 1128, 1208, 1318, 1460, 1657, 1935, 2374, 2456, 1989, 1697, 1505, 1359, 1241, 1164, 1120, 1103, 1119, 1155, 1241, 1350, 1493, 1689, 1969, 2463, 2576, 2068, 1746, 1549, 1400, 1292, 1208, 1158, 1143, 1157, 1207, 1281, 1400, 1540, 1746, 2051, 2560, 2738, 2164, 1814, 1613, 1447, 1347, 1261, 1212, 1194, 1212, 1259, 1336, 1444, 1597, 1814, 2147, 2682, 2921, 2304, 1912, 1679, 1519, 1408, 1325, 1277, 1257, 1273, 1314, 1403, 1514, 1675, 1902, 2271, 2868, 3208, 2471, 2025, 1769, 1613, 1479, 1390, 1345, 1322, 1340, 1390, 1474, 1593, 1765, 2009, 2440, 3144]
| },
| "lsc_samples_blue": {
| "uCoeff": [3153, 2496, 2066, 1788, 1608, 1498, 1401, 1354, 1346, 1361, 1426, 1479, 1608, 1775, 2084, 2470, 3112, 2958, 2372, 1964, 1712, 1546, 1426, 1346, 1295, 1275, 1295, 1354, 1418, 1536, 1699, 1948, 2282, 2922, 2754, 2178, 1843, 1641, 1488, 1354, 1281, 1248, 1216, 1235, 1281, 1361, 1470, 1619, 1829, 2159, 2692, 2577, 2102, 1775, 1566, 1410, 1295, 1229, 1180, 1163, 1180, 1229, 1295, 1418, 1556, 1762, 2066, 2522, 2470, 2014, 1712, 1526, 1377, 1255, 1180, 1136, 1120, 1136, 1180, 1248, 1361, 1507, 1712, 1980, 2420, 2372, 1948, 1664, 1470, 1324, 1223, 1146, 1094, 1089, 1099, 1146, 1223, 1317, 1488, 1653, 1917, 2372, 2304, 1917, 1630, 1470, 1309, 1204, 1114, 1070, 1051, 1075, 1120, 1192, 1302, 1443, 1641, 1887, 2282, 2261, 1857, 1619, 1426, 1288, 1192, 1109, 1046, 1037, 1060, 1104, 1180, 1295, 1435, 1608, 1857, 2219, 2282, 1857, 1619, 1435, 1288, 1180, 1094, 1046, 1024, 1051, 1094, 1175, 1288, 1426, 1608, 1857, 2239, 2282, 1857, 1608, 1443, 1295, 1186, 1099, 1046, 1033, 1056, 1104, 1180, 1288, 1426, 1619, 1887, 2282, 2282, 1917, 1641, 1452, 1302, 1198, 1109, 1065, 1046, 1060, 1114, 1198, 1302, 1443, 1619, 1887, 2304, 2326, 1932, 1664, 1470, 1331, 1223, 1146, 1089, 1075, 1084, 1130, 1216, 1324, 1470, 1653, 1917, 2349, 2470, 1997, 1687, 1507, 1361, 1248, 1158, 1120, 1109, 1130, 1158, 1261, 1354, 1498, 1676, 1964, 2396, 2549, 2066, 1749, 1546, 1401, 1288, 1216, 1163, 1146, 1158, 1210, 1281, 1401, 1546, 1749, 2031, 2522, 2662, 2139, 1815, 1619, 1452, 1339, 1255, 1210, 1186, 1210, 1255, 1339, 1452, 1566, 1802, 2120, 2633, 2853, 2282, 1887, 1664, 1517, 1385, 1331, 1275, 1255, 1275, 1309, 1393, 1507, 1664, 1887, 2282, 2853, 3072, 2420, 2014, 1762, 1587, 1470, 1410, 1346, 1302, 1331, 1401, 1488, 1587, 1762, 2014, 2420, 3072]
| }
| }, {
| "name": "2560x1440_CWF_70",
| "resolution": "2560x1440",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2345, 1956, 1668, 1504, 1386, 1319, 1270, 1229, 1210, 1213, 1240, 1305, 1370, 1492, 1644, 1921, 2345, 2230, 1860, 1600, 1462, 1349, 1272, 1224, 1184, 1185, 1184, 1216, 1272, 1345, 1450, 1586, 1830, 2246, 2172, 1790, 1556, 1424, 1330, 1249, 1194, 1164, 1148, 1158, 1184, 1241, 1317, 1413, 1536, 1772, 2101, 2070, 1747, 1530, 1401, 1300, 1217, 1160, 1124, 1109, 1124, 1157, 1214, 1287, 1375, 1530, 1705, 2057, 2008, 1686, 1500, 1374, 1275, 1180, 1131, 1100, 1079, 1100, 1128, 1191, 1263, 1364, 1494, 1678, 1961, 1966, 1647, 1467, 1344, 1240, 1172, 1116, 1078, 1063, 1070, 1107, 1166, 1244, 1335, 1461, 1624, 1922, 1909, 1618, 1458, 1339, 1237, 1163, 1094, 1053, 1036, 1053, 1088, 1150, 1233, 1330, 1447, 1618, 1868, 1889, 1613, 1455, 1324, 1225, 1138, 1080, 1041, 1029, 1038, 1075, 1135, 1214, 1306, 1444, 1606, 1849, 1873, 1609, 1436, 1322, 1220, 1137, 1072, 1030, 1024, 1030, 1077, 1137, 1216, 1309, 1442, 1588, 1873, 1879, 1606, 1450, 1324, 1218, 1141, 1075, 1033, 1027, 1029, 1072, 1129, 1211, 1302, 1439, 1599, 1869, 1899, 1618, 1447, 1316, 1229, 1141, 1083, 1035, 1029, 1043, 1075, 1138, 1215, 1316, 1431, 1611, 1868, 1944, 1632, 1456, 1326, 1229, 1149, 1092, 1056, 1039, 1051, 1089, 1143, 1218, 1335, 1450, 1610, 1890, 1961, 1655, 1459, 1345, 1240, 1164, 1110, 1072, 1062, 1067, 1113, 1164, 1240, 1341, 1459, 1632, 1939, 2007, 1697, 1486, 1365, 1262, 1185, 1131, 1097, 1080, 1094, 1125, 1188, 1258, 1356, 1480, 1672, 1995, 2088, 1718, 1504, 1392, 1290, 1207, 1156, 1132, 1110, 1122, 1156, 1211, 1281, 1382, 1497, 1710, 2048, 2169, 1771, 1551, 1405, 1321, 1243, 1187, 1153, 1143, 1150, 1180, 1231, 1312, 1416, 1537, 1771, 2154, 2257, 1865, 1605, 1461, 1365, 1265, 1220, 1194, 1169, 1172, 1213, 1257, 1340, 1437, 1582, 1833, 2224]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2265, 1890, 1629, 1470, 1376, 1303, 1250, 1220, 1213, 1214, 1250, 1285, 1370, 1466, 1616, 1866, 2219, 2182, 1815, 1565, 1428, 1338, 1262, 1210, 1186, 1172, 1182, 1210, 1257, 1338, 1431, 1562, 1799, 2166, 2093, 1738, 1526, 1400, 1306, 1228, 1189, 1142, 1143, 1150, 1179, 1230, 1297, 1394, 1512, 1728, 2063, 1998, 1686, 1492, 1369, 1281, 1202, 1155, 1119, 1106, 1112, 1144, 1198, 1269, 1372, 1485, 1677, 1966, 1951, 1637, 1465, 1344, 1252, 1179, 1125, 1090, 1075, 1088, 1126, 1177, 1246, 1342, 1462, 1633, 1914, 1911, 1618, 1444, 1329, 1236, 1163, 1104, 1067, 1053, 1064, 1098, 1155, 1236, 1326, 1438, 1606, 1882, 1872, 1594, 1439, 1314, 1221, 1141, 1088, 1049, 1033, 1048, 1083, 1138, 1215, 1312, 1430, 1586, 1850, 1856, 1584, 1426, 1307, 1212, 1137, 1081, 1035, 1022, 1039, 1071, 1129, 1208, 1298, 1418, 1580, 1845, 1848, 1591, 1423, 1305, 1206, 1138, 1073, 1031, 1024, 1031, 1070, 1128, 1202, 1298, 1414, 1572, 1811, 1850, 1584, 1426, 1302, 1210, 1137, 1077, 1035, 1021, 1032, 1071, 1129, 1204, 1293, 1421, 1580, 1823, 1861, 1583, 1427, 1314, 1213, 1145, 1080, 1042, 1027, 1036, 1074, 1140, 1213, 1304, 1410, 1586, 1850, 1888, 1602, 1444, 1319, 1226, 1155, 1096, 1058, 1047, 1057, 1087, 1146, 1220, 1319, 1429, 1583, 1871, 1926, 1629, 1452, 1337, 1242, 1166, 1103, 1076, 1064, 1071, 1106, 1164, 1239, 1326, 1449, 1608, 1908, 1966, 1659, 1475, 1356, 1262, 1188, 1133, 1097, 1091, 1100, 1128, 1182, 1264, 1342, 1462, 1642, 1959, 2042, 1713, 1494, 1385, 1285, 1216, 1157, 1125, 1118, 1120, 1151, 1207, 1275, 1371, 1491, 1681, 2020, 2141, 1767, 1527, 1403, 1312, 1237, 1190, 1153, 1140, 1155, 1188, 1228, 1307, 1400, 1527, 1736, 2086, 2219, 1836, 1574, 1443, 1340, 1266, 1216, 1184, 1176, 1178, 1212, 1266, 1326, 1411, 1566, 1819, 2175]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2273, 1899, 1637, 1481, 1375, 1303, 1253, 1223, 1208, 1221, 1260, 1300, 1373, 1475, 1620, 1881, 2246, 2191, 1835, 1582, 1442, 1348, 1274, 1220, 1191, 1177, 1187, 1220, 1272, 1351, 1439, 1574, 1807, 2174, 2094, 1756, 1535, 1413, 1309, 1242, 1185, 1153, 1144, 1157, 1187, 1229, 1307, 1408, 1535, 1722, 2065, 2007, 1699, 1500, 1380, 1284, 1209, 1160, 1122, 1111, 1122, 1153, 1207, 1284, 1374, 1497, 1690, 1988, 1966, 1650, 1477, 1355, 1262, 1186, 1130, 1095, 1082, 1095, 1127, 1181, 1253, 1352, 1477, 1654, 1923, 1903, 1631, 1461, 1334, 1240, 1168, 1111, 1074, 1055, 1074, 1108, 1165, 1240, 1337, 1461, 1619, 1908, 1876, 1611, 1447, 1324, 1233, 1152, 1096, 1054, 1040, 1054, 1090, 1150, 1221, 1322, 1441, 1611, 1865, 1854, 1585, 1438, 1310, 1223, 1146, 1090, 1043, 1038, 1046, 1081, 1141, 1215, 1308, 1432, 1593, 1838, 1857, 1596, 1423, 1320, 1218, 1142, 1078, 1037, 1024, 1038, 1075, 1138, 1214, 1310, 1431, 1600, 1825, 1865, 1597, 1429, 1317, 1221, 1141, 1082, 1035, 1029, 1040, 1081, 1139, 1215, 1315, 1426, 1589, 1843, 1876, 1603, 1435, 1317, 1223, 1149, 1091, 1046, 1034, 1046, 1084, 1145, 1223, 1317, 1435, 1591, 1859, 1880, 1607, 1434, 1329, 1238, 1156, 1097, 1062, 1047, 1059, 1095, 1154, 1229, 1322, 1446, 1615, 1880, 1917, 1637, 1461, 1344, 1251, 1169, 1115, 1084, 1071, 1083, 1107, 1169, 1243, 1334, 1454, 1621, 1923, 1975, 1672, 1477, 1361, 1268, 1197, 1139, 1102, 1092, 1101, 1137, 1187, 1268, 1353, 1477, 1659, 1962, 2050, 1713, 1503, 1387, 1283, 1223, 1164, 1130, 1117, 1130, 1162, 1213, 1280, 1373, 1503, 1699, 2008, 2126, 1776, 1543, 1408, 1314, 1247, 1193, 1162, 1147, 1158, 1183, 1242, 1309, 1405, 1536, 1750, 2087, 2246, 1845, 1586, 1441, 1356, 1273, 1217, 1190, 1174, 1186, 1217, 1269, 1339, 1438, 1574, 1822, 2201]
| },
| "lsc_samples_blue": {
| "uCoeff": [2207, 1864, 1618, 1457, 1352, 1289, 1227, 1197, 1195, 1204, 1249, 1273, 1352, 1446, 1632, 1845, 2178, 2153, 1828, 1586, 1436, 1337, 1263, 1213, 1178, 1164, 1178, 1219, 1256, 1329, 1426, 1573, 1759, 2126, 2063, 1724, 1527, 1412, 1320, 1229, 1183, 1164, 1138, 1152, 1183, 1236, 1303, 1393, 1515, 1708, 2016, 1975, 1700, 1502, 1376, 1276, 1200, 1158, 1123, 1111, 1123, 1158, 1200, 1284, 1367, 1491, 1671, 1933, 1928, 1658, 1473, 1364, 1268, 1182, 1131, 1099, 1087, 1099, 1131, 1176, 1254, 1346, 1473, 1630, 1890, 1878, 1626, 1452, 1331, 1235, 1167, 1113, 1073, 1071, 1078, 1113, 1167, 1228, 1347, 1442, 1600, 1878, 1843, 1615, 1436, 1343, 1233, 1160, 1092, 1058, 1043, 1063, 1097, 1149, 1226, 1319, 1445, 1590, 1825, 1819, 1574, 1434, 1311, 1220, 1155, 1093, 1041, 1035, 1055, 1088, 1144, 1226, 1319, 1424, 1574, 1785, 1840, 1577, 1437, 1321, 1222, 1146, 1080, 1043, 1024, 1048, 1080, 1140, 1222, 1313, 1427, 1577, 1805, 1836, 1574, 1424, 1327, 1226, 1150, 1083, 1041, 1031, 1050, 1088, 1144, 1220, 1311, 1434, 1599, 1836, 1825, 1615, 1445, 1327, 1226, 1155, 1087, 1054, 1039, 1049, 1092, 1155, 1226, 1319, 1426, 1590, 1843, 1842, 1613, 1452, 1331, 1242, 1167, 1113, 1068, 1057, 1063, 1097, 1161, 1235, 1331, 1442, 1600, 1860, 1928, 1644, 1453, 1346, 1254, 1176, 1109, 1084, 1077, 1094, 1109, 1189, 1246, 1338, 1442, 1617, 1871, 1954, 1671, 1480, 1358, 1269, 1194, 1146, 1107, 1095, 1102, 1140, 1187, 1269, 1358, 1480, 1642, 1933, 1994, 1693, 1503, 1393, 1288, 1215, 1158, 1128, 1110, 1128, 1158, 1215, 1288, 1347, 1492, 1678, 1972, 2076, 1759, 1523, 1396, 1312, 1227, 1199, 1160, 1145, 1160, 1179, 1234, 1304, 1396, 1523, 1759, 2076, 2150, 1807, 1578, 1435, 1334, 1265, 1234, 1191, 1156, 1177, 1227, 1281, 1334, 1435, 1578, 1807, 2150]
| }
| }, {
| "name": "2560x1440_TL84_100",
| "resolution": "2560x1440",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3341, 2591, 2107, 1834, 1644, 1530, 1423, 1369, 1358, 1373, 1427, 1503, 1623, 1795, 2107, 2502, 3277, 3078, 2362, 1976, 1733, 1563, 1443, 1358, 1306, 1296, 1302, 1347, 1431, 1548, 1716, 1953, 2341, 3005, 2886, 2257, 1881, 1654, 1498, 1380, 1296, 1242, 1230, 1236, 1289, 1365, 1485, 1633, 1860, 2189, 2791, 2702, 2125, 1807, 1592, 1431, 1319, 1239, 1195, 1178, 1187, 1224, 1316, 1423, 1587, 1776, 2107, 2645, 2578, 2048, 1751, 1539, 1392, 1276, 1198, 1147, 1126, 1136, 1187, 1270, 1376, 1534, 1733, 2024, 2527, 2478, 2000, 1693, 1507, 1351, 1239, 1144, 1104, 1085, 1102, 1149, 1227, 1333, 1489, 1676, 1953, 2407, 2385, 1946, 1654, 1476, 1316, 1192, 1121, 1078, 1049, 1072, 1116, 1201, 1306, 1455, 1644, 1909, 2341, 2351, 1902, 1633, 1443, 1292, 1178, 1104, 1047, 1037, 1049, 1099, 1178, 1279, 1427, 1623, 1874, 2330, 2298, 1881, 1612, 1423, 1286, 1170, 1085, 1039, 1024, 1047, 1088, 1165, 1270, 1419, 1618, 1867, 2288, 2298, 1895, 1618, 1435, 1279, 1170, 1092, 1039, 1024, 1039, 1090, 1162, 1273, 1407, 1612, 1867, 2278, 2351, 1895, 1633, 1439, 1289, 1189, 1107, 1047, 1034, 1054, 1099, 1181, 1289, 1431, 1623, 1881, 2309, 2396, 1931, 1665, 1459, 1319, 1218, 1131, 1078, 1063, 1076, 1124, 1206, 1309, 1451, 1649, 1931, 2362, 2478, 2000, 1710, 1512, 1358, 1248, 1168, 1114, 1095, 1116, 1168, 1248, 1347, 1494, 1693, 1992, 2454, 2605, 2082, 1764, 1563, 1407, 1292, 1218, 1168, 1154, 1170, 1212, 1286, 1392, 1553, 1751, 2056, 2578, 2760, 2199, 1840, 1633, 1459, 1351, 1270, 1215, 1204, 1227, 1267, 1340, 1459, 1612, 1834, 2161, 2760, 2988, 2330, 1946, 1710, 1539, 1415, 1340, 1279, 1260, 1286, 1330, 1411, 1525, 1699, 1924, 2298, 2919, 3235, 2490, 2048, 1788, 1607, 1494, 1403, 1358, 1340, 1347, 1407, 1481, 1607, 1788, 2032, 2454, 3215]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3279, 2544, 2095, 1803, 1642, 1520, 1426, 1391, 1360, 1371, 1429, 1511, 1635, 1794, 2072, 2518, 3208, 3024, 2364, 1956, 1727, 1556, 1437, 1360, 1305, 1289, 1307, 1346, 1432, 1549, 1695, 1931, 2334, 2963, 2805, 2228, 1867, 1653, 1487, 1371, 1289, 1241, 1227, 1237, 1294, 1363, 1484, 1635, 1848, 2208, 2763, 2663, 2119, 1786, 1586, 1432, 1317, 1243, 1183, 1170, 1187, 1229, 1307, 1421, 1576, 1777, 2072, 2607, 2526, 2043, 1727, 1527, 1383, 1269, 1191, 1141, 1122, 1136, 1187, 1263, 1373, 1520, 1715, 2004, 2509, 2442, 1967, 1676, 1496, 1346, 1239, 1157, 1105, 1084, 1096, 1148, 1227, 1331, 1481, 1688, 1946, 2403, 2379, 1926, 1650, 1452, 1310, 1205, 1121, 1070, 1053, 1073, 1121, 1197, 1303, 1449, 1646, 1906, 2327, 2320, 1896, 1628, 1440, 1298, 1180, 1105, 1052, 1037, 1050, 1102, 1180, 1282, 1432, 1628, 1867, 2270, 2305, 1881, 1617, 1429, 1291, 1174, 1096, 1038, 1024, 1044, 1084, 1167, 1276, 1418, 1603, 1867, 2277, 2334, 1886, 1617, 1437, 1285, 1174, 1096, 1044, 1028, 1044, 1086, 1163, 1276, 1413, 1607, 1867, 2312, 2334, 1896, 1635, 1443, 1298, 1187, 1110, 1058, 1041, 1055, 1104, 1180, 1287, 1426, 1624, 1886, 2327, 2387, 1941, 1665, 1472, 1331, 1207, 1136, 1087, 1069, 1086, 1129, 1209, 1312, 1463, 1657, 1916, 2357, 2492, 2004, 1711, 1502, 1368, 1254, 1168, 1124, 1107, 1122, 1168, 1243, 1350, 1493, 1699, 1977, 2467, 2616, 2083, 1764, 1569, 1415, 1298, 1219, 1167, 1157, 1172, 1221, 1294, 1407, 1552, 1748, 2060, 2597, 2763, 2202, 1844, 1628, 1472, 1348, 1280, 1225, 1207, 1225, 1267, 1350, 1457, 1610, 1830, 2157, 2712, 2975, 2342, 1936, 1707, 1536, 1421, 1343, 1289, 1271, 1285, 1331, 1415, 1520, 1688, 1911, 2284, 2951, 3208, 2501, 2043, 1773, 1614, 1493, 1415, 1360, 1341, 1360, 1407, 1481, 1593, 1773, 2043, 2451, 3140]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3317, 2535, 2116, 1816, 1657, 1515, 1436, 1383, 1372, 1375, 1425, 1522, 1632, 1811, 2074, 2501, 3216, 3020, 2373, 1975, 1723, 1577, 1445, 1357, 1319, 1298, 1309, 1362, 1439, 1560, 1715, 1959, 2358, 2983, 2835, 2244, 1875, 1661, 1500, 1380, 1303, 1246, 1231, 1244, 1296, 1372, 1491, 1650, 1866, 2197, 2793, 2662, 2122, 1798, 1593, 1439, 1323, 1246, 1194, 1173, 1192, 1237, 1316, 1425, 1570, 1789, 2110, 2625, 2518, 2046, 1735, 1534, 1393, 1271, 1196, 1142, 1127, 1147, 1190, 1265, 1380, 1531, 1723, 2024, 2493, 2451, 1975, 1695, 1503, 1350, 1235, 1158, 1108, 1087, 1102, 1149, 1233, 1338, 1494, 1688, 1965, 2412, 2388, 1924, 1657, 1470, 1321, 1213, 1130, 1079, 1055, 1078, 1121, 1197, 1312, 1456, 1654, 1909, 2343, 2336, 1894, 1636, 1450, 1303, 1186, 1110, 1056, 1041, 1056, 1103, 1186, 1289, 1436, 1628, 1890, 2292, 2321, 1890, 1621, 1436, 1285, 1177, 1100, 1041, 1024, 1047, 1095, 1177, 1280, 1425, 1614, 1885, 2307, 2343, 1880, 1625, 1431, 1289, 1178, 1100, 1047, 1033, 1044, 1093, 1175, 1285, 1422, 1618, 1866, 2307, 2350, 1919, 1632, 1447, 1307, 1194, 1111, 1061, 1046, 1055, 1110, 1190, 1293, 1442, 1628, 1909, 2321, 2427, 1934, 1672, 1473, 1333, 1223, 1142, 1085, 1070, 1090, 1135, 1207, 1321, 1467, 1657, 1939, 2373, 2501, 2007, 1715, 1512, 1370, 1252, 1175, 1123, 1113, 1128, 1175, 1246, 1352, 1509, 1711, 1991, 2468, 2615, 2098, 1764, 1570, 1406, 1298, 1223, 1177, 1160, 1171, 1223, 1291, 1409, 1557, 1772, 2074, 2606, 2782, 2191, 1852, 1632, 1473, 1355, 1274, 1229, 1213, 1233, 1276, 1352, 1467, 1625, 1843, 2165, 2741, 2972, 2328, 1934, 1715, 1547, 1422, 1343, 1293, 1280, 1293, 1340, 1417, 1544, 1707, 1929, 2328, 2972, 3244, 2501, 2063, 1798, 1625, 1491, 1417, 1352, 1343, 1350, 1412, 1470, 1614, 1789, 2035, 2509, 3202]
| },
| "lsc_samples_blue": {
| "uCoeff": [3085, 2493, 2006, 1775, 1613, 1478, 1402, 1349, 1349, 1363, 1410, 1469, 1582, 1750, 2023, 2443, 3164, 2938, 2350, 1943, 1702, 1533, 1418, 1341, 1292, 1279, 1299, 1341, 1426, 1523, 1714, 1928, 2285, 2870, 2742, 2203, 1828, 1645, 1487, 1371, 1285, 1246, 1228, 1234, 1292, 1356, 1469, 1624, 1842, 2165, 2742, 2571, 2109, 1763, 1582, 1435, 1313, 1234, 1192, 1181, 1186, 1228, 1306, 1418, 1582, 1775, 2091, 2544, 2493, 2023, 1750, 1533, 1379, 1266, 1198, 1148, 1127, 1137, 1186, 1266, 1363, 1505, 1714, 1990, 2443, 2350, 1928, 1679, 1487, 1334, 1240, 1153, 1102, 1082, 1097, 1148, 1216, 1334, 1478, 1656, 1943, 2350, 2306, 1898, 1634, 1460, 1313, 1198, 1122, 1073, 1055, 1078, 1122, 1198, 1313, 1443, 1634, 1884, 2285, 2264, 1884, 1613, 1435, 1292, 1181, 1102, 1050, 1028, 1050, 1102, 1181, 1279, 1418, 1602, 1884, 2264, 2264, 1856, 1602, 1410, 1279, 1170, 1092, 1041, 1024, 1046, 1082, 1175, 1272, 1418, 1592, 1856, 2243, 2243, 1870, 1613, 1435, 1292, 1181, 1102, 1037, 1033, 1041, 1092, 1159, 1272, 1418, 1613, 1856, 2264, 2285, 1870, 1634, 1460, 1306, 1186, 1102, 1064, 1041, 1059, 1107, 1181, 1292, 1435, 1624, 1870, 2264, 2373, 1943, 1656, 1469, 1341, 1210, 1137, 1078, 1073, 1082, 1132, 1222, 1313, 1452, 1645, 1898, 2306, 2443, 1990, 1702, 1505, 1356, 1253, 1164, 1127, 1107, 1122, 1164, 1253, 1349, 1496, 1690, 1959, 2419, 2571, 2074, 1763, 1552, 1418, 1292, 1216, 1170, 1153, 1159, 1210, 1279, 1386, 1542, 1738, 2023, 2493, 2712, 2165, 1828, 1624, 1469, 1349, 1272, 1228, 1210, 1222, 1259, 1341, 1443, 1592, 1828, 2146, 2654, 2870, 2285, 1928, 1714, 1523, 1402, 1327, 1279, 1259, 1285, 1327, 1402, 1505, 1667, 1913, 2264, 2837, 3085, 2468, 2023, 1775, 1602, 1487, 1402, 1349, 1341, 1349, 1394, 1487, 1602, 1763, 1990, 2443, 3124]
| }
| }, {
| "name": "2560x1440_TL84_70",
| "resolution": "2560x1440",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2339, 1935, 1651, 1494, 1381, 1317, 1246, 1211, 1205, 1214, 1249, 1294, 1364, 1462, 1651, 1868, 2294, 2240, 1820, 1596, 1454, 1352, 1278, 1223, 1188, 1183, 1185, 1214, 1267, 1339, 1439, 1577, 1804, 2187, 2161, 1786, 1558, 1423, 1328, 1253, 1196, 1158, 1150, 1152, 1190, 1239, 1317, 1405, 1541, 1732, 2090, 2071, 1719, 1529, 1398, 1295, 1223, 1167, 1137, 1125, 1129, 1153, 1219, 1288, 1394, 1503, 1704, 2027, 2013, 1686, 1508, 1375, 1281, 1203, 1148, 1109, 1093, 1100, 1137, 1197, 1267, 1371, 1492, 1666, 1973, 1962, 1669, 1477, 1364, 1260, 1183, 1110, 1082, 1067, 1080, 1115, 1171, 1244, 1348, 1462, 1630, 1906, 1907, 1640, 1457, 1349, 1239, 1149, 1098, 1067, 1042, 1060, 1094, 1157, 1229, 1330, 1448, 1609, 1872, 1892, 1612, 1447, 1326, 1224, 1142, 1088, 1042, 1035, 1044, 1083, 1142, 1211, 1311, 1437, 1588, 1874, 1853, 1597, 1431, 1310, 1220, 1136, 1071, 1035, 1024, 1044, 1073, 1131, 1205, 1306, 1435, 1586, 1844, 1849, 1606, 1433, 1319, 1211, 1134, 1076, 1033, 1022, 1033, 1074, 1126, 1205, 1293, 1428, 1583, 1832, 1880, 1597, 1438, 1315, 1214, 1146, 1084, 1036, 1027, 1043, 1077, 1138, 1214, 1307, 1429, 1585, 1846, 1897, 1612, 1453, 1321, 1231, 1163, 1098, 1057, 1045, 1055, 1091, 1152, 1221, 1314, 1439, 1612, 1870, 1934, 1646, 1472, 1351, 1250, 1176, 1119, 1078, 1063, 1080, 1119, 1176, 1240, 1335, 1457, 1640, 1915, 1996, 1684, 1492, 1373, 1274, 1198, 1148, 1111, 1102, 1114, 1142, 1192, 1260, 1364, 1482, 1663, 1976, 2067, 1740, 1524, 1405, 1294, 1226, 1172, 1133, 1126, 1144, 1169, 1217, 1294, 1387, 1519, 1710, 2067, 2174, 1795, 1571, 1434, 1331, 1253, 1207, 1164, 1151, 1170, 1198, 1250, 1319, 1425, 1553, 1771, 2124, 2265, 1859, 1605, 1457, 1351, 1286, 1228, 1201, 1189, 1192, 1232, 1275, 1351, 1457, 1592, 1832, 2250]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2296, 1899, 1642, 1469, 1380, 1309, 1249, 1231, 1207, 1212, 1251, 1301, 1374, 1462, 1623, 1880, 2246, 2200, 1822, 1579, 1449, 1346, 1273, 1225, 1187, 1177, 1190, 1212, 1268, 1340, 1422, 1559, 1799, 2156, 2101, 1763, 1546, 1422, 1318, 1244, 1190, 1157, 1148, 1153, 1194, 1237, 1316, 1406, 1531, 1747, 2069, 2041, 1714, 1511, 1393, 1296, 1220, 1172, 1126, 1117, 1130, 1158, 1212, 1286, 1384, 1503, 1676, 1998, 1972, 1682, 1487, 1364, 1274, 1196, 1141, 1104, 1090, 1099, 1138, 1190, 1264, 1358, 1476, 1650, 1959, 1934, 1641, 1462, 1354, 1255, 1183, 1124, 1084, 1066, 1074, 1115, 1171, 1242, 1341, 1472, 1624, 1902, 1903, 1623, 1453, 1327, 1233, 1161, 1098, 1059, 1046, 1062, 1098, 1154, 1227, 1324, 1450, 1606, 1861, 1866, 1607, 1442, 1324, 1229, 1143, 1089, 1046, 1035, 1045, 1086, 1143, 1214, 1316, 1442, 1582, 1826, 1858, 1598, 1435, 1316, 1225, 1140, 1081, 1035, 1024, 1041, 1070, 1133, 1210, 1306, 1423, 1585, 1835, 1878, 1599, 1432, 1321, 1216, 1138, 1079, 1039, 1026, 1039, 1070, 1127, 1208, 1298, 1423, 1582, 1860, 1867, 1598, 1440, 1319, 1222, 1144, 1088, 1047, 1034, 1044, 1081, 1137, 1212, 1303, 1431, 1589, 1861, 1890, 1620, 1452, 1332, 1242, 1152, 1103, 1066, 1051, 1064, 1096, 1154, 1224, 1325, 1446, 1599, 1866, 1945, 1650, 1473, 1342, 1260, 1182, 1120, 1088, 1075, 1086, 1120, 1172, 1243, 1334, 1463, 1628, 1926, 2005, 1685, 1493, 1378, 1281, 1203, 1148, 1110, 1105, 1116, 1150, 1199, 1274, 1364, 1479, 1666, 1991, 2069, 1742, 1527, 1400, 1305, 1224, 1182, 1142, 1129, 1142, 1169, 1226, 1292, 1385, 1516, 1706, 2031, 2165, 1805, 1563, 1432, 1329, 1258, 1210, 1173, 1161, 1169, 1199, 1254, 1315, 1416, 1543, 1760, 2147, 2246, 1867, 1601, 1444, 1356, 1285, 1239, 1203, 1190, 1203, 1232, 1275, 1339, 1444, 1601, 1830, 2198]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2322, 1893, 1658, 1479, 1393, 1304, 1257, 1223, 1218, 1216, 1248, 1310, 1372, 1475, 1625, 1867, 2251, 2198, 1829, 1595, 1445, 1364, 1280, 1223, 1200, 1185, 1191, 1227, 1275, 1349, 1439, 1582, 1817, 2171, 2123, 1775, 1553, 1429, 1330, 1253, 1202, 1161, 1152, 1159, 1196, 1246, 1322, 1419, 1545, 1739, 2091, 2040, 1716, 1521, 1400, 1303, 1226, 1174, 1136, 1120, 1134, 1166, 1220, 1290, 1379, 1514, 1706, 2012, 1966, 1684, 1494, 1371, 1283, 1198, 1146, 1105, 1094, 1110, 1140, 1192, 1271, 1368, 1483, 1666, 1946, 1941, 1648, 1479, 1361, 1259, 1180, 1124, 1086, 1069, 1080, 1116, 1178, 1248, 1353, 1472, 1639, 1909, 1910, 1621, 1460, 1344, 1244, 1169, 1107, 1068, 1047, 1066, 1099, 1154, 1235, 1331, 1457, 1609, 1874, 1879, 1606, 1449, 1333, 1233, 1149, 1093, 1051, 1039, 1051, 1087, 1149, 1221, 1320, 1442, 1601, 1844, 1871, 1605, 1439, 1322, 1219, 1142, 1086, 1038, 1024, 1044, 1081, 1142, 1214, 1312, 1433, 1600, 1859, 1885, 1593, 1439, 1315, 1221, 1142, 1084, 1042, 1031, 1039, 1077, 1138, 1216, 1307, 1433, 1581, 1856, 1880, 1617, 1437, 1323, 1231, 1150, 1089, 1049, 1038, 1043, 1087, 1147, 1218, 1318, 1434, 1609, 1856, 1922, 1614, 1459, 1334, 1244, 1168, 1109, 1064, 1052, 1069, 1102, 1153, 1232, 1328, 1446, 1618, 1879, 1952, 1652, 1476, 1351, 1261, 1180, 1126, 1087, 1081, 1092, 1126, 1174, 1245, 1348, 1473, 1639, 1926, 2004, 1697, 1492, 1379, 1273, 1203, 1152, 1120, 1108, 1114, 1152, 1197, 1276, 1367, 1499, 1678, 1997, 2083, 1734, 1534, 1404, 1306, 1230, 1176, 1146, 1135, 1150, 1178, 1228, 1301, 1397, 1526, 1713, 2053, 2162, 1794, 1561, 1439, 1338, 1260, 1209, 1177, 1169, 1177, 1207, 1255, 1335, 1432, 1557, 1794, 2162, 2271, 1867, 1616, 1465, 1366, 1283, 1241, 1196, 1192, 1194, 1236, 1266, 1357, 1458, 1594, 1874, 2242]
| },
| "lsc_samples_blue": {
| "uCoeff": [2159, 1861, 1572, 1446, 1356, 1272, 1228, 1193, 1197, 1206, 1235, 1264, 1330, 1426, 1585, 1825, 2215, 2138, 1811, 1569, 1428, 1326, 1256, 1208, 1176, 1167, 1182, 1208, 1264, 1318, 1438, 1557, 1761, 2088, 2053, 1743, 1514, 1415, 1318, 1245, 1186, 1162, 1148, 1150, 1193, 1231, 1303, 1396, 1525, 1713, 2053, 1970, 1706, 1491, 1389, 1299, 1216, 1163, 1135, 1127, 1129, 1157, 1210, 1284, 1389, 1502, 1691, 1950, 1946, 1665, 1507, 1369, 1269, 1193, 1148, 1111, 1094, 1100, 1137, 1193, 1255, 1344, 1475, 1638, 1908, 1861, 1609, 1465, 1346, 1244, 1184, 1119, 1080, 1065, 1075, 1114, 1161, 1244, 1338, 1445, 1622, 1861, 1844, 1600, 1439, 1334, 1236, 1154, 1099, 1062, 1047, 1066, 1099, 1154, 1236, 1319, 1439, 1587, 1827, 1821, 1597, 1429, 1319, 1223, 1144, 1085, 1045, 1026, 1045, 1085, 1144, 1211, 1303, 1419, 1597, 1821, 1825, 1576, 1422, 1298, 1213, 1136, 1078, 1038, 1024, 1042, 1068, 1141, 1207, 1306, 1413, 1576, 1809, 1805, 1584, 1429, 1319, 1223, 1144, 1085, 1032, 1031, 1036, 1076, 1123, 1205, 1303, 1429, 1573, 1821, 1827, 1575, 1439, 1334, 1230, 1143, 1079, 1052, 1034, 1048, 1084, 1138, 1217, 1311, 1430, 1575, 1811, 1879, 1622, 1445, 1330, 1251, 1155, 1104, 1056, 1055, 1061, 1099, 1166, 1225, 1314, 1435, 1584, 1826, 1908, 1638, 1465, 1344, 1249, 1181, 1115, 1090, 1074, 1085, 1115, 1181, 1242, 1336, 1455, 1612, 1889, 1970, 1677, 1491, 1363, 1284, 1197, 1145, 1113, 1101, 1103, 1140, 1185, 1255, 1355, 1470, 1636, 1910, 2031, 1713, 1514, 1396, 1303, 1224, 1174, 1145, 1132, 1139, 1162, 1218, 1280, 1369, 1514, 1698, 1987, 2088, 1761, 1557, 1438, 1318, 1242, 1195, 1163, 1149, 1169, 1195, 1242, 1302, 1399, 1545, 1745, 2064, 2159, 1843, 1585, 1446, 1347, 1280, 1228, 1193, 1190, 1193, 1221, 1280, 1347, 1436, 1559, 1825, 2187]
| }
| }, {
| "name": "2560x1440_HZ_100",
| "resolution": "2560x1440",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3288, 2526, 2095, 1803, 1640, 1507, 1426, 1380, 1374, 1394, 1443, 1548, 1697, 1925, 2195, 2695, 3524, 3014, 2361, 1958, 1718, 1541, 1434, 1345, 1301, 1296, 1311, 1358, 1453, 1609, 1799, 2070, 2499, 3241, 2782, 2195, 1857, 1632, 1462, 1358, 1277, 1236, 1225, 1243, 1299, 1383, 1517, 1709, 1958, 2353, 2987, 2653, 2095, 1780, 1562, 1408, 1296, 1216, 1171, 1161, 1191, 1240, 1337, 1462, 1640, 1872, 2209, 2782, 2490, 2003, 1701, 1500, 1353, 1249, 1169, 1136, 1123, 1134, 1183, 1275, 1405, 1583, 1808, 2134, 2695, 2411, 1919, 1648, 1459, 1311, 1212, 1130, 1087, 1082, 1098, 1153, 1243, 1363, 1527, 1753, 2063, 2545, 2321, 1872, 1609, 1428, 1284, 1179, 1110, 1062, 1047, 1070, 1115, 1212, 1334, 1497, 1709, 1997, 2490, 2283, 1847, 1598, 1402, 1263, 1163, 1089, 1044, 1032, 1049, 1103, 1193, 1319, 1478, 1680, 1974, 2419, 2260, 1837, 1572, 1394, 1254, 1145, 1079, 1032, 1024, 1043, 1087, 1181, 1304, 1465, 1672, 1952, 2419, 2253, 1832, 1583, 1388, 1258, 1153, 1080, 1030, 1022, 1041, 1096, 1175, 1311, 1459, 1680, 1958, 2428, 2268, 1847, 1591, 1399, 1270, 1159, 1089, 1047, 1029, 1055, 1106, 1189, 1314, 1474, 1684, 1974, 2454, 2306, 1882, 1613, 1426, 1294, 1183, 1115, 1075, 1059, 1075, 1125, 1214, 1345, 1500, 1705, 2015, 2499, 2386, 1919, 1648, 1462, 1319, 1212, 1141, 1101, 1087, 1112, 1161, 1252, 1369, 1530, 1753, 2057, 2583, 2445, 1980, 1688, 1510, 1355, 1252, 1181, 1139, 1132, 1151, 1205, 1289, 1423, 1583, 1813, 2134, 2674, 2603, 2076, 1753, 1562, 1414, 1304, 1229, 1191, 1187, 1191, 1249, 1339, 1465, 1648, 1872, 2238, 2828, 2748, 2188, 1832, 1628, 1484, 1366, 1294, 1247, 1245, 1263, 1326, 1414, 1548, 1726, 1952, 2369, 3054, 2899, 2329, 1936, 1697, 1548, 1434, 1366, 1311, 1304, 1334, 1383, 1497, 1644, 1813, 2095, 2554, 3335]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3088, 2404, 2001, 1763, 1604, 1471, 1408, 1361, 1354, 1359, 1423, 1513, 1646, 1832, 2105, 2563, 3217, 2847, 2248, 1877, 1657, 1510, 1403, 1323, 1283, 1281, 1300, 1343, 1429, 1560, 1736, 1984, 2355, 3008, 2672, 2111, 1781, 1589, 1435, 1333, 1258, 1222, 1212, 1225, 1274, 1370, 1497, 1657, 1887, 2233, 2836, 2499, 2013, 1710, 1533, 1378, 1276, 1210, 1161, 1157, 1177, 1229, 1313, 1432, 1585, 1794, 2111, 2651, 2379, 1929, 1653, 1471, 1330, 1238, 1161, 1120, 1111, 1134, 1175, 1267, 1378, 1536, 1740, 2031, 2526, 2308, 1867, 1607, 1438, 1293, 1197, 1127, 1076, 1070, 1090, 1148, 1229, 1338, 1500, 1702, 1979, 2429, 2233, 1818, 1585, 1400, 1272, 1169, 1104, 1055, 1044, 1063, 1109, 1197, 1320, 1465, 1669, 1935, 2331, 2191, 1799, 1557, 1394, 1258, 1157, 1081, 1041, 1026, 1052, 1107, 1189, 1300, 1447, 1646, 1908, 2331, 2177, 1799, 1550, 1380, 1249, 1150, 1076, 1033, 1024, 1046, 1092, 1175, 1295, 1441, 1626, 1913, 2315, 2164, 1794, 1553, 1378, 1249, 1146, 1080, 1042, 1026, 1044, 1093, 1169, 1295, 1444, 1626, 1887, 2308, 2184, 1809, 1560, 1389, 1269, 1161, 1097, 1046, 1032, 1057, 1109, 1189, 1303, 1459, 1638, 1913, 2347, 2248, 1832, 1585, 1417, 1286, 1183, 1118, 1081, 1060, 1078, 1122, 1210, 1330, 1462, 1673, 1929, 2404, 2300, 1882, 1619, 1441, 1318, 1212, 1146, 1107, 1090, 1113, 1163, 1249, 1364, 1506, 1706, 1984, 2481, 2387, 1945, 1677, 1484, 1354, 1258, 1187, 1142, 1140, 1155, 1203, 1288, 1403, 1568, 1754, 2067, 2592, 2499, 2013, 1727, 1547, 1403, 1305, 1238, 1199, 1185, 1203, 1253, 1340, 1453, 1615, 1823, 2164, 2724, 2703, 2137, 1799, 1604, 1471, 1364, 1298, 1262, 1249, 1269, 1313, 1411, 1523, 1690, 1913, 2292, 2907, 2859, 2270, 1908, 1686, 1533, 1441, 1370, 1323, 1325, 1333, 1386, 1484, 1607, 1790, 2031, 2463, 3102]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3092, 2431, 2014, 1753, 1605, 1487, 1412, 1365, 1358, 1384, 1432, 1532, 1666, 1850, 2142, 2573, 3295, 2843, 2259, 1894, 1658, 1506, 1409, 1334, 1290, 1288, 1302, 1355, 1441, 1580, 1753, 1996, 2422, 3026, 2660, 2129, 1789, 1587, 1441, 1350, 1265, 1230, 1223, 1238, 1288, 1382, 1509, 1674, 1900, 2259, 2831, 2500, 2014, 1719, 1532, 1387, 1286, 1213, 1172, 1166, 1182, 1236, 1319, 1438, 1616, 1812, 2129, 2640, 2406, 1936, 1654, 1477, 1345, 1243, 1168, 1124, 1120, 1136, 1186, 1274, 1395, 1559, 1757, 2067, 2536, 2303, 1869, 1620, 1441, 1305, 1202, 1136, 1087, 1084, 1097, 1153, 1243, 1360, 1509, 1723, 1996, 2465, 2245, 1821, 1587, 1409, 1283, 1182, 1106, 1061, 1053, 1074, 1124, 1202, 1332, 1480, 1682, 1941, 2414, 2203, 1802, 1562, 1404, 1270, 1161, 1094, 1044, 1041, 1055, 1106, 1198, 1315, 1465, 1662, 1936, 2342, 2182, 1798, 1559, 1387, 1256, 1159, 1087, 1041, 1024, 1048, 1106, 1186, 1302, 1450, 1666, 1926, 2326, 2189, 1798, 1562, 1390, 1265, 1157, 1086, 1045, 1035, 1047, 1110, 1190, 1305, 1456, 1654, 1926, 2342, 2209, 1821, 1566, 1401, 1274, 1165, 1103, 1056, 1038, 1063, 1111, 1198, 1322, 1471, 1658, 1926, 2381, 2245, 1835, 1598, 1421, 1298, 1194, 1124, 1087, 1066, 1087, 1135, 1219, 1340, 1493, 1690, 1963, 2447, 2288, 1874, 1620, 1453, 1324, 1223, 1153, 1113, 1103, 1118, 1174, 1254, 1376, 1532, 1736, 2025, 2500, 2414, 1963, 1670, 1493, 1360, 1263, 1194, 1151, 1142, 1163, 1213, 1298, 1412, 1580, 1780, 2091, 2620, 2526, 2025, 1731, 1545, 1421, 1317, 1247, 1206, 1194, 1209, 1263, 1352, 1468, 1631, 1850, 2189, 2754, 2691, 2136, 1802, 1620, 1480, 1371, 1302, 1272, 1256, 1279, 1329, 1415, 1542, 1702, 1931, 2326, 2937, 2854, 2281, 1884, 1698, 1545, 1429, 1373, 1327, 1312, 1342, 1401, 1493, 1620, 1789, 2049, 2482, 3205]
| },
| "lsc_samples_blue": {
| "uCoeff": [2546, 2014, 1729, 1527, 1466, 1338, 1273, 1255, 1282, 1319, 1368, 1490, 1637, 1833, 2107, 2477, 3107, 2350, 1929, 1651, 1455, 1348, 1309, 1238, 1214, 1222, 1247, 1300, 1389, 1580, 1762, 1971, 2350, 2909, 2235, 1815, 1580, 1421, 1300, 1255, 1190, 1167, 1175, 1198, 1255, 1358, 1527, 1697, 1909, 2263, 2736, 2083, 1729, 1540, 1389, 1264, 1190, 1146, 1111, 1131, 1160, 1214, 1319, 1466, 1637, 1851, 2156, 2656, 2014, 1651, 1478, 1358, 1222, 1160, 1104, 1085, 1098, 1125, 1167, 1273, 1421, 1580, 1797, 2083, 2511, 1909, 1622, 1466, 1328, 1190, 1131, 1078, 1047, 1072, 1078, 1138, 1247, 1389, 1567, 1746, 1992, 2380, 1909, 1594, 1432, 1282, 1190, 1111, 1072, 1024, 1041, 1066, 1098, 1214, 1368, 1527, 1746, 1992, 2350, 1870, 1580, 1410, 1273, 1183, 1091, 1047, 1024, 1030, 1053, 1118, 1222, 1348, 1502, 1697, 1971, 2320, 1833, 1567, 1389, 1264, 1183, 1085, 1041, 1018, 1024, 1047, 1104, 1198, 1348, 1502, 1713, 1929, 2320, 1815, 1567, 1389, 1273, 1183, 1098, 1047, 1018, 1018, 1047, 1111, 1206, 1338, 1490, 1713, 1950, 2320, 1851, 1580, 1432, 1282, 1190, 1111, 1060, 1036, 1041, 1060, 1125, 1214, 1348, 1502, 1713, 1971, 2412, 1851, 1594, 1421, 1291, 1206, 1125, 1085, 1047, 1060, 1085, 1131, 1230, 1368, 1527, 1713, 1992, 2380, 1890, 1608, 1443, 1309, 1222, 1153, 1104, 1098, 1098, 1118, 1183, 1291, 1421, 1580, 1746, 2060, 2444, 1909, 1637, 1455, 1348, 1255, 1183, 1138, 1125, 1118, 1146, 1214, 1319, 1443, 1608, 1815, 2107, 2546, 2014, 1697, 1502, 1378, 1291, 1222, 1198, 1160, 1175, 1183, 1255, 1368, 1478, 1637, 1890, 2182, 2656, 2083, 1762, 1553, 1432, 1328, 1264, 1230, 1214, 1222, 1255, 1328, 1443, 1553, 1729, 1950, 2291, 2820, 2182, 1833, 1622, 1478, 1389, 1309, 1300, 1273, 1282, 1309, 1410, 1490, 1637, 1797, 2060, 2444, 3107]
| }
| }, {
| "name": "2560x1440_HZ_70",
| "resolution": "2560x1440",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2301, 1886, 1641, 1469, 1378, 1297, 1248, 1220, 1220, 1233, 1264, 1332, 1426, 1568, 1720, 2012, 2467, 2193, 1820, 1580, 1441, 1333, 1271, 1211, 1184, 1184, 1193, 1223, 1287, 1392, 1509, 1671, 1925, 2358, 2083, 1737, 1538, 1404, 1296, 1233, 1179, 1152, 1146, 1158, 1199, 1255, 1345, 1470, 1621, 1862, 2237, 2033, 1694, 1506, 1372, 1275, 1201, 1146, 1114, 1108, 1133, 1169, 1239, 1324, 1440, 1584, 1787, 2132, 1943, 1649, 1464, 1340, 1245, 1177, 1120, 1099, 1090, 1097, 1133, 1201, 1294, 1414, 1557, 1757, 2104, 1909, 1602, 1437, 1321, 1223, 1157, 1097, 1066, 1064, 1076, 1119, 1186, 1272, 1382, 1529, 1722, 2015, 1856, 1578, 1417, 1305, 1209, 1136, 1087, 1051, 1040, 1059, 1093, 1168, 1256, 1368, 1505, 1683, 1991, 1836, 1565, 1415, 1289, 1196, 1127, 1073, 1039, 1030, 1044, 1087, 1156, 1249, 1358, 1488, 1673, 1946, 1822, 1560, 1395, 1283, 1190, 1112, 1065, 1028, 1024, 1039, 1073, 1146, 1237, 1349, 1484, 1658, 1950, 1812, 1553, 1402, 1276, 1192, 1117, 1064, 1025, 1021, 1036, 1080, 1138, 1242, 1341, 1488, 1659, 1953, 1814, 1556, 1401, 1279, 1196, 1117, 1067, 1036, 1021, 1044, 1084, 1146, 1237, 1347, 1483, 1664, 1963, 1826, 1571, 1407, 1291, 1207, 1129, 1083, 1054, 1041, 1054, 1092, 1159, 1254, 1358, 1487, 1681, 1978, 1863, 1580, 1418, 1306, 1214, 1142, 1094, 1066, 1056, 1076, 1112, 1180, 1260, 1367, 1509, 1693, 2017, 1874, 1601, 1428, 1326, 1227, 1160, 1112, 1084, 1081, 1095, 1136, 1195, 1288, 1391, 1534, 1726, 2049, 1949, 1643, 1452, 1343, 1254, 1184, 1135, 1110, 1110, 1110, 1153, 1216, 1299, 1417, 1551, 1771, 2117, 2000, 1686, 1479, 1366, 1284, 1210, 1166, 1135, 1136, 1149, 1195, 1252, 1339, 1448, 1576, 1826, 2222, 2029, 1739, 1516, 1382, 1301, 1235, 1196, 1160, 1157, 1180, 1210, 1289, 1382, 1477, 1641, 1907, 2335]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2162, 1795, 1568, 1436, 1348, 1266, 1233, 1204, 1201, 1202, 1246, 1302, 1383, 1493, 1649, 1914, 2252, 2072, 1732, 1515, 1390, 1306, 1243, 1191, 1168, 1170, 1183, 1210, 1266, 1350, 1456, 1602, 1815, 2189, 2001, 1670, 1475, 1367, 1272, 1210, 1161, 1140, 1133, 1142, 1176, 1243, 1327, 1425, 1563, 1767, 2123, 1915, 1628, 1447, 1346, 1247, 1183, 1140, 1105, 1105, 1120, 1158, 1216, 1296, 1393, 1518, 1707, 2032, 1857, 1588, 1423, 1314, 1225, 1166, 1112, 1084, 1079, 1098, 1126, 1194, 1269, 1373, 1498, 1672, 1972, 1827, 1558, 1402, 1302, 1206, 1143, 1094, 1055, 1052, 1068, 1114, 1173, 1248, 1358, 1485, 1651, 1923, 1786, 1532, 1396, 1279, 1197, 1126, 1081, 1044, 1036, 1052, 1087, 1154, 1243, 1339, 1470, 1630, 1864, 1763, 1525, 1379, 1281, 1191, 1121, 1065, 1036, 1024, 1047, 1091, 1152, 1231, 1329, 1458, 1617, 1875, 1755, 1528, 1376, 1271, 1185, 1116, 1062, 1030, 1024, 1042, 1077, 1141, 1229, 1326, 1443, 1625, 1866, 1741, 1521, 1376, 1266, 1183, 1110, 1064, 1037, 1024, 1039, 1077, 1133, 1227, 1327, 1441, 1599, 1857, 1747, 1524, 1374, 1269, 1195, 1119, 1075, 1035, 1024, 1046, 1087, 1146, 1227, 1333, 1442, 1612, 1877, 1780, 1529, 1383, 1283, 1200, 1129, 1085, 1060, 1043, 1057, 1089, 1155, 1241, 1323, 1460, 1610, 1903, 1796, 1549, 1393, 1287, 1213, 1142, 1098, 1072, 1058, 1077, 1114, 1177, 1256, 1346, 1469, 1633, 1937, 1829, 1573, 1419, 1303, 1225, 1166, 1118, 1087, 1089, 1099, 1134, 1194, 1270, 1377, 1484, 1672, 1987, 1871, 1593, 1431, 1330, 1244, 1185, 1142, 1118, 1108, 1122, 1157, 1217, 1288, 1389, 1510, 1712, 2040, 1967, 1647, 1453, 1345, 1273, 1208, 1169, 1149, 1140, 1155, 1182, 1250, 1317, 1417, 1545, 1767, 2115, 2001, 1695, 1495, 1373, 1288, 1240, 1199, 1170, 1176, 1179, 1213, 1277, 1351, 1458, 1591, 1839, 2171]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2165, 1815, 1578, 1428, 1349, 1280, 1236, 1208, 1205, 1224, 1254, 1319, 1400, 1507, 1678, 1921, 2306, 2068, 1741, 1529, 1391, 1302, 1248, 1202, 1174, 1176, 1185, 1221, 1276, 1367, 1470, 1612, 1867, 2202, 1992, 1685, 1481, 1365, 1278, 1225, 1168, 1146, 1144, 1154, 1189, 1254, 1338, 1440, 1573, 1787, 2120, 1916, 1629, 1454, 1345, 1256, 1192, 1143, 1116, 1114, 1125, 1165, 1223, 1302, 1420, 1533, 1722, 2023, 1878, 1594, 1424, 1320, 1238, 1171, 1120, 1087, 1087, 1100, 1136, 1201, 1285, 1393, 1513, 1701, 1979, 1824, 1560, 1413, 1305, 1217, 1148, 1103, 1066, 1066, 1076, 1119, 1186, 1269, 1366, 1503, 1666, 1951, 1795, 1534, 1398, 1288, 1208, 1139, 1084, 1050, 1045, 1063, 1101, 1159, 1254, 1353, 1481, 1636, 1930, 1772, 1527, 1384, 1290, 1202, 1125, 1078, 1038, 1039, 1049, 1090, 1161, 1245, 1346, 1472, 1641, 1884, 1759, 1527, 1383, 1277, 1191, 1125, 1073, 1037, 1024, 1045, 1092, 1152, 1236, 1335, 1478, 1635, 1875, 1761, 1524, 1384, 1277, 1198, 1121, 1069, 1040, 1033, 1041, 1093, 1153, 1236, 1338, 1465, 1632, 1884, 1767, 1534, 1379, 1280, 1200, 1122, 1080, 1045, 1030, 1051, 1089, 1155, 1245, 1344, 1460, 1622, 1904, 1777, 1531, 1394, 1286, 1211, 1140, 1091, 1066, 1048, 1066, 1101, 1164, 1250, 1352, 1474, 1638, 1938, 1786, 1543, 1394, 1298, 1219, 1153, 1105, 1077, 1070, 1082, 1125, 1182, 1267, 1369, 1494, 1667, 1951, 1850, 1588, 1413, 1311, 1231, 1170, 1125, 1096, 1090, 1106, 1143, 1202, 1278, 1388, 1506, 1691, 2008, 1892, 1602, 1434, 1329, 1260, 1196, 1151, 1125, 1117, 1127, 1166, 1228, 1302, 1403, 1532, 1732, 2062, 1958, 1646, 1455, 1359, 1281, 1214, 1173, 1157, 1147, 1163, 1198, 1253, 1334, 1428, 1559, 1793, 2138, 1998, 1703, 1476, 1383, 1299, 1230, 1203, 1174, 1164, 1187, 1226, 1285, 1361, 1457, 1605, 1853, 2243]
| },
| "lsc_samples_blue": {
| "uCoeff": [1782, 1504, 1355, 1244, 1232, 1152, 1114, 1110, 1138, 1166, 1198, 1283, 1375, 1493, 1651, 1850, 2175, 1710, 1487, 1333, 1220, 1166, 1160, 1116, 1104, 1116, 1135, 1171, 1230, 1367, 1478, 1591, 1811, 2117, 1674, 1436, 1309, 1222, 1153, 1140, 1099, 1088, 1099, 1117, 1159, 1233, 1354, 1460, 1581, 1791, 2049, 1596, 1399, 1303, 1220, 1144, 1103, 1079, 1057, 1080, 1104, 1144, 1222, 1328, 1437, 1566, 1744, 2036, 1572, 1359, 1272, 1213, 1125, 1093, 1058, 1050, 1066, 1088, 1119, 1200, 1308, 1412, 1547, 1715, 1960, 1512, 1354, 1279, 1202, 1110, 1080, 1047, 1027, 1054, 1057, 1105, 1191, 1295, 1418, 1523, 1663, 1885, 1527, 1343, 1261, 1171, 1121, 1071, 1050, 1013, 1034, 1054, 1075, 1170, 1288, 1396, 1537, 1679, 1879, 1505, 1339, 1249, 1170, 1120, 1057, 1032, 1019, 1028, 1048, 1101, 1184, 1276, 1381, 1503, 1670, 1867, 1478, 1330, 1232, 1164, 1122, 1053, 1028, 1015, 1024, 1044, 1090, 1163, 1279, 1383, 1520, 1638, 1870, 1460, 1328, 1230, 1170, 1120, 1064, 1032, 1013, 1016, 1042, 1094, 1169, 1267, 1370, 1517, 1653, 1867, 1481, 1331, 1261, 1171, 1121, 1071, 1038, 1025, 1034, 1048, 1102, 1170, 1269, 1373, 1509, 1661, 1929, 1466, 1330, 1240, 1169, 1125, 1074, 1053, 1027, 1042, 1063, 1098, 1175, 1276, 1383, 1494, 1663, 1885, 1475, 1324, 1242, 1170, 1125, 1086, 1058, 1062, 1066, 1082, 1133, 1217, 1308, 1412, 1503, 1695, 1908, 1463, 1324, 1231, 1184, 1137, 1096, 1073, 1070, 1067, 1090, 1144, 1222, 1307, 1412, 1535, 1704, 1951, 1508, 1343, 1244, 1185, 1145, 1109, 1106, 1082, 1099, 1103, 1159, 1242, 1311, 1408, 1565, 1727, 1989, 1516, 1358, 1254, 1201, 1149, 1120, 1108, 1104, 1116, 1142, 1196, 1278, 1344, 1451, 1574, 1766, 2052, 1527, 1369, 1271, 1204, 1167, 1127, 1138, 1126, 1138, 1158, 1234, 1283, 1375, 1464, 1614, 1825, 2175]
| }
| }, {
| "name": "2688x1520_A_100",
| "resolution": "2688x1520",
| "illumination": "A",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3488, 2679, 2181, 1892, 1691, 1543, 1456, 1392, 1384, 1404, 1450, 1536, 1674, 1871, 2153, 2690, 3470, 3220, 2499, 2048, 1776, 1606, 1459, 1381, 1318, 1303, 1316, 1370, 1456, 1579, 1772, 2036, 2480, 3189, 2990, 2342, 1947, 1717, 1532, 1395, 1311, 1271, 1238, 1254, 1313, 1392, 1522, 1695, 1947, 2333, 2990, 2862, 2247, 1886, 1654, 1478, 1358, 1261, 1213, 1196, 1211, 1259, 1347, 1469, 1645, 1865, 2225, 2814, 2711, 2153, 1825, 1598, 1434, 1305, 1229, 1175, 1155, 1167, 1215, 1303, 1428, 1595, 1820, 2140, 2711, 2596, 2086, 1772, 1561, 1389, 1273, 1185, 1129, 1109, 1126, 1177, 1261, 1384, 1547, 1776, 2080, 2586, 2537, 2023, 1722, 1512, 1353, 1238, 1149, 1098, 1072, 1092, 1139, 1229, 1350, 1508, 1730, 2036, 2508, 2480, 1987, 1691, 1485, 1326, 1207, 1116, 1063, 1046, 1060, 1112, 1198, 1321, 1475, 1678, 1976, 2444, 2435, 1952, 1658, 1462, 1293, 1183, 1096, 1038, 1024, 1043, 1091, 1175, 1293, 1453, 1658, 1936, 2400, 2392, 1936, 1649, 1446, 1293, 1173, 1091, 1032, 1012, 1030, 1085, 1165, 1285, 1443, 1654, 1924, 2392, 2444, 1941, 1658, 1456, 1295, 1181, 1098, 1035, 1019, 1038, 1087, 1175, 1298, 1450, 1645, 1930, 2418, 2480, 1976, 1687, 1482, 1329, 1209, 1122, 1070, 1051, 1065, 1107, 1200, 1316, 1475, 1683, 1993, 2453, 2606, 2054, 1735, 1515, 1367, 1249, 1165, 1101, 1085, 1103, 1151, 1236, 1361, 1519, 1739, 2054, 2556, 2711, 2146, 1810, 1587, 1419, 1300, 1209, 1159, 1133, 1153, 1200, 1288, 1416, 1576, 1815, 2140, 2733, 2912, 2270, 1892, 1662, 1492, 1367, 1273, 1218, 1202, 1202, 1266, 1361, 1482, 1658, 1897, 2278, 2899, 3115, 2418, 1999, 1758, 1576, 1434, 1345, 1293, 1268, 1290, 1347, 1440, 1572, 1758, 2005, 2409, 3115, 3332, 2596, 2140, 1840, 1666, 1505, 1413, 1356, 1326, 1361, 1416, 1529, 1658, 1840, 2119, 2606, 3332]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3272, 2528, 2064, 1807, 1629, 1497, 1416, 1370, 1361, 1356, 1418, 1508, 1632, 1799, 2059, 2504, 3233, 2994, 2359, 1950, 1715, 1557, 1428, 1352, 1300, 1283, 1294, 1343, 1431, 1548, 1711, 1950, 2338, 2973, 2818, 2229, 1873, 1659, 1499, 1375, 1292, 1242, 1225, 1240, 1287, 1370, 1477, 1652, 1869, 2217, 2798, 2660, 2146, 1803, 1597, 1446, 1330, 1244, 1200, 1184, 1200, 1250, 1325, 1443, 1606, 1815, 2118, 2652, 2592, 2054, 1752, 1557, 1406, 1298, 1209, 1169, 1147, 1160, 1205, 1289, 1401, 1554, 1760, 2054, 2568, 2481, 2013, 1715, 1525, 1370, 1252, 1177, 1122, 1105, 1119, 1175, 1254, 1365, 1522, 1719, 2003, 2451, 2408, 1955, 1683, 1480, 1336, 1223, 1144, 1092, 1076, 1083, 1137, 1216, 1336, 1488, 1690, 1964, 2400, 2345, 1918, 1652, 1454, 1304, 1198, 1117, 1063, 1045, 1064, 1111, 1196, 1298, 1451, 1649, 1909, 2325, 2311, 1891, 1616, 1428, 1287, 1174, 1097, 1045, 1024, 1044, 1086, 1170, 1285, 1428, 1616, 1882, 2298, 2305, 1873, 1609, 1421, 1281, 1169, 1092, 1036, 1020, 1033, 1083, 1167, 1273, 1418, 1606, 1882, 2298, 2305, 1873, 1616, 1431, 1285, 1170, 1097, 1046, 1027, 1040, 1095, 1170, 1287, 1431, 1613, 1891, 2318, 2393, 1918, 1642, 1464, 1315, 1209, 1125, 1074, 1056, 1077, 1113, 1193, 1312, 1454, 1652, 1918, 2359, 2474, 1988, 1693, 1505, 1356, 1240, 1160, 1111, 1090, 1113, 1160, 1236, 1356, 1499, 1704, 1988, 2474, 2609, 2080, 1775, 1563, 1413, 1298, 1214, 1164, 1144, 1165, 1214, 1294, 1416, 1563, 1771, 2080, 2634, 2779, 2217, 1856, 1652, 1483, 1368, 1281, 1233, 1211, 1220, 1271, 1356, 1480, 1645, 1861, 2199, 2760, 3017, 2359, 1964, 1726, 1563, 1446, 1354, 1296, 1277, 1306, 1352, 1436, 1563, 1730, 1964, 2359, 2983, 3195, 2512, 2064, 1795, 1635, 1505, 1418, 1363, 1352, 1372, 1425, 1505, 1635, 1807, 2075, 2497, 3170]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3228, 2512, 2093, 1814, 1629, 1503, 1412, 1363, 1360, 1372, 1420, 1495, 1633, 1810, 2062, 2512, 3280, 3002, 2353, 1948, 1722, 1558, 1435, 1345, 1308, 1285, 1298, 1349, 1432, 1552, 1715, 1953, 2339, 3002, 2826, 2237, 1864, 1652, 1489, 1376, 1296, 1244, 1227, 1246, 1291, 1372, 1489, 1659, 1877, 2225, 2796, 2668, 2132, 1802, 1601, 1450, 1334, 1256, 1202, 1190, 1198, 1248, 1331, 1447, 1607, 1822, 2137, 2668, 2568, 2067, 1759, 1570, 1402, 1293, 1213, 1166, 1148, 1164, 1213, 1285, 1402, 1561, 1767, 2062, 2568, 2489, 2001, 1726, 1523, 1374, 1254, 1181, 1129, 1106, 1123, 1176, 1256, 1369, 1523, 1737, 2021, 2482, 2401, 1953, 1694, 1484, 1340, 1225, 1146, 1094, 1071, 1091, 1140, 1227, 1340, 1487, 1694, 1962, 2401, 2339, 1916, 1642, 1445, 1314, 1193, 1120, 1064, 1045, 1065, 1115, 1197, 1310, 1455, 1649, 1921, 2353, 2313, 1885, 1616, 1435, 1291, 1176, 1098, 1038, 1024, 1046, 1091, 1178, 1285, 1427, 1623, 1890, 2300, 2306, 1877, 1607, 1424, 1279, 1174, 1090, 1036, 1018, 1036, 1090, 1171, 1275, 1424, 1616, 1872, 2300, 2313, 1890, 1620, 1435, 1291, 1178, 1100, 1046, 1023, 1038, 1087, 1176, 1289, 1429, 1616, 1894, 2326, 2380, 1930, 1649, 1465, 1323, 1198, 1127, 1072, 1057, 1072, 1112, 1200, 1308, 1458, 1652, 1925, 2373, 2489, 1981, 1701, 1509, 1360, 1239, 1163, 1107, 1094, 1115, 1161, 1244, 1351, 1503, 1711, 1986, 2467, 2634, 2083, 1759, 1576, 1415, 1291, 1216, 1159, 1146, 1161, 1211, 1291, 1415, 1564, 1771, 2077, 2609, 2796, 2201, 1851, 1642, 1487, 1363, 1285, 1229, 1215, 1224, 1275, 1360, 1479, 1639, 1860, 2207, 2787, 2991, 2380, 1953, 1733, 1564, 1429, 1351, 1300, 1281, 1300, 1349, 1437, 1564, 1722, 1958, 2360, 3002, 3178, 2544, 2072, 1822, 1639, 1506, 1417, 1354, 1345, 1363, 1427, 1509, 1636, 1826, 2093, 2520, 3215]
| },
| "lsc_samples_blue": {
| "uCoeff": [3141, 2447, 1987, 1722, 1592, 1453, 1392, 1351, 1321, 1336, 1384, 1471, 1592, 1788, 2039, 2447, 3141, 2870, 2257, 1905, 1684, 1519, 1417, 1336, 1299, 1277, 1284, 1336, 1409, 1529, 1709, 1921, 2301, 2870, 2735, 2172, 1830, 1626, 1471, 1359, 1291, 1243, 1223, 1243, 1291, 1367, 1490, 1660, 1860, 2214, 2735, 2583, 2075, 1774, 1571, 1435, 1321, 1243, 1198, 1180, 1198, 1256, 1328, 1453, 1603, 1816, 2113, 2612, 2447, 2057, 1735, 1550, 1392, 1291, 1217, 1168, 1151, 1162, 1223, 1299, 1417, 1581, 1774, 2094, 2554, 2396, 1987, 1697, 1519, 1367, 1263, 1186, 1134, 1107, 1128, 1168, 1277, 1400, 1560, 1748, 2021, 2447, 2324, 1905, 1660, 1490, 1336, 1230, 1151, 1096, 1071, 1102, 1134, 1230, 1351, 1509, 1709, 1970, 2372, 2257, 1890, 1637, 1444, 1313, 1198, 1112, 1076, 1047, 1066, 1118, 1211, 1306, 1481, 1660, 1937, 2372, 2193, 1830, 1614, 1435, 1291, 1174, 1096, 1052, 1024, 1042, 1091, 1180, 1299, 1453, 1626, 1875, 2301, 2193, 1816, 1592, 1426, 1284, 1162, 1086, 1024, 1015, 1038, 1091, 1168, 1291, 1426, 1626, 1875, 2301, 2214, 1845, 1603, 1417, 1284, 1162, 1096, 1038, 1015, 1033, 1076, 1180, 1284, 1435, 1637, 1890, 2257, 2279, 1875, 1637, 1435, 1313, 1192, 1128, 1071, 1047, 1066, 1107, 1192, 1313, 1462, 1672, 1921, 2324, 2324, 1937, 1684, 1490, 1336, 1236, 1156, 1091, 1076, 1096, 1162, 1236, 1375, 1500, 1722, 1987, 2421, 2499, 2039, 1722, 1550, 1400, 1277, 1204, 1134, 1118, 1151, 1192, 1277, 1426, 1571, 1788, 2094, 2554, 2641, 2152, 1802, 1626, 1471, 1336, 1256, 1204, 1192, 1180, 1243, 1351, 1481, 1649, 1860, 2172, 2672, 2801, 2279, 1905, 1684, 1509, 1409, 1321, 1277, 1250, 1277, 1336, 1435, 1571, 1722, 1953, 2324, 2942, 3059, 2421, 2039, 1774, 1603, 1471, 1384, 1306, 1299, 1336, 1417, 1519, 1637, 1816, 2057, 2473, 3059]
| }
| }, {
| "name": "2688x1520_A_70",
| "resolution": "2688x1520",
| "illumination": "A",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2442, 2000, 1709, 1541, 1421, 1328, 1275, 1231, 1228, 1242, 1269, 1322, 1407, 1524, 1687, 2008, 2429, 2343, 1926, 1653, 1490, 1389, 1292, 1244, 1199, 1189, 1197, 1234, 1290, 1366, 1486, 1643, 1911, 2321, 2239, 1853, 1612, 1477, 1359, 1267, 1210, 1185, 1158, 1169, 1212, 1264, 1350, 1458, 1612, 1846, 2239, 2193, 1818, 1596, 1452, 1338, 1259, 1188, 1155, 1142, 1152, 1186, 1249, 1330, 1445, 1578, 1799, 2157, 2117, 1773, 1571, 1428, 1320, 1230, 1177, 1137, 1121, 1129, 1165, 1228, 1315, 1425, 1567, 1761, 2117, 2055, 1741, 1546, 1413, 1296, 1216, 1151, 1107, 1091, 1103, 1142, 1204, 1291, 1400, 1550, 1736, 2047, 2029, 1705, 1516, 1382, 1274, 1193, 1125, 1086, 1064, 1081, 1116, 1184, 1271, 1378, 1524, 1715, 2006, 1995, 1684, 1498, 1365, 1256, 1169, 1100, 1058, 1044, 1054, 1096, 1161, 1251, 1356, 1487, 1674, 1966, 1963, 1658, 1471, 1346, 1227, 1149, 1082, 1035, 1024, 1040, 1076, 1141, 1227, 1338, 1471, 1644, 1935, 1924, 1640, 1461, 1329, 1224, 1137, 1075, 1027, 1010, 1025, 1069, 1129, 1217, 1326, 1465, 1631, 1924, 1955, 1636, 1460, 1330, 1220, 1138, 1076, 1024, 1012, 1027, 1065, 1132, 1222, 1325, 1449, 1626, 1933, 1964, 1649, 1472, 1341, 1240, 1154, 1089, 1049, 1034, 1044, 1074, 1146, 1227, 1335, 1468, 1663, 1942, 2034, 1691, 1493, 1354, 1258, 1178, 1116, 1066, 1054, 1068, 1103, 1164, 1253, 1357, 1497, 1691, 1995, 2078, 1736, 1531, 1394, 1285, 1205, 1139, 1103, 1082, 1097, 1131, 1193, 1282, 1384, 1536, 1730, 2095, 2180, 1796, 1567, 1429, 1323, 1241, 1175, 1135, 1125, 1121, 1169, 1236, 1314, 1426, 1571, 1802, 2171, 2267, 1863, 1614, 1474, 1363, 1270, 1211, 1176, 1158, 1174, 1214, 1276, 1360, 1474, 1619, 1856, 2267, 2332, 1938, 1676, 1499, 1400, 1295, 1237, 1199, 1177, 1204, 1240, 1316, 1393, 1499, 1660, 1946, 2332]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2291, 1887, 1617, 1472, 1369, 1288, 1239, 1212, 1208, 1200, 1242, 1298, 1372, 1465, 1613, 1870, 2263, 2179, 1818, 1574, 1439, 1347, 1265, 1218, 1183, 1172, 1177, 1210, 1267, 1339, 1436, 1574, 1802, 2163, 2110, 1764, 1552, 1427, 1329, 1248, 1192, 1158, 1146, 1156, 1188, 1244, 1310, 1421, 1548, 1754, 2095, 2039, 1736, 1525, 1402, 1309, 1232, 1172, 1142, 1130, 1142, 1178, 1228, 1307, 1411, 1535, 1713, 2032, 2024, 1691, 1508, 1391, 1294, 1223, 1158, 1131, 1114, 1123, 1155, 1215, 1290, 1388, 1515, 1691, 2005, 1965, 1680, 1496, 1380, 1278, 1195, 1143, 1100, 1087, 1097, 1141, 1197, 1274, 1378, 1499, 1672, 1941, 1925, 1647, 1482, 1353, 1258, 1179, 1121, 1080, 1068, 1071, 1114, 1172, 1258, 1360, 1488, 1655, 1920, 1887, 1625, 1463, 1336, 1235, 1161, 1101, 1058, 1043, 1059, 1094, 1159, 1229, 1334, 1460, 1618, 1870, 1863, 1606, 1434, 1315, 1221, 1140, 1083, 1042, 1024, 1040, 1072, 1136, 1219, 1315, 1434, 1598, 1853, 1854, 1588, 1426, 1305, 1213, 1133, 1075, 1030, 1018, 1028, 1067, 1131, 1206, 1303, 1423, 1595, 1849, 1843, 1579, 1423, 1307, 1210, 1128, 1075, 1035, 1019, 1029, 1072, 1128, 1212, 1307, 1420, 1593, 1854, 1895, 1600, 1433, 1325, 1226, 1154, 1092, 1053, 1039, 1056, 1080, 1139, 1224, 1316, 1441, 1600, 1867, 1931, 1637, 1458, 1345, 1249, 1169, 1112, 1075, 1058, 1077, 1112, 1165, 1249, 1340, 1467, 1637, 1931, 2000, 1682, 1502, 1373, 1279, 1203, 1144, 1107, 1092, 1109, 1144, 1199, 1282, 1373, 1499, 1682, 2019, 2081, 1754, 1537, 1421, 1315, 1242, 1183, 1149, 1132, 1137, 1173, 1231, 1312, 1415, 1541, 1740, 2067, 2195, 1818, 1586, 1448, 1352, 1281, 1220, 1179, 1166, 1188, 1218, 1272, 1352, 1451, 1586, 1818, 2171, 2237, 1876, 1617, 1462, 1374, 1295, 1242, 1206, 1200, 1214, 1248, 1295, 1374, 1472, 1626, 1864, 2219]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2260, 1876, 1640, 1478, 1369, 1294, 1236, 1205, 1207, 1213, 1243, 1287, 1372, 1475, 1615, 1876, 2296, 2185, 1813, 1573, 1445, 1348, 1271, 1211, 1190, 1173, 1181, 1215, 1268, 1342, 1439, 1577, 1803, 2185, 2116, 1770, 1544, 1421, 1321, 1249, 1196, 1160, 1148, 1162, 1192, 1245, 1321, 1427, 1554, 1760, 2094, 2045, 1724, 1525, 1406, 1313, 1236, 1183, 1144, 1136, 1141, 1176, 1234, 1310, 1411, 1542, 1728, 2045, 2004, 1701, 1514, 1402, 1291, 1219, 1162, 1128, 1114, 1127, 1162, 1211, 1291, 1394, 1521, 1697, 2004, 1971, 1670, 1506, 1379, 1282, 1197, 1147, 1107, 1088, 1101, 1142, 1199, 1278, 1379, 1515, 1686, 1965, 1920, 1646, 1492, 1356, 1262, 1181, 1123, 1082, 1063, 1080, 1117, 1183, 1262, 1359, 1492, 1654, 1920, 1882, 1624, 1455, 1328, 1245, 1156, 1103, 1059, 1043, 1060, 1098, 1160, 1241, 1337, 1461, 1628, 1893, 1864, 1601, 1434, 1321, 1225, 1142, 1084, 1035, 1024, 1043, 1077, 1143, 1219, 1314, 1440, 1605, 1854, 1855, 1590, 1423, 1309, 1211, 1138, 1073, 1030, 1016, 1030, 1073, 1135, 1208, 1309, 1432, 1587, 1850, 1850, 1592, 1426, 1311, 1216, 1135, 1078, 1035, 1015, 1027, 1065, 1133, 1214, 1306, 1424, 1596, 1860, 1885, 1611, 1439, 1327, 1234, 1144, 1094, 1051, 1040, 1051, 1079, 1146, 1220, 1320, 1442, 1607, 1879, 1943, 1631, 1464, 1348, 1253, 1167, 1114, 1072, 1062, 1079, 1112, 1173, 1244, 1343, 1473, 1635, 1926, 2019, 1684, 1488, 1384, 1281, 1197, 1146, 1103, 1094, 1105, 1141, 1197, 1281, 1373, 1498, 1680, 1999, 2094, 1741, 1533, 1413, 1318, 1237, 1186, 1146, 1136, 1141, 1177, 1235, 1311, 1410, 1540, 1746, 2087, 2177, 1834, 1577, 1454, 1353, 1266, 1217, 1183, 1170, 1183, 1215, 1273, 1353, 1445, 1581, 1818, 2185, 2224, 1899, 1623, 1484, 1378, 1296, 1241, 1197, 1193, 1205, 1249, 1299, 1375, 1488, 1640, 1882, 2251]
| },
| "lsc_samples_blue": {
| "uCoeff": [2199, 1827, 1557, 1403, 1338, 1251, 1219, 1195, 1172, 1182, 1211, 1266, 1338, 1457, 1598, 1827, 2199, 2088, 1739, 1538, 1413, 1314, 1255, 1203, 1182, 1166, 1168, 1203, 1248, 1323, 1434, 1551, 1774, 2088, 2048, 1719, 1516, 1398, 1305, 1234, 1192, 1159, 1144, 1159, 1192, 1241, 1321, 1428, 1540, 1752, 2048, 1979, 1679, 1501, 1379, 1299, 1224, 1171, 1140, 1127, 1140, 1184, 1231, 1315, 1408, 1536, 1709, 2002, 1910, 1693, 1493, 1385, 1282, 1217, 1166, 1130, 1117, 1125, 1172, 1224, 1305, 1413, 1527, 1724, 1994, 1897, 1658, 1480, 1375, 1276, 1206, 1151, 1112, 1089, 1106, 1134, 1219, 1306, 1412, 1525, 1687, 1937, 1859, 1605, 1462, 1362, 1258, 1185, 1127, 1085, 1063, 1090, 1111, 1185, 1273, 1379, 1505, 1660, 1897, 1816, 1602, 1450, 1327, 1244, 1161, 1096, 1071, 1045, 1061, 1101, 1173, 1237, 1361, 1471, 1642, 1908, 1768, 1554, 1433, 1321, 1225, 1140, 1082, 1048, 1024, 1039, 1077, 1146, 1232, 1338, 1443, 1592, 1855, 1764, 1539, 1410, 1311, 1216, 1126, 1070, 1019, 1013, 1032, 1075, 1132, 1223, 1311, 1440, 1589, 1852, 1770, 1554, 1412, 1295, 1209, 1120, 1074, 1027, 1008, 1022, 1054, 1137, 1209, 1311, 1442, 1592, 1805, 1804, 1564, 1428, 1299, 1225, 1138, 1095, 1050, 1030, 1045, 1074, 1138, 1225, 1324, 1459, 1603, 1840, 1815, 1595, 1450, 1331, 1230, 1165, 1108, 1056, 1045, 1061, 1114, 1165, 1266, 1340, 1482, 1635, 1890, 1916, 1649, 1457, 1361, 1268, 1184, 1135, 1079, 1067, 1095, 1123, 1184, 1291, 1379, 1513, 1694, 1958, 1978, 1703, 1492, 1398, 1305, 1213, 1160, 1123, 1115, 1100, 1147, 1227, 1313, 1418, 1540, 1719, 2001, 2038, 1756, 1538, 1413, 1306, 1248, 1190, 1162, 1141, 1162, 1203, 1271, 1359, 1444, 1577, 1791, 2141, 2141, 1808, 1598, 1446, 1347, 1266, 1211, 1155, 1152, 1182, 1241, 1308, 1376, 1479, 1612, 1847, 2141]
| }
| }, {
| "name": "2688x1520_D50_100",
| "resolution": "2688x1520",
| "illumination": "D50",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [2554, 2063, 1760, 1586, 1496, 1387, 1342, 1330, 1317, 1342, 1396, 1480, 1649, 1805, 2084, 2538, 3298, 2421, 1939, 1669, 1512, 1387, 1330, 1273, 1250, 1239, 1265, 1317, 1420, 1529, 1703, 1939, 2366, 3057, 2240, 1829, 1592, 1454, 1338, 1265, 1221, 1200, 1186, 1210, 1258, 1351, 1470, 1630, 1853, 2216, 2811, 2126, 1752, 1551, 1415, 1313, 1239, 1186, 1154, 1147, 1167, 1214, 1301, 1405, 1563, 1790, 2126, 2685, 2014, 1716, 1507, 1378, 1293, 1207, 1163, 1123, 1111, 1132, 1170, 1261, 1378, 1534, 1745, 2073, 2585, 1966, 1682, 1480, 1364, 1273, 1190, 1129, 1094, 1077, 1099, 1154, 1228, 1351, 1512, 1716, 2004, 2493, 1921, 1636, 1475, 1347, 1250, 1183, 1111, 1068, 1060, 1077, 1123, 1203, 1325, 1470, 1682, 1966, 2421, 1887, 1611, 1454, 1330, 1239, 1157, 1091, 1044, 1034, 1050, 1102, 1193, 1305, 1454, 1649, 1930, 2393, 1837, 1599, 1434, 1321, 1228, 1141, 1074, 1027, 1024, 1039, 1082, 1167, 1281, 1429, 1623, 1912, 2353, 1805, 1586, 1429, 1317, 1232, 1141, 1068, 1022, 1009, 1024, 1079, 1144, 1269, 1410, 1617, 1878, 2314, 1829, 1586, 1434, 1325, 1228, 1144, 1068, 1022, 1007, 1027, 1071, 1147, 1265, 1415, 1611, 1870, 2327, 1837, 1605, 1464, 1355, 1246, 1160, 1094, 1047, 1032, 1047, 1096, 1170, 1285, 1434, 1623, 1895, 2366, 1895, 1655, 1507, 1382, 1285, 1193, 1123, 1071, 1063, 1082, 1123, 1207, 1313, 1464, 1669, 1966, 2478, 1976, 1716, 1580, 1439, 1325, 1239, 1176, 1132, 1117, 1132, 1173, 1254, 1373, 1529, 1745, 2063, 2538, 2115, 1821, 1662, 1523, 1396, 1293, 1235, 1186, 1170, 1190, 1243, 1321, 1449, 1605, 1829, 2159, 2737, 2252, 1957, 1752, 1617, 1490, 1382, 1317, 1265, 1250, 1261, 1305, 1396, 1517, 1703, 1939, 2327, 2970, 2435, 2126, 1853, 1703, 1574, 1470, 1387, 1347, 1325, 1342, 1405, 1496, 1611, 1805, 2043, 2508, 3247]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2770, 2189, 1851, 1648, 1522, 1429, 1361, 1336, 1323, 1346, 1393, 1460, 1593, 1761, 2012, 2475, 3119, 2563, 2052, 1748, 1562, 1431, 1348, 1295, 1263, 1248, 1272, 1321, 1398, 1519, 1663, 1900, 2272, 2893, 2409, 1941, 1663, 1503, 1382, 1300, 1237, 1206, 1190, 1208, 1254, 1333, 1452, 1607, 1805, 2163, 2708, 2279, 1870, 1618, 1460, 1346, 1261, 1196, 1159, 1146, 1171, 1212, 1295, 1403, 1552, 1752, 2058, 2563, 2156, 1814, 1589, 1431, 1321, 1231, 1172, 1130, 1114, 1139, 1182, 1256, 1374, 1522, 1727, 1995, 2467, 2106, 1782, 1562, 1417, 1302, 1210, 1148, 1106, 1089, 1102, 1156, 1233, 1348, 1491, 1694, 1962, 2417, 2081, 1752, 1538, 1398, 1281, 1192, 1127, 1076, 1066, 1079, 1134, 1208, 1323, 1469, 1667, 1941, 2377, 2052, 1714, 1522, 1382, 1272, 1178, 1106, 1060, 1045, 1062, 1114, 1194, 1295, 1452, 1644, 1900, 2308, 1995, 1690, 1503, 1364, 1256, 1163, 1086, 1042, 1024, 1048, 1091, 1172, 1279, 1426, 1622, 1865, 2251, 1989, 1674, 1494, 1361, 1246, 1157, 1087, 1034, 1021, 1033, 1079, 1159, 1270, 1412, 1593, 1846, 2258, 1989, 1674, 1497, 1366, 1250, 1159, 1083, 1039, 1021, 1039, 1084, 1157, 1272, 1406, 1593, 1861, 2265, 2017, 1706, 1509, 1387, 1270, 1172, 1104, 1056, 1040, 1056, 1104, 1180, 1290, 1423, 1604, 1870, 2316, 2081, 1765, 1562, 1423, 1300, 1210, 1139, 1096, 1081, 1096, 1139, 1210, 1326, 1457, 1651, 1915, 2377, 2209, 1846, 1629, 1475, 1364, 1267, 1196, 1146, 1134, 1139, 1190, 1265, 1377, 1522, 1718, 2012, 2527, 2316, 1946, 1718, 1562, 1429, 1323, 1254, 1214, 1196, 1212, 1256, 1333, 1440, 1604, 1796, 2124, 2688, 2510, 2100, 1828, 1648, 1509, 1406, 1333, 1286, 1265, 1283, 1331, 1414, 1529, 1686, 1905, 2265, 2905, 2688, 2272, 1941, 1739, 1589, 1488, 1414, 1356, 1348, 1364, 1412, 1494, 1625, 1787, 2034, 2467, 3132]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2748, 2180, 1848, 1629, 1519, 1414, 1350, 1323, 1318, 1332, 1395, 1472, 1586, 1779, 1997, 2431, 3146, 2534, 2037, 1732, 1548, 1425, 1342, 1280, 1251, 1242, 1260, 1301, 1392, 1503, 1663, 1877, 2255, 2881, 2367, 1922, 1652, 1490, 1371, 1292, 1227, 1193, 1181, 1207, 1253, 1323, 1442, 1593, 1801, 2128, 2696, 2241, 1848, 1597, 1451, 1332, 1258, 1183, 1149, 1136, 1160, 1215, 1282, 1392, 1542, 1753, 2049, 2561, 2166, 1784, 1562, 1425, 1313, 1221, 1160, 1118, 1110, 1127, 1166, 1258, 1358, 1506, 1711, 1997, 2439, 2115, 1766, 1552, 1400, 1292, 1207, 1136, 1101, 1084, 1094, 1149, 1230, 1342, 1487, 1691, 1938, 2407, 2072, 1736, 1525, 1387, 1278, 1185, 1118, 1067, 1051, 1075, 1127, 1203, 1313, 1460, 1652, 1927, 2336, 2031, 1703, 1516, 1376, 1258, 1171, 1098, 1046, 1036, 1051, 1106, 1187, 1292, 1434, 1629, 1887, 2306, 1964, 1667, 1494, 1353, 1247, 1152, 1080, 1028, 1024, 1037, 1088, 1167, 1276, 1417, 1604, 1858, 2262, 1959, 1660, 1481, 1353, 1232, 1145, 1068, 1020, 1014, 1027, 1076, 1152, 1267, 1406, 1590, 1834, 2262, 1970, 1671, 1475, 1355, 1238, 1147, 1073, 1027, 1014, 1028, 1075, 1151, 1267, 1400, 1583, 1843, 2277, 1992, 1695, 1509, 1371, 1260, 1164, 1091, 1051, 1034, 1051, 1094, 1175, 1282, 1417, 1597, 1867, 2277, 2061, 1732, 1545, 1414, 1287, 1199, 1124, 1081, 1070, 1081, 1127, 1209, 1313, 1451, 1641, 1917, 2375, 2180, 1815, 1615, 1466, 1342, 1251, 1179, 1136, 1120, 1134, 1179, 1255, 1368, 1506, 1699, 2009, 2490, 2313, 1927, 1703, 1545, 1414, 1318, 1245, 1205, 1185, 1201, 1245, 1328, 1428, 1586, 1797, 2128, 2666, 2456, 2084, 1806, 1629, 1500, 1389, 1325, 1273, 1258, 1278, 1320, 1400, 1506, 1679, 1897, 2269, 2869, 2647, 2248, 1922, 1723, 1586, 1472, 1389, 1348, 1337, 1350, 1403, 1472, 1600, 1766, 2003, 2448, 3119]
| },
| "lsc_samples_blue": {
| "uCoeff": [2354, 1909, 1637, 1486, 1421, 1333, 1270, 1275, 1275, 1301, 1350, 1453, 1566, 1716, 1943, 2389, 2987, 2194, 1792, 1558, 1427, 1322, 1265, 1236, 1226, 1231, 1231, 1290, 1355, 1486, 1646, 1865, 2209, 2781, 2029, 1698, 1493, 1373, 1285, 1231, 1190, 1173, 1173, 1195, 1236, 1317, 1434, 1589, 1782, 2095, 2601, 1920, 1654, 1466, 1344, 1265, 1208, 1169, 1132, 1132, 1156, 1208, 1280, 1384, 1522, 1734, 2003, 2444, 1843, 1605, 1440, 1338, 1250, 1195, 1144, 1116, 1105, 1124, 1173, 1250, 1367, 1507, 1698, 1955, 2444, 1822, 1597, 1434, 1327, 1241, 1177, 1128, 1090, 1086, 1101, 1144, 1231, 1333, 1486, 1671, 1931, 2354, 1772, 1566, 1427, 1317, 1236, 1164, 1112, 1068, 1061, 1086, 1128, 1213, 1311, 1460, 1646, 1886, 2304, 1772, 1551, 1409, 1301, 1231, 1148, 1101, 1058, 1041, 1065, 1112, 1190, 1290, 1440, 1621, 1875, 2256, 1707, 1507, 1390, 1306, 1222, 1140, 1072, 1031, 1024, 1044, 1090, 1164, 1285, 1427, 1597, 1843, 2240, 1680, 1493, 1373, 1290, 1213, 1132, 1068, 1024, 1011, 1034, 1075, 1156, 1260, 1409, 1589, 1833, 2194, 1689, 1493, 1378, 1301, 1213, 1132, 1068, 1031, 1021, 1027, 1079, 1156, 1255, 1390, 1573, 1802, 2179, 1716, 1529, 1415, 1322, 1241, 1156, 1086, 1041, 1034, 1047, 1090, 1173, 1275, 1409, 1589, 1833, 2240, 1763, 1558, 1453, 1350, 1255, 1190, 1120, 1082, 1072, 1079, 1124, 1204, 1311, 1453, 1629, 1875, 2288, 1833, 1629, 1514, 1415, 1322, 1241, 1169, 1136, 1120, 1132, 1177, 1241, 1361, 1507, 1680, 1979, 2425, 1955, 1725, 1605, 1486, 1378, 1295, 1236, 1199, 1182, 1190, 1241, 1311, 1434, 1581, 1782, 2095, 2580, 2042, 1854, 1698, 1573, 1453, 1361, 1311, 1270, 1245, 1265, 1317, 1390, 1507, 1663, 1886, 2225, 2829, 2225, 2003, 1812, 1671, 1543, 1440, 1384, 1350, 1317, 1355, 1390, 1460, 1605, 1763, 1991, 2425, 3015]
| }
| }, {
| "name": "2688x1520_D50_70",
| "resolution": "2688x1520",
| "illumination": "D50",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [1788, 1541, 1379, 1292, 1257, 1194, 1175, 1176, 1169, 1187, 1222, 1274, 1386, 1471, 1633, 1895, 2308, 1762, 1494, 1347, 1268, 1200, 1178, 1147, 1138, 1131, 1151, 1186, 1258, 1322, 1428, 1565, 1823, 2225, 1677, 1447, 1319, 1251, 1186, 1149, 1127, 1119, 1110, 1129, 1161, 1226, 1303, 1402, 1535, 1753, 2105, 1629, 1417, 1312, 1243, 1189, 1148, 1118, 1098, 1096, 1110, 1144, 1205, 1272, 1373, 1514, 1719, 2058, 1572, 1413, 1297, 1231, 1190, 1137, 1115, 1087, 1079, 1095, 1121, 1189, 1269, 1371, 1502, 1707, 2018, 1557, 1404, 1291, 1235, 1188, 1136, 1096, 1072, 1059, 1078, 1120, 1173, 1260, 1369, 1497, 1672, 1974, 1536, 1379, 1299, 1231, 1177, 1140, 1088, 1057, 1053, 1065, 1100, 1160, 1248, 1343, 1481, 1657, 1936, 1518, 1365, 1288, 1222, 1173, 1121, 1074, 1039, 1032, 1044, 1086, 1156, 1235, 1336, 1461, 1636, 1925, 1481, 1357, 1273, 1216, 1165, 1108, 1060, 1023, 1024, 1036, 1068, 1133, 1215, 1316, 1441, 1624, 1897, 1452, 1345, 1266, 1210, 1166, 1106, 1053, 1016, 1007, 1019, 1063, 1109, 1202, 1296, 1432, 1592, 1862, 1463, 1337, 1263, 1211, 1157, 1103, 1047, 1011, 999, 1016, 1049, 1106, 1191, 1293, 1419, 1575, 1861, 1454, 1339, 1278, 1227, 1163, 1108, 1061, 1026, 1015, 1026, 1064, 1117, 1199, 1298, 1416, 1581, 1874, 1479, 1363, 1297, 1235, 1183, 1125, 1076, 1037, 1032, 1047, 1076, 1137, 1209, 1308, 1436, 1619, 1935, 1514, 1388, 1337, 1264, 1200, 1148, 1108, 1077, 1066, 1077, 1105, 1162, 1243, 1343, 1476, 1669, 1945, 1584, 1441, 1376, 1310, 1238, 1173, 1140, 1106, 1094, 1109, 1147, 1199, 1285, 1380, 1515, 1708, 2050, 1639, 1508, 1415, 1356, 1289, 1224, 1186, 1151, 1141, 1148, 1175, 1237, 1313, 1428, 1565, 1793, 2161, 1704, 1587, 1452, 1387, 1323, 1265, 1214, 1191, 1176, 1187, 1231, 1288, 1354, 1471, 1601, 1873, 2273]
| },
| "lsc_samples_greenR": {
| "uCoeff": [1939, 1635, 1450, 1342, 1279, 1230, 1192, 1181, 1174, 1190, 1219, 1257, 1339, 1434, 1576, 1848, 2183, 1865, 1581, 1411, 1310, 1238, 1194, 1166, 1149, 1139, 1157, 1190, 1238, 1314, 1395, 1534, 1751, 2105, 1804, 1536, 1377, 1293, 1225, 1180, 1142, 1124, 1113, 1126, 1158, 1210, 1287, 1382, 1495, 1711, 2028, 1747, 1513, 1369, 1283, 1218, 1168, 1127, 1103, 1095, 1114, 1142, 1200, 1271, 1363, 1482, 1664, 1964, 1683, 1493, 1368, 1279, 1216, 1160, 1123, 1094, 1082, 1102, 1133, 1184, 1265, 1360, 1486, 1642, 1926, 1667, 1487, 1363, 1283, 1215, 1155, 1114, 1084, 1071, 1081, 1122, 1177, 1258, 1350, 1478, 1637, 1914, 1665, 1476, 1355, 1278, 1206, 1149, 1104, 1065, 1059, 1068, 1111, 1164, 1246, 1343, 1468, 1636, 1901, 1651, 1453, 1348, 1270, 1204, 1142, 1089, 1055, 1043, 1056, 1098, 1157, 1226, 1334, 1456, 1610, 1857, 1608, 1435, 1334, 1256, 1192, 1129, 1072, 1038, 1024, 1044, 1077, 1138, 1213, 1313, 1439, 1584, 1814, 1600, 1419, 1323, 1251, 1179, 1122, 1071, 1029, 1019, 1028, 1063, 1123, 1202, 1297, 1411, 1565, 1816, 1591, 1411, 1318, 1248, 1177, 1117, 1061, 1028, 1014, 1028, 1062, 1115, 1198, 1285, 1403, 1568, 1811, 1597, 1424, 1317, 1256, 1185, 1119, 1072, 1035, 1023, 1035, 1072, 1127, 1204, 1288, 1399, 1561, 1834, 1625, 1453, 1344, 1271, 1197, 1140, 1091, 1060, 1049, 1060, 1091, 1140, 1221, 1302, 1422, 1577, 1856, 1693, 1493, 1378, 1296, 1234, 1175, 1127, 1091, 1082, 1084, 1121, 1173, 1246, 1337, 1454, 1627, 1937, 1734, 1540, 1423, 1343, 1267, 1201, 1158, 1132, 1119, 1130, 1160, 1210, 1277, 1379, 1487, 1681, 2013, 1826, 1618, 1476, 1382, 1306, 1246, 1201, 1170, 1155, 1168, 1199, 1253, 1322, 1414, 1538, 1745, 2114, 1881, 1696, 1521, 1417, 1336, 1281, 1238, 1199, 1196, 1206, 1236, 1286, 1366, 1456, 1594, 1842, 2193]
| },
| "lsc_samples_greenB": {
| "uCoeff": [1924, 1628, 1448, 1327, 1277, 1217, 1182, 1170, 1169, 1179, 1221, 1267, 1333, 1449, 1565, 1815, 2202, 1844, 1570, 1398, 1299, 1233, 1189, 1153, 1138, 1134, 1146, 1172, 1233, 1300, 1395, 1515, 1738, 2096, 1772, 1521, 1368, 1282, 1215, 1173, 1133, 1112, 1105, 1125, 1157, 1201, 1279, 1370, 1492, 1684, 2019, 1717, 1495, 1351, 1275, 1206, 1165, 1115, 1093, 1085, 1104, 1145, 1188, 1260, 1354, 1483, 1657, 1963, 1691, 1468, 1345, 1273, 1209, 1151, 1111, 1082, 1077, 1091, 1117, 1185, 1250, 1346, 1473, 1644, 1904, 1675, 1474, 1354, 1268, 1205, 1152, 1103, 1079, 1067, 1073, 1115, 1174, 1252, 1347, 1475, 1617, 1905, 1657, 1463, 1343, 1267, 1203, 1142, 1096, 1055, 1043, 1063, 1104, 1159, 1236, 1334, 1455, 1624, 1868, 1634, 1443, 1343, 1265, 1191, 1135, 1081, 1041, 1034, 1046, 1090, 1150, 1223, 1318, 1443, 1599, 1855, 1584, 1416, 1325, 1245, 1183, 1119, 1065, 1025, 1024, 1034, 1074, 1133, 1210, 1305, 1423, 1577, 1824, 1576, 1407, 1312, 1243, 1166, 1110, 1052, 1014, 1012, 1022, 1060, 1117, 1199, 1292, 1408, 1554, 1820, 1575, 1408, 1299, 1238, 1166, 1105, 1051, 1016, 1006, 1018, 1053, 1109, 1193, 1280, 1394, 1553, 1821, 1577, 1414, 1317, 1241, 1175, 1111, 1059, 1030, 1017, 1030, 1062, 1122, 1196, 1283, 1393, 1558, 1803, 1609, 1426, 1330, 1263, 1185, 1130, 1077, 1046, 1039, 1046, 1080, 1139, 1209, 1297, 1412, 1578, 1854, 1670, 1468, 1366, 1288, 1215, 1159, 1111, 1081, 1069, 1079, 1111, 1163, 1239, 1323, 1437, 1624, 1908, 1732, 1525, 1410, 1329, 1254, 1196, 1149, 1123, 1108, 1119, 1149, 1205, 1266, 1364, 1488, 1684, 1997, 1787, 1606, 1458, 1367, 1297, 1231, 1194, 1159, 1148, 1163, 1189, 1240, 1303, 1408, 1531, 1749, 2088, 1853, 1679, 1506, 1404, 1333, 1267, 1216, 1192, 1187, 1194, 1228, 1267, 1345, 1439, 1569, 1828, 2183]
| },
| "lsc_samples_blue": {
| "uCoeff": [1648, 1425, 1283, 1211, 1194, 1147, 1112, 1128, 1131, 1150, 1182, 1251, 1316, 1398, 1522, 1784, 2091, 1597, 1381, 1258, 1197, 1144, 1120, 1113, 1116, 1124, 1120, 1162, 1200, 1286, 1380, 1505, 1703, 2023, 1519, 1343, 1237, 1181, 1139, 1118, 1099, 1094, 1097, 1114, 1141, 1195, 1271, 1367, 1476, 1657, 1948, 1471, 1338, 1240, 1180, 1145, 1120, 1101, 1077, 1081, 1100, 1138, 1186, 1253, 1336, 1467, 1620, 1873, 1439, 1321, 1240, 1196, 1151, 1126, 1096, 1080, 1072, 1088, 1124, 1178, 1258, 1347, 1461, 1609, 1908, 1443, 1333, 1251, 1202, 1157, 1124, 1095, 1068, 1068, 1079, 1110, 1175, 1243, 1346, 1458, 1612, 1864, 1417, 1319, 1257, 1203, 1164, 1122, 1090, 1057, 1053, 1075, 1105, 1169, 1235, 1334, 1449, 1589, 1843, 1426, 1314, 1248, 1195, 1166, 1112, 1085, 1052, 1039, 1059, 1096, 1153, 1222, 1323, 1436, 1589, 1815, 1376, 1280, 1234, 1202, 1159, 1107, 1058, 1027, 1024, 1040, 1076, 1131, 1219, 1314, 1417, 1565, 1806, 1352, 1266, 1216, 1186, 1148, 1097, 1052, 1019, 1009, 1029, 1059, 1120, 1193, 1295, 1407, 1553, 1765, 1351, 1258, 1214, 1189, 1142, 1091, 1046, 1020, 1013, 1016, 1057, 1114, 1182, 1271, 1386, 1518, 1743, 1358, 1276, 1234, 1197, 1157, 1104, 1054, 1020, 1017, 1027, 1058, 1120, 1189, 1275, 1386, 1529, 1774, 1376, 1283, 1251, 1206, 1156, 1122, 1073, 1047, 1040, 1044, 1077, 1134, 1207, 1298, 1402, 1544, 1786, 1405, 1318, 1281, 1243, 1197, 1150, 1101, 1081, 1069, 1077, 1109, 1150, 1232, 1324, 1421, 1600, 1859, 1464, 1365, 1329, 1278, 1222, 1176, 1141, 1118, 1105, 1110, 1145, 1190, 1271, 1360, 1476, 1657, 1932, 1486, 1429, 1371, 1320, 1257, 1206, 1181, 1155, 1137, 1151, 1186, 1232, 1304, 1395, 1523, 1714, 2059, 1557, 1496, 1420, 1362, 1297, 1240, 1212, 1194, 1168, 1199, 1217, 1256, 1349, 1436, 1560, 1811, 2110]
| }
| }, {
| "name": "2688x1520_D65_100",
| "resolution": "2688x1520",
| "illumination": "D65",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3452, 2627, 2158, 1878, 1686, 1562, 1456, 1394, 1378, 1394, 1438, 1530, 1655, 1869, 2132, 2608, 3388, 3125, 2466, 2014, 1768, 1590, 1468, 1373, 1323, 1295, 1313, 1368, 1450, 1549, 1751, 1992, 2417, 3125, 2923, 2294, 1898, 1678, 1510, 1389, 1309, 1263, 1237, 1246, 1299, 1368, 1492, 1678, 1888, 2266, 2877, 2746, 2171, 1831, 1618, 1444, 1333, 1241, 1200, 1185, 1200, 1246, 1323, 1427, 1611, 1840, 2158, 2788, 2589, 2095, 1777, 1556, 1405, 1281, 1204, 1147, 1129, 1147, 1185, 1272, 1389, 1549, 1751, 2083, 2589, 2483, 2025, 1710, 1510, 1353, 1233, 1158, 1109, 1085, 1098, 1147, 1246, 1343, 1492, 1710, 2003, 2483, 2466, 1949, 1678, 1474, 1323, 1208, 1129, 1076, 1057, 1072, 1126, 1204, 1318, 1474, 1663, 1938, 2417, 2385, 1938, 1655, 1462, 1313, 1189, 1112, 1051, 1036, 1054, 1098, 1181, 1285, 1444, 1633, 1928, 2417, 2385, 1918, 1640, 1438, 1290, 1189, 1092, 1042, 1024, 1045, 1092, 1173, 1281, 1427, 1640, 1918, 2354, 2354, 1908, 1648, 1450, 1285, 1185, 1098, 1045, 1027, 1036, 1092, 1173, 1272, 1422, 1626, 1908, 2354, 2369, 1938, 1655, 1468, 1304, 1192, 1109, 1057, 1030, 1054, 1098, 1173, 1290, 1450, 1648, 1918, 2369, 2466, 1970, 1702, 1486, 1323, 1216, 1129, 1076, 1060, 1072, 1122, 1196, 1318, 1474, 1663, 1970, 2449, 2553, 2014, 1734, 1517, 1368, 1241, 1162, 1109, 1095, 1102, 1154, 1233, 1343, 1504, 1726, 2014, 2500, 2665, 2095, 1777, 1556, 1405, 1285, 1204, 1151, 1136, 1158, 1200, 1276, 1400, 1556, 1768, 2095, 2646, 2810, 2210, 1849, 1633, 1468, 1343, 1259, 1208, 1192, 1204, 1246, 1338, 1433, 1611, 1840, 2171, 2788, 2971, 2339, 1949, 1726, 1536, 1405, 1328, 1281, 1254, 1267, 1323, 1400, 1530, 1702, 1938, 2324, 2971, 3237, 2517, 2071, 1812, 1611, 1492, 1405, 1338, 1323, 1343, 1394, 1498, 1626, 1795, 2071, 2500, 3295]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3205, 2502, 2052, 1799, 1634, 1496, 1426, 1380, 1347, 1370, 1426, 1496, 1608, 1781, 2052, 2485, 3177, 2958, 2349, 1932, 1706, 1544, 1423, 1340, 1304, 1279, 1295, 1340, 1429, 1534, 1706, 1922, 2311, 2899, 2757, 2187, 1821, 1616, 1475, 1357, 1281, 1227, 1219, 1229, 1268, 1357, 1469, 1619, 1821, 2187, 2746, 2590, 2087, 1764, 1560, 1418, 1297, 1229, 1180, 1165, 1181, 1217, 1304, 1402, 1557, 1760, 2057, 2572, 2502, 2006, 1710, 1518, 1370, 1257, 1180, 1132, 1110, 1127, 1174, 1252, 1362, 1509, 1706, 1985, 2451, 2372, 1942, 1663, 1475, 1335, 1223, 1146, 1096, 1075, 1086, 1141, 1219, 1323, 1463, 1663, 1932, 2372, 2341, 1897, 1634, 1440, 1302, 1189, 1113, 1066, 1048, 1057, 1111, 1185, 1295, 1432, 1630, 1882, 2311, 2275, 1858, 1608, 1423, 1283, 1185, 1093, 1046, 1025, 1045, 1090, 1172, 1277, 1418, 1605, 1858, 2283, 2268, 1849, 1591, 1418, 1277, 1163, 1080, 1033, 1024, 1030, 1082, 1161, 1263, 1407, 1601, 1840, 2247, 2275, 1840, 1601, 1418, 1274, 1168, 1088, 1039, 1023, 1036, 1082, 1159, 1274, 1399, 1598, 1844, 2283, 2319, 1873, 1619, 1426, 1288, 1181, 1105, 1058, 1033, 1046, 1095, 1174, 1277, 1412, 1616, 1868, 2283, 2372, 1907, 1637, 1455, 1316, 1203, 1130, 1080, 1061, 1074, 1118, 1203, 1306, 1452, 1637, 1897, 2341, 2451, 1958, 1675, 1496, 1352, 1242, 1159, 1115, 1098, 1111, 1152, 1229, 1337, 1484, 1671, 1942, 2403, 2563, 2040, 1743, 1541, 1391, 1281, 1205, 1159, 1139, 1152, 1201, 1274, 1391, 1531, 1726, 2023, 2510, 2716, 2148, 1799, 1616, 1452, 1337, 1257, 1207, 1195, 1207, 1250, 1330, 1437, 1588, 1790, 2136, 2686, 2888, 2290, 1902, 1671, 1521, 1402, 1325, 1277, 1257, 1265, 1311, 1402, 1515, 1667, 1897, 2254, 2865, 3109, 2451, 2023, 1768, 1608, 1472, 1394, 1342, 1311, 1342, 1375, 1460, 1581, 1743, 2018, 2419, 3122]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3208, 2518, 2072, 1812, 1642, 1508, 1426, 1386, 1371, 1383, 1437, 1505, 1614, 1808, 2083, 2526, 3222, 2975, 2342, 1946, 1711, 1559, 1437, 1353, 1312, 1289, 1305, 1348, 1437, 1549, 1711, 1941, 2334, 2963, 2763, 2195, 1839, 1635, 1487, 1376, 1289, 1235, 1223, 1243, 1291, 1368, 1481, 1639, 1848, 2202, 2763, 2616, 2083, 1760, 1576, 1421, 1312, 1235, 1191, 1168, 1187, 1233, 1307, 1418, 1566, 1777, 2083, 2625, 2492, 2010, 1723, 1520, 1381, 1267, 1183, 1140, 1126, 1136, 1187, 1263, 1365, 1517, 1719, 1999, 2475, 2403, 1946, 1668, 1490, 1333, 1229, 1150, 1104, 1086, 1102, 1148, 1223, 1336, 1478, 1668, 1946, 2411, 2334, 1896, 1631, 1457, 1317, 1203, 1124, 1072, 1050, 1073, 1124, 1195, 1303, 1454, 1653, 1896, 2334, 2284, 1867, 1617, 1432, 1294, 1189, 1102, 1053, 1040, 1055, 1100, 1180, 1287, 1426, 1631, 1881, 2298, 2298, 1872, 1610, 1426, 1287, 1182, 1096, 1041, 1024, 1044, 1087, 1168, 1276, 1410, 1614, 1862, 2284, 2284, 1867, 1610, 1429, 1294, 1176, 1099, 1049, 1028, 1046, 1086, 1170, 1278, 1418, 1607, 1872, 2284, 2305, 1891, 1617, 1437, 1294, 1183, 1114, 1056, 1036, 1058, 1100, 1180, 1287, 1435, 1624, 1891, 2320, 2372, 1926, 1646, 1466, 1321, 1215, 1134, 1079, 1064, 1076, 1131, 1203, 1312, 1466, 1657, 1921, 2372, 2451, 1983, 1688, 1508, 1353, 1245, 1167, 1119, 1102, 1115, 1163, 1233, 1346, 1499, 1691, 1977, 2451, 2597, 2054, 1748, 1549, 1405, 1291, 1211, 1168, 1143, 1161, 1209, 1282, 1394, 1543, 1752, 2054, 2570, 2732, 2169, 1825, 1610, 1463, 1346, 1265, 1215, 1193, 1217, 1260, 1343, 1452, 1600, 1812, 2144, 2683, 2916, 2298, 1911, 1695, 1533, 1407, 1333, 1285, 1263, 1278, 1317, 1405, 1520, 1688, 1896, 2277, 2893, 3167, 2475, 2032, 1790, 1603, 1478, 1402, 1350, 1331, 1350, 1399, 1475, 1596, 1764, 2026, 2442, 3087]
| },
| "lsc_samples_blue": {
| "uCoeff": [3089, 2394, 1995, 1749, 1596, 1484, 1403, 1353, 1358, 1358, 1398, 1496, 1596, 1757, 2016, 2439, 3064, 2837, 2280, 1896, 1695, 1526, 1418, 1344, 1294, 1285, 1289, 1334, 1418, 1526, 1695, 1896, 2280, 2858, 2641, 2128, 1815, 1630, 1456, 1353, 1277, 1231, 1224, 1235, 1281, 1353, 1467, 1616, 1824, 2128, 2660, 2520, 2070, 1757, 1551, 1424, 1303, 1224, 1178, 1171, 1182, 1231, 1303, 1408, 1551, 1749, 2048, 2520, 2379, 1984, 1687, 1520, 1368, 1268, 1189, 1147, 1126, 1136, 1189, 1268, 1363, 1514, 1702, 1984, 2394, 2335, 1905, 1651, 1462, 1330, 1224, 1150, 1104, 1088, 1101, 1150, 1220, 1330, 1473, 1658, 1934, 2321, 2253, 1868, 1616, 1456, 1312, 1197, 1120, 1067, 1052, 1079, 1126, 1201, 1303, 1451, 1630, 1887, 2280, 2266, 1832, 1596, 1424, 1294, 1189, 1110, 1049, 1035, 1052, 1104, 1178, 1281, 1434, 1609, 1859, 2240, 2227, 1832, 1589, 1424, 1285, 1178, 1097, 1044, 1024, 1046, 1088, 1164, 1277, 1418, 1602, 1841, 2227, 2201, 1832, 1596, 1418, 1289, 1175, 1094, 1046, 1035, 1046, 1091, 1171, 1277, 1413, 1602, 1850, 2253, 2253, 1850, 1602, 1424, 1303, 1189, 1113, 1058, 1041, 1061, 1104, 1186, 1289, 1434, 1616, 1868, 2240, 2293, 1887, 1630, 1462, 1325, 1212, 1133, 1088, 1070, 1076, 1130, 1212, 1325, 1456, 1651, 1905, 2321, 2350, 1944, 1672, 1496, 1344, 1243, 1168, 1120, 1104, 1117, 1171, 1243, 1349, 1484, 1680, 1964, 2394, 2503, 2026, 1733, 1538, 1408, 1285, 1212, 1171, 1143, 1161, 1197, 1298, 1393, 1544, 1725, 2026, 2503, 2623, 2128, 1798, 1602, 1451, 1334, 1264, 1216, 1201, 1216, 1252, 1334, 1445, 1596, 1806, 2116, 2641, 2795, 2253, 1887, 1687, 1520, 1403, 1325, 1281, 1260, 1272, 1316, 1393, 1514, 1680, 1887, 2240, 2795, 2992, 2424, 2016, 1757, 1596, 1479, 1388, 1349, 1334, 1349, 1383, 1473, 1609, 1749, 2016, 2424, 3016]
| }
| }, {
| "name": "2688x1520_D65_70",
| "resolution": "2688x1520",
| "illumination": "D65",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2417, 1961, 1691, 1530, 1417, 1345, 1275, 1233, 1223, 1233, 1259, 1317, 1391, 1522, 1671, 1947, 2371, 2274, 1900, 1626, 1483, 1375, 1300, 1237, 1204, 1182, 1195, 1232, 1284, 1340, 1469, 1608, 1862, 2274, 2189, 1815, 1572, 1443, 1339, 1261, 1208, 1178, 1157, 1161, 1199, 1242, 1323, 1443, 1564, 1793, 2154, 2105, 1756, 1549, 1421, 1307, 1235, 1170, 1142, 1131, 1142, 1174, 1226, 1292, 1415, 1557, 1745, 2137, 2021, 1725, 1530, 1390, 1294, 1207, 1154, 1110, 1096, 1110, 1135, 1199, 1279, 1384, 1507, 1715, 2021, 1966, 1690, 1492, 1367, 1262, 1177, 1124, 1087, 1067, 1077, 1113, 1189, 1252, 1351, 1492, 1671, 1966, 1972, 1642, 1478, 1347, 1246, 1164, 1106, 1064, 1049, 1061, 1103, 1161, 1241, 1347, 1465, 1633, 1933, 1919, 1643, 1466, 1343, 1244, 1152, 1095, 1045, 1034, 1048, 1082, 1144, 1217, 1327, 1446, 1634, 1944, 1922, 1629, 1456, 1324, 1224, 1154, 1078, 1038, 1024, 1041, 1078, 1139, 1215, 1314, 1456, 1629, 1897, 1894, 1617, 1459, 1333, 1217, 1148, 1082, 1039, 1025, 1030, 1076, 1137, 1204, 1306, 1440, 1617, 1894, 1895, 1633, 1458, 1341, 1228, 1149, 1086, 1046, 1022, 1043, 1076, 1131, 1215, 1325, 1451, 1616, 1895, 1953, 1644, 1485, 1345, 1234, 1161, 1096, 1054, 1042, 1051, 1089, 1142, 1230, 1334, 1451, 1644, 1939, 1993, 1658, 1493, 1355, 1260, 1170, 1113, 1073, 1063, 1066, 1106, 1162, 1236, 1344, 1486, 1658, 1952, 2043, 1695, 1503, 1366, 1272, 1191, 1135, 1095, 1085, 1102, 1131, 1183, 1267, 1366, 1496, 1695, 2028, 2104, 1749, 1532, 1404, 1301, 1219, 1162, 1127, 1115, 1123, 1150, 1214, 1270, 1386, 1524, 1718, 2088, 2162, 1802, 1573, 1448, 1329, 1245, 1196, 1165, 1145, 1153, 1192, 1240, 1323, 1428, 1565, 1791, 2162, 2266, 1880, 1623, 1477, 1354, 1284, 1230, 1183, 1174, 1187, 1221, 1289, 1366, 1462, 1623, 1867, 2307]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2243, 1868, 1607, 1465, 1373, 1288, 1249, 1221, 1196, 1212, 1249, 1288, 1352, 1451, 1607, 1855, 2224, 2152, 1810, 1560, 1431, 1335, 1261, 1207, 1186, 1167, 1178, 1207, 1266, 1327, 1431, 1552, 1781, 2110, 2064, 1730, 1508, 1390, 1308, 1232, 1182, 1144, 1140, 1146, 1170, 1232, 1303, 1393, 1508, 1730, 2057, 1985, 1688, 1492, 1371, 1284, 1202, 1158, 1123, 1112, 1124, 1147, 1208, 1269, 1368, 1489, 1664, 1971, 1953, 1652, 1472, 1356, 1261, 1184, 1130, 1095, 1077, 1090, 1125, 1180, 1254, 1348, 1469, 1634, 1914, 1878, 1621, 1451, 1336, 1245, 1168, 1113, 1075, 1058, 1065, 1107, 1164, 1234, 1325, 1451, 1612, 1878, 1872, 1598, 1439, 1316, 1226, 1146, 1090, 1055, 1040, 1045, 1089, 1142, 1219, 1308, 1436, 1586, 1849, 1831, 1575, 1425, 1308, 1215, 1149, 1077, 1041, 1024, 1039, 1074, 1136, 1209, 1303, 1422, 1575, 1836, 1829, 1570, 1412, 1306, 1211, 1129, 1066, 1029, 1024, 1026, 1068, 1127, 1198, 1295, 1421, 1562, 1812, 1831, 1559, 1419, 1303, 1207, 1132, 1072, 1033, 1021, 1030, 1066, 1123, 1207, 1286, 1415, 1563, 1836, 1854, 1578, 1426, 1303, 1213, 1139, 1082, 1047, 1025, 1035, 1072, 1131, 1202, 1291, 1423, 1574, 1825, 1878, 1591, 1428, 1317, 1227, 1149, 1097, 1059, 1044, 1053, 1085, 1149, 1219, 1314, 1428, 1583, 1854, 1914, 1612, 1442, 1337, 1245, 1170, 1110, 1079, 1066, 1075, 1103, 1158, 1231, 1326, 1439, 1599, 1876, 1964, 1650, 1475, 1353, 1259, 1187, 1135, 1103, 1088, 1096, 1132, 1181, 1259, 1345, 1461, 1636, 1924, 2034, 1700, 1490, 1390, 1287, 1214, 1160, 1125, 1118, 1125, 1154, 1207, 1275, 1365, 1482, 1690, 2011, 2101, 1765, 1536, 1402, 1316, 1241, 1194, 1161, 1147, 1151, 1181, 1241, 1311, 1399, 1532, 1737, 2085, 2176, 1830, 1585, 1441, 1352, 1267, 1220, 1187, 1163, 1187, 1204, 1257, 1328, 1420, 1581, 1806, 2186]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2246, 1880, 1623, 1476, 1380, 1298, 1249, 1226, 1216, 1224, 1259, 1295, 1356, 1472, 1632, 1886, 2255, 2165, 1805, 1571, 1435, 1349, 1273, 1219, 1194, 1177, 1187, 1214, 1273, 1340, 1435, 1567, 1799, 2156, 2069, 1737, 1523, 1406, 1318, 1249, 1190, 1151, 1144, 1159, 1192, 1242, 1313, 1409, 1531, 1742, 2069, 2005, 1685, 1489, 1384, 1286, 1216, 1164, 1134, 1116, 1130, 1162, 1212, 1284, 1375, 1503, 1685, 2012, 1945, 1654, 1483, 1358, 1271, 1194, 1134, 1103, 1093, 1099, 1138, 1190, 1257, 1356, 1480, 1645, 1932, 1902, 1624, 1456, 1349, 1244, 1173, 1117, 1082, 1068, 1080, 1115, 1167, 1246, 1338, 1456, 1624, 1909, 1867, 1598, 1437, 1332, 1240, 1159, 1101, 1060, 1043, 1062, 1101, 1152, 1227, 1329, 1456, 1598, 1867, 1837, 1582, 1432, 1316, 1225, 1152, 1086, 1048, 1038, 1049, 1084, 1143, 1219, 1311, 1445, 1594, 1849, 1852, 1589, 1429, 1313, 1221, 1147, 1081, 1038, 1024, 1041, 1073, 1134, 1210, 1298, 1432, 1581, 1841, 1837, 1582, 1426, 1313, 1225, 1140, 1082, 1043, 1026, 1040, 1070, 1134, 1210, 1303, 1423, 1586, 1837, 1843, 1593, 1424, 1314, 1218, 1141, 1091, 1045, 1028, 1047, 1078, 1137, 1212, 1311, 1431, 1593, 1855, 1878, 1607, 1436, 1327, 1233, 1160, 1101, 1058, 1046, 1055, 1098, 1148, 1224, 1327, 1446, 1603, 1878, 1913, 1632, 1453, 1347, 1246, 1174, 1118, 1083, 1070, 1079, 1114, 1162, 1239, 1339, 1456, 1628, 1913, 1991, 1662, 1479, 1361, 1272, 1197, 1141, 1112, 1091, 1105, 1139, 1188, 1262, 1355, 1482, 1662, 1970, 2046, 1716, 1512, 1385, 1297, 1221, 1167, 1132, 1116, 1134, 1163, 1219, 1287, 1376, 1501, 1697, 2009, 2122, 1771, 1543, 1422, 1326, 1246, 1201, 1169, 1153, 1163, 1186, 1244, 1315, 1416, 1531, 1754, 2105, 2217, 1848, 1592, 1458, 1347, 1272, 1227, 1194, 1181, 1194, 1225, 1270, 1341, 1437, 1587, 1824, 2161]
| },
| "lsc_samples_blue": {
| "uCoeff": [2162, 1787, 1563, 1425, 1341, 1278, 1228, 1197, 1205, 1201, 1224, 1288, 1341, 1431, 1579, 1821, 2145, 2064, 1757, 1531, 1421, 1320, 1256, 1210, 1177, 1173, 1173, 1202, 1256, 1320, 1421, 1531, 1757, 2080, 1978, 1684, 1503, 1402, 1291, 1228, 1178, 1148, 1145, 1152, 1182, 1228, 1301, 1390, 1510, 1684, 1992, 1931, 1674, 1486, 1362, 1289, 1207, 1153, 1121, 1118, 1125, 1160, 1207, 1275, 1362, 1480, 1656, 1931, 1857, 1634, 1452, 1358, 1259, 1195, 1140, 1110, 1094, 1100, 1140, 1195, 1255, 1352, 1465, 1634, 1869, 1849, 1590, 1440, 1323, 1241, 1168, 1116, 1082, 1070, 1079, 1116, 1165, 1241, 1334, 1446, 1614, 1838, 1802, 1574, 1423, 1331, 1235, 1153, 1097, 1055, 1044, 1067, 1104, 1157, 1227, 1326, 1435, 1590, 1823, 1823, 1553, 1413, 1308, 1225, 1153, 1094, 1044, 1033, 1047, 1087, 1142, 1213, 1318, 1425, 1576, 1802, 1795, 1556, 1410, 1311, 1219, 1144, 1083, 1040, 1024, 1043, 1074, 1130, 1211, 1306, 1422, 1563, 1795, 1771, 1553, 1413, 1304, 1221, 1138, 1078, 1041, 1033, 1041, 1075, 1135, 1209, 1299, 1419, 1568, 1812, 1802, 1559, 1411, 1301, 1227, 1146, 1091, 1047, 1033, 1050, 1081, 1143, 1214, 1311, 1423, 1574, 1791, 1816, 1574, 1422, 1323, 1236, 1157, 1100, 1067, 1052, 1055, 1097, 1157, 1236, 1318, 1440, 1590, 1838, 1834, 1600, 1440, 1337, 1237, 1172, 1119, 1084, 1072, 1080, 1122, 1172, 1242, 1326, 1446, 1617, 1869, 1918, 1639, 1466, 1351, 1275, 1191, 1142, 1115, 1092, 1104, 1128, 1203, 1261, 1356, 1460, 1639, 1918, 1964, 1684, 1489, 1378, 1286, 1211, 1167, 1134, 1123, 1134, 1155, 1211, 1281, 1372, 1496, 1674, 1978, 2034, 1736, 1523, 1415, 1315, 1243, 1194, 1165, 1150, 1158, 1185, 1234, 1309, 1409, 1523, 1726, 2034, 2094, 1810, 1579, 1431, 1341, 1273, 1215, 1193, 1184, 1193, 1211, 1268, 1352, 1425, 1579, 1810, 2111]
| }
| }, {
| "name": "2688x1520_D75_100",
| "resolution": "2688x1520",
| "illumination": "D75",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3439, 2661, 2209, 1889, 1688, 1545, 1452, 1397, 1376, 1391, 1408, 1506, 1613, 1805, 2048, 2480, 3255, 3170, 2480, 2037, 1787, 1606, 1458, 1376, 1311, 1293, 1302, 1340, 1413, 1538, 1688, 1929, 2293, 2964, 2940, 2307, 1939, 1688, 1525, 1397, 1307, 1253, 1223, 1232, 1275, 1340, 1452, 1606, 1805, 2132, 2741, 2783, 2196, 1860, 1627, 1458, 1326, 1244, 1187, 1168, 1168, 1211, 1279, 1386, 1538, 1736, 2037, 2567, 2642, 2107, 1787, 1565, 1402, 1270, 1191, 1132, 1111, 1118, 1168, 1236, 1345, 1470, 1665, 1960, 2447, 2567, 2048, 1736, 1538, 1360, 1244, 1146, 1095, 1069, 1079, 1125, 1191, 1302, 1441, 1620, 1879, 2337, 2532, 2003, 1696, 1500, 1345, 1211, 1136, 1066, 1042, 1051, 1098, 1176, 1275, 1402, 1599, 1850, 2278, 2480, 1981, 1696, 1482, 1326, 1211, 1111, 1057, 1036, 1039, 1085, 1150, 1261, 1397, 1585, 1832, 2223, 2480, 1981, 1703, 1470, 1326, 1207, 1108, 1045, 1024, 1039, 1075, 1154, 1253, 1402, 1565, 1832, 2250, 2497, 2025, 1703, 1494, 1316, 1191, 1108, 1045, 1024, 1039, 1075, 1146, 1257, 1402, 1565, 1814, 2250, 2532, 2003, 1711, 1506, 1330, 1207, 1122, 1057, 1033, 1042, 1082, 1165, 1261, 1397, 1571, 1823, 2278, 2567, 2048, 1744, 1513, 1350, 1227, 1125, 1075, 1048, 1060, 1098, 1168, 1275, 1418, 1606, 1850, 2278, 2642, 2095, 1753, 1532, 1376, 1240, 1154, 1098, 1075, 1082, 1118, 1191, 1293, 1430, 1613, 1879, 2337, 2762, 2170, 1814, 1585, 1408, 1288, 1191, 1136, 1118, 1118, 1157, 1219, 1335, 1470, 1657, 1939, 2430, 2916, 2264, 1899, 1657, 1464, 1326, 1248, 1176, 1165, 1161, 1207, 1270, 1370, 1532, 1703, 2025, 2514, 3143, 2414, 1981, 1728, 1532, 1391, 1302, 1244, 1219, 1227, 1266, 1335, 1447, 1578, 1796, 2157, 2720, 3344, 2642, 2132, 1832, 1613, 1470, 1386, 1311, 1279, 1293, 1330, 1418, 1513, 1680, 1909, 2278, 2940]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3236, 2580, 2116, 1849, 1659, 1531, 1438, 1391, 1372, 1381, 1432, 1490, 1604, 1760, 2017, 2404, 3082, 3046, 2389, 1976, 1741, 1565, 1443, 1360, 1307, 1287, 1294, 1332, 1411, 1516, 1662, 1884, 2231, 2804, 2824, 2238, 1862, 1659, 1493, 1364, 1289, 1238, 1213, 1224, 1260, 1332, 1438, 1584, 1773, 2093, 2615, 2641, 2116, 1789, 1584, 1424, 1307, 1228, 1171, 1153, 1164, 1203, 1273, 1376, 1504, 1699, 1981, 2450, 2538, 2038, 1729, 1519, 1374, 1256, 1173, 1123, 1104, 1117, 1153, 1221, 1329, 1454, 1641, 1884, 2339, 2481, 1976, 1688, 1496, 1343, 1234, 1147, 1084, 1066, 1077, 1120, 1189, 1287, 1417, 1591, 1844, 2238, 2434, 1956, 1662, 1465, 1320, 1205, 1117, 1062, 1040, 1049, 1098, 1167, 1268, 1394, 1578, 1806, 2181, 2412, 1936, 1659, 1462, 1309, 1196, 1106, 1050, 1028, 1040, 1086, 1155, 1256, 1389, 1553, 1797, 2175, 2397, 1936, 1670, 1459, 1309, 1192, 1098, 1042, 1024, 1038, 1081, 1150, 1254, 1379, 1540, 1785, 2163, 2427, 1946, 1670, 1465, 1313, 1191, 1110, 1048, 1029, 1034, 1077, 1155, 1252, 1376, 1556, 1781, 2175, 2457, 1961, 1677, 1476, 1320, 1196, 1118, 1055, 1035, 1048, 1084, 1162, 1262, 1386, 1553, 1797, 2169, 2481, 2001, 1703, 1493, 1334, 1217, 1130, 1071, 1055, 1062, 1103, 1167, 1268, 1396, 1572, 1810, 2206, 2555, 2049, 1725, 1519, 1360, 1234, 1155, 1101, 1077, 1087, 1127, 1191, 1298, 1422, 1588, 1840, 2257, 2706, 2110, 1785, 1556, 1396, 1277, 1181, 1135, 1112, 1118, 1157, 1224, 1325, 1456, 1631, 1898, 2353, 2804, 2212, 1853, 1617, 1446, 1322, 1238, 1185, 1162, 1173, 1200, 1264, 1369, 1507, 1684, 1971, 2473, 3022, 2375, 1946, 1695, 1516, 1384, 1298, 1242, 1221, 1219, 1256, 1327, 1427, 1565, 1757, 2082, 2624, 3264, 2546, 2071, 1789, 1597, 1465, 1364, 1300, 1279, 1296, 1325, 1394, 1490, 1652, 1857, 2251, 2824]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3245, 2570, 2110, 1840, 1656, 1532, 1444, 1395, 1368, 1380, 1433, 1508, 1618, 1777, 2017, 2418, 3066, 3054, 2410, 1976, 1741, 1566, 1449, 1363, 1304, 1289, 1302, 1340, 1415, 1526, 1667, 1889, 2244, 2852, 2821, 2237, 1876, 1646, 1488, 1365, 1286, 1233, 1216, 1224, 1263, 1335, 1433, 1595, 1777, 2087, 2622, 2658, 2121, 1794, 1576, 1423, 1306, 1222, 1169, 1155, 1163, 1203, 1270, 1375, 1508, 1707, 1981, 2464, 2545, 2043, 1726, 1523, 1373, 1259, 1179, 1126, 1098, 1113, 1156, 1222, 1326, 1460, 1639, 1913, 2338, 2464, 1981, 1692, 1488, 1340, 1218, 1141, 1087, 1063, 1081, 1121, 1188, 1297, 1423, 1595, 1845, 2270, 2418, 1946, 1667, 1474, 1324, 1203, 1115, 1066, 1036, 1053, 1096, 1169, 1268, 1402, 1582, 1827, 2199, 2403, 1941, 1653, 1469, 1308, 1186, 1112, 1049, 1034, 1042, 1084, 1158, 1257, 1387, 1560, 1798, 2193, 2396, 1951, 1667, 1455, 1302, 1188, 1105, 1043, 1024, 1038, 1076, 1153, 1255, 1382, 1547, 1798, 2163, 2403, 1961, 1656, 1463, 1308, 1194, 1105, 1046, 1027, 1036, 1076, 1153, 1259, 1380, 1560, 1794, 2187, 2441, 1971, 1674, 1477, 1315, 1201, 1117, 1059, 1029, 1040, 1088, 1158, 1261, 1397, 1560, 1794, 2199, 2496, 2006, 1700, 1488, 1337, 1212, 1130, 1070, 1049, 1060, 1101, 1176, 1272, 1397, 1572, 1815, 2237, 2578, 2038, 1730, 1520, 1361, 1241, 1150, 1099, 1076, 1088, 1131, 1197, 1286, 1418, 1602, 1858, 2263, 2658, 2110, 1781, 1554, 1397, 1272, 1190, 1135, 1118, 1118, 1155, 1230, 1326, 1463, 1635, 1903, 2345, 2771, 2218, 1827, 1612, 1447, 1319, 1231, 1179, 1153, 1165, 1199, 1268, 1368, 1503, 1689, 1976, 2472, 2995, 2352, 1936, 1692, 1511, 1385, 1299, 1237, 1212, 1222, 1261, 1328, 1423, 1560, 1765, 2098, 2622, 3259, 2528, 2060, 1798, 1592, 1460, 1361, 1302, 1274, 1284, 1319, 1390, 1503, 1639, 1871, 2244, 2821]
| },
| "lsc_samples_blue": {
| "uCoeff": [3131, 2533, 2048, 1789, 1641, 1496, 1437, 1374, 1344, 1361, 1396, 1481, 1577, 1732, 1965, 2382, 2961, 2902, 2331, 1939, 1725, 1549, 1437, 1353, 1304, 1278, 1297, 1332, 1391, 1506, 1666, 1849, 2191, 2739, 2739, 2191, 1841, 1635, 1481, 1361, 1289, 1228, 1211, 1217, 1263, 1328, 1418, 1565, 1746, 2038, 2504, 2548, 2077, 1774, 1549, 1423, 1304, 1228, 1178, 1144, 1166, 1194, 1259, 1370, 1491, 1679, 1948, 2356, 2462, 1992, 1699, 1517, 1370, 1256, 1178, 1124, 1107, 1115, 1147, 1221, 1320, 1446, 1617, 1873, 2295, 2382, 1939, 1666, 1491, 1336, 1217, 1147, 1090, 1074, 1077, 1124, 1191, 1281, 1405, 1582, 1819, 2180, 2344, 1914, 1660, 1476, 1324, 1204, 1115, 1064, 1044, 1054, 1096, 1166, 1263, 1396, 1549, 1767, 2138, 2307, 1906, 1648, 1456, 1312, 1194, 1107, 1054, 1034, 1048, 1090, 1156, 1256, 1378, 1538, 1774, 2097, 2344, 1931, 1654, 1451, 1316, 1185, 1104, 1051, 1024, 1039, 1082, 1156, 1252, 1383, 1532, 1767, 2128, 2331, 1922, 1648, 1461, 1320, 1194, 1107, 1046, 1031, 1044, 1090, 1163, 1256, 1383, 1538, 1767, 2107, 2382, 1939, 1654, 1466, 1324, 1204, 1118, 1061, 1031, 1048, 1082, 1156, 1263, 1387, 1543, 1782, 2138, 2382, 1957, 1673, 1496, 1328, 1217, 1130, 1072, 1051, 1061, 1101, 1166, 1270, 1391, 1549, 1782, 2148, 2448, 2001, 1712, 1501, 1353, 1231, 1153, 1098, 1079, 1082, 1124, 1194, 1281, 1405, 1571, 1819, 2191, 2563, 2067, 1753, 1554, 1387, 1274, 1181, 1132, 1112, 1118, 1153, 1221, 1316, 1446, 1611, 1857, 2271, 2656, 2170, 1811, 1600, 1428, 1312, 1224, 1172, 1153, 1153, 1191, 1263, 1357, 1486, 1641, 1939, 2382, 2846, 2307, 1897, 1666, 1486, 1374, 1293, 1224, 1197, 1204, 1252, 1316, 1405, 1538, 1732, 2038, 2533, 3086, 2435, 2010, 1767, 1577, 1442, 1340, 1301, 1270, 1274, 1308, 1396, 1481, 1629, 1826, 2170, 2656]
| }
| }, {
| "name": "2688x1520_D75_70",
| "resolution": "2688x1520",
| "illumination": "D75",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2407, 1987, 1731, 1539, 1418, 1330, 1272, 1235, 1221, 1231, 1232, 1297, 1356, 1470, 1605, 1852, 2278, 2307, 1911, 1644, 1499, 1389, 1292, 1239, 1193, 1180, 1185, 1207, 1252, 1331, 1416, 1557, 1767, 2157, 2202, 1826, 1606, 1452, 1352, 1268, 1206, 1168, 1144, 1148, 1177, 1217, 1288, 1381, 1495, 1687, 2053, 2133, 1776, 1574, 1429, 1320, 1228, 1172, 1130, 1116, 1112, 1141, 1185, 1255, 1351, 1469, 1647, 1968, 2062, 1735, 1538, 1398, 1291, 1197, 1141, 1096, 1079, 1082, 1120, 1165, 1239, 1313, 1433, 1613, 1910, 2033, 1709, 1514, 1393, 1269, 1188, 1113, 1073, 1051, 1057, 1092, 1137, 1215, 1304, 1413, 1568, 1850, 2025, 1688, 1493, 1371, 1267, 1167, 1113, 1055, 1034, 1039, 1076, 1133, 1200, 1281, 1408, 1559, 1822, 1995, 1679, 1502, 1362, 1255, 1174, 1095, 1051, 1034, 1033, 1069, 1114, 1194, 1284, 1404, 1553, 1788, 1999, 1682, 1512, 1353, 1258, 1172, 1094, 1041, 1024, 1035, 1061, 1120, 1188, 1291, 1388, 1556, 1814, 2009, 1716, 1509, 1373, 1246, 1154, 1092, 1039, 1022, 1033, 1059, 1111, 1190, 1289, 1386, 1537, 1810, 2025, 1688, 1507, 1377, 1253, 1163, 1099, 1045, 1025, 1031, 1060, 1122, 1188, 1276, 1384, 1536, 1822, 2033, 1709, 1522, 1369, 1260, 1172, 1092, 1054, 1030, 1039, 1066, 1116, 1189, 1284, 1401, 1544, 1804, 2062, 1725, 1509, 1368, 1267, 1169, 1105, 1063, 1044, 1047, 1071, 1123, 1190, 1277, 1389, 1547, 1824, 2117, 1755, 1534, 1392, 1274, 1194, 1123, 1081, 1068, 1064, 1090, 1130, 1209, 1291, 1402, 1568, 1863, 2184, 1792, 1573, 1425, 1298, 1203, 1152, 1096, 1089, 1082, 1114, 1153, 1215, 1317, 1411, 1602, 1883, 2287, 1860, 1600, 1449, 1325, 1232, 1173, 1132, 1113, 1117, 1140, 1183, 1251, 1324, 1450, 1662, 1980, 2341, 1973, 1670, 1492, 1356, 1265, 1214, 1160, 1135, 1143, 1165, 1221, 1271, 1369, 1495, 1701, 2058]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2266, 1927, 1658, 1506, 1394, 1318, 1259, 1230, 1217, 1222, 1254, 1283, 1348, 1434, 1580, 1795, 2158, 2216, 1841, 1595, 1460, 1354, 1278, 1225, 1189, 1175, 1177, 1199, 1250, 1312, 1394, 1521, 1720, 2040, 2115, 1771, 1542, 1427, 1324, 1238, 1190, 1154, 1135, 1141, 1163, 1209, 1275, 1363, 1468, 1656, 1958, 2024, 1711, 1514, 1392, 1290, 1211, 1157, 1114, 1101, 1107, 1134, 1179, 1246, 1321, 1437, 1602, 1877, 1981, 1678, 1488, 1357, 1265, 1184, 1123, 1087, 1072, 1081, 1105, 1150, 1224, 1299, 1413, 1551, 1826, 1964, 1649, 1472, 1354, 1253, 1178, 1113, 1063, 1049, 1055, 1087, 1135, 1201, 1282, 1388, 1539, 1772, 1947, 1648, 1464, 1339, 1243, 1162, 1094, 1051, 1033, 1038, 1076, 1125, 1194, 1274, 1390, 1521, 1744, 1940, 1641, 1469, 1344, 1240, 1159, 1089, 1045, 1026, 1035, 1069, 1119, 1189, 1276, 1375, 1523, 1750, 1932, 1644, 1482, 1344, 1242, 1158, 1084, 1038, 1024, 1034, 1067, 1116, 1190, 1270, 1367, 1516, 1744, 1952, 1649, 1479, 1346, 1244, 1154, 1094, 1042, 1028, 1028, 1061, 1119, 1186, 1265, 1378, 1509, 1750, 1965, 1652, 1477, 1349, 1243, 1153, 1096, 1043, 1027, 1036, 1062, 1120, 1189, 1267, 1367, 1514, 1735, 1964, 1670, 1485, 1352, 1244, 1162, 1097, 1050, 1037, 1041, 1070, 1114, 1183, 1264, 1371, 1510, 1747, 1994, 1686, 1485, 1357, 1252, 1163, 1107, 1065, 1045, 1052, 1079, 1122, 1195, 1270, 1367, 1515, 1762, 2074, 1706, 1510, 1366, 1264, 1183, 1113, 1080, 1062, 1064, 1090, 1135, 1199, 1279, 1380, 1535, 1803, 2100, 1750, 1535, 1391, 1282, 1200, 1143, 1105, 1087, 1093, 1107, 1148, 1214, 1296, 1395, 1559, 1852, 2199, 1830, 1571, 1422, 1312, 1226, 1169, 1130, 1114, 1109, 1131, 1175, 1234, 1313, 1418, 1604, 1909, 2285, 1901, 1622, 1457, 1343, 1261, 1194, 1150, 1135, 1146, 1160, 1200, 1252, 1346, 1455, 1681, 1977]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2271, 1919, 1653, 1499, 1392, 1319, 1264, 1234, 1214, 1221, 1255, 1299, 1360, 1448, 1580, 1806, 2146, 2222, 1858, 1595, 1461, 1355, 1284, 1228, 1186, 1176, 1184, 1207, 1254, 1320, 1398, 1525, 1729, 2076, 2113, 1770, 1554, 1415, 1320, 1240, 1187, 1150, 1138, 1141, 1166, 1212, 1271, 1372, 1472, 1651, 1963, 2037, 1716, 1518, 1384, 1288, 1210, 1151, 1112, 1103, 1107, 1133, 1177, 1245, 1325, 1444, 1602, 1888, 1986, 1682, 1486, 1361, 1264, 1187, 1130, 1090, 1066, 1077, 1108, 1151, 1221, 1305, 1411, 1575, 1825, 1951, 1653, 1476, 1347, 1250, 1163, 1108, 1066, 1046, 1060, 1089, 1134, 1210, 1288, 1392, 1539, 1797, 1934, 1640, 1468, 1347, 1246, 1159, 1092, 1055, 1029, 1042, 1074, 1126, 1194, 1282, 1393, 1540, 1759, 1933, 1645, 1464, 1350, 1239, 1150, 1095, 1043, 1032, 1037, 1068, 1122, 1191, 1275, 1382, 1524, 1764, 1931, 1657, 1479, 1340, 1235, 1154, 1091, 1040, 1024, 1034, 1062, 1119, 1191, 1273, 1373, 1527, 1743, 1933, 1662, 1467, 1345, 1239, 1157, 1089, 1041, 1025, 1031, 1060, 1117, 1193, 1268, 1382, 1520, 1759, 1952, 1661, 1474, 1350, 1238, 1157, 1094, 1048, 1022, 1029, 1066, 1116, 1188, 1277, 1374, 1511, 1759, 1976, 1674, 1483, 1347, 1248, 1157, 1096, 1049, 1032, 1039, 1069, 1122, 1186, 1265, 1372, 1514, 1771, 2013, 1678, 1489, 1358, 1253, 1170, 1101, 1064, 1045, 1053, 1084, 1128, 1185, 1267, 1379, 1529, 1767, 2037, 1706, 1507, 1365, 1265, 1179, 1121, 1080, 1068, 1064, 1088, 1139, 1200, 1285, 1384, 1539, 1797, 2075, 1755, 1513, 1386, 1283, 1198, 1137, 1099, 1079, 1086, 1107, 1151, 1213, 1292, 1398, 1563, 1851, 2179, 1813, 1563, 1419, 1307, 1227, 1170, 1126, 1107, 1112, 1136, 1176, 1231, 1308, 1425, 1617, 1908, 2281, 1888, 1614, 1465, 1338, 1257, 1191, 1151, 1130, 1136, 1155, 1196, 1263, 1335, 1466, 1675, 1975]
| },
| "lsc_samples_blue": {
| "uCoeff": [2191, 1892, 1605, 1457, 1380, 1288, 1258, 1215, 1193, 1204, 1222, 1275, 1325, 1411, 1540, 1779, 2073, 2112, 1797, 1566, 1447, 1340, 1273, 1218, 1187, 1166, 1180, 1200, 1232, 1303, 1398, 1493, 1689, 1993, 2051, 1734, 1525, 1407, 1313, 1236, 1190, 1145, 1133, 1135, 1166, 1206, 1258, 1346, 1446, 1613, 1875, 1953, 1680, 1501, 1360, 1288, 1209, 1157, 1121, 1093, 1109, 1125, 1167, 1240, 1309, 1421, 1575, 1806, 1922, 1640, 1462, 1355, 1261, 1183, 1129, 1087, 1075, 1079, 1099, 1151, 1215, 1292, 1392, 1542, 1791, 1886, 1618, 1454, 1350, 1247, 1162, 1114, 1069, 1057, 1056, 1091, 1137, 1196, 1272, 1380, 1518, 1726, 1874, 1613, 1462, 1349, 1247, 1160, 1093, 1052, 1036, 1042, 1073, 1123, 1189, 1276, 1364, 1489, 1710, 1856, 1615, 1459, 1338, 1243, 1157, 1090, 1048, 1032, 1043, 1074, 1121, 1189, 1267, 1362, 1504, 1687, 1889, 1639, 1468, 1336, 1249, 1150, 1090, 1048, 1024, 1035, 1068, 1123, 1188, 1273, 1360, 1501, 1715, 1876, 1629, 1459, 1343, 1250, 1157, 1090, 1041, 1029, 1038, 1074, 1127, 1189, 1271, 1362, 1498, 1695, 1905, 1634, 1457, 1340, 1247, 1160, 1095, 1050, 1024, 1037, 1060, 1114, 1189, 1267, 1359, 1501, 1710, 1886, 1633, 1459, 1354, 1239, 1162, 1096, 1050, 1034, 1040, 1069, 1113, 1185, 1260, 1351, 1487, 1701, 1911, 1647, 1474, 1341, 1246, 1160, 1105, 1063, 1048, 1047, 1077, 1125, 1180, 1255, 1352, 1497, 1711, 1964, 1672, 1483, 1365, 1256, 1181, 1113, 1078, 1062, 1064, 1087, 1131, 1192, 1270, 1363, 1502, 1740, 1989, 1717, 1500, 1376, 1266, 1191, 1130, 1093, 1079, 1075, 1099, 1147, 1203, 1278, 1359, 1534, 1784, 2071, 1778, 1532, 1398, 1285, 1217, 1165, 1114, 1093, 1096, 1128, 1166, 1215, 1290, 1399, 1571, 1843, 2160, 1818, 1575, 1440, 1325, 1241, 1173, 1150, 1127, 1127, 1145, 1202, 1244, 1327, 1431, 1620, 1859]
| }
| }, {
| "name": "2688x1520_CWF_100",
| "resolution": "2688x1520",
| "illumination": "CWF",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3350, 2619, 2129, 1847, 1649, 1532, 1450, 1389, 1363, 1372, 1417, 1516, 1631, 1831, 2098, 2572, 3350, 3065, 2414, 1982, 1742, 1560, 1436, 1359, 1302, 1298, 1302, 1350, 1436, 1554, 1729, 1964, 2374, 3087, 2900, 2262, 1879, 1656, 1500, 1376, 1294, 1249, 1228, 1242, 1282, 1367, 1485, 1643, 1855, 2239, 2806, 2701, 2161, 1808, 1595, 1436, 1313, 1231, 1181, 1162, 1181, 1228, 1309, 1421, 1566, 1808, 2108, 2684, 2572, 2048, 1742, 1538, 1385, 1253, 1181, 1137, 1111, 1137, 1177, 1264, 1372, 1527, 1735, 2038, 2512, 2483, 1973, 1681, 1485, 1330, 1228, 1149, 1100, 1080, 1091, 1140, 1221, 1334, 1475, 1675, 1947, 2428, 2387, 1921, 1656, 1465, 1313, 1207, 1117, 1064, 1044, 1064, 1111, 1194, 1309, 1455, 1643, 1921, 2336, 2349, 1904, 1643, 1440, 1294, 1174, 1097, 1046, 1031, 1044, 1091, 1171, 1282, 1421, 1631, 1895, 2299, 2323, 1895, 1618, 1436, 1286, 1171, 1086, 1034, 1024, 1034, 1091, 1171, 1282, 1421, 1625, 1871, 2323, 2336, 1895, 1637, 1440, 1286, 1177, 1091, 1039, 1029, 1034, 1088, 1165, 1278, 1417, 1625, 1887, 2323, 2374, 1921, 1643, 1440, 1306, 1184, 1105, 1046, 1036, 1054, 1097, 1181, 1290, 1440, 1625, 1912, 2336, 2455, 1955, 1668, 1465, 1317, 1204, 1125, 1078, 1057, 1072, 1122, 1197, 1306, 1475, 1662, 1929, 2387, 2512, 2010, 1695, 1506, 1346, 1235, 1159, 1108, 1094, 1102, 1162, 1235, 1346, 1500, 1695, 1982, 2483, 2619, 2098, 1757, 1554, 1394, 1278, 1200, 1152, 1131, 1149, 1194, 1282, 1389, 1543, 1750, 2068, 2603, 2788, 2171, 1816, 1618, 1455, 1330, 1253, 1214, 1187, 1204, 1253, 1334, 1445, 1606, 1808, 2161, 2735, 2980, 2299, 1921, 1675, 1527, 1403, 1317, 1267, 1253, 1264, 1309, 1389, 1516, 1688, 1904, 2299, 2960, 3225, 2498, 2048, 1793, 1625, 1470, 1394, 1350, 1317, 1326, 1385, 1460, 1595, 1764, 2019, 2455, 3177]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3236, 2531, 2079, 1804, 1637, 1513, 1427, 1379, 1367, 1372, 1427, 1493, 1631, 1800, 2062, 2499, 3170, 2999, 2355, 1939, 1702, 1546, 1425, 1344, 1303, 1284, 1299, 1344, 1420, 1546, 1706, 1934, 2334, 2976, 2795, 2196, 1843, 1627, 1473, 1353, 1288, 1225, 1221, 1233, 1278, 1355, 1462, 1620, 1825, 2184, 2755, 2608, 2084, 1763, 1559, 1414, 1297, 1225, 1175, 1158, 1168, 1214, 1292, 1402, 1562, 1756, 2073, 2565, 2499, 1989, 1702, 1505, 1360, 1251, 1174, 1126, 1107, 1125, 1175, 1249, 1353, 1502, 1698, 1983, 2452, 2414, 1939, 1655, 1468, 1325, 1218, 1138, 1088, 1070, 1085, 1131, 1210, 1325, 1465, 1648, 1925, 2377, 2341, 1892, 1634, 1438, 1297, 1184, 1110, 1060, 1040, 1059, 1105, 1181, 1290, 1435, 1624, 1883, 2313, 2306, 1869, 1610, 1422, 1280, 1174, 1098, 1040, 1024, 1045, 1087, 1165, 1275, 1412, 1600, 1865, 2293, 2293, 1874, 1604, 1417, 1271, 1172, 1087, 1035, 1024, 1035, 1084, 1161, 1267, 1409, 1594, 1851, 2247, 2300, 1869, 1610, 1417, 1278, 1174, 1093, 1040, 1023, 1038, 1087, 1165, 1271, 1407, 1604, 1865, 2266, 2327, 1878, 1620, 1438, 1288, 1188, 1102, 1053, 1035, 1047, 1096, 1183, 1288, 1427, 1600, 1883, 2313, 2384, 1920, 1655, 1457, 1314, 1210, 1129, 1079, 1065, 1078, 1120, 1201, 1308, 1457, 1637, 1897, 2362, 2467, 1978, 1687, 1496, 1348, 1237, 1151, 1112, 1096, 1107, 1155, 1235, 1346, 1485, 1683, 1954, 2444, 2565, 2051, 1744, 1543, 1394, 1282, 1203, 1153, 1143, 1156, 1197, 1275, 1397, 1528, 1728, 2030, 2556, 2726, 2165, 1804, 1610, 1449, 1339, 1253, 1206, 1195, 1201, 1247, 1330, 1438, 1594, 1800, 2124, 2698, 2942, 2293, 1892, 1673, 1516, 1397, 1321, 1267, 1249, 1269, 1319, 1387, 1510, 1669, 1892, 2253, 2867, 3170, 2459, 2009, 1771, 1594, 1471, 1389, 1339, 1325, 1332, 1384, 1471, 1578, 1732, 1999, 2436, 3107]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3248, 2543, 2090, 1819, 1637, 1514, 1431, 1383, 1361, 1380, 1439, 1511, 1633, 1810, 2068, 2519, 3208, 3011, 2381, 1959, 1719, 1559, 1439, 1354, 1309, 1290, 1305, 1354, 1436, 1562, 1715, 1949, 2345, 2988, 2797, 2220, 1853, 1643, 1477, 1368, 1283, 1237, 1223, 1241, 1286, 1354, 1474, 1637, 1853, 2176, 2757, 2619, 2101, 1773, 1571, 1418, 1305, 1231, 1179, 1164, 1179, 1223, 1303, 1418, 1565, 1769, 2090, 2593, 2519, 2004, 1715, 1516, 1371, 1259, 1179, 1132, 1114, 1132, 1176, 1253, 1361, 1514, 1715, 2009, 2463, 2403, 1954, 1675, 1474, 1329, 1223, 1145, 1095, 1073, 1095, 1142, 1220, 1329, 1477, 1675, 1940, 2410, 2345, 1912, 1643, 1449, 1309, 1196, 1119, 1066, 1047, 1066, 1113, 1194, 1296, 1447, 1637, 1912, 2332, 2304, 1871, 1623, 1426, 1292, 1183, 1106, 1049, 1040, 1051, 1097, 1178, 1283, 1423, 1616, 1879, 2284, 2304, 1879, 1603, 1433, 1283, 1176, 1092, 1040, 1024, 1042, 1089, 1172, 1279, 1423, 1613, 1884, 2264, 2318, 1884, 1613, 1433, 1290, 1178, 1098, 1040, 1031, 1046, 1097, 1176, 1283, 1431, 1610, 1875, 2291, 2345, 1902, 1630, 1441, 1298, 1192, 1114, 1057, 1042, 1057, 1106, 1188, 1298, 1441, 1630, 1889, 2325, 2374, 1926, 1643, 1468, 1327, 1210, 1130, 1083, 1064, 1080, 1128, 1208, 1318, 1460, 1657, 1935, 2374, 2456, 1989, 1697, 1505, 1359, 1241, 1164, 1120, 1103, 1119, 1155, 1241, 1350, 1493, 1689, 1969, 2463, 2576, 2068, 1746, 1549, 1400, 1292, 1208, 1158, 1143, 1157, 1207, 1281, 1400, 1540, 1746, 2051, 2560, 2738, 2164, 1814, 1613, 1447, 1347, 1261, 1212, 1194, 1212, 1259, 1336, 1444, 1597, 1814, 2147, 2682, 2921, 2304, 1912, 1679, 1519, 1408, 1325, 1277, 1257, 1273, 1314, 1403, 1514, 1675, 1902, 2271, 2868, 3208, 2471, 2025, 1769, 1613, 1479, 1390, 1345, 1322, 1340, 1390, 1474, 1593, 1765, 2009, 2440, 3144]
| },
| "lsc_samples_blue": {
| "uCoeff": [3153, 2496, 2066, 1788, 1608, 1498, 1401, 1354, 1346, 1361, 1426, 1479, 1608, 1775, 2084, 2470, 3112, 2958, 2372, 1964, 1712, 1546, 1426, 1346, 1295, 1275, 1295, 1354, 1418, 1536, 1699, 1948, 2282, 2922, 2754, 2178, 1843, 1641, 1488, 1354, 1281, 1248, 1216, 1235, 1281, 1361, 1470, 1619, 1829, 2159, 2692, 2577, 2102, 1775, 1566, 1410, 1295, 1229, 1180, 1163, 1180, 1229, 1295, 1418, 1556, 1762, 2066, 2522, 2470, 2014, 1712, 1526, 1377, 1255, 1180, 1136, 1120, 1136, 1180, 1248, 1361, 1507, 1712, 1980, 2420, 2372, 1948, 1664, 1470, 1324, 1223, 1146, 1094, 1089, 1099, 1146, 1223, 1317, 1488, 1653, 1917, 2372, 2304, 1917, 1630, 1470, 1309, 1204, 1114, 1070, 1051, 1075, 1120, 1192, 1302, 1443, 1641, 1887, 2282, 2261, 1857, 1619, 1426, 1288, 1192, 1109, 1046, 1037, 1060, 1104, 1180, 1295, 1435, 1608, 1857, 2219, 2282, 1857, 1619, 1435, 1288, 1180, 1094, 1046, 1024, 1051, 1094, 1175, 1288, 1426, 1608, 1857, 2239, 2282, 1857, 1608, 1443, 1295, 1186, 1099, 1046, 1033, 1056, 1104, 1180, 1288, 1426, 1619, 1887, 2282, 2282, 1917, 1641, 1452, 1302, 1198, 1109, 1065, 1046, 1060, 1114, 1198, 1302, 1443, 1619, 1887, 2304, 2326, 1932, 1664, 1470, 1331, 1223, 1146, 1089, 1075, 1084, 1130, 1216, 1324, 1470, 1653, 1917, 2349, 2470, 1997, 1687, 1507, 1361, 1248, 1158, 1120, 1109, 1130, 1158, 1261, 1354, 1498, 1676, 1964, 2396, 2549, 2066, 1749, 1546, 1401, 1288, 1216, 1163, 1146, 1158, 1210, 1281, 1401, 1546, 1749, 2031, 2522, 2662, 2139, 1815, 1619, 1452, 1339, 1255, 1210, 1186, 1210, 1255, 1339, 1452, 1566, 1802, 2120, 2633, 2853, 2282, 1887, 1664, 1517, 1385, 1331, 1275, 1255, 1275, 1309, 1393, 1507, 1664, 1887, 2282, 2853, 3072, 2420, 2014, 1762, 1587, 1470, 1410, 1346, 1302, 1331, 1401, 1488, 1587, 1762, 2014, 2420, 3072]
| }
| }, {
| "name": "2688x1520_CWF_70",
| "resolution": "2688x1520",
| "illumination": "CWF",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2345, 1956, 1668, 1504, 1386, 1319, 1270, 1229, 1210, 1213, 1240, 1305, 1370, 1492, 1644, 1921, 2345, 2230, 1860, 1600, 1462, 1349, 1272, 1224, 1184, 1185, 1184, 1216, 1272, 1345, 1450, 1586, 1830, 2246, 2172, 1790, 1556, 1424, 1330, 1249, 1194, 1164, 1148, 1158, 1184, 1241, 1317, 1413, 1536, 1772, 2101, 2070, 1747, 1530, 1401, 1300, 1217, 1160, 1124, 1109, 1124, 1157, 1214, 1287, 1375, 1530, 1705, 2057, 2008, 1686, 1500, 1374, 1275, 1180, 1131, 1100, 1079, 1100, 1128, 1191, 1263, 1364, 1494, 1678, 1961, 1966, 1647, 1467, 1344, 1240, 1172, 1116, 1078, 1063, 1070, 1107, 1166, 1244, 1335, 1461, 1624, 1922, 1909, 1618, 1458, 1339, 1237, 1163, 1094, 1053, 1036, 1053, 1088, 1150, 1233, 1330, 1447, 1618, 1868, 1889, 1613, 1455, 1324, 1225, 1138, 1080, 1041, 1029, 1038, 1075, 1135, 1214, 1306, 1444, 1606, 1849, 1873, 1609, 1436, 1322, 1220, 1137, 1072, 1030, 1024, 1030, 1077, 1137, 1216, 1309, 1442, 1588, 1873, 1879, 1606, 1450, 1324, 1218, 1141, 1075, 1033, 1027, 1029, 1072, 1129, 1211, 1302, 1439, 1599, 1869, 1899, 1618, 1447, 1316, 1229, 1141, 1083, 1035, 1029, 1043, 1075, 1138, 1215, 1316, 1431, 1611, 1868, 1944, 1632, 1456, 1326, 1229, 1149, 1092, 1056, 1039, 1051, 1089, 1143, 1218, 1335, 1450, 1610, 1890, 1961, 1655, 1459, 1345, 1240, 1164, 1110, 1072, 1062, 1067, 1113, 1164, 1240, 1341, 1459, 1632, 1939, 2007, 1697, 1486, 1365, 1262, 1185, 1131, 1097, 1080, 1094, 1125, 1188, 1258, 1356, 1480, 1672, 1995, 2088, 1718, 1504, 1392, 1290, 1207, 1156, 1132, 1110, 1122, 1156, 1211, 1281, 1382, 1497, 1710, 2048, 2169, 1771, 1551, 1405, 1321, 1243, 1187, 1153, 1143, 1150, 1180, 1231, 1312, 1416, 1537, 1771, 2154, 2257, 1865, 1605, 1461, 1365, 1265, 1220, 1194, 1169, 1172, 1213, 1257, 1340, 1437, 1582, 1833, 2224]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2265, 1890, 1629, 1470, 1376, 1303, 1250, 1220, 1213, 1214, 1250, 1285, 1370, 1466, 1616, 1866, 2219, 2182, 1815, 1565, 1428, 1338, 1262, 1210, 1186, 1172, 1182, 1210, 1257, 1338, 1431, 1562, 1799, 2166, 2093, 1738, 1526, 1400, 1306, 1228, 1189, 1142, 1143, 1150, 1179, 1230, 1297, 1394, 1512, 1728, 2063, 1998, 1686, 1492, 1369, 1281, 1202, 1155, 1119, 1106, 1112, 1144, 1198, 1269, 1372, 1485, 1677, 1966, 1951, 1637, 1465, 1344, 1252, 1179, 1125, 1090, 1075, 1088, 1126, 1177, 1246, 1342, 1462, 1633, 1914, 1911, 1618, 1444, 1329, 1236, 1163, 1104, 1067, 1053, 1064, 1098, 1155, 1236, 1326, 1438, 1606, 1882, 1872, 1594, 1439, 1314, 1221, 1141, 1088, 1049, 1033, 1048, 1083, 1138, 1215, 1312, 1430, 1586, 1850, 1856, 1584, 1426, 1307, 1212, 1137, 1081, 1035, 1022, 1039, 1071, 1129, 1208, 1298, 1418, 1580, 1845, 1848, 1591, 1423, 1305, 1206, 1138, 1073, 1031, 1024, 1031, 1070, 1128, 1202, 1298, 1414, 1572, 1811, 1850, 1584, 1426, 1302, 1210, 1137, 1077, 1035, 1021, 1032, 1071, 1129, 1204, 1293, 1421, 1580, 1823, 1861, 1583, 1427, 1314, 1213, 1145, 1080, 1042, 1027, 1036, 1074, 1140, 1213, 1304, 1410, 1586, 1850, 1888, 1602, 1444, 1319, 1226, 1155, 1096, 1058, 1047, 1057, 1087, 1146, 1220, 1319, 1429, 1583, 1871, 1926, 1629, 1452, 1337, 1242, 1166, 1103, 1076, 1064, 1071, 1106, 1164, 1239, 1326, 1449, 1608, 1908, 1966, 1659, 1475, 1356, 1262, 1188, 1133, 1097, 1091, 1100, 1128, 1182, 1264, 1342, 1462, 1642, 1959, 2042, 1713, 1494, 1385, 1285, 1216, 1157, 1125, 1118, 1120, 1151, 1207, 1275, 1371, 1491, 1681, 2020, 2141, 1767, 1527, 1403, 1312, 1237, 1190, 1153, 1140, 1155, 1188, 1228, 1307, 1400, 1527, 1736, 2086, 2219, 1836, 1574, 1443, 1340, 1266, 1216, 1184, 1176, 1178, 1212, 1266, 1326, 1411, 1566, 1819, 2175]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2273, 1899, 1637, 1481, 1375, 1303, 1253, 1223, 1208, 1221, 1260, 1300, 1373, 1475, 1620, 1881, 2246, 2191, 1835, 1582, 1442, 1348, 1274, 1220, 1191, 1177, 1187, 1220, 1272, 1351, 1439, 1574, 1807, 2174, 2094, 1756, 1535, 1413, 1309, 1242, 1185, 1153, 1144, 1157, 1187, 1229, 1307, 1408, 1535, 1722, 2065, 2007, 1699, 1500, 1380, 1284, 1209, 1160, 1122, 1111, 1122, 1153, 1207, 1284, 1374, 1497, 1690, 1988, 1966, 1650, 1477, 1355, 1262, 1186, 1130, 1095, 1082, 1095, 1127, 1181, 1253, 1352, 1477, 1654, 1923, 1903, 1631, 1461, 1334, 1240, 1168, 1111, 1074, 1055, 1074, 1108, 1165, 1240, 1337, 1461, 1619, 1908, 1876, 1611, 1447, 1324, 1233, 1152, 1096, 1054, 1040, 1054, 1090, 1150, 1221, 1322, 1441, 1611, 1865, 1854, 1585, 1438, 1310, 1223, 1146, 1090, 1043, 1038, 1046, 1081, 1141, 1215, 1308, 1432, 1593, 1838, 1857, 1596, 1423, 1320, 1218, 1142, 1078, 1037, 1024, 1038, 1075, 1138, 1214, 1310, 1431, 1600, 1825, 1865, 1597, 1429, 1317, 1221, 1141, 1082, 1035, 1029, 1040, 1081, 1139, 1215, 1315, 1426, 1589, 1843, 1876, 1603, 1435, 1317, 1223, 1149, 1091, 1046, 1034, 1046, 1084, 1145, 1223, 1317, 1435, 1591, 1859, 1880, 1607, 1434, 1329, 1238, 1156, 1097, 1062, 1047, 1059, 1095, 1154, 1229, 1322, 1446, 1615, 1880, 1917, 1637, 1461, 1344, 1251, 1169, 1115, 1084, 1071, 1083, 1107, 1169, 1243, 1334, 1454, 1621, 1923, 1975, 1672, 1477, 1361, 1268, 1197, 1139, 1102, 1092, 1101, 1137, 1187, 1268, 1353, 1477, 1659, 1962, 2050, 1713, 1503, 1387, 1283, 1223, 1164, 1130, 1117, 1130, 1162, 1213, 1280, 1373, 1503, 1699, 2008, 2126, 1776, 1543, 1408, 1314, 1247, 1193, 1162, 1147, 1158, 1183, 1242, 1309, 1405, 1536, 1750, 2087, 2246, 1845, 1586, 1441, 1356, 1273, 1217, 1190, 1174, 1186, 1217, 1269, 1339, 1438, 1574, 1822, 2201]
| },
| "lsc_samples_blue": {
| "uCoeff": [2207, 1864, 1618, 1457, 1352, 1289, 1227, 1197, 1195, 1204, 1249, 1273, 1352, 1446, 1632, 1845, 2178, 2153, 1828, 1586, 1436, 1337, 1263, 1213, 1178, 1164, 1178, 1219, 1256, 1329, 1426, 1573, 1759, 2126, 2063, 1724, 1527, 1412, 1320, 1229, 1183, 1164, 1138, 1152, 1183, 1236, 1303, 1393, 1515, 1708, 2016, 1975, 1700, 1502, 1376, 1276, 1200, 1158, 1123, 1111, 1123, 1158, 1200, 1284, 1367, 1491, 1671, 1933, 1928, 1658, 1473, 1364, 1268, 1182, 1131, 1099, 1087, 1099, 1131, 1176, 1254, 1346, 1473, 1630, 1890, 1878, 1626, 1452, 1331, 1235, 1167, 1113, 1073, 1071, 1078, 1113, 1167, 1228, 1347, 1442, 1600, 1878, 1843, 1615, 1436, 1343, 1233, 1160, 1092, 1058, 1043, 1063, 1097, 1149, 1226, 1319, 1445, 1590, 1825, 1819, 1574, 1434, 1311, 1220, 1155, 1093, 1041, 1035, 1055, 1088, 1144, 1226, 1319, 1424, 1574, 1785, 1840, 1577, 1437, 1321, 1222, 1146, 1080, 1043, 1024, 1048, 1080, 1140, 1222, 1313, 1427, 1577, 1805, 1836, 1574, 1424, 1327, 1226, 1150, 1083, 1041, 1031, 1050, 1088, 1144, 1220, 1311, 1434, 1599, 1836, 1825, 1615, 1445, 1327, 1226, 1155, 1087, 1054, 1039, 1049, 1092, 1155, 1226, 1319, 1426, 1590, 1843, 1842, 1613, 1452, 1331, 1242, 1167, 1113, 1068, 1057, 1063, 1097, 1161, 1235, 1331, 1442, 1600, 1860, 1928, 1644, 1453, 1346, 1254, 1176, 1109, 1084, 1077, 1094, 1109, 1189, 1246, 1338, 1442, 1617, 1871, 1954, 1671, 1480, 1358, 1269, 1194, 1146, 1107, 1095, 1102, 1140, 1187, 1269, 1358, 1480, 1642, 1933, 1994, 1693, 1503, 1393, 1288, 1215, 1158, 1128, 1110, 1128, 1158, 1215, 1288, 1347, 1492, 1678, 1972, 2076, 1759, 1523, 1396, 1312, 1227, 1199, 1160, 1145, 1160, 1179, 1234, 1304, 1396, 1523, 1759, 2076, 2150, 1807, 1578, 1435, 1334, 1265, 1234, 1191, 1156, 1177, 1227, 1281, 1334, 1435, 1578, 1807, 2150]
| }
| }, {
| "name": "2688x1520_TL84_100",
| "resolution": "2688x1520",
| "illumination": "TL84",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3341, 2591, 2107, 1834, 1644, 1530, 1423, 1369, 1358, 1373, 1427, 1503, 1623, 1795, 2107, 2502, 3277, 3078, 2362, 1976, 1733, 1563, 1443, 1358, 1306, 1296, 1302, 1347, 1431, 1548, 1716, 1953, 2341, 3005, 2886, 2257, 1881, 1654, 1498, 1380, 1296, 1242, 1230, 1236, 1289, 1365, 1485, 1633, 1860, 2189, 2791, 2702, 2125, 1807, 1592, 1431, 1319, 1239, 1195, 1178, 1187, 1224, 1316, 1423, 1587, 1776, 2107, 2645, 2578, 2048, 1751, 1539, 1392, 1276, 1198, 1147, 1126, 1136, 1187, 1270, 1376, 1534, 1733, 2024, 2527, 2478, 2000, 1693, 1507, 1351, 1239, 1144, 1104, 1085, 1102, 1149, 1227, 1333, 1489, 1676, 1953, 2407, 2385, 1946, 1654, 1476, 1316, 1192, 1121, 1078, 1049, 1072, 1116, 1201, 1306, 1455, 1644, 1909, 2341, 2351, 1902, 1633, 1443, 1292, 1178, 1104, 1047, 1037, 1049, 1099, 1178, 1279, 1427, 1623, 1874, 2330, 2298, 1881, 1612, 1423, 1286, 1170, 1085, 1039, 1024, 1047, 1088, 1165, 1270, 1419, 1618, 1867, 2288, 2298, 1895, 1618, 1435, 1279, 1170, 1092, 1039, 1024, 1039, 1090, 1162, 1273, 1407, 1612, 1867, 2278, 2351, 1895, 1633, 1439, 1289, 1189, 1107, 1047, 1034, 1054, 1099, 1181, 1289, 1431, 1623, 1881, 2309, 2396, 1931, 1665, 1459, 1319, 1218, 1131, 1078, 1063, 1076, 1124, 1206, 1309, 1451, 1649, 1931, 2362, 2478, 2000, 1710, 1512, 1358, 1248, 1168, 1114, 1095, 1116, 1168, 1248, 1347, 1494, 1693, 1992, 2454, 2605, 2082, 1764, 1563, 1407, 1292, 1218, 1168, 1154, 1170, 1212, 1286, 1392, 1553, 1751, 2056, 2578, 2760, 2199, 1840, 1633, 1459, 1351, 1270, 1215, 1204, 1227, 1267, 1340, 1459, 1612, 1834, 2161, 2760, 2988, 2330, 1946, 1710, 1539, 1415, 1340, 1279, 1260, 1286, 1330, 1411, 1525, 1699, 1924, 2298, 2919, 3235, 2490, 2048, 1788, 1607, 1494, 1403, 1358, 1340, 1347, 1407, 1481, 1607, 1788, 2032, 2454, 3215]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3279, 2544, 2095, 1803, 1642, 1520, 1426, 1391, 1360, 1371, 1429, 1511, 1635, 1794, 2072, 2518, 3208, 3024, 2364, 1956, 1727, 1556, 1437, 1360, 1305, 1289, 1307, 1346, 1432, 1549, 1695, 1931, 2334, 2963, 2805, 2228, 1867, 1653, 1487, 1371, 1289, 1241, 1227, 1237, 1294, 1363, 1484, 1635, 1848, 2208, 2763, 2663, 2119, 1786, 1586, 1432, 1317, 1243, 1183, 1170, 1187, 1229, 1307, 1421, 1576, 1777, 2072, 2607, 2526, 2043, 1727, 1527, 1383, 1269, 1191, 1141, 1122, 1136, 1187, 1263, 1373, 1520, 1715, 2004, 2509, 2442, 1967, 1676, 1496, 1346, 1239, 1157, 1105, 1084, 1096, 1148, 1227, 1331, 1481, 1688, 1946, 2403, 2379, 1926, 1650, 1452, 1310, 1205, 1121, 1070, 1053, 1073, 1121, 1197, 1303, 1449, 1646, 1906, 2327, 2320, 1896, 1628, 1440, 1298, 1180, 1105, 1052, 1037, 1050, 1102, 1180, 1282, 1432, 1628, 1867, 2270, 2305, 1881, 1617, 1429, 1291, 1174, 1096, 1038, 1024, 1044, 1084, 1167, 1276, 1418, 1603, 1867, 2277, 2334, 1886, 1617, 1437, 1285, 1174, 1096, 1044, 1028, 1044, 1086, 1163, 1276, 1413, 1607, 1867, 2312, 2334, 1896, 1635, 1443, 1298, 1187, 1110, 1058, 1041, 1055, 1104, 1180, 1287, 1426, 1624, 1886, 2327, 2387, 1941, 1665, 1472, 1331, 1207, 1136, 1087, 1069, 1086, 1129, 1209, 1312, 1463, 1657, 1916, 2357, 2492, 2004, 1711, 1502, 1368, 1254, 1168, 1124, 1107, 1122, 1168, 1243, 1350, 1493, 1699, 1977, 2467, 2616, 2083, 1764, 1569, 1415, 1298, 1219, 1167, 1157, 1172, 1221, 1294, 1407, 1552, 1748, 2060, 2597, 2763, 2202, 1844, 1628, 1472, 1348, 1280, 1225, 1207, 1225, 1267, 1350, 1457, 1610, 1830, 2157, 2712, 2975, 2342, 1936, 1707, 1536, 1421, 1343, 1289, 1271, 1285, 1331, 1415, 1520, 1688, 1911, 2284, 2951, 3208, 2501, 2043, 1773, 1614, 1493, 1415, 1360, 1341, 1360, 1407, 1481, 1593, 1773, 2043, 2451, 3140]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3317, 2535, 2116, 1816, 1657, 1515, 1436, 1383, 1372, 1375, 1425, 1522, 1632, 1811, 2074, 2501, 3216, 3020, 2373, 1975, 1723, 1577, 1445, 1357, 1319, 1298, 1309, 1362, 1439, 1560, 1715, 1959, 2358, 2983, 2835, 2244, 1875, 1661, 1500, 1380, 1303, 1246, 1231, 1244, 1296, 1372, 1491, 1650, 1866, 2197, 2793, 2662, 2122, 1798, 1593, 1439, 1323, 1246, 1194, 1173, 1192, 1237, 1316, 1425, 1570, 1789, 2110, 2625, 2518, 2046, 1735, 1534, 1393, 1271, 1196, 1142, 1127, 1147, 1190, 1265, 1380, 1531, 1723, 2024, 2493, 2451, 1975, 1695, 1503, 1350, 1235, 1158, 1108, 1087, 1102, 1149, 1233, 1338, 1494, 1688, 1965, 2412, 2388, 1924, 1657, 1470, 1321, 1213, 1130, 1079, 1055, 1078, 1121, 1197, 1312, 1456, 1654, 1909, 2343, 2336, 1894, 1636, 1450, 1303, 1186, 1110, 1056, 1041, 1056, 1103, 1186, 1289, 1436, 1628, 1890, 2292, 2321, 1890, 1621, 1436, 1285, 1177, 1100, 1041, 1024, 1047, 1095, 1177, 1280, 1425, 1614, 1885, 2307, 2343, 1880, 1625, 1431, 1289, 1178, 1100, 1047, 1033, 1044, 1093, 1175, 1285, 1422, 1618, 1866, 2307, 2350, 1919, 1632, 1447, 1307, 1194, 1111, 1061, 1046, 1055, 1110, 1190, 1293, 1442, 1628, 1909, 2321, 2427, 1934, 1672, 1473, 1333, 1223, 1142, 1085, 1070, 1090, 1135, 1207, 1321, 1467, 1657, 1939, 2373, 2501, 2007, 1715, 1512, 1370, 1252, 1175, 1123, 1113, 1128, 1175, 1246, 1352, 1509, 1711, 1991, 2468, 2615, 2098, 1764, 1570, 1406, 1298, 1223, 1177, 1160, 1171, 1223, 1291, 1409, 1557, 1772, 2074, 2606, 2782, 2191, 1852, 1632, 1473, 1355, 1274, 1229, 1213, 1233, 1276, 1352, 1467, 1625, 1843, 2165, 2741, 2972, 2328, 1934, 1715, 1547, 1422, 1343, 1293, 1280, 1293, 1340, 1417, 1544, 1707, 1929, 2328, 2972, 3244, 2501, 2063, 1798, 1625, 1491, 1417, 1352, 1343, 1350, 1412, 1470, 1614, 1789, 2035, 2509, 3202]
| },
| "lsc_samples_blue": {
| "uCoeff": [3085, 2493, 2006, 1775, 1613, 1478, 1402, 1349, 1349, 1363, 1410, 1469, 1582, 1750, 2023, 2443, 3164, 2938, 2350, 1943, 1702, 1533, 1418, 1341, 1292, 1279, 1299, 1341, 1426, 1523, 1714, 1928, 2285, 2870, 2742, 2203, 1828, 1645, 1487, 1371, 1285, 1246, 1228, 1234, 1292, 1356, 1469, 1624, 1842, 2165, 2742, 2571, 2109, 1763, 1582, 1435, 1313, 1234, 1192, 1181, 1186, 1228, 1306, 1418, 1582, 1775, 2091, 2544, 2493, 2023, 1750, 1533, 1379, 1266, 1198, 1148, 1127, 1137, 1186, 1266, 1363, 1505, 1714, 1990, 2443, 2350, 1928, 1679, 1487, 1334, 1240, 1153, 1102, 1082, 1097, 1148, 1216, 1334, 1478, 1656, 1943, 2350, 2306, 1898, 1634, 1460, 1313, 1198, 1122, 1073, 1055, 1078, 1122, 1198, 1313, 1443, 1634, 1884, 2285, 2264, 1884, 1613, 1435, 1292, 1181, 1102, 1050, 1028, 1050, 1102, 1181, 1279, 1418, 1602, 1884, 2264, 2264, 1856, 1602, 1410, 1279, 1170, 1092, 1041, 1024, 1046, 1082, 1175, 1272, 1418, 1592, 1856, 2243, 2243, 1870, 1613, 1435, 1292, 1181, 1102, 1037, 1033, 1041, 1092, 1159, 1272, 1418, 1613, 1856, 2264, 2285, 1870, 1634, 1460, 1306, 1186, 1102, 1064, 1041, 1059, 1107, 1181, 1292, 1435, 1624, 1870, 2264, 2373, 1943, 1656, 1469, 1341, 1210, 1137, 1078, 1073, 1082, 1132, 1222, 1313, 1452, 1645, 1898, 2306, 2443, 1990, 1702, 1505, 1356, 1253, 1164, 1127, 1107, 1122, 1164, 1253, 1349, 1496, 1690, 1959, 2419, 2571, 2074, 1763, 1552, 1418, 1292, 1216, 1170, 1153, 1159, 1210, 1279, 1386, 1542, 1738, 2023, 2493, 2712, 2165, 1828, 1624, 1469, 1349, 1272, 1228, 1210, 1222, 1259, 1341, 1443, 1592, 1828, 2146, 2654, 2870, 2285, 1928, 1714, 1523, 1402, 1327, 1279, 1259, 1285, 1327, 1402, 1505, 1667, 1913, 2264, 2837, 3085, 2468, 2023, 1775, 1602, 1487, 1402, 1349, 1341, 1349, 1394, 1487, 1602, 1763, 1990, 2443, 3124]
| }
| }, {
| "name": "2688x1520_TL84_70",
| "resolution": "2688x1520",
| "illumination": "TL84",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2339, 1935, 1651, 1494, 1381, 1317, 1246, 1211, 1205, 1214, 1249, 1294, 1364, 1462, 1651, 1868, 2294, 2240, 1820, 1596, 1454, 1352, 1278, 1223, 1188, 1183, 1185, 1214, 1267, 1339, 1439, 1577, 1804, 2187, 2161, 1786, 1558, 1423, 1328, 1253, 1196, 1158, 1150, 1152, 1190, 1239, 1317, 1405, 1541, 1732, 2090, 2071, 1719, 1529, 1398, 1295, 1223, 1167, 1137, 1125, 1129, 1153, 1219, 1288, 1394, 1503, 1704, 2027, 2013, 1686, 1508, 1375, 1281, 1203, 1148, 1109, 1093, 1100, 1137, 1197, 1267, 1371, 1492, 1666, 1973, 1962, 1669, 1477, 1364, 1260, 1183, 1110, 1082, 1067, 1080, 1115, 1171, 1244, 1348, 1462, 1630, 1906, 1907, 1640, 1457, 1349, 1239, 1149, 1098, 1067, 1042, 1060, 1094, 1157, 1229, 1330, 1448, 1609, 1872, 1892, 1612, 1447, 1326, 1224, 1142, 1088, 1042, 1035, 1044, 1083, 1142, 1211, 1311, 1437, 1588, 1874, 1853, 1597, 1431, 1310, 1220, 1136, 1071, 1035, 1024, 1044, 1073, 1131, 1205, 1306, 1435, 1586, 1844, 1849, 1606, 1433, 1319, 1211, 1134, 1076, 1033, 1022, 1033, 1074, 1126, 1205, 1293, 1428, 1583, 1832, 1880, 1597, 1438, 1315, 1214, 1146, 1084, 1036, 1027, 1043, 1077, 1138, 1214, 1307, 1429, 1585, 1846, 1897, 1612, 1453, 1321, 1231, 1163, 1098, 1057, 1045, 1055, 1091, 1152, 1221, 1314, 1439, 1612, 1870, 1934, 1646, 1472, 1351, 1250, 1176, 1119, 1078, 1063, 1080, 1119, 1176, 1240, 1335, 1457, 1640, 1915, 1996, 1684, 1492, 1373, 1274, 1198, 1148, 1111, 1102, 1114, 1142, 1192, 1260, 1364, 1482, 1663, 1976, 2067, 1740, 1524, 1405, 1294, 1226, 1172, 1133, 1126, 1144, 1169, 1217, 1294, 1387, 1519, 1710, 2067, 2174, 1795, 1571, 1434, 1331, 1253, 1207, 1164, 1151, 1170, 1198, 1250, 1319, 1425, 1553, 1771, 2124, 2265, 1859, 1605, 1457, 1351, 1286, 1228, 1201, 1189, 1192, 1232, 1275, 1351, 1457, 1592, 1832, 2250]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2296, 1899, 1642, 1469, 1380, 1309, 1249, 1231, 1207, 1212, 1251, 1301, 1374, 1462, 1623, 1880, 2246, 2200, 1822, 1579, 1449, 1346, 1273, 1225, 1187, 1177, 1190, 1212, 1268, 1340, 1422, 1559, 1799, 2156, 2101, 1763, 1546, 1422, 1318, 1244, 1190, 1157, 1148, 1153, 1194, 1237, 1316, 1406, 1531, 1747, 2069, 2041, 1714, 1511, 1393, 1296, 1220, 1172, 1126, 1117, 1130, 1158, 1212, 1286, 1384, 1503, 1676, 1998, 1972, 1682, 1487, 1364, 1274, 1196, 1141, 1104, 1090, 1099, 1138, 1190, 1264, 1358, 1476, 1650, 1959, 1934, 1641, 1462, 1354, 1255, 1183, 1124, 1084, 1066, 1074, 1115, 1171, 1242, 1341, 1472, 1624, 1902, 1903, 1623, 1453, 1327, 1233, 1161, 1098, 1059, 1046, 1062, 1098, 1154, 1227, 1324, 1450, 1606, 1861, 1866, 1607, 1442, 1324, 1229, 1143, 1089, 1046, 1035, 1045, 1086, 1143, 1214, 1316, 1442, 1582, 1826, 1858, 1598, 1435, 1316, 1225, 1140, 1081, 1035, 1024, 1041, 1070, 1133, 1210, 1306, 1423, 1585, 1835, 1878, 1599, 1432, 1321, 1216, 1138, 1079, 1039, 1026, 1039, 1070, 1127, 1208, 1298, 1423, 1582, 1860, 1867, 1598, 1440, 1319, 1222, 1144, 1088, 1047, 1034, 1044, 1081, 1137, 1212, 1303, 1431, 1589, 1861, 1890, 1620, 1452, 1332, 1242, 1152, 1103, 1066, 1051, 1064, 1096, 1154, 1224, 1325, 1446, 1599, 1866, 1945, 1650, 1473, 1342, 1260, 1182, 1120, 1088, 1075, 1086, 1120, 1172, 1243, 1334, 1463, 1628, 1926, 2005, 1685, 1493, 1378, 1281, 1203, 1148, 1110, 1105, 1116, 1150, 1199, 1274, 1364, 1479, 1666, 1991, 2069, 1742, 1527, 1400, 1305, 1224, 1182, 1142, 1129, 1142, 1169, 1226, 1292, 1385, 1516, 1706, 2031, 2165, 1805, 1563, 1432, 1329, 1258, 1210, 1173, 1161, 1169, 1199, 1254, 1315, 1416, 1543, 1760, 2147, 2246, 1867, 1601, 1444, 1356, 1285, 1239, 1203, 1190, 1203, 1232, 1275, 1339, 1444, 1601, 1830, 2198]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2322, 1893, 1658, 1479, 1393, 1304, 1257, 1223, 1218, 1216, 1248, 1310, 1372, 1475, 1625, 1867, 2251, 2198, 1829, 1595, 1445, 1364, 1280, 1223, 1200, 1185, 1191, 1227, 1275, 1349, 1439, 1582, 1817, 2171, 2123, 1775, 1553, 1429, 1330, 1253, 1202, 1161, 1152, 1159, 1196, 1246, 1322, 1419, 1545, 1739, 2091, 2040, 1716, 1521, 1400, 1303, 1226, 1174, 1136, 1120, 1134, 1166, 1220, 1290, 1379, 1514, 1706, 2012, 1966, 1684, 1494, 1371, 1283, 1198, 1146, 1105, 1094, 1110, 1140, 1192, 1271, 1368, 1483, 1666, 1946, 1941, 1648, 1479, 1361, 1259, 1180, 1124, 1086, 1069, 1080, 1116, 1178, 1248, 1353, 1472, 1639, 1909, 1910, 1621, 1460, 1344, 1244, 1169, 1107, 1068, 1047, 1066, 1099, 1154, 1235, 1331, 1457, 1609, 1874, 1879, 1606, 1449, 1333, 1233, 1149, 1093, 1051, 1039, 1051, 1087, 1149, 1221, 1320, 1442, 1601, 1844, 1871, 1605, 1439, 1322, 1219, 1142, 1086, 1038, 1024, 1044, 1081, 1142, 1214, 1312, 1433, 1600, 1859, 1885, 1593, 1439, 1315, 1221, 1142, 1084, 1042, 1031, 1039, 1077, 1138, 1216, 1307, 1433, 1581, 1856, 1880, 1617, 1437, 1323, 1231, 1150, 1089, 1049, 1038, 1043, 1087, 1147, 1218, 1318, 1434, 1609, 1856, 1922, 1614, 1459, 1334, 1244, 1168, 1109, 1064, 1052, 1069, 1102, 1153, 1232, 1328, 1446, 1618, 1879, 1952, 1652, 1476, 1351, 1261, 1180, 1126, 1087, 1081, 1092, 1126, 1174, 1245, 1348, 1473, 1639, 1926, 2004, 1697, 1492, 1379, 1273, 1203, 1152, 1120, 1108, 1114, 1152, 1197, 1276, 1367, 1499, 1678, 1997, 2083, 1734, 1534, 1404, 1306, 1230, 1176, 1146, 1135, 1150, 1178, 1228, 1301, 1397, 1526, 1713, 2053, 2162, 1794, 1561, 1439, 1338, 1260, 1209, 1177, 1169, 1177, 1207, 1255, 1335, 1432, 1557, 1794, 2162, 2271, 1867, 1616, 1465, 1366, 1283, 1241, 1196, 1192, 1194, 1236, 1266, 1357, 1458, 1594, 1874, 2242]
| },
| "lsc_samples_blue": {
| "uCoeff": [2159, 1861, 1572, 1446, 1356, 1272, 1228, 1193, 1197, 1206, 1235, 1264, 1330, 1426, 1585, 1825, 2215, 2138, 1811, 1569, 1428, 1326, 1256, 1208, 1176, 1167, 1182, 1208, 1264, 1318, 1438, 1557, 1761, 2088, 2053, 1743, 1514, 1415, 1318, 1245, 1186, 1162, 1148, 1150, 1193, 1231, 1303, 1396, 1525, 1713, 2053, 1970, 1706, 1491, 1389, 1299, 1216, 1163, 1135, 1127, 1129, 1157, 1210, 1284, 1389, 1502, 1691, 1950, 1946, 1665, 1507, 1369, 1269, 1193, 1148, 1111, 1094, 1100, 1137, 1193, 1255, 1344, 1475, 1638, 1908, 1861, 1609, 1465, 1346, 1244, 1184, 1119, 1080, 1065, 1075, 1114, 1161, 1244, 1338, 1445, 1622, 1861, 1844, 1600, 1439, 1334, 1236, 1154, 1099, 1062, 1047, 1066, 1099, 1154, 1236, 1319, 1439, 1587, 1827, 1821, 1597, 1429, 1319, 1223, 1144, 1085, 1045, 1026, 1045, 1085, 1144, 1211, 1303, 1419, 1597, 1821, 1825, 1576, 1422, 1298, 1213, 1136, 1078, 1038, 1024, 1042, 1068, 1141, 1207, 1306, 1413, 1576, 1809, 1805, 1584, 1429, 1319, 1223, 1144, 1085, 1032, 1031, 1036, 1076, 1123, 1205, 1303, 1429, 1573, 1821, 1827, 1575, 1439, 1334, 1230, 1143, 1079, 1052, 1034, 1048, 1084, 1138, 1217, 1311, 1430, 1575, 1811, 1879, 1622, 1445, 1330, 1251, 1155, 1104, 1056, 1055, 1061, 1099, 1166, 1225, 1314, 1435, 1584, 1826, 1908, 1638, 1465, 1344, 1249, 1181, 1115, 1090, 1074, 1085, 1115, 1181, 1242, 1336, 1455, 1612, 1889, 1970, 1677, 1491, 1363, 1284, 1197, 1145, 1113, 1101, 1103, 1140, 1185, 1255, 1355, 1470, 1636, 1910, 2031, 1713, 1514, 1396, 1303, 1224, 1174, 1145, 1132, 1139, 1162, 1218, 1280, 1369, 1514, 1698, 1987, 2088, 1761, 1557, 1438, 1318, 1242, 1195, 1163, 1149, 1169, 1195, 1242, 1302, 1399, 1545, 1745, 2064, 2159, 1843, 1585, 1446, 1347, 1280, 1228, 1193, 1190, 1193, 1221, 1280, 1347, 1436, 1559, 1825, 2187]
| }
| }, {
| "name": "2688x1520_HZ_100",
| "resolution": "2688x1520",
| "illumination": "HZ",
| "vignetting": 100,
| "lsc_samples_red": {
| "uCoeff": [3288, 2526, 2095, 1803, 1640, 1507, 1426, 1380, 1374, 1394, 1443, 1548, 1697, 1925, 2195, 2695, 3524, 3014, 2361, 1958, 1718, 1541, 1434, 1345, 1301, 1296, 1311, 1358, 1453, 1609, 1799, 2070, 2499, 3241, 2782, 2195, 1857, 1632, 1462, 1358, 1277, 1236, 1225, 1243, 1299, 1383, 1517, 1709, 1958, 2353, 2987, 2653, 2095, 1780, 1562, 1408, 1296, 1216, 1171, 1161, 1191, 1240, 1337, 1462, 1640, 1872, 2209, 2782, 2490, 2003, 1701, 1500, 1353, 1249, 1169, 1136, 1123, 1134, 1183, 1275, 1405, 1583, 1808, 2134, 2695, 2411, 1919, 1648, 1459, 1311, 1212, 1130, 1087, 1082, 1098, 1153, 1243, 1363, 1527, 1753, 2063, 2545, 2321, 1872, 1609, 1428, 1284, 1179, 1110, 1062, 1047, 1070, 1115, 1212, 1334, 1497, 1709, 1997, 2490, 2283, 1847, 1598, 1402, 1263, 1163, 1089, 1044, 1032, 1049, 1103, 1193, 1319, 1478, 1680, 1974, 2419, 2260, 1837, 1572, 1394, 1254, 1145, 1079, 1032, 1024, 1043, 1087, 1181, 1304, 1465, 1672, 1952, 2419, 2253, 1832, 1583, 1388, 1258, 1153, 1080, 1030, 1022, 1041, 1096, 1175, 1311, 1459, 1680, 1958, 2428, 2268, 1847, 1591, 1399, 1270, 1159, 1089, 1047, 1029, 1055, 1106, 1189, 1314, 1474, 1684, 1974, 2454, 2306, 1882, 1613, 1426, 1294, 1183, 1115, 1075, 1059, 1075, 1125, 1214, 1345, 1500, 1705, 2015, 2499, 2386, 1919, 1648, 1462, 1319, 1212, 1141, 1101, 1087, 1112, 1161, 1252, 1369, 1530, 1753, 2057, 2583, 2445, 1980, 1688, 1510, 1355, 1252, 1181, 1139, 1132, 1151, 1205, 1289, 1423, 1583, 1813, 2134, 2674, 2603, 2076, 1753, 1562, 1414, 1304, 1229, 1191, 1187, 1191, 1249, 1339, 1465, 1648, 1872, 2238, 2828, 2748, 2188, 1832, 1628, 1484, 1366, 1294, 1247, 1245, 1263, 1326, 1414, 1548, 1726, 1952, 2369, 3054, 2899, 2329, 1936, 1697, 1548, 1434, 1366, 1311, 1304, 1334, 1383, 1497, 1644, 1813, 2095, 2554, 3335]
| },
| "lsc_samples_greenR": {
| "uCoeff": [3088, 2404, 2001, 1763, 1604, 1471, 1408, 1361, 1354, 1359, 1423, 1513, 1646, 1832, 2105, 2563, 3217, 2847, 2248, 1877, 1657, 1510, 1403, 1323, 1283, 1281, 1300, 1343, 1429, 1560, 1736, 1984, 2355, 3008, 2672, 2111, 1781, 1589, 1435, 1333, 1258, 1222, 1212, 1225, 1274, 1370, 1497, 1657, 1887, 2233, 2836, 2499, 2013, 1710, 1533, 1378, 1276, 1210, 1161, 1157, 1177, 1229, 1313, 1432, 1585, 1794, 2111, 2651, 2379, 1929, 1653, 1471, 1330, 1238, 1161, 1120, 1111, 1134, 1175, 1267, 1378, 1536, 1740, 2031, 2526, 2308, 1867, 1607, 1438, 1293, 1197, 1127, 1076, 1070, 1090, 1148, 1229, 1338, 1500, 1702, 1979, 2429, 2233, 1818, 1585, 1400, 1272, 1169, 1104, 1055, 1044, 1063, 1109, 1197, 1320, 1465, 1669, 1935, 2331, 2191, 1799, 1557, 1394, 1258, 1157, 1081, 1041, 1026, 1052, 1107, 1189, 1300, 1447, 1646, 1908, 2331, 2177, 1799, 1550, 1380, 1249, 1150, 1076, 1033, 1024, 1046, 1092, 1175, 1295, 1441, 1626, 1913, 2315, 2164, 1794, 1553, 1378, 1249, 1146, 1080, 1042, 1026, 1044, 1093, 1169, 1295, 1444, 1626, 1887, 2308, 2184, 1809, 1560, 1389, 1269, 1161, 1097, 1046, 1032, 1057, 1109, 1189, 1303, 1459, 1638, 1913, 2347, 2248, 1832, 1585, 1417, 1286, 1183, 1118, 1081, 1060, 1078, 1122, 1210, 1330, 1462, 1673, 1929, 2404, 2300, 1882, 1619, 1441, 1318, 1212, 1146, 1107, 1090, 1113, 1163, 1249, 1364, 1506, 1706, 1984, 2481, 2387, 1945, 1677, 1484, 1354, 1258, 1187, 1142, 1140, 1155, 1203, 1288, 1403, 1568, 1754, 2067, 2592, 2499, 2013, 1727, 1547, 1403, 1305, 1238, 1199, 1185, 1203, 1253, 1340, 1453, 1615, 1823, 2164, 2724, 2703, 2137, 1799, 1604, 1471, 1364, 1298, 1262, 1249, 1269, 1313, 1411, 1523, 1690, 1913, 2292, 2907, 2859, 2270, 1908, 1686, 1533, 1441, 1370, 1323, 1325, 1333, 1386, 1484, 1607, 1790, 2031, 2463, 3102]
| },
| "lsc_samples_greenB": {
| "uCoeff": [3092, 2431, 2014, 1753, 1605, 1487, 1412, 1365, 1358, 1384, 1432, 1532, 1666, 1850, 2142, 2573, 3295, 2843, 2259, 1894, 1658, 1506, 1409, 1334, 1290, 1288, 1302, 1355, 1441, 1580, 1753, 1996, 2422, 3026, 2660, 2129, 1789, 1587, 1441, 1350, 1265, 1230, 1223, 1238, 1288, 1382, 1509, 1674, 1900, 2259, 2831, 2500, 2014, 1719, 1532, 1387, 1286, 1213, 1172, 1166, 1182, 1236, 1319, 1438, 1616, 1812, 2129, 2640, 2406, 1936, 1654, 1477, 1345, 1243, 1168, 1124, 1120, 1136, 1186, 1274, 1395, 1559, 1757, 2067, 2536, 2303, 1869, 1620, 1441, 1305, 1202, 1136, 1087, 1084, 1097, 1153, 1243, 1360, 1509, 1723, 1996, 2465, 2245, 1821, 1587, 1409, 1283, 1182, 1106, 1061, 1053, 1074, 1124, 1202, 1332, 1480, 1682, 1941, 2414, 2203, 1802, 1562, 1404, 1270, 1161, 1094, 1044, 1041, 1055, 1106, 1198, 1315, 1465, 1662, 1936, 2342, 2182, 1798, 1559, 1387, 1256, 1159, 1087, 1041, 1024, 1048, 1106, 1186, 1302, 1450, 1666, 1926, 2326, 2189, 1798, 1562, 1390, 1265, 1157, 1086, 1045, 1035, 1047, 1110, 1190, 1305, 1456, 1654, 1926, 2342, 2209, 1821, 1566, 1401, 1274, 1165, 1103, 1056, 1038, 1063, 1111, 1198, 1322, 1471, 1658, 1926, 2381, 2245, 1835, 1598, 1421, 1298, 1194, 1124, 1087, 1066, 1087, 1135, 1219, 1340, 1493, 1690, 1963, 2447, 2288, 1874, 1620, 1453, 1324, 1223, 1153, 1113, 1103, 1118, 1174, 1254, 1376, 1532, 1736, 2025, 2500, 2414, 1963, 1670, 1493, 1360, 1263, 1194, 1151, 1142, 1163, 1213, 1298, 1412, 1580, 1780, 2091, 2620, 2526, 2025, 1731, 1545, 1421, 1317, 1247, 1206, 1194, 1209, 1263, 1352, 1468, 1631, 1850, 2189, 2754, 2691, 2136, 1802, 1620, 1480, 1371, 1302, 1272, 1256, 1279, 1329, 1415, 1542, 1702, 1931, 2326, 2937, 2854, 2281, 1884, 1698, 1545, 1429, 1373, 1327, 1312, 1342, 1401, 1493, 1620, 1789, 2049, 2482, 3205]
| },
| "lsc_samples_blue": {
| "uCoeff": [2546, 2014, 1729, 1527, 1466, 1338, 1273, 1255, 1282, 1319, 1368, 1490, 1637, 1833, 2107, 2477, 3107, 2350, 1929, 1651, 1455, 1348, 1309, 1238, 1214, 1222, 1247, 1300, 1389, 1580, 1762, 1971, 2350, 2909, 2235, 1815, 1580, 1421, 1300, 1255, 1190, 1167, 1175, 1198, 1255, 1358, 1527, 1697, 1909, 2263, 2736, 2083, 1729, 1540, 1389, 1264, 1190, 1146, 1111, 1131, 1160, 1214, 1319, 1466, 1637, 1851, 2156, 2656, 2014, 1651, 1478, 1358, 1222, 1160, 1104, 1085, 1098, 1125, 1167, 1273, 1421, 1580, 1797, 2083, 2511, 1909, 1622, 1466, 1328, 1190, 1131, 1078, 1047, 1072, 1078, 1138, 1247, 1389, 1567, 1746, 1992, 2380, 1909, 1594, 1432, 1282, 1190, 1111, 1072, 1024, 1041, 1066, 1098, 1214, 1368, 1527, 1746, 1992, 2350, 1870, 1580, 1410, 1273, 1183, 1091, 1047, 1024, 1030, 1053, 1118, 1222, 1348, 1502, 1697, 1971, 2320, 1833, 1567, 1389, 1264, 1183, 1085, 1041, 1018, 1024, 1047, 1104, 1198, 1348, 1502, 1713, 1929, 2320, 1815, 1567, 1389, 1273, 1183, 1098, 1047, 1018, 1018, 1047, 1111, 1206, 1338, 1490, 1713, 1950, 2320, 1851, 1580, 1432, 1282, 1190, 1111, 1060, 1036, 1041, 1060, 1125, 1214, 1348, 1502, 1713, 1971, 2412, 1851, 1594, 1421, 1291, 1206, 1125, 1085, 1047, 1060, 1085, 1131, 1230, 1368, 1527, 1713, 1992, 2380, 1890, 1608, 1443, 1309, 1222, 1153, 1104, 1098, 1098, 1118, 1183, 1291, 1421, 1580, 1746, 2060, 2444, 1909, 1637, 1455, 1348, 1255, 1183, 1138, 1125, 1118, 1146, 1214, 1319, 1443, 1608, 1815, 2107, 2546, 2014, 1697, 1502, 1378, 1291, 1222, 1198, 1160, 1175, 1183, 1255, 1368, 1478, 1637, 1890, 2182, 2656, 2083, 1762, 1553, 1432, 1328, 1264, 1230, 1214, 1222, 1255, 1328, 1443, 1553, 1729, 1950, 2291, 2820, 2182, 1833, 1622, 1478, 1389, 1309, 1300, 1273, 1282, 1309, 1410, 1490, 1637, 1797, 2060, 2444, 3107]
| }
| }, {
| "name": "2688x1520_HZ_70",
| "resolution": "2688x1520",
| "illumination": "HZ",
| "vignetting": 70,
| "lsc_samples_red": {
| "uCoeff": [2301, 1886, 1641, 1469, 1378, 1297, 1248, 1220, 1220, 1233, 1264, 1332, 1426, 1568, 1720, 2012, 2467, 2193, 1820, 1580, 1441, 1333, 1271, 1211, 1184, 1184, 1193, 1223, 1287, 1392, 1509, 1671, 1925, 2358, 2083, 1737, 1538, 1404, 1296, 1233, 1179, 1152, 1146, 1158, 1199, 1255, 1345, 1470, 1621, 1862, 2237, 2033, 1694, 1506, 1372, 1275, 1201, 1146, 1114, 1108, 1133, 1169, 1239, 1324, 1440, 1584, 1787, 2132, 1943, 1649, 1464, 1340, 1245, 1177, 1120, 1099, 1090, 1097, 1133, 1201, 1294, 1414, 1557, 1757, 2104, 1909, 1602, 1437, 1321, 1223, 1157, 1097, 1066, 1064, 1076, 1119, 1186, 1272, 1382, 1529, 1722, 2015, 1856, 1578, 1417, 1305, 1209, 1136, 1087, 1051, 1040, 1059, 1093, 1168, 1256, 1368, 1505, 1683, 1991, 1836, 1565, 1415, 1289, 1196, 1127, 1073, 1039, 1030, 1044, 1087, 1156, 1249, 1358, 1488, 1673, 1946, 1822, 1560, 1395, 1283, 1190, 1112, 1065, 1028, 1024, 1039, 1073, 1146, 1237, 1349, 1484, 1658, 1950, 1812, 1553, 1402, 1276, 1192, 1117, 1064, 1025, 1021, 1036, 1080, 1138, 1242, 1341, 1488, 1659, 1953, 1814, 1556, 1401, 1279, 1196, 1117, 1067, 1036, 1021, 1044, 1084, 1146, 1237, 1347, 1483, 1664, 1963, 1826, 1571, 1407, 1291, 1207, 1129, 1083, 1054, 1041, 1054, 1092, 1159, 1254, 1358, 1487, 1681, 1978, 1863, 1580, 1418, 1306, 1214, 1142, 1094, 1066, 1056, 1076, 1112, 1180, 1260, 1367, 1509, 1693, 2017, 1874, 1601, 1428, 1326, 1227, 1160, 1112, 1084, 1081, 1095, 1136, 1195, 1288, 1391, 1534, 1726, 2049, 1949, 1643, 1452, 1343, 1254, 1184, 1135, 1110, 1110, 1110, 1153, 1216, 1299, 1417, 1551, 1771, 2117, 2000, 1686, 1479, 1366, 1284, 1210, 1166, 1135, 1136, 1149, 1195, 1252, 1339, 1448, 1576, 1826, 2222, 2029, 1739, 1516, 1382, 1301, 1235, 1196, 1160, 1157, 1180, 1210, 1289, 1382, 1477, 1641, 1907, 2335]
| },
| "lsc_samples_greenR": {
| "uCoeff": [2162, 1795, 1568, 1436, 1348, 1266, 1233, 1204, 1201, 1202, 1246, 1302, 1383, 1493, 1649, 1914, 2252, 2072, 1732, 1515, 1390, 1306, 1243, 1191, 1168, 1170, 1183, 1210, 1266, 1350, 1456, 1602, 1815, 2189, 2001, 1670, 1475, 1367, 1272, 1210, 1161, 1140, 1133, 1142, 1176, 1243, 1327, 1425, 1563, 1767, 2123, 1915, 1628, 1447, 1346, 1247, 1183, 1140, 1105, 1105, 1120, 1158, 1216, 1296, 1393, 1518, 1707, 2032, 1857, 1588, 1423, 1314, 1225, 1166, 1112, 1084, 1079, 1098, 1126, 1194, 1269, 1373, 1498, 1672, 1972, 1827, 1558, 1402, 1302, 1206, 1143, 1094, 1055, 1052, 1068, 1114, 1173, 1248, 1358, 1485, 1651, 1923, 1786, 1532, 1396, 1279, 1197, 1126, 1081, 1044, 1036, 1052, 1087, 1154, 1243, 1339, 1470, 1630, 1864, 1763, 1525, 1379, 1281, 1191, 1121, 1065, 1036, 1024, 1047, 1091, 1152, 1231, 1329, 1458, 1617, 1875, 1755, 1528, 1376, 1271, 1185, 1116, 1062, 1030, 1024, 1042, 1077, 1141, 1229, 1326, 1443, 1625, 1866, 1741, 1521, 1376, 1266, 1183, 1110, 1064, 1037, 1024, 1039, 1077, 1133, 1227, 1327, 1441, 1599, 1857, 1747, 1524, 1374, 1269, 1195, 1119, 1075, 1035, 1024, 1046, 1087, 1146, 1227, 1333, 1442, 1612, 1877, 1780, 1529, 1383, 1283, 1200, 1129, 1085, 1060, 1043, 1057, 1089, 1155, 1241, 1323, 1460, 1610, 1903, 1796, 1549, 1393, 1287, 1213, 1142, 1098, 1072, 1058, 1077, 1114, 1177, 1256, 1346, 1469, 1633, 1937, 1829, 1573, 1419, 1303, 1225, 1166, 1118, 1087, 1089, 1099, 1134, 1194, 1270, 1377, 1484, 1672, 1987, 1871, 1593, 1431, 1330, 1244, 1185, 1142, 1118, 1108, 1122, 1157, 1217, 1288, 1389, 1510, 1712, 2040, 1967, 1647, 1453, 1345, 1273, 1208, 1169, 1149, 1140, 1155, 1182, 1250, 1317, 1417, 1545, 1767, 2115, 2001, 1695, 1495, 1373, 1288, 1240, 1199, 1170, 1176, 1179, 1213, 1277, 1351, 1458, 1591, 1839, 2171]
| },
| "lsc_samples_greenB": {
| "uCoeff": [2165, 1815, 1578, 1428, 1349, 1280, 1236, 1208, 1205, 1224, 1254, 1319, 1400, 1507, 1678, 1921, 2306, 2068, 1741, 1529, 1391, 1302, 1248, 1202, 1174, 1176, 1185, 1221, 1276, 1367, 1470, 1612, 1867, 2202, 1992, 1685, 1481, 1365, 1278, 1225, 1168, 1146, 1144, 1154, 1189, 1254, 1338, 1440, 1573, 1787, 2120, 1916, 1629, 1454, 1345, 1256, 1192, 1143, 1116, 1114, 1125, 1165, 1223, 1302, 1420, 1533, 1722, 2023, 1878, 1594, 1424, 1320, 1238, 1171, 1120, 1087, 1087, 1100, 1136, 1201, 1285, 1393, 1513, 1701, 1979, 1824, 1560, 1413, 1305, 1217, 1148, 1103, 1066, 1066, 1076, 1119, 1186, 1269, 1366, 1503, 1666, 1951, 1795, 1534, 1398, 1288, 1208, 1139, 1084, 1050, 1045, 1063, 1101, 1159, 1254, 1353, 1481, 1636, 1930, 1772, 1527, 1384, 1290, 1202, 1125, 1078, 1038, 1039, 1049, 1090, 1161, 1245, 1346, 1472, 1641, 1884, 1759, 1527, 1383, 1277, 1191, 1125, 1073, 1037, 1024, 1045, 1092, 1152, 1236, 1335, 1478, 1635, 1875, 1761, 1524, 1384, 1277, 1198, 1121, 1069, 1040, 1033, 1041, 1093, 1153, 1236, 1338, 1465, 1632, 1884, 1767, 1534, 1379, 1280, 1200, 1122, 1080, 1045, 1030, 1051, 1089, 1155, 1245, 1344, 1460, 1622, 1904, 1777, 1531, 1394, 1286, 1211, 1140, 1091, 1066, 1048, 1066, 1101, 1164, 1250, 1352, 1474, 1638, 1938, 1786, 1543, 1394, 1298, 1219, 1153, 1105, 1077, 1070, 1082, 1125, 1182, 1267, 1369, 1494, 1667, 1951, 1850, 1588, 1413, 1311, 1231, 1170, 1125, 1096, 1090, 1106, 1143, 1202, 1278, 1388, 1506, 1691, 2008, 1892, 1602, 1434, 1329, 1260, 1196, 1151, 1125, 1117, 1127, 1166, 1228, 1302, 1403, 1532, 1732, 2062, 1958, 1646, 1455, 1359, 1281, 1214, 1173, 1157, 1147, 1163, 1198, 1253, 1334, 1428, 1559, 1793, 2138, 1998, 1703, 1476, 1383, 1299, 1230, 1203, 1174, 1164, 1187, 1226, 1285, 1361, 1457, 1605, 1853, 2243]
| },
| "lsc_samples_blue": {
| "uCoeff": [1782, 1504, 1355, 1244, 1232, 1152, 1114, 1110, 1138, 1166, 1198, 1283, 1375, 1493, 1651, 1850, 2175, 1710, 1487, 1333, 1220, 1166, 1160, 1116, 1104, 1116, 1135, 1171, 1230, 1367, 1478, 1591, 1811, 2117, 1674, 1436, 1309, 1222, 1153, 1140, 1099, 1088, 1099, 1117, 1159, 1233, 1354, 1460, 1581, 1791, 2049, 1596, 1399, 1303, 1220, 1144, 1103, 1079, 1057, 1080, 1104, 1144, 1222, 1328, 1437, 1566, 1744, 2036, 1572, 1359, 1272, 1213, 1125, 1093, 1058, 1050, 1066, 1088, 1119, 1200, 1308, 1412, 1547, 1715, 1960, 1512, 1354, 1279, 1202, 1110, 1080, 1047, 1027, 1054, 1057, 1105, 1191, 1295, 1418, 1523, 1663, 1885, 1527, 1343, 1261, 1171, 1121, 1071, 1050, 1013, 1034, 1054, 1075, 1170, 1288, 1396, 1537, 1679, 1879, 1505, 1339, 1249, 1170, 1120, 1057, 1032, 1019, 1028, 1048, 1101, 1184, 1276, 1381, 1503, 1670, 1867, 1478, 1330, 1232, 1164, 1122, 1053, 1028, 1015, 1024, 1044, 1090, 1163, 1279, 1383, 1520, 1638, 1870, 1460, 1328, 1230, 1170, 1120, 1064, 1032, 1013, 1016, 1042, 1094, 1169, 1267, 1370, 1517, 1653, 1867, 1481, 1331, 1261, 1171, 1121, 1071, 1038, 1025, 1034, 1048, 1102, 1170, 1269, 1373, 1509, 1661, 1929, 1466, 1330, 1240, 1169, 1125, 1074, 1053, 1027, 1042, 1063, 1098, 1175, 1276, 1383, 1494, 1663, 1885, 1475, 1324, 1242, 1170, 1125, 1086, 1058, 1062, 1066, 1082, 1133, 1217, 1308, 1412, 1503, 1695, 1908, 1463, 1324, 1231, 1184, 1137, 1096, 1073, 1070, 1067, 1090, 1144, 1222, 1307, 1412, 1535, 1704, 1951, 1508, 1343, 1244, 1185, 1145, 1109, 1106, 1082, 1099, 1103, 1159, 1242, 1311, 1408, 1565, 1727, 1989, 1516, 1358, 1254, 1201, 1149, 1120, 1108, 1104, 1116, 1142, 1196, 1278, 1344, 1451, 1574, 1766, 2052, 1527, 1369, 1271, 1204, 1167, 1127, 1138, 1126, 1138, 1158, 1234, 1283, 1375, 1464, 1614, 1825, 2175]
| }
| }, {
| "name": "2688x1520_GRAY_0",
| "resolution": "2688x1520",
| "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]
| }
| }, {
| "name": "2560x1440_GRAY_0",
| "resolution": "2560x1440",
| "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": 30
| }
| },
| "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_6IR",
| "correct_level": 255,
| "correct_level_max": 255,
| "light_center": [1333.27, 728.104],
| "coefficient": [-2653.93, 0.000117117, -1.50167e-08, 8.7465e-12]
| }
| },
| "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, 0.8, 0.8, 0.9, 1, 1, 1, 1, 1]
| }
| },
| "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": [1.2804, 2.9801],
| "minDist": 0.05,
| "matrixUsed": ["A_100", "A_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "CWF",
| "awbGain": [1.7517, 2.5722],
| "minDist": 0.05,
| "matrixUsed": ["CWF_100", "CWF_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D50",
| "awbGain": [1.757, 1.7957],
| "minDist": 0.05,
| "matrixUsed": ["D50_100", "D50_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D65",
| "awbGain": [2.0505, 1.5066],
| "minDist": 0.05,
| "matrixUsed": ["D65_100", "D65_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "D75",
| "awbGain": [2.1544, 1.4068],
| "minDist": 0.05,
| "matrixUsed": ["D75_100", "D75_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "HZ",
| "awbGain": [1.0649, 3.6068],
| "minDist": 0.05,
| "matrixUsed": ["HZ_100", "HZ_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 8],
| "sat": [100, 100, 90, 74]
| }
| }, {
| "name": "TL84",
| "awbGain": [1.4221, 2.466],
| "minDist": 0.05,
| "matrixUsed": ["TL84_100", "TL84_74"],
| "matrixUsed_len": 2,
| "gain_sat_curve": {
| "gains": [1, 4, 6, 8],
| "sat": [100, 100, 90, 74]
| }
| }],
| "aCcmCof_len": 7,
| "matrixAll": [{
| "name": "A_100",
| "illumination": "A",
| "saturation": 100,
| "ccMatrix": [1.18468, -0.05251, -0.13217, -0.55735, 1.65338, -0.09604, -0.05098, -0.96618, 2.01716],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "A_74",
| "illumination": "A",
| "saturation": 74,
| "ccMatrix": [0.88235, 0.17991, -0.06226, -0.4068, 1.44327, -0.03647, -0.03281, -0.49476, 1.52757],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_100",
| "illumination": "D50",
| "saturation": 100,
| "ccMatrix": [1.20075, -0.12271, -0.07804, -0.32375, 1.50023, -0.17648, 0.0022, -0.47045, 1.46825],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D50_74",
| "illumination": "D50",
| "saturation": 74,
| "ccMatrix": [0.93266, 0.11404, -0.0467, -0.19546, 1.31573, -0.12027, 0.0451, -0.14209, 1.09698],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_100",
| "illumination": "D65",
| "saturation": 100,
| "ccMatrix": [1.26761, -0.20091, -0.0667, -0.29068, 1.51316, -0.22248, 0.00705, -0.41228, 1.40522],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D65_74",
| "illumination": "D65",
| "saturation": 74,
| "ccMatrix": [0.99251, 0.0538, -0.04632, -0.16059, 1.3229, -0.16231, 0.05907, -0.10139, 1.04232],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_100",
| "illumination": "D75",
| "saturation": 100,
| "ccMatrix": [1.31564, -0.2036, -0.11204, -0.2656, 1.50547, -0.23987, 0.00031, -0.33556, 1.33525],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "D75_74",
| "illumination": "D75",
| "saturation": 74,
| "ccMatrix": [1.03541, 0.05273, -0.08815, -0.13466, 1.31809, -0.18343, 0.06143, -0.04373, 0.9823],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_100",
| "illumination": "CWF",
| "saturation": 100,
| "ccMatrix": [1.51774, -0.46074, -0.057, -0.43602, 1.50706, -0.07105, 0.00676, -0.55257, 1.54582],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "CWF_74",
| "illumination": "CWF",
| "saturation": 74,
| "ccMatrix": [1.17492, -0.1638, -0.01111, -0.27087, 1.29309, -0.02223, 0.05597, -0.23041, 1.17444],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_100",
| "illumination": "TL84",
| "saturation": 100,
| "ccMatrix": [1.29632, -0.24072, -0.0556, -0.47699, 1.61489, -0.1379, 0.01522, -0.56677, 1.55155],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "TL84_74",
| "illumination": "TL84",
| "saturation": 74,
| "ccMatrix": [0.98786, 0.03211, -0.01997, -0.32443, 1.40605, -0.08162, 0.03908, -0.20782, 1.16874],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_100",
| "illumination": "HZ",
| "saturation": 100,
| "ccMatrix": [1.32884, -0.12316, -0.20568, -0.69434, 1.74777, -0.05343, -0.40454, -0.90002, 2.30457],
| "ccOffsets": [0, 0, 0]
| }, {
| "name": "HZ_74",
| "illumination": "HZ",
| "saturation": 74,
| "ccMatrix": [0.96878, 0.1385, -0.10727, -0.5283, 1.52398, 0.00432, -0.31472, -0.43488, 1.74959],
| "ccOffsets": [0, 0, 0]
| }],
| "matrixAll_len": 14
| }
| },
| "lut3d_calib": {
| "common": {
| "enable": 0,
| "mode": "CALIB_Lut3D_MODE_AUTO",
| "gain_tolerance": 0.1,
| "wbgain_tolerance": 1
| },
| "MLut3D": {
| "Table": {
| "look_up_table_r": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "look_up_table_g": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "look_up_table_b": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
| }
| },
| "ALut3D": {
| "damp_en": 1,
| "lutAll": [{
| "name": "Normal",
| "awbGain": [1, 1],
| "gain_alpha": {
| "gain": [1, 2, 4, 8, 16, 32, 64, 128, 256],
| "alpha": [1, 1, 1, 1, 1, 1, 1, 1, 1]
| },
| "Table": {
| "look_up_table_r": [0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 509, 511, 541, 616, 724, 850, 971, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 509, 510, 541, 616, 724, 850, 970, 1023, 1023, 677, 678, 687, 714, 759, 821, 897, 983, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 511, 512, 539, 614, 723, 849, 969, 1023, 1023, 677, 678, 686, 713, 758, 820, 896, 982, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 516, 518, 544, 610, 718, 845, 965, 1023, 1023, 678, 679, 687, 710, 755, 817, 893, 979, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 526, 528, 554, 618, 713, 841, 957, 1023, 1023, 680, 680, 688, 711, 750, 811, 888, 974, 1023, 0, 20, 205, 416, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 0, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 543, 544, 569, 632, 725, 838, 947, 1023, 1023, 682, 682, 691, 713, 751, 804, 880, 967, 1023, 0, 20, 205, 415, 626, 829, 1023, 1023, 1023, 0, 17, 202, 413, 623, 826, 1023, 1023, 1023, 0, 17, 178, 386, 596, 800, 997, 1023, 1023, 1, 17, 178, 357, 567, 773, 971, 1023, 1023, 0, 17, 178, 357, 537, 745, 944, 1023, 1023, 0, 17, 178, 357, 537, 715, 916, 1023, 1023, 1, 17, 178, 357, 537, 715, 886, 1023, 1023, 569, 570, 594, 654, 745, 853, 935, 1023, 1023, 685, 686, 694, 716, 754, 806, 871, 957, 1023, 71, 83, 214, 402, 599, 791, 976, 1023, 1023, 72, 82, 212, 401, 597, 790, 975, 1023, 1023, 84, 93, 201, 386, 582, 776, 963, 1023, 1023, 114, 121, 215, 368, 561, 755, 942, 1023, 1023, 161, 166, 243, 384, 544, 735, 920, 1023, 1023, 230, 234, 293, 415, 563, 719, 900, 1023, 1023, 344, 347, 388, 482, 608, 747, 889, 1023, 1023, 608, 610, 632, 689, 776, 855, 936, 1023, 1023, 689, 690, 698, 720, 757, 808, 872, 945, 1023, 247, 250, 299, 407, 545, 693, 840, 978, 1023, 248, 251, 299, 407, 545, 693, 840, 978, 1023, 268, 271, 311, 413, 547, 693, 837, 975, 1023, 321, 323, 356, 435, 558, 695, 833, 968, 1023, 402, 403, 428, 489, 578, 700, 830, 960, 1023, 478, 479, 498, 546, 620, 711, 829, 951, 1023, 556, 557, 571, 608, 667, 743, 832, 943, 1023, 630, 630, 641, 669, 715, 777, 853, 936, 1023, 695, 695, 703, 725, 761, 811, 874, 946, 1023],
| "look_up_table_g": [0, 0, 0, 1, 0, 1, 1, 637, 1771, 78, 78, 78, 78, 78, 78, 78, 663, 1778, 821, 820, 821, 821, 821, 821, 821, 1036, 1899, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1703, 2192, 2503, 2503, 2503, 2503, 2503, 2503, 2503, 2442, 2596, 3317, 3317, 3317, 3317, 3317, 3317, 3317, 3170, 3049, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3837, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 0, 1, 1, 1, 0, 0, 637, 1771, 78, 69, 69, 69, 69, 69, 69, 660, 1778, 820, 810, 810, 810, 810, 810, 810, 1033, 1898, 1662, 1650, 1650, 1650, 1650, 1650, 1650, 1700, 2191, 2503, 2491, 2491, 2491, 2491, 2491, 2491, 2439, 2595, 3317, 3305, 3305, 3305, 3305, 3305, 3305, 3168, 3049, 4095, 4091, 4091, 4091, 4091, 4091, 4091, 3836, 3501, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3923, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 0, 1, 1, 1, 0, 640, 1775, 78, 69, 69, 69, 69, 69, 69, 663, 1781, 821, 810, 713, 713, 713, 713, 713, 990, 1890, 1662, 1650, 1543, 1543, 1543, 1543, 1543, 1658, 2183, 2503, 2491, 2383, 2383, 2383, 2383, 2383, 2404, 2587, 3317, 3305, 3202, 3202, 3202, 3202, 3202, 3143, 3042, 4095, 4091, 3990, 3990, 3990, 3990, 3990, 3821, 3495, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3918, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 1, 1, 0, 1, 0, 2, 650, 1786, 78, 69, 69, 69, 69, 69, 69, 673, 1792, 821, 810, 713, 713, 713, 713, 713, 996, 1899, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1579, 2161, 2503, 2491, 2383, 2267, 2267, 2267, 2267, 2331, 2567, 3317, 3305, 3202, 3091, 3091, 3091, 3091, 3085, 3023, 4095, 4091, 3990, 3882, 3882, 3882, 3882, 3783, 3479, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3904, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 0, 1, 1, 1, 0, 1, 0, 668, 1805, 78, 69, 69, 69, 69, 69, 69, 690, 1811, 821, 810, 713, 713, 713, 713, 713, 1008, 1916, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1587, 2174, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2242, 2534, 3317, 3305, 3202, 3091, 2978, 2978, 2978, 3008, 2993, 4095, 4091, 3990, 3882, 3775, 3775, 3775, 3727, 3452, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3881, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 1, 0, 1, 1, 0, 697, 1834, 78, 69, 69, 69, 69, 69, 69, 718, 1840, 821, 810, 713, 713, 713, 713, 713, 1028, 1942, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1599, 2194, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2251, 2548, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2920, 2952, 4095, 4091, 3990, 3882, 3775, 3663, 3663, 3660, 3415, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3848, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 1, 0, 0, 2, 0, 0, 3, 737, 1874, 78, 69, 69, 69, 69, 69, 69, 758, 1880, 821, 810, 713, 713, 713, 713, 713, 1056, 1979, 1662, 1650, 1543, 1428, 1428, 1428, 1428, 1618, 2223, 2503, 2491, 2383, 2267, 2149, 2149, 2149, 2264, 2567, 3317, 3305, 3202, 3091, 2978, 2860, 2860, 2931, 2964, 4095, 4091, 3990, 3882, 3775, 3663, 3545, 3586, 3368, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3805, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 283, 284, 299, 339, 405, 501, 628, 793, 1927, 334, 328, 342, 378, 439, 529, 651, 812, 1932, 866, 861, 802, 820, 852, 903, 981, 1096, 2026, 1624, 1619, 1561, 1474, 1492, 1522, 1570, 1645, 2260, 2403, 2400, 2351, 2268, 2177, 2197, 2230, 2284, 2593, 3155, 3152, 3117, 3047, 2964, 2877, 2903, 2948, 2980, 3847, 3846, 3823, 3771, 3702, 3627, 3557, 3606, 3377, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 3754, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 988, 989, 1014, 1082, 1198, 1367, 1588, 1785, 1992, 1003, 1003, 1027, 1094, 1209, 1377, 1596, 1791, 1997, 1245, 1244, 1243, 1299, 1396, 1543, 1724, 1899, 2086, 1751, 1750, 1745, 1741, 1813, 1918, 2029, 2161, 2307, 2354, 2354, 2347, 2330, 2313, 2366, 2437, 2525, 2626, 2923, 2923, 2916, 2898, 2873, 2846, 2887, 2939, 3000, 3449, 3449, 3442, 3425, 3399, 3365, 3328, 3355, 3387, 3916, 3915, 3910, 3894, 3869, 3834, 3792, 3745, 3758, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095, 4095],
| "look_up_table_b": [0, 0, 0, 0, 0, 0, 0, 159, 443, 0, 0, 0, 0, 0, 0, 0, 160, 443, 0, 0, 0, 0, 0, 0, 0, 168, 452, 0, 0, 0, 0, 0, 0, 1, 193, 476, 0, 0, 0, 0, 0, 0, 0, 237, 514, 0, 0, 0, 0, 0, 0, 0, 313, 563, 0, 0, 0, 1, 0, 0, 1, 461, 617, 509, 509, 515, 531, 563, 623, 709, 724, 673, 677, 677, 678, 680, 684, 691, 700, 711, 725, 20, 20, 20, 20, 20, 20, 20, 165, 444, 20, 17, 17, 17, 17, 17, 17, 165, 444, 20, 17, 17, 17, 17, 17, 17, 173, 453, 20, 17, 17, 17, 17, 17, 17, 197, 477, 20, 17, 17, 17, 17, 17, 17, 240, 515, 20, 17, 17, 17, 17, 17, 17, 316, 564, 20, 17, 17, 17, 17, 17, 17, 462, 618, 510, 510, 516, 532, 565, 623, 709, 725, 673, 678, 678, 678, 681, 685, 691, 700, 711, 725, 205, 205, 205, 205, 205, 205, 205, 254, 467, 205, 202, 202, 202, 202, 202, 202, 253, 467, 205, 202, 178, 178, 178, 178, 178, 247, 472, 205, 202, 178, 178, 178, 178, 178, 264, 495, 205, 202, 178, 178, 178, 178, 178, 297, 530, 205, 202, 178, 178, 178, 178, 178, 359, 576, 205, 202, 178, 178, 178, 178, 178, 490, 628, 537, 537, 539, 554, 584, 640, 720, 734, 681, 687, 687, 686, 689, 693, 699, 707, 718, 731, 415, 415, 415, 416, 415, 416, 415, 417, 525, 415, 413, 413, 413, 413, 413, 413, 416, 525, 415, 413, 386, 386, 386, 386, 386, 407, 529, 416, 413, 386, 357, 357, 357, 357, 395, 540, 415, 413, 386, 357, 357, 357, 357, 415, 570, 416, 413, 386, 357, 357, 357, 357, 458, 610, 415, 413, 386, 357, 357, 357, 357, 557, 656, 606, 606, 606, 610, 636, 684, 747, 760, 704, 712, 712, 712, 710, 714, 719, 727, 737, 749, 626, 626, 626, 626, 626, 626, 626, 601, 614, 626, 623, 623, 623, 623, 623, 623, 600, 614, 626, 623, 596, 596, 596, 596, 596, 590, 616, 626, 623, 596, 567, 567, 567, 567, 573, 622, 626, 623, 596, 567, 537, 537, 537, 560, 634, 626, 623, 596, 567, 537, 537, 537, 587, 665, 626, 623, 596, 567, 537, 537, 537, 654, 702, 706, 706, 706, 707, 713, 752, 793, 803, 741, 755, 755, 755, 753, 750, 754, 761, 769, 780, 829, 829, 829, 829, 829, 829, 829, 789, 724, 829, 826, 826, 826, 826, 826, 826, 788, 724, 829, 826, 800, 800, 800, 800, 800, 777, 724, 829, 826, 800, 773, 773, 773, 773, 759, 726, 829, 826, 800, 773, 745, 745, 745, 741, 730, 829, 826, 800, 773, 745, 715, 715, 730, 738, 829, 826, 800, 773, 745, 715, 715, 771, 765, 829, 829, 827, 825, 825, 838, 856, 863, 794, 816, 816, 815, 813, 809, 804, 809, 816, 823, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 973, 848, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 972, 848, 1023, 1023, 997, 997, 997, 997, 997, 961, 846, 1023, 1023, 997, 971, 971, 971, 971, 942, 843, 1023, 1023, 997, 971, 944, 944, 944, 921, 841, 1023, 1023, 997, 971, 944, 916, 916, 902, 840, 1023, 1023, 997, 971, 944, 916, 886, 897, 842, 961, 961, 959, 953, 947, 946, 935, 938, 861, 893, 893, 892, 889, 884, 878, 871, 875, 880, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 977, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 975, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 969, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 961, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 952, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 945, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 938, 982, 982, 980, 977, 972, 965, 956, 945, 948, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023, 1023]
| }
| }],
| "lutAll_len": 1
| }
| },
| "af": {
| "TuningPara": {
| "af_mode": "CalibDbV2_AF_MODE_NOT_SET",
| "win_h_offs": 0,
| "win_v_offs": 0,
| "win_h_size": 0,
| "win_v_size": 0,
| "fixed_mode": {
| "code": 8
| },
| "macro_mode": {
| "code": 32
| },
| "infinity_mode": {
| "code": 32
| },
| "contrast_af": {
| "enable": 1,
| "Afss": "CalibDbV2_CAM_AFM_FSS_ADAPTIVE_RANGE",
| "FullDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "FullSteps": 9,
| "FullRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "AdaptiveDir": "CalibDbV2_CAM_AFM_ADAPTIVE_SEARCH",
| "AdaptiveSteps": 9,
| "AdaptRangeTbl": [0, 8, 16, 24, 32, 40, 48, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
| "TrigThers": 0.075,
| "LumaTrigThers": 0,
| "StableThers": 0.02,
| "StableFrames": 3,
| "StableTime": 200,
| "SceneDiffEnable": 0,
| "SceneDiffThers": 0,
| "SceneDiffBlkThers": 0,
| "CenterSceneDiffThers": 0,
| "ValidMaxMinRatio": 0,
| "ValidValueThers": 0,
| "OutFocusValue": 50,
| "OutFocusPos": 30,
| "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": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 100,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 200,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 400,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 800,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 1600,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 3200,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 6400,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 12800,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 25600,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 51200,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 102400,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 204800,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "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": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 100,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 200,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 400,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 800,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 1600,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 3200,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 6400,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 12800,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 25600,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 51200,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 102400,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "sigma": [768, 768, 768, 768, 640, 640, 640, 640, 512, 512, 512, 512, 512, 512, 512, 384]
| }, {
| "iso": 204800,
| "lumapoint": [256, 512, 768, 1024, 1280, 1536, 1792, 2048, 2304, 2560, 2816, 3072, 3328, 3584, 3840, 4095],
| "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": 0,
| "filter_strength": 0.55,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 100,
| "gauss_guide": 0,
| "filter_strength": 0.55,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 200,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 400,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 800,
| "gauss_guide": 0,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }],
| "Tuning_ISO_len": 13
| }, {
| "SNR_Mode": "HSNR",
| "Sensor_Mode": "hcg",
| "Tuning_ISO": [{
| "iso": 50,
| "gauss_guide": 0,
| "filter_strength": 0.55,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 100,
| "gauss_guide": 0,
| "filter_strength": 0.55,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 200,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 400,
| "gauss_guide": 0,
| "filter_strength": 0.6,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 800,
| "gauss_guide": 0,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 1600,
| "gauss_guide": 1,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 3200,
| "gauss_guide": 1,
| "filter_strength": 0.65,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 6400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 12800,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 25600,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 51200,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 102400,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "edgesofts": 2,
| "ratio": 0.01,
| "weight": 1
| }, {
| "iso": 204800,
| "gauss_guide": 1,
| "filter_strength": 0.7,
| "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.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
| }, {
| "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.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
| }, {
| "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": [-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
| }, {
| "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": 0.6,
| "low_bf_1": 0.5,
| "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.65,
| "low_bf_1": 0.5,
| "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": 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.7,
| "low_bf_1": 0.5,
| "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": 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.75,
| "low_bf_1": 0.5,
| "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": 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.8,
| "low_bf_1": 0.5,
| "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": 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.9,
| "low_bf_1": 0.5,
| "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": 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.95,
| "low_bf_1": 0.5,
| "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": 6400,
| "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": 0.5,
| "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": 12800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "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": 25600,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "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": 51200,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "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": 102400,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "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": 204800,
| "ynr_bft3x3_bypass": 0,
| "ynr_lbft5x5_bypass": 0,
| "ynr_lgft3x3_bypass": 0,
| "ynr_flt1x1_bypass": 0,
| "ynr_sft5x5_bypass": 0,
| "low_bf_0": 1.1,
| "low_bf_1": 0.5,
| "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]
| }],
| "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.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": 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.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": 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.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": 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.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": 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.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": 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.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": 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.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": 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.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": 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.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": 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.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": 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.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": 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.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]
| }],
| "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.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, 128, 160, 192, 160, 128, 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, 128, 160, 192, 160, 128, 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, 128, 160, 192, 160, 128, 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, 128, 160, 192, 160, 128, 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, 128, 160, 192, 160, 128, 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, 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": 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, 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": 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, 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": 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, 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": 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, 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": 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, 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": 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, 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": 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, 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
| }
| }
| }
|
|