hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
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
<?xml version="1.0" encoding="utf-8"?> <matfile>    <header type="struct" size="[1 1]">       <code_xml_parse_version index="1" type="char" size="[1 6]">          v1.4.6       </code_xml_parse_version>       <creation_date index="1" type="char" size="[1 11]">          2020-04-24       </creation_date>       <creator index="1" type="char" size="[1 2]">          sandy       </creator>       <sensor_name index="1" type="char" size="[1 7]">          GC5035       </sensor_name>       <sample_name index="1" type="char" size="[1 9]">          UNKNOWN       </sample_name>       <generator_version index="1" type="char" size="[1 4]">          v1.0.a_G11       </generator_version>       <magic_code_version index="1" type="int" size="[1 1]">          [1276573]       </magic_code_version>    </header>    <sensor type="struct" size="[1 1]">       <AWB index="1" type="struct" size="[1 1]">          <CalibParaV20 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>                <Globals index="1" type="struct" size="[1 1]">                   <hdrFrameChoose index="1" type="struct" size="[1 1]">                      <mode index="1" type="double" size="[1 1]">                         [1]                      </mode>                      <frameChoose index="1" type="double" size="[1 1]">                         [1]                      </frameChoose>                   </hdrFrameChoose>                   <lscBypassEnable index="1" type="double" size="[1 1]">                      [0]                   </lscBypassEnable>                   <uvDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </uvDetectionEnable>                   <xyDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </xyDetectionEnable>                   <yuvDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </yuvDetectionEnable>                   <wbGainDaylightClipEnable index="1" type="double" size="[1 1]">                      [0]                   </wbGainDaylightClipEnable>                   <wbGainClipEnable index="1" type="double" size="[1 1]">                      [0]                   </wbGainClipEnable>                   <lsUsedForYuvDet index="1" type="cell" size="[1 7]">                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 1]">                            A                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            CWF                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D65                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 4]">                            TL84                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D50                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 2]">                            HZ                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D75                         </name>                      </cell>                   </lsUsedForYuvDet>                   <downScaleMode index="1" type="double" size="[1 1]">                      [1]                   </downScaleMode>                   <blckMeasureMode index="1" type="double" size="[1 1]">                      [1]                   </blckMeasureMode>                   <measureWindow index="1" type="struct" size="[1 1]">                      <mode index="1" type="double" size="[1 1]">                         [1]                      </mode>                      <resAll index="1" type="cell" size="[1 2]">                         <cell index="6" type="struct" size="[1 1]">                            <resolution index="1" type="char" size="[1 9]">                               2592x1944                            </resolution>                            <measureWindowSize index="1" type="double" size="[1 4]">                               [0 0 2592 1944]                            </measureWindowSize>                         </cell>                         <cell index="6" type="struct" size="[1 1]">                            <resolution index="1" type="char" size="[1 9]">                               2688x1520                            </resolution>                            <measureWindowSize index="1" type="double" size="[1 4]">                               [0 0 2560 1440]                            </measureWindowSize>                         </cell>                      </resAll>                   </measureWindow>                   <multiWindowEnable index="1" type="double" size="[1 1]">                      [1]                   </multiWindowEnable>                   <limitRange index="1" type="struct" size="[1 1]">                      <Y index="1" type="double" size="[1 2]">                         [9 210]                      </Y>                      <R index="1" type="double" size="[1 2]">                         [6 230]                      </R>                      <G index="1" type="double" size="[1 2]">                         [9 230]                      </G>                      <B index="1" type="double" size="[1 2]">                         [6 230]                      </B>                   </limitRange>                   <pseudoLumWeight index="1" type="double" size="[1 3]">                      [0.308288158950252 0.441153539107216 0.250558301942532]                   </pseudoLumWeight>                   <rotationMat index="1" type="double" size="[1 9]">                      [-0.601917140039531 0.798558549216419 -0.27341968069587 0.798558549216419 0.601917140039531 0.491798784022615 0 0 1]                   </rotationMat>                   <multiwindow index="1" type="double" size="[8 4]">                      [0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0]                   </multiwindow>                   <excludeRange index="1" type="cell" size="[1 7]">                      <cell index="1" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="2" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="3" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="4" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="5" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="6" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="7" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                   </excludeRange>                   <spatialGain_L index="1" type="double" size="[1 4]">                      [1.41647614657919 1 1 1.97358496314884]                   </spatialGain_L>                   <spatialGain_H index="1" type="double" size="[1 4]">                      [1.55981005583888 1 1 1.50137889925423]                   </spatialGain_H>                   <temporalDefaultGain index="1" type="double" size="[1 4]">                      [1.11928451544087 1 1 2.33468340654292]                   </temporalDefaultGain>                   <ca_TargetGain index="1" type="double" size="[1 4]">                      [2.1924 1 1 1.4355]                   </ca_TargetGain>                   <singleColorProcess index="1" type="struct" size="[1 1]">                      <colorBlock index="1" type="cell" size="[1 6]">                         <cell index="1" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [15]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [23.5663303901162]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [29.7798131363986]                            </meanH>                         </cell>                         <cell index="2" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [13]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [17.5431780749165]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-76.6888069394079]                            </meanH>                         </cell>                         <cell index="3" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [5]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [10.7192211687218]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-75.2691094573465]                            </meanH>                         </cell>                         <cell index="4" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [10]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [10.3325761757046]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-40.1915875045351]                            </meanH>                         </cell>                         <cell index="5" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [14]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [14.2554924703091]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [144.586576376974]                            </meanH>                         </cell>                         <cell index="6" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [16]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [28.3357141926454]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [87.3665868813869]                            </meanH>                         </cell>                      </colorBlock>                      <lsUsedForEstimation index="1" type="cell" size="[1 3]">                         <cell index="1" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 1]">                               A                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.11928451544087]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [2.33468340654292]                            </BGain>                         </cell>                         <cell index="2" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 3]">                               D50                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.55981005583888]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [1.50137889925423]                            </BGain>                         </cell>                         <cell index="3" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 4]">                               TL84                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.28297783625707]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [1.96730231556154]                            </BGain>                         </cell>                      </lsUsedForEstimation>                      <alpha index="1" type="double" size="[1 1]">                         [0.9]                      </alpha>                   </singleColorProcess>                   <lineRgBg index="1" type="double" size="[1 3]">                      [-0.8777 -0.4792 -2.7529]                   </lineRgBg>                   <lineRgProjCCT index="1" type="double" size="[1 3]">                      [1 -0.0002 0.638]                   </lineRgProjCCT>                   <wbGainDaylightClip index="1" type="struct" size="[1 1]">                      <outdoor_cct_min index="1" type="double" size="[1 1]">                         [5000]                      </outdoor_cct_min>                   </wbGainDaylightClip>                   <wbGainClip index="1" type="struct" size="[1 1]">                      <cct index="1" type="double" size="[1 5]">                         [1000 2856 4100 6500 7500]                      </cct>                      <cri_bound_up index="1" type="double" size="[1 5]">                         [0.091 0.091 0.18 0.12 0.12]                      </cri_bound_up>                      <cri_bound_low index="1" type="double" size="[1 5]">                         [0.07 0.07 0.16 0.16 0.16]                      </cri_bound_low>                   </wbGainClip>                </Globals>                <LightSources index="1" type="cell" size="[1 7]">                   <cell index="1" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 1]">                         A                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.11928451544087 1 1 2.33468340654292]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [124.5 55.5 56 125 124.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [128 135 113 127 128]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-1.200625 -0.809791666666666 0.0715990453460622 -0.0400954653937946]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-1.19770833333333 -0.809791666666666 0.151789976133652 -0.189021479713604]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-1.09944444444444 -0.879444444444444 0.0267303102625297 -0.0229116945107399]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [-20701]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [121]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [-808]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [3380]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [1]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [128]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [58 90 218 346 602 666]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="2" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         CWF                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.41647614657919 1 1 1.97358496314884]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [59.5 71.5 125.5 125 59.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [93.5 70 126 127 93.5]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.810763888888889 -0.443888888888888 0.0216388225934767 -0.152744630071599]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.812708333333333 -0.439375 0.017183770883055 -0.283532219570406]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.757291666666666 -0.451041666666667 0.017183770883055 -0.0687350835322195]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [-1876]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [58]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [-6891]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [3803]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [1]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [128]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [45 77 141 269 525 589]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="3" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D50                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [2]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.55981005583888 1 1 1.50137889925423]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [71.5 100 126.5 125.5 71.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [70.5 52 125 126 70.5]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.437430555555556 -0.135717592592592 0.152744630071599 -0.181384248210024]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.439444444444443 -0.129408060453401 0.236792452830189 -0.343675417661098]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.334375 -0.147708333333333 0.0973747016706443 -0.0190930787589501]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [-718]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [-55]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [-7702]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [4422]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [5]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [127]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [23 55 119 247 375 503]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="4" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D65                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [3]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.82109162309649 1 1 1.32890975565603]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [96 118 128.5 126.5 96]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [51.5 47 124.5 125.5 51.5]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.13331019804261 0.101504629629631 0.0798137859872414 -0.183293556085919]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.124375 0.103125 0.133651551312649 -0.320763723150358]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.0695833318928871 0.0854166726768026 0.045743834604891 -0.0439936357044283]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [-280]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [-342]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [-4173]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [3985]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [7]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [126]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [12 44 108 236 364 492]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="5" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D75                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [3]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.86795073951888 1 1 1.20293753555107]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [132.5 128.5 107 129.5 132.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [121 125 50 43.5 121]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [0.107013888888889 0.403541666666666 0.0763723150357994 -0.160381861575179]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [0.108958333333334 0.468680555555555 0.116467780429594 -0.309307875894988]                         </big>                         <small index="1" type="double" size="[1 4]">                            [0.107013888888889 0.332569444444444 0.0496420047732695 -0.0362768496420049]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [-88]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [-1373]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [-1399]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [5225]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [9]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [115]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [48 80 144 160 224 352]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="6" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 2]">                         HZ                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [0.934607595494179 1 1 2.63030043277937]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [124.5 57.5 55.5 124.5 124.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [129.5 150.5 135 128 129.5]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-1.81020833333333 -1.209375 0.0515513126491648 -0.0572792362768495]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-1.95895833333333 -1.19770833333333 0.143198090692124 -0.209069212410501]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-1.47479166666667 -1.25604166666667 0.0515513126491648 -0.0572792362768495]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [4583]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [157]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [3487]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [2850]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [2]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [128]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [51 115 243 499 627 755]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                   <cell index="7" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 4]">                         TL84                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.28297783625707 1 1 1.96730231556154]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [125 56 61 125.5 125]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [127.5 112.5 85.5 126 127.5]                      </lightVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.801041666666666 -0.445208333333333 0.111694510739857 0.0229116945107399]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.810763888888889 -0.427708333333333 0.231980906921241 0.01909307875895]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.798125 -0.465625 0.0916467780429595 0.0200477326968975]                         </small>                      </lightXYRegion>                      <yuvRegion index="1" type="struct" size="[1 1]">                         <k2Set index="1" type="double" size="[1 1]">                            [-3153]                         </k2Set>                         <b0Set index="1" type="double" size="[1 1]">                            [86]                         </b0Set>                         <k3Set index="1" type="double" size="[1 1]">                            [-4813]                         </k3Set>                         <k_ydisSet index="1" type="double" size="[1 1]">                            [4015]                         </k_ydisSet>                         <b_ydisSet index="1" type="double" size="[1 1]">                            [3]                         </b_ydisSet>                         <uRefSet index="1" type="double" size="[1 1]">                            [128]                         </uRefSet>                         <vRefSet index="1" type="double" size="[1 1]">                            [127]                         </vRefSet>                         <disSet index="1" type="double" size="[1 6]">                            [32 64 192 320 448 576]                         </disSet>                         <tHSet index="1" type="double" size="[1 6]">                            [11 14 17 20 23 26]                         </tHSet>                      </yuvRegion>                   </cell>                </LightSources>             </cell>          </CalibParaV20>          <CalibParaV21 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>                <Globals index="1" type="struct" size="[1 1]">                   <hdrFrameChoose index="1" type="struct" size="[1 1]">                      <mode index="1" type="double" size="[1 1]">                         [0]                      </mode>                      <frameChoose index="1" type="double" size="[1 1]">                         [1]                      </frameChoose>                   </hdrFrameChoose>                   <lscBypassEnable index="1" type="double" size="[1 1]">                      [0]                   </lscBypassEnable>                   <uvDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </uvDetectionEnable>                   <xyDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </xyDetectionEnable>                   <yuvDetectionEnable index="1" type="double" size="[1 1]">                      [1]                   </yuvDetectionEnable>                   <wbGainDaylightClipEnable index="1" type="double" size="[1 1]">                      [0]                   </wbGainDaylightClipEnable>                   <wbGainClipEnable index="1" type="double" size="[1 1]">                      [0]                   </wbGainClipEnable>                   <wpDiffLumaWeiEnable index="1" type="double" size="[1 1]">                      [1]                   </wpDiffLumaWeiEnable>                   <wpDiffBlkWeiEnable index="1" type="double" size="[1 1]">                      [0]                   </wpDiffBlkWeiEnable>                   <blkStatisticsEnable index="1" type="double" size="[1 1]">                      [1]                   </blkStatisticsEnable>                   <lsUsedForYuvDet index="1" type="cell" size="[1 7]">                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 1]">                            A                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            CWF                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D65                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 4]">                            TL84                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D50                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 2]">                            HZ                         </name>                      </cell>                      <cell index="1" type="struct" size="[1 1]">                         <name index="1" type="char" size="[1 3]">                            D75                         </name>                      </cell>                   </lsUsedForYuvDet>                   <downScaleMode index="1" type="double" size="[1 1]">                      [1]                   </downScaleMode>                   <blckMeasureMode index="1" type="double" size="[1 1]">                      [0]                   </blckMeasureMode>                   <measureWindow index="1" type="struct" size="[1 1]">                      <mode index="1" type="double" size="[1 1]">                         [1]                      </mode>                      <resAll index="1" type="cell" size="[1 1]">                         <cell index="6" type="struct" size="[1 1]">                            <resolution index="1" type="char" size="[1 9]">                               2592x1944                            </resolution>                            <measureWindowSize index="1" type="double" size="[1 4]">                               [0 0 2592 1944]                            </measureWindowSize>                         </cell>                      </resAll>                   </measureWindow>                   <multiWindowEnable index="1" type="double" size="[1 1]">                      [1]                   </multiWindowEnable>                   <limitRange index="1" type="struct" size="[1 1]">                      <Y index="1" type="double" size="[1 2]">                         [3 230]                      </Y>                      <R index="1" type="double" size="[1 2]">                         [3 230]                      </R>                      <G index="1" type="double" size="[1 2]">                         [3 230]                      </G>                      <B index="1" type="double" size="[1 2]">                         [3 230]                      </B>                   </limitRange>                   <pseudoLumWeight index="1" type="double" size="[1 3]">                      [0.308288158950252 0.441153539107216 0.250558301942532]                   </pseudoLumWeight>                   <rotationMat index="1" type="double" size="[1 9]">                      [-0.601917140039531 0.798558549216419 -0.27341968069587 0.798558549216419 0.601917140039531 0.491798784022615 0 0 1]                   </rotationMat>                   <rgb2RotationYuvMat index="1" type="double" size="[4 4]">                      [0.044921875 0.13671875 0.01171875 29.5625                      -0.083984375 0.00390625 0.076171875 129.625                      0.05078125 -0.0625 0.046875 113.375                      0 0 0 1]                   </rgb2RotationYuvMat>                   <multiwindow index="1" type="double" size="[8 4]">                      [0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0                      0 0 0 0]                   </multiwindow>                   <excludeRange index="1" type="cell" size="[1 7]">                      <cell index="1" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [244 249 228 211]                         </window>                      </cell>                      <cell index="2" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [1]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [-1096 -985 140 65]                         </window>                      </cell>                      <cell index="3" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [1]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [-40 158 121 16]                         </window>                      </cell>                      <cell index="4" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [1]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [1]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [-235 -40 237 80]                         </window>                      </cell>                      <cell index="5" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [0]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="6" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [0]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                      <cell index="7" type="struct" size="[1 1]">                         <Domain index="1" type="double" size="[1 1]">                            [0]                         </Domain>                         <mode index="1" type="double" size="[1 1]">                            [0]                         </mode>                         <window index="1" type="double" size="[1 4]">                            [0 0 0 0]                         </window>                      </cell>                   </excludeRange>                   <spatialGain_L index="1" type="double" size="[1 4]">                      [1.41647614657919 1 1 1.97358496314884]                   </spatialGain_L>                   <spatialGain_H index="1" type="double" size="[1 4]">                      [1.55981005583888 1 1 1.50137889925423]                   </spatialGain_H>                   <temporalDefaultGain index="1" type="double" size="[1 4]">                      [1.11928451544087 1 1 2.33468340654292]                   </temporalDefaultGain>                   <ca_TargetGain index="1" type="double" size="[1 4]">                      [2.1924 1 1 1.4355]                   </ca_TargetGain>                   <singleColorProcess index="1" type="struct" size="[1 1]">                      <colorBlock index="1" type="cell" size="[1 6]">                         <cell index="1" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [15]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [23.5663303901162]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [29.7798131363986]                            </meanH>                         </cell>                         <cell index="2" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [13]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [17.5431780749165]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-76.6888069394079]                            </meanH>                         </cell>                         <cell index="3" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [5]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [10.7192211687218]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-75.2691094573465]                            </meanH>                         </cell>                         <cell index="4" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [10]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [10.3325761757046]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [-40.1915875045351]                            </meanH>                         </cell>                         <cell index="5" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [14]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [14.2554924703091]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [144.586576376974]                            </meanH>                         </cell>                         <cell index="6" type="struct" size="[1 1]">                            <index index="1" type="double" size="[1 1]">                               [16]                            </index>                            <meanC index="1" type="double" size="[1 1]">                               [28.3357141926454]                            </meanC>                            <meanH index="1" type="double" size="[1 1]">                               [87.3665868813869]                            </meanH>                         </cell>                      </colorBlock>                      <lsUsedForEstimation index="1" type="cell" size="[1 3]">                         <cell index="1" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 1]">                               A                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.11928451544087]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [2.33468340654292]                            </BGain>                         </cell>                         <cell index="2" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 3]">                               D50                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.55981005583888]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [1.50137889925423]                            </BGain>                         </cell>                         <cell index="3" type="struct" size="[1 1]">                            <name index="1" type="char" size="[1 4]">                               TL84                            </name>                            <RGain index="1" type="double" size="[1 1]">                               [1.28297783625707]                            </RGain>                            <BGain index="1" type="double" size="[1 1]">                               [1.96730231556154]                            </BGain>                         </cell>                      </lsUsedForEstimation>                      <alpha index="1" type="double" size="[1 1]">                         [0.9]                      </alpha>                   </singleColorProcess>                   <lineRgBg index="1" type="double" size="[1 3]">                      [-0.8777 -0.4792 -2.7529]                   </lineRgBg>                   <lineRgProjCCT index="1" type="double" size="[1 3]">                      [1 -0.0002 0.638]                   </lineRgProjCCT>                   <wbGainDaylightClip index="1" type="struct" size="[1 1]">                      <outdoor_cct_min index="1" type="double" size="[1 1]">                         [5000]                      </outdoor_cct_min>                   </wbGainDaylightClip>                   <wbGainClip index="1" type="struct" size="[1 1]">                      <cct index="1" type="double" size="[1 5]">                         [1000 2856 4100 6500 7500]                      </cct>                      <cri_bound_up index="1" type="double" size="[1 5]">                         [0.091 0.091 0.18 0.12 0.12]                      </cri_bound_up>                      <cri_bound_low index="1" type="double" size="[1 5]">                         [0.07 0.07 0.16 0.16 0.16]                      </cri_bound_low>                   </wbGainClip>                   <wpDiffLumaWeight index="1" type="struct" size="[1 1]">                      <wpDiffWeiEnableTh index="1" type="struct" size="[1 1]">                         <wpDiffWeiNoTh index="1" type="double" size="[1 1]">                            [0.004]                         </wpDiffWeiNoTh>                         <wpDiffWeiLvValueTh index="1" type="double" size="[1 1]">                            [64]                         </wpDiffWeiLvValueTh>                      </wpDiffWeiEnableTh>                      <wpDiffwei_y index="1" type="double" size="[1 9]">                         [0 16 32 64 96 128 192 224 240]                      </wpDiffwei_y>                      <perfectBinConf index="1" type="double" size="[1 8]">                         [0 0 0 1 1 1 1 0]                      </perfectBinConf>                      <wpDiffWeiLvTh index="1" type="double" size="[1 2]">                         [256 8192]                      </wpDiffWeiLvTh>                      <wpDiffWeiRatioTh index="1" type="double" size="[1 3]">                         [0 0.01 0.1]                      </wpDiffWeiRatioTh>                      <wpDiffwei_w_HighLV index="1" type="struct" size="[1 1]">                         <wpRatio1 index="1" type="double" size="[1 9]">                            [1 1 1 1 1 1 1 1 1]                         </wpRatio1>                         <wpRatio2 index="1" type="double" size="[1 9]">                            [1 1 1 1 1 1 1 1 1]                         </wpRatio2>                         <wpRatio3 index="1" type="double" size="[1 9]">                            [0 0 0.2 0.5 1 1 1 0.5 0]                         </wpRatio3>                      </wpDiffwei_w_HighLV>                      <wpDiffwei_w_LowLV index="1" type="struct" size="[1 1]">                         <wpRatio1 index="1" type="double" size="[1 9]">                            [1 1 1 1 1 1 1 1 1]                         </wpRatio1>                         <wpRatio2 index="1" type="double" size="[1 9]">                            [1 1 1 1 1 1 1 1 1]                         </wpRatio2>                         <wpRatio3 index="1" type="double" size="[1 9]">                            [1 1 1 1 1 1 1 1 1]                         </wpRatio3>                      </wpDiffwei_w_LowLV>                   </wpDiffLumaWeight>                   <wpDiffBlkWeight index="1" type="double" size="[15 15]">                      [3 3 3 4 4 4 4 5 4 4 4 4 3 3 3                      3 3 4 4 5 5 6 6 6 5 5 4 4 3 3                      3 4 5 6 7 8 9 10 9 8 7 6 5 4 3                      4 4 6 8 11 13 15 16 15 13 11 8 6 4 4                      4 5 7 11 14 18 21 23 21 18 14 11 7 5 4                      4 5 8 13 18 23 27 29 27 23 18 13 8 5 4                      4 6 9 15 21 27 32 32 32 27 21 15 9 6 4                      5 6 10 16 23 29 32 32 32 29 23 16 10 6 5                      4 6 9 15 21 27 32 32 32 27 21 15 9 6 4                      4 5 8 13 18 23 27 29 27 23 18 13 8 5 4                      4 5 7 11 14 18 21 23 21 18 14 11 7 5 4                      4 4 6 8 11 13 15 16 15 13 11 8 6 4 4                      3 4 5 6 7 8 9 10 9 8 7 6 5 4 3                      3 3 4 4 5 5 6 6 6 5 5 4 4 3 3                      3 3 3 4 4 4 4 5 4 4 4 4 3 3 3]                   </wpDiffBlkWeight>                </Globals>                <LightSources index="1" type="cell" size="[1 7]">                   <cell index="1" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 1]">                         A                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.11928451544087 1 1 2.33468340654292]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [124.5 55.5 56 125 124.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [128 135 113 127 128]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [123 54 55.5 123.5 123]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [128.5 137 118 127 128.5]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-1.200625 -0.809791666666666 0.0715990453460622 -0.0400954653937946]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-1.19770833333333 -0.809791666666666 0.151789976133652 -0.189021479713604]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-1.09944444444444 -0.879444444444444 0.0267303102625297 -0.0229116945107399]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.3 0.5125 1.2 1.6 2 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 134 113.3125 187.375 97.875 114.1875]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="2" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         CWF                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.41647614657919 1 1 1.97358496314884]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [59.5 71.5 125.5 125 59.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [93.5 70 126 127 93.5]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [57 63.5 122.5 122.5 57]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [92 79.5 124 125.5 92]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.810763888888889 -0.443888888888888 0.0216388225934767 -0.152744630071599]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.812708333333333 -0.439375 0.017183770883055 -0.283532219570406]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.757291666666666 -0.451041666666667 0.017183770883055 -0.0687350835322195]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.3 0.5125 1.2 1.6 2 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 131.8125 114.0625 190.1875 115.125 109.3125]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="3" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D50                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [2]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.55981005583888 1 1 1.50137889925423]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [71.5 100 126.5 125.5 71.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [70.5 52 125 126 70.5]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [63 84.5 125 121.5 63]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [79.5 65 123 126.5 79.5]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.437430555555556 -0.135717592592592 0.152744630071599 -0.181384248210024]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.439444444444443 -0.129408060453401 0.236792452830189 -0.343675417661098]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.334375 -0.147708333333333 0.0973747016706443 -0.0190930787589501]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.3 0.5125 1.2 1.6 2 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 129.6875 113.8125 191 131.4375 112.5625]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="4" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D65                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [3]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.82109162309649 1 1 1.32890975565603]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [96 118 128.5 126.5 96]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [51.5 47 124.5 125.5 51.5]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [84.5 103.5 126 125 84.5]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [65 47.5 117.5 123 65]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.13331019804261 0.101504629629631 0.0798137859872414 -0.183293556085919]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.124375 0.103125 0.133651551312649 -0.320763723150358]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.0695833318928871 0.0854166726768026 0.045743834604891 -0.0439936357044283]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.3 0.5125 1.2 1.6 2 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 128.375 113.5625 190.375 143.8125 112.3125]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="5" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D75                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [3]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.86795073951888 1 1 1.20293753555107]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [132.5 128.5 107 129.5 132.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [121 125 50 43.5 121]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [126 125.5 103.5 113 126]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [114 116.5 47 54 114]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [0.107013888888889 0.403541666666666 0.0763723150357994 -0.160381861575179]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [0.108958333333334 0.468680555555555 0.116467780429594 -0.309307875894988]                         </big>                         <small index="1" type="double" size="[1 4]">                            [0.107013888888889 0.332569444444444 0.0496420047732695 -0.0362768496420049]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.3 0.5125 1.2 1.6 2 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 127.625 113.625 189.5625 150.375 115.1875]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="6" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 2]">                         HZ                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [0.934607595494179 1 1 2.63030043277937]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [124.5 57.5 55.5 124.5 124.5]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [129.5 150.5 135 128 129.5]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [121 54 54 123 121]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [132 150.5 136.5 129 132]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-1.81020833333333 -1.209375 0.0515513126491648 -0.0572792362768495]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-1.95895833333333 -1.19770833333333 0.143198090692124 -0.209069212410501]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-1.47479166666667 -1.25604166666667 0.0515513126491648 -0.0572792362768495]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.3 0.5125 1.2 1.6 2 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 135.875 113.0625 183.625 85.0625 118.9375]                         </lineVector>                      </rtYuvRegion>                   </cell>                   <cell index="7" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 4]">                         TL84                      </name>                      <doorType index="1" type="double" size="[1 1]">                         [1]                      </doorType>                      <standardGainValue index="1" type="double" size="[1 4]">                         [1.28297783625707 1 1 1.96730231556154]                      </standardGainValue>                      <lightURegion index="1" type="double" size="[1 5]">                         [125 56 61 125.5 125]                      </lightURegion>                      <lightVRegion index="1" type="double" size="[1 5]">                         [127.5 112.5 85.5 126 127.5]                      </lightVRegion>                      <smallURegion index="1" type="double" size="[1 5]">                         [123.5 56 57 124 123.5]                      </smallURegion>                      <smallVRegion index="1" type="double" size="[1 5]">                         [127 117.5 92 125.5 127]                      </smallVRegion>                      <lightXYRegion index="1" type="struct" size="[1 1]">                         <normal index="1" type="double" size="[1 4]">                            [-0.801041666666666 -0.445208333333333 0.111694510739857 0.0229116945107399]                         </normal>                         <big index="1" type="double" size="[1 4]">                            [-0.810763888888889 -0.427708333333333 0.231980906921241 0.01909307875895]                         </big>                         <small index="1" type="double" size="[1 4]">                            [-0.798125 -0.465625 0.0916467780429595 0.0200477326968975]                         </small>                      </lightXYRegion>                      <rtYuvRegion index="1" type="struct" size="[1 1]">                         <thcurve_u_set index="1" type="double" size="[1 6]">                            [50 54 70 78 110 142]                         </thcurve_u_set>                         <thcurve_th_set index="1" type="double" size="[1 6]">                            [0.3 0.5125 1.2 1.6 2 4]                         </thcurve_th_set>                         <lineVector index="1" type="double" size="[1 6]">                            [10 132.625 113.5 189.5625 109.875 113.375]                         </lineVector>                      </rtYuvRegion>                   </cell>                </LightSources>             </cell>          </CalibParaV21>          <TuningPara index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>                <Globals index="1" type="struct" size="[1 1]">                   <wbBypass index="1" type="double" size="[1 1]">                      [0]                   </wbBypass>                   <awbEnable index="1" type="double" size="[1 1]">                      [1]                   </awbEnable>                   <wbGainAdjustEnable index="1" type="double" size="[1 1]">                      [0]                   </wbGainAdjustEnable>                   <lightSourceForFirstFrame index="1" type="char" size="[1 3]">                      D50                   </lightSourceForFirstFrame>                   <uvRangeSmallEnable index="1" type="double" size="[1 1]">                      [0]                   </uvRangeSmallEnable>                   <ca_Enable index="1" type="double" size="[1 1]">                      [0]                   </ca_Enable>                   <tolerance index="1" type="struct" size="[1 1]">                      <LV index="1" type="double" size="[1 4]">                         [256 512 32768 131072]                      </LV>                      <value index="1" type="double" size="[1 4]">                         [0 0 0 0]                      </value>                   </tolerance>                   <runInterval index="1" type="struct" size="[1 1]">                      <LV index="1" type="double" size="[1 4]">                         [256 512 32768 131072]                      </LV>                      <value index="1" type="double" size="[1 4]">                         [0 0 0 0]                      </value>                   </runInterval>                   <multiwindowMode index="1" type="double" size="[1 1]">                      [0]                   </multiwindowMode>                   <dampFactor index="1" type="struct" size="[1 1]">                      <dFStep index="1" type="double" size="[1 1]">                         [0.05]                      </dFStep>                      <dFMin index="1" type="double" size="[1 1]">                         [0.7]                      </dFMin>                      <dFMax index="1" type="double" size="[1 1]">                         [0.9]                      </dFMax>                      <LvIIRsize index="1" type="double" size="[1 1]">                         [4]                      </LvIIRsize>                      <LvVarTh index="1" type="double" size="[1 1]">                         [0.04]                      </LvVarTh>                   </dampFactor>                   <LVMatrix index="1" type="double" size="[1 16]">                      [0 16 32 64 128 256 512 1024 2048 4096 8192 16384 32768 65536 131072 262144]                   </LVMatrix>                   <LV_THL index="1" type="double" size="[1 1]">                      [110]                   </LV_THL>                   <LV_THL2 index="1" type="double" size="[1 1]">                      [200]                   </LV_THL2>                   <LV_THH index="1" type="double" size="[1 1]">                      [65536]                   </LV_THH>                   <LV_THH2 index="1" type="double" size="[1 1]">                      [65600]                   </LV_THH2>                   <WP_THL index="1" type="double" size="[1 1]">                      [150]                   </WP_THL>                   <WP_THH index="1" type="double" size="[1 1]">                      [216]                   </WP_THH>                   <proDis_THL index="1" type="double" size="[1 1]">                      [0.0269]                   </proDis_THL>                   <proDis_THH index="1" type="double" size="[1 1]">                      [4.6124]                   </proDis_THH>                   <proLV_Indoor_THL index="1" type="double" size="[1 1]">                      [64]                   </proLV_Indoor_THL>                   <proLV_Indoor_THH index="1" type="double" size="[1 1]">                      [256]                   </proLV_Indoor_THH>                   <proLV_Outdoor_THL index="1" type="double" size="[1 1]">                      [30000]                   </proLV_Outdoor_THL>                   <proLV_Outdoor_THH index="1" type="double" size="[1 1]">                      [45745]                   </proLV_Outdoor_THH>                   <temporalCalGainSetSize index="1" type="double" size="[1 1]">                      [4]                   </temporalCalGainSetSize>                   <temporalGainSetWeight index="1" type="double" size="[1 4]">                      [25 25 25 25]                   </temporalGainSetWeight>                   <wpNumPercTh index="1" type="double" size="[1 1]">                      [0.0031]                   </wpNumPercTh>                   <tempWeigth index="1" type="double" size="[1 16]">                      [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]                   </tempWeigth>                   <ca_LACalcFactor index="1" type="double" size="[1 1]">                      [40]                   </ca_LACalcFactor>                   <convergedVarTh index="1" type="double" size="[1 1]">                      [0.005]                   </convergedVarTh>                   <xyRegionStableSelection index="1" type="struct" size="[1 1]">                      <xyRegionSize index="1" type="double" size="[1 1]">                         [50]                      </xyRegionSize>                      <LvVarTh index="1" type="double" size="[1 1]">                         [0.06]                      </LvVarTh>                   </xyRegionStableSelection>                   <wbGainAdjust index="1" type="struct" size="[1 1]">                      <ct_grid_num index="1" type="double" size="[1 1]">                         [7]                      </ct_grid_num>                      <ct_in_range index="1" type="double" size="[1 2]">                         [2000 8000]                      </ct_in_range>                      <cri_grid_num index="1" type="double" size="[1 1]">                         [9]                      </cri_grid_num>                      <cri_in_range index="1" type="double" size="[1 2]">                         [-1 1]                      </cri_in_range>                      <lutAll index="1" type="cell" size="[1 3]">                         <cell index="1" type="struct" size="[1 5]">                            <LvValue index="1" type="double" size="[1 1]">                               [128]                            </LvValue>                            <ct_out index="1" type="double" size="[9 7]">                               [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_out>                            <cri_out index="1" type="double" size="[9 7]">                               [-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_out>                         </cell>                         <cell index="1" type="struct" size="[1 5]">                            <LvValue index="1" type="double" size="[1 1]">                               [8192]                            </LvValue>                            <ct_out index="1" type="double" size="[9 7]">                               [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_out>                            <cri_out index="1" type="double" size="[9 7]">                               [-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_out>                         </cell>                         <cell index="1" type="struct" size="[1 5]">                            <LvValue index="1" type="double" size="[1 1]">                               [65536]                            </LvValue>                            <ct_out index="1" type="double" size="[9 7]">                               [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_out>                            <cri_out index="1" type="double" size="[9 7]">                               [-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_out>                         </cell>                      </lutAll>                   </wbGainAdjust>                   <RemosaicPara index="1" type="struct" size="[1 1]">                      <enable index="1" type="double" size="[1 1]">                         [0]                      </enable>                      <sensorWbGain index="1" type="double" size="[1 4]">                         [1 1 1 1]                      </sensorWbGain>                   </RemosaicPara>                </Globals>                <LightSources index="1" type="cell" size="[1 7]">                   <cell index="1" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 1]">                         A                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 100 100 90 75]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="2" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         CWF                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 70 60 50 40]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="3" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D50                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="4" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D65                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 100 90 80 70]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="5" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 3]">                         D75                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 90 80 70 50]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="6" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 2]">                         HZ                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 100 100 90 75 50]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                   <cell index="7" type="struct" size="[1 1]">                      <name index="1" type="char" size="[1 4]">                         TL84                      </name>                      <staWeigthSet index="1" type="double" size="[1 16]">                         [100 100 100 100 100 100 100 100 100 100 100 90 80 70 60 60]                      </staWeigthSet>                      <spatialGain_LV_THSet index="1" type="double" size="[1 2]">                         [1024 8192]                      </spatialGain_LV_THSet>                      <xyType2Enable index="1" type="double" size="[1 1]">                         [1]                      </xyType2Enable>                      <weightCurve_ratio index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_ratio>                      <weightCurve_weight index="1" type="double" size="[1 4]">                         [0.2 0.4 0.8 1]                      </weightCurve_weight>                   </cell>                </LightSources>             </cell>          </TuningPara>       </AWB>       <AEC index="1" type="struct" size="[1 1]">    <CalibPara index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">        <scene index="1" type="char" size="[1 8]">            A0        </scene>        <AecWinScale index="1" type="struct" size="[1 1]">                   <InputRaw index="1" type="double" size="[1 4]">                      [0 0 1 1]                   </InputRaw>                   <TmoRaw index="1" type="double" size="[1 4]">                      [0.1 0.1 0.9 0.9]                   </TmoRaw>                   <Yuv index="1" type="double" size="[1 4]">                      [0 0 1 1]                   </Yuv>             </AecWinScale>        <AecEnvLvCalib index="1" type="struct" size="[1 1]">                   <CalibFNumber index="1" type="double" size="[1 1]">                      [1.6]                   </CalibFNumber>                   <CurveCoeff index="1" type="double" size="[1 2]">                      [0.02859 0.5972]                   </CurveCoeff>             </AecEnvLvCalib>          </cell>          <cell index="1" type="struct" size="[1 1]">        <scene index="1" type="char" size="[1 8]">            B0        </scene>        <AecWinScale index="1" type="struct" size="[1 1]">                   <InputRaw index="1" type="double" size="[1 4]">                      [0 0 1 1]                   </InputRaw>                   <TmoRaw index="1" type="double" size="[1 4]">                      [0.1 0.1 0.9 0.9]                   </TmoRaw>                   <Yuv index="1" type="double" size="[1 4]">                      [0 0 1 1]                   </Yuv>             </AecWinScale>        <AecEnvLvCalib index="1" type="struct" size="[1 1]">                   <CalibFNumber index="1" type="double" size="[1 1]">                      [1.6]                   </CalibFNumber>                   <CurveCoeff index="1" type="double" size="[1 2]">                      [0.02859 0.5972]                   </CurveCoeff>             </AecEnvLvCalib>          </cell>          </CalibPara>    <TunePara index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">        <scene index="1" type="char" size="[1 8]">            A0        </scene>          <Enable index="1" type="double" size="[1 1]">             [1]          </Enable>          <AecRunInterval index="1" type="double" size="[1 1]">             [0]          </AecRunInterval>          <AecOpType index="1" type="char" size="[1 6]">             AUTO          </AecOpType>          <HistStatsMode index="1" type="char" size="[1 3]">             Y          </HistStatsMode>          <RawStatsMode index="1" type="char" size="[1 3]">             Y          </RawStatsMode>          <YRangeMode index="1" type="char" size="[1 10]">             FULL          </YRangeMode>    <AecSyncTest index="1" type="struct" size="[1 1]">       <Enable index="1" type="double" size="[1 1]">             [0]       </Enable>       <IntervalFrm index="1" type="double" size="[1 1]">             [60]       </IntervalFrm>       <AlterExp index="1" type="struct" size="[1 1]">                <LinearAE index="1" type="cell" size="[1 2]">            <cell index="1" type="struct" size="[1 1]">                      <TimeValue index="1" type="double" size="[1 1]">                         [0.02]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 1]">                         [1]                      </GainValue>                 <IspDgainValue index="1" type="double" size="[1 1]">                         [1]                      </IspDgainValue>                 <DcgMode index="1" type="double" size="[1 1]">                         [0]                      </DcgMode>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [1]                      </PIrisGainValue>            </cell>            <cell index="1" type="struct" size="[1 1]">                      <TimeValue index="1" type="double" size="[1 1]">                         [0.020]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 1]">                         [6]                      </GainValue>                 <IspDgainValue index="1" type="double" size="[1 1]">                         [1]                      </IspDgainValue>                 <DcgMode index="1" type="double" size="[1 1]">                         [0]                      </DcgMode>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [29]                      </PIrisGainValue>            </cell>                </LinearAE>                <HdrAE index="1" type="cell" size="[1 2]">            <cell index="1" type="struct" size="[1 1]">                      <TimeValue index="1" type="double" size="[1 3]">                         [0.01 0.02 0.03]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </GainValue>                 <IspDgainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </IspDgainValue>                 <DcgMode index="1" type="double" size="[1 3]">                         [0 0 0]                      </DcgMode>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [1]                      </PIrisGainValue>            </cell>            <cell index="1" type="struct" size="[1 1]">                      <TimeValue index="1" type="double" size="[1 3]">                         [0.01 0.02 0.03]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 3]">                         [6 6 1]                      </GainValue>                 <IspDgainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </IspDgainValue>                 <DcgMode index="1" type="double" size="[1 3]">                         [0 0 0]                      </DcgMode>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [29]                      </PIrisGainValue>            </cell>                </HdrAE>              </AlterExp>          </AecSyncTest>          <AecSpeed index="1" type="struct" size="[1 1]">            <DampOver index="1" type="double" size="[1 1]">               [0.15]            </DampOver>            <DampUnder index="1" type="double" size="[1 1]">               [0.45]            </DampUnder>            <DampDark2Bright index="1" type="double" size="[1 1]">               [0.15]            </DampDark2Bright>            <DampBright2Dark index="1" type="double" size="[1 1]">               [0.45]            </DampBright2Dark>          </AecSpeed>          <AecDelayFrmNum index="1" type="struct" size="[1 1]">             <BlackDelay index="1" type="double" size="[1 1]">                [2]             </BlackDelay>             <WhiteDelay index="1" type="double" size="[1 1]">                [2]             </WhiteDelay>          </AecDelayFrmNum>          <AecFrameRateMode index="1" type="struct" size="[1 1]">             <isFpsFix index="1" type="double" size="[1 1]">                [0]             </isFpsFix>             <FpsValue index="1" type="double" size="[1 1]">                [24]             </FpsValue>          </AecFrameRateMode>          <AecAntiFlicker index="1" type="struct" size="[1 1]">             <enable index="1" type="double" size="[1 1]">                [1]             </enable>             <Frequency index="1" type="char" size="[1 15]">                FLICKER_50HZ             </Frequency>             <Mode index="1" type="char" size="[1 10]">                AUTO             </Mode>          </AecAntiFlicker>    <AecInitValue index="1" type="struct" size="[1 1]">             <LinearAE index="1" type="struct" size="[1 1]">                   <InitTimeValue index="1" type="double" size="[1 1]">                      [0.003]                   </InitTimeValue>             <InitGainValue index="1" type="double" size="[1 1]">                      [1]                   </InitGainValue>             <InitIspDgainValue index="1" type="double" size="[1 1]">                      [1]                   </InitIspDgainValue>             <InitPIrisGainValue index="1" type="double" size="[1 1]">                      [512 ]               </InitPIrisGainValue>             <InitDCIrisDutyValue index="1" type="double" size="[1 1]">                      [100]              </InitDCIrisDutyValue>             </LinearAE>             <HdrAE index="1" type="struct" size="[1 1]">                   <InitTimeValue index="1" type="double" size="[1 3]">                      [0.0005 0.003 0.003]                   </InitTimeValue>             <InitGainValue index="1" type="double" size="[1 3]">                      [1 1 1]                   </InitGainValue>             <InitIspDgainValue index="1" type="double" size="[1 3]">                      [1 1 1]                   </InitIspDgainValue>             <InitPIrisGainValue index="1" type="double" size="[1 1]">                      [512 ]               </InitPIrisGainValue>             <InitDCIrisDutyValue index="1" type="double" size="[1 1]">                      [100]              </InitDCIrisDutyValue>             </HdrAE>          </AecInitValue>        <AecGridWeight index="1" type="double" size="[15 15]">                  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 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]          </AecGridWeight>    <AecRoute index="1" type="struct" size="[1 1]">                <LinearAE index="1" type="struct" size="[1 1]">        <TimeDot index="1" type="double" size="[1 6]">            [0 0.04 0.04 0.04 0.04 0.04]        </TimeDot>        <GainDot index="1" type="double" size="[1 6]">            [1 1 4 8 15.5 16]        </GainDot>        <IspDGainDot index="1" type="double" size="[1 6]">            [1 1 1 1 1 2]        </IspDGainDot>        <PIrisDot index="1" type="double" size="[1 6]">            [512 512 512 512 512 512]        </PIrisDot>                          </LinearAE>                <HdrAE index="1" type="struct" size="[1 1]">          <LTimeDot index="1" type="double" size="[1 6]">                   [0 0.030 0.030 0.030 0.030 0.030]                </LTimeDot>                <MTimeDot index="1" type="double" size="[1 6]">                   [0 0.030 0.030 0.030 0.030 0.030]                </MTimeDot>                <STimeDot index="1" type="double" size="[1 6]">                   [0 0.003 0.003 0.003 0.003 0.003]                </STimeDot>                <LGainDot index="1" type="double" size="[1 6]">                   [1 1 4 8 15.5 64]                </LGainDot>                <MGainDot index="1" type="double" size="[1 6]">                   [1 1 4 8 15.5 64]                </MGainDot>                <SGainDot index="1" type="double" size="[1 6]">                   [1 1 4 8 15.5 32]                </SGainDot>          <LIspDGainDot index="1" type="double" size="[1 6]">                   [1 1 1 1 1 1]                </LIspDGainDot>          <MIspDGainDot index="1" type="double" size="[1 6]">                   [1 1 1 1 1 1]                </MIspDGainDot>          <SIspDGainDot index="1" type="double" size="[1 6]">                   [1 1 1 1 1 1]                </SIspDGainDot>                    <PIrisDot index="1" type="double" size="[1 6]">                   [512 512 512 512 512 512]                </PIrisDot>             </HdrAE>          </AecRoute>          <AecDNSwitch index="1" type="struct" size="[1 1]">             <DNTrigger index="1" type="double" size="[1 1]">                [0]             </DNTrigger>             <DNMode index="1" type="char" size="[1 8]">                DAY             </DNMode>             <FillLightMode index="1" type="double" size="[1 1]">                [1]             </FillLightMode>             <D2NFacTh index="1" type="double" size="[1 1]">                [0.15]             </D2NFacTh>             <D2NFrmCnt index="1" type="double" size="[1 1]">                [15]             </D2NFrmCnt>             <VBNightMode index="1" type="struct" size="[1 1]">                <Enable index="1" type="double" size="[1 1]">                   [0]                </Enable>                <N2DFrmCnt index="1" type="double" size="[1 1]">                   [15]                </N2DFrmCnt>                <N2DFacTh index="1" type="double" size="[1 1]">                   [0.3]                </N2DFacTh>             </VBNightMode>             <IRNightMode index="1" type="struct" size="[1 1]">                <Enable index="1" type="double" size="[1 1]">                   [0]                </Enable>                <IR_rg index="1" type="double" size="[1 1]">                   [1]                </IR_rg>                <IR_bg index="1" type="double" size="[1 1]">                   [1]                </IR_bg>                <Max_Dis index="1" type="double" size="[1 1]">                   [0.8]                </Max_Dis>                <N2DFrmCnt index="1" type="double" size="[1 1]">                   [15]                </N2DFrmCnt>                <N2DFacTh index="1" type="double" size="[1 1]">                   [0.3]                </N2DFacTh>                <VBPercent index="1" type="double" size="[1 1]">                   [0.15]                </VBPercent>             </IRNightMode>          </AecDNSwitch>    <AecIrisCtrl index="1" type="struct" size="[1 1]">                <Enable index="1" type="double" size="[1 1]">                   [0]                </Enable>                <IrisType index="1" type="char" size="[1 3]">                   DC                </IrisType>          <PIrisAttr index="1" type="struct" size="[1 1]">                     <TotalStep index="1" type="double" size="[1 1]">                        [81]                    </TotalStep>                    <EffcStep index="1" type="double" size="[1 1]">                        [44]                    </EffcStep>                    <ZeroIsMax index="1" type="double" size="[1 1]">                        [1]                    </ZeroIsMax>                    <StepTable index="1" type="double" size="[1 81]">                        [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]                    </StepTable>           </PIrisAttr>          <DCIrisAttr index="1" type="struct" size="[1 1]">                     <Kp index="1" type="double" size="[1 1]">                        [0.5]                    </Kp>                    <Ki index="1" type="double" size="[1 1]">                        [0.2]                    </Ki>                    <Kd index="1" type="double" size="[1 1]">                        [0.3]                    </Kd>                    <MinPwmDuty index="1" type="double" size="[1 1]">                        [0]                    </MinPwmDuty>                    <MaxPwmDuty index="1" type="double" size="[1 1]">                        [100]                    </MaxPwmDuty>                    <OpenPwmDuty index="1" type="double" size="[1 1]">                        [40]                    </OpenPwmDuty>                    <ClosePwmDuty index="1" type="double" size="[1 1]">                        [22]                    </ClosePwmDuty>           </DCIrisAttr>          </AecIrisCtrl>    <AecManualCtrl index="1" type="struct" size="[1 1]">             <LinearAE index="1" type="struct" size="[1 1]">             <ManualTimeEn index="1" type="double" size="[1 1]">                      [1]                   </ManualTimeEn>             <ManualGainEn index="1" type="double" size="[1 1]">                      [1]                   </ManualGainEn>             <ManualIspDgainEn index="1" type="double" size="[1 1]">                      [1]                   </ManualIspDgainEn>             <ManualIrisEn index="1" type="double" size="[1 1]">                      [1]                   </ManualIrisEn>                   <TimeValue index="1" type="double" size="[1 1]">                      [0.02]                   </TimeValue>             <GainValue index="1" type="double" size="[1 1]">                      [6]                   </GainValue>             <IspDGainValue index="1" type="double" size="[1 1]">                      [1]                   </IspDGainValue>             <PIrisGainValue index="1" type="double" size="[1 1]">                      [1.4]                   </PIrisGainValue>             <DCIrisValue index="1" type="double" size="[1 1]">                      [30]                   </DCIrisValue>             </LinearAE>             <HdrAE index="1" type="struct" size="[1 1]">        <ManualTimeEn index="1" type="double" size="[1 1]">                      [1]                   </ManualTimeEn>             <ManualGainEn index="1" type="double" size="[1 1]">                      [1]                   </ManualGainEn>             <ManualIspDgainEn index="1" type="double" size="[1 1]">                      [1]                   </ManualIspDgainEn>             <ManualIrisEn index="1" type="double" size="[1 1]">                      [1]                   </ManualIrisEn>                   <TimeValue index="1" type="double" size="[1 3]">                      [0.01 0.02 0.03]                   </TimeValue>             <GainValue index="1" type="double" size="[1 3]">                      [1 1 1]                   </GainValue>             <IspDGainValue index="1" type="double" size="[1 3]">                      [1 1 1]                   </IspDGainValue>             <PIrisGainValue index="1" type="double" size="[1 1]">                      [1.4]                   </PIrisGainValue>             <DCIrisValue index="1" type="double" size="[1 1]">                      [30]                   </DCIrisValue>             </HdrAE>          </AecManualCtrl>    <LinearAECtrl index="1" type="struct" size="[1 1]">             <RawStatsEn index="1" type="double" size="[1 1]">                 [1]             </RawStatsEn>            <SetPoint index="1" type="double" size="[1 1]">               [55]            </SetPoint>            <NightSetpoint index="1" type="double" size="[1 1]">               [35]            </NightSetpoint>            <DySetPointEn index="1" type="double" size="[1 1]">               [1]            </DySetPointEn>               <DynamicSetpoint index="1" type="struct" size="[1 1]">                  <ExpLevel index="1" type="double" size="[1 6]">                     [0 0.05 0.1 0.3 0.5 0.7]                  </ExpLevel>                  <DySetpoint index="1" type="double" size="[1 6]">                     [45 45 40 38 33 30]                  </DySetpoint>            </DynamicSetpoint>            <Evbias index="1" type="double" size="[1 1]">               [0]            </Evbias>             <ToleranceIn index="1" type="double" size="[1 1]">                 [10.0000 ]             </ToleranceIn>             <ToleranceOut index="1" type="double" size="[1 1]">                 [15.0000 ]             </ToleranceOut>             <StrategyMode index="1" type="char" size="[1 20]">               LOWLIGHT_PRIOR            </StrategyMode>            <BackLightCtrl index="1" type="struct" size="[1 1]">               <Enable index="1" type="double" size="[1 1]">                  [0]               </Enable>               <MeasArea index="1" type="char" size="[1 8]">                  AUTO               </MeasArea>              <LumaDistTh index="1" type="double" size="[1 1]">                 [10]              </LumaDistTh>                            <OEROILowTh index="1" type="double" size="[1 1]">                 [150]              </OEROILowTh>              <LvHighTh index="1" type="double" size="[1 1]">                 [7.5]              </LvHighTh>              <LvLowTh index="1" type="double" size="[1 1]">                 [0.3125]              </LvLowTh>              <ExpLevel index="1" type="double" size="[1 6]">                 [0.05 0.1 0.2 0.3 0.5 0.7]              </ExpLevel>              <NonOEPdfTh index="1" type="double" size="[1 6]">                 [0.4 0.45 0.55 0.65 0.75 1]              </NonOEPdfTh>              <LowLightPdfTh index="1" type="double" size="[1 6]">                 [0.20 0.20 0.22 0.25 0.3 0.35]              </LowLightPdfTh>              <TargetLLLuma index="1" type="double" size="[1 6]">                 [25 22 20 18 15 12]              </TargetLLLuma>            </BackLightCtrl>            <OverExpCtrl index="1" type="struct" size="[1 1]">               <Enable index="1" type="double" size="[1 1]">                  [0]               </Enable>              <HighLightTh index="1" type="double" size="[1 1]">                 [150]              </HighLightTh>                            <LowLightTh index="1" type="double" size="[1 1]">                 [30]              </LowLightTh>              <MaxWeight index="1" type="double" size="[1 1]">                 [8]              </MaxWeight>              <OEpdf index="1" type="double" size="[1 6]">                 [0.01 0.02 0.03 0.04 0.05 0.07]              </OEpdf>              <HighLightWeight index="1" type="double" size="[1 6]">                 [4 3 3 3 2 2]              </HighLightWeight>              <LowLightWeight index="1" type="double" size="[1 6]">                 [1 1 1 1 1 1]              </LowLightWeight>            </OverExpCtrl>    </LinearAECtrl>          <HdrAECtrl index="1" type="struct" size="[1 1]">             <Evbias index="1" type="double" size="[1 1]">                [0]             </Evbias>             <ToleranceIn index="1" type="double" size="[1 1]">                 [10.0000 ]             </ToleranceIn>             <ToleranceOut index="1" type="double" size="[1 1]">                 [15.0000 ]             </ToleranceOut>              <LongFrmMode index="1" type="struct" size="[1 1]">          <mode index="1" type="char" size="[1 20]">             NORMAL          </mode>          <SfrmMinLine index="1" type="double" size="[1 1]">             [2]          </SfrmMinLine>                <LfrmModeExpTh index="1" type="double" size="[1 1]">                    [0.62]                </LfrmModeExpTh>             </LongFrmMode>              <StrategyMode index="1" type="char" size="[1 20]">                 LOWLIGHT_PRIOR             </StrategyMode>       <ExpRatioCtrl index="1" type="struct" size="[1 1]">               <ExpRatioType index="1" type="char" size="[1 8]">                  AUTO               </ExpRatioType>         <RatioExpDot index="1" type="double" size="[1 6]">            [0 0.1 0.3 0.5 0.7 1]         </RatioExpDot>         <M2SRatioFix index="1" type="double" size="[1 6]">            [4 4 4 4 4 4]         </M2SRatioFix>         <L2MRatioFix index="1" type="double" size="[1 6]">            [4 4 4 4 4 4]         </L2MRatioFix>                  <M2SRatioMax index="1" type="double" size="[1 6]">            [64 64 64 64 64 64]         </M2SRatioMax>         <L2MRatioMax index="1" type="double" size="[1 6]">            [32 32 30 28 26 24]         </L2MRatioMax>       </ExpRatioCtrl>             <LumaDistTh index="1" type="double" size="[1 1]">                [10]             </LumaDistTh>             <LframeCtrl index="1" type="struct" size="[1 1]">         <OEROILowTh index="1" type="double" size="[1 1]">                    [150.0]                </OEROILowTh>                <LvHighTh index="1" type="double" size="[1 1]">                    [7.5]                </LvHighTh>                <LvLowTh index="1" type="double" size="[1 1]">                    [0.3125]                </LvLowTh>                <LExpLevel index="1" type="double" size="[1 6]">                   [0 0.01 0.03 0.05 0.1 0.2]                </LExpLevel>                <LSetPoint index="1" type="double" size="[1 6]">                   [75 70 65 60 45 40]                </LSetPoint>                <TargetLLLuma index="1" type="double" size="[1 6]">                   [35 32 30 28 25 20]                </TargetLLLuma>                <NonOEPdfTh index="1" type="double" size="[1 6]">                    [0.4 0.45 0.55 0.65 0.75 1]                </NonOEPdfTh>                <LowLightPdfTh index="1" type="double" size="[1 6]">                    [0.20 0.22 0.25 0.3 0.35 0.4]                </LowLightPdfTh>              </LframeCtrl>             <MframeCtrl index="1" type="struct" size="[1 1]">                <MExpLevel index="1" type="double" size="[1 6]">                   [0.05 0.1 0.2 0.5 0.7 1]                </MExpLevel>                <MSetPoint index="1" type="double" size="[1 6]">                   [60 60 55 50 45 40]                </MSetPoint>             </MframeCtrl>             <SframeCtrl index="1" type="struct" size="[1 1]">                <SExpLevel index="1" type="double" size="[1 6]">                   [0 0.05 0.15 0.25 0.4 0.6]                </SExpLevel>                <TargetHLLuma index="1" type="double" size="[1 6]">                   [100 100 100 90 80 70]                </TargetHLLuma>                <SSetPoint index="1" type="double" size="[1 6]">                   [18 18 15 12 12 12]                </SSetPoint>                <HLLumaTolerance index="1" type="double" size="[1 1]">                   [12]                </HLLumaTolerance>                <HLROIExpandEn index="1" type="double" size="[1 1]">                   [0]                </HLROIExpandEn>             </SframeCtrl>          </HdrAECtrl>          </cell>          <cell index="1" type="struct" size="[1 1]">        <scene index="1" type="char" size="[1 8]">            B0        </scene>             <Enable index="1" type="double" size="[1 1]">                [1]             </Enable>             <AecRunInterval index="1" type="double" size="[1 1]">                [0]             </AecRunInterval>             <AecOpType index="1" type="char" size="[1 6]">                AUTO             </AecOpType>             <HistStatsMode index="1" type="char" size="[1 3]">                Y             </HistStatsMode>             <RawStatsMode index="1" type="char" size="[1 3]">                Y             </RawStatsMode>             <YRangeMode index="1" type="char" size="[1 10]">                FULL             </YRangeMode>        <AecSyncTest index="1" type="struct" size="[1 1]">           <Enable index="1" type="double" size="[1 1]">                 [0]           </Enable>           <IntervalFrm index="1" type="double" size="[1 1]">                 [60]           </IntervalFrm>           <AlterExp index="1" type="struct" size="[1 1]">                    <LinearAE index="1" type="cell" size="[1 2]">                <cell index="1" type="struct" size="[1 1]">                          <TimeValue index="1" type="double" size="[1 1]">                             [0.02]                          </TimeValue>                     <GainValue index="1" type="double" size="[1 1]">                             [1]                          </GainValue>                     <IspDgainValue index="1" type="double" size="[1 1]">                             [1]                          </IspDgainValue>                     <DcgMode index="1" type="double" size="[1 1]">                             [0]                          </DcgMode>                     <PIrisGainValue index="1" type="double" size="[1 1]">                             [1]                          </PIrisGainValue>                </cell>                <cell index="1" type="struct" size="[1 1]">                          <TimeValue index="1" type="double" size="[1 1]">                             [0.020]                          </TimeValue>                     <GainValue index="1" type="double" size="[1 1]">                             [6]                          </GainValue>                     <IspDgainValue index="1" type="double" size="[1 1]">                             [1]                          </IspDgainValue>                     <DcgMode index="1" type="double" size="[1 1]">                             [0]                          </DcgMode>                     <PIrisGainValue index="1" type="double" size="[1 1]">                             [29]                          </PIrisGainValue>                </cell>                    </LinearAE>                    <HdrAE index="1" type="cell" size="[1 2]">                <cell index="1" type="struct" size="[1 1]">                          <TimeValue index="1" type="double" size="[1 3]">                             [0.01 0.02 0.03]                          </TimeValue>                     <GainValue index="1" type="double" size="[1 3]">                             [1 1 1]                          </GainValue>                     <IspDgainValue index="1" type="double" size="[1 3]">                             [1 1 1]                          </IspDgainValue>                     <DcgMode index="1" type="double" size="[1 3]">                             [0 0 0]                          </DcgMode>                     <PIrisGainValue index="1" type="double" size="[1 1]">                             [1]                          </PIrisGainValue>                </cell>                <cell index="1" type="struct" size="[1 1]">                          <TimeValue index="1" type="double" size="[1 3]">                             [0.01 0.02 0.03]                          </TimeValue>                     <GainValue index="1" type="double" size="[1 3]">                             [6 6 1]                          </GainValue>                     <IspDgainValue index="1" type="double" size="[1 3]">                             [1 1 1]                          </IspDgainValue>                     <DcgMode index="1" type="double" size="[1 3]">                             [0 0 0]                          </DcgMode>                     <PIrisGainValue index="1" type="double" size="[1 1]">                             [29]                          </PIrisGainValue>                </cell>                    </HdrAE>                 </AlterExp>             </AecSyncTest>             <AecSpeed index="1" type="struct" size="[1 1]">               <DampOver index="1" type="double" size="[1 1]">                  [0.15]               </DampOver>               <DampUnder index="1" type="double" size="[1 1]">                  [0.45]               </DampUnder>               <DampDark2Bright index="1" type="double" size="[1 1]">                  [0.15]               </DampDark2Bright>               <DampBright2Dark index="1" type="double" size="[1 1]">                  [0.45]               </DampBright2Dark>             </AecSpeed>             <AecDelayFrmNum index="1" type="struct" size="[1 1]">                <BlackDelay index="1" type="double" size="[1 1]">                   [2]                </BlackDelay>                <WhiteDelay index="1" type="double" size="[1 1]">                   [2]                </WhiteDelay>             </AecDelayFrmNum>             <AecFrameRateMode index="1" type="struct" size="[1 1]">                <isFpsFix index="1" type="double" size="[1 1]">                   [1]                </isFpsFix>                <FpsValue index="1" type="double" size="[1 1]">                   [0]                </FpsValue>             </AecFrameRateMode>             <AecAntiFlicker index="1" type="struct" size="[1 1]">                <enable index="1" type="double" size="[1 1]">                   [1]                </enable>                <Frequency index="1" type="char" size="[1 15]">                   FLICKER_50HZ                </Frequency>                <Mode index="1" type="char" size="[1 10]">                   AUTO                </Mode>             </AecAntiFlicker>        <AecInitValue index="1" type="struct" size="[1 1]">                <LinearAE index="1" type="struct" size="[1 1]">                      <InitTimeValue index="1" type="double" size="[1 1]">                         [0.003]                      </InitTimeValue>                 <InitGainValue index="1" type="double" size="[1 1]">                         [1]                      </InitGainValue>                 <InitIspDgainValue index="1" type="double" size="[1 1]">                         [1]                      </InitIspDgainValue>                 <InitPIrisGainValue index="1" type="double" size="[1 1]">                         [512 ]                  </InitPIrisGainValue>                 <InitDCIrisDutyValue index="1" type="double" size="[1 1]">                         [100]                 </InitDCIrisDutyValue>                </LinearAE>                <HdrAE index="1" type="struct" size="[1 1]">                      <InitTimeValue index="1" type="double" size="[1 3]">                         [0.0005 0.003 0.003]                      </InitTimeValue>                 <InitGainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </InitGainValue>                 <InitIspDgainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </InitIspDgainValue>                 <InitPIrisGainValue index="1" type="double" size="[1 1]">                         [512 ]                  </InitPIrisGainValue>                 <InitDCIrisDutyValue index="1" type="double" size="[1 1]">                         [100]                 </InitDCIrisDutyValue>                </HdrAE>             </AecInitValue>        <AecGridWeight index="1" type="double" size="[15 15]">                  [1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 1 1 1 1 1 1 1 1 1 1 1 1            1 1 1 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]             </AecGridWeight>        <AecRoute index="1" type="struct" size="[1 1]">                <LinearAE index="1" type="struct" size="[1 1]">            <TimeDot index="1" type="double" size="[1 6]">                [0 0.04 0.04 0.04 0.04 0.04]            </TimeDot>            <GainDot index="1" type="double" size="[1 6]">                [1 1 4 8 15.5 16]            </GainDot>            <IspDGainDot index="1" type="double" size="[1 6]">                [1 1 1 1 1 2]            </IspDGainDot>            <PIrisDot index="1" type="double" size="[1 6]">                [512 512 512 512 512 512]            </PIrisDot>                             </LinearAE>                <HdrAE index="1" type="struct" size="[1 1]">              <LTimeDot index="1" type="double" size="[1 6]">                      [0 0.030 0.030 0.030 0.030 0.030]                   </LTimeDot>                   <MTimeDot index="1" type="double" size="[1 6]">                      [0 0.030 0.030 0.030 0.030 0.030]                   </MTimeDot>                   <STimeDot index="1" type="double" size="[1 6]">                      [0 0.003 0.003 0.003 0.003 0.003]                   </STimeDot>                   <LGainDot index="1" type="double" size="[1 6]">                      [1 1 4 8 15.5 64]                   </LGainDot>                   <MGainDot index="1" type="double" size="[1 6]">                      [1 1 4 8 15.5 64]                   </MGainDot>                   <SGainDot index="1" type="double" size="[1 6]">                      [1 1 4 8 15.5 32]                   </SGainDot>              <LIspDGainDot index="1" type="double" size="[1 6]">                      [1 1 1 1 1 1]                   </LIspDGainDot>              <MIspDGainDot index="1" type="double" size="[1 6]">                      [1 1 1 1 1 1]                   </MIspDGainDot>              <SIspDGainDot index="1" type="double" size="[1 6]">                      [1 1 1 1 1 1]                   </SIspDGainDot>                        <PIrisDot index="1" type="double" size="[1 6]">                      [512 512 512 512 512 512]                   </PIrisDot>                </HdrAE>             </AecRoute>             <AecDNSwitch index="1" type="struct" size="[1 1]">                <DNTrigger index="1" type="double" size="[1 1]">                   [0]                </DNTrigger>                <DNMode index="1" type="char" size="[1 8]">                   DAY                </DNMode>                <FillLightMode index="1" type="double" size="[1 1]">                   [1]                </FillLightMode>                <D2NFacTh index="1" type="double" size="[1 1]">                   [0.15]                </D2NFacTh>                <D2NFrmCnt index="1" type="double" size="[1 1]">                   [15]                </D2NFrmCnt>                <VBNightMode index="1" type="struct" size="[1 1]">                   <Enable index="1" type="double" size="[1 1]">                      [0]                   </Enable>                   <N2DFrmCnt index="1" type="double" size="[1 1]">                      [15]                   </N2DFrmCnt>                   <N2DFacTh index="1" type="double" size="[1 1]">                      [0.3]                   </N2DFacTh>                </VBNightMode>                <IRNightMode index="1" type="struct" size="[1 1]">                   <Enable index="1" type="double" size="[1 1]">                      [0]                   </Enable>                   <IR_rg index="1" type="double" size="[1 1]">                      [1]                   </IR_rg>                   <IR_bg index="1" type="double" size="[1 1]">                      [1]                   </IR_bg>                   <Max_Dis index="1" type="double" size="[1 1]">                      [0.8]                   </Max_Dis>                   <N2DFrmCnt index="1" type="double" size="[1 1]">                      [15]                   </N2DFrmCnt>                   <N2DFacTh index="1" type="double" size="[1 1]">                      [0.3]                   </N2DFacTh>                   <VBPercent index="1" type="double" size="[1 1]">                      [0.15]                   </VBPercent>                </IRNightMode>             </AecDNSwitch>        <AecIrisCtrl index="1" type="struct" size="[1 1]">                   <Enable index="1" type="double" size="[1 1]">                      [0]                   </Enable>                   <IrisType index="1" type="char" size="[1 3]">                      DC                   </IrisType>              <PIrisAttr index="1" type="struct" size="[1 1]">                        <TotalStep index="1" type="double" size="[1 1]">                           [81]                       </TotalStep>                       <EffcStep index="1" type="double" size="[1 1]">                           [44]                       </EffcStep>                       <ZeroIsMax index="1" type="double" size="[1 1]">                           [1]                       </ZeroIsMax>                       <StepTable index="1" type="double" size="[1 81]">                           [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]                       </StepTable>               </PIrisAttr>              <DCIrisAttr index="1" type="struct" size="[1 1]">                        <Kp index="1" type="double" size="[1 1]">                           [0.5]                       </Kp>                       <Ki index="1" type="double" size="[1 1]">                           [0.2]                       </Ki>                       <Kd index="1" type="double" size="[1 1]">                           [0.3]                       </Kd>                       <MinPwmDuty index="1" type="double" size="[1 1]">                           [0]                       </MinPwmDuty>                       <MaxPwmDuty index="1" type="double" size="[1 1]">                           [100]                       </MaxPwmDuty>                       <OpenPwmDuty index="1" type="double" size="[1 1]">                           [40]                       </OpenPwmDuty>                       <ClosePwmDuty index="1" type="double" size="[1 1]">                           [22]                       </ClosePwmDuty>               </DCIrisAttr>             </AecIrisCtrl>        <AecManualCtrl index="1" type="struct" size="[1 1]">                <LinearAE index="1" type="struct" size="[1 1]">                 <ManualTimeEn index="1" type="double" size="[1 1]">                         [1]                      </ManualTimeEn>                 <ManualGainEn index="1" type="double" size="[1 1]">                         [1]                      </ManualGainEn>                 <ManualIspDgainEn index="1" type="double" size="[1 1]">                         [1]                      </ManualIspDgainEn>                 <ManualIrisEn index="1" type="double" size="[1 1]">                         [1]                      </ManualIrisEn>                      <TimeValue index="1" type="double" size="[1 1]">                         [0.01]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 1]">                         [1]                      </GainValue>                 <IspDGainValue index="1" type="double" size="[1 1]">                         [1]                      </IspDGainValue>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [1.4]                      </PIrisGainValue>                 <DCIrisValue index="1" type="double" size="[1 1]">                         [30]                      </DCIrisValue>                </LinearAE>                <HdrAE index="1" type="struct" size="[1 1]">            <ManualTimeEn index="1" type="double" size="[1 1]">                         [1]                      </ManualTimeEn>                 <ManualGainEn index="1" type="double" size="[1 1]">                         [1]                      </ManualGainEn>                 <ManualIspDgainEn index="1" type="double" size="[1 1]">                         [1]                      </ManualIspDgainEn>                 <ManualIrisEn index="1" type="double" size="[1 1]">                         [1]                      </ManualIrisEn>                      <TimeValue index="1" type="double" size="[1 3]">                         [0.01 0.02 0.03]                      </TimeValue>                 <GainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </GainValue>                 <IspDGainValue index="1" type="double" size="[1 3]">                         [1 1 1]                      </IspDGainValue>                 <PIrisGainValue index="1" type="double" size="[1 1]">                         [1.4]                      </PIrisGainValue>                 <DCIrisValue index="1" type="double" size="[1 1]">                         [30]                      </DCIrisValue>                </HdrAE>             </AecManualCtrl>        <LinearAECtrl index="1" type="struct" size="[1 1]">                <RawStatsEn index="1" type="double" size="[1 1]">                    [1]                </RawStatsEn>               <SetPoint index="1" type="double" size="[1 1]">                  [55]               </SetPoint>               <NightSetpoint index="1" type="double" size="[1 1]">                  [35]               </NightSetpoint>               <DySetPointEn index="1" type="double" size="[1 1]">                  [1]               </DySetPointEn>               <DynamicSetpoint index="1" type="struct" size="[1 1]">                     <ExpLevel index="1" type="double" size="[1 6]">                        [0 0.05 0.1 0.3 0.5 0.7]                     </ExpLevel>                     <DySetpoint index="1" type="double" size="[1 6]">                        [45 45 40 38 33 30]                     </DySetpoint>               </DynamicSetpoint>               <Evbias index="1" type="double" size="[1 1]">                  [0]               </Evbias>                <ToleranceIn index="1" type="double" size="[1 1]">                    [10.0000 ]                </ToleranceIn>                <ToleranceOut index="1" type="double" size="[1 1]">                    [15.0000 ]                </ToleranceOut>                <StrategyMode index="1" type="char" size="[1 20]">                  LOWLIGHT_PRIOR               </StrategyMode>               <BackLightCtrl index="1" type="struct" size="[1 1]">                  <Enable index="1" type="double" size="[1 1]">                     [0]                  </Enable>                  <MeasArea index="1" type="char" size="[1 8]">                     AUTO                  </MeasArea>                 <LumaDistTh index="1" type="double" size="[1 1]">                    [10]                 </LumaDistTh>                               <OEROILowTh index="1" type="double" size="[1 1]">                    [150]                 </OEROILowTh>                 <LvHighTh index="1" type="double" size="[1 1]">                    [7.5]                 </LvHighTh>                 <LvLowTh index="1" type="double" size="[1 1]">                    [0.3125]                 </LvLowTh>                 <ExpLevel index="1" type="double" size="[1 6]">                    [0.05 0.1 0.2 0.3 0.5 0.7]                 </ExpLevel>                 <NonOEPdfTh index="1" type="double" size="[1 6]">                    [0.4 0.45 0.55 0.65 0.75 1]                 </NonOEPdfTh>                 <LowLightPdfTh index="1" type="double" size="[1 6]">                    [0.20 0.20 0.22 0.25 0.3 0.35]                 </LowLightPdfTh>                 <TargetLLLuma index="1" type="double" size="[1 6]">                    [25 22 20 18 15 12]                 </TargetLLLuma>               </BackLightCtrl>               <OverExpCtrl index="1" type="struct" size="[1 1]">                  <Enable index="1" type="double" size="[1 1]">                     [0]                  </Enable>                 <HighLightTh index="1" type="double" size="[1 1]">                    [150]                 </HighLightTh>                               <LowLightTh index="1" type="double" size="[1 1]">                    [30]                 </LowLightTh>                 <MaxWeight index="1" type="double" size="[1 1]">                    [8]                 </MaxWeight>                 <OEpdf index="1" type="double" size="[1 6]">                    [0.01 0.02 0.03 0.04 0.05 0.07]                 </OEpdf>                 <HighLightWeight index="1" type="double" size="[1 6]">                    [4 3 3 3 2 2]                 </HighLightWeight>                 <LowLightWeight index="1" type="double" size="[1 6]">                    [1 1 1 1 1 1]                 </LowLightWeight>               </OverExpCtrl>        </LinearAECtrl>             <HdrAECtrl index="1" type="struct" size="[1 1]">                <Evbias index="1" type="double" size="[1 1]">                   [0]                </Evbias>                <ToleranceIn index="1" type="double" size="[1 1]">                    [10.0000 ]                </ToleranceIn>                <ToleranceOut index="1" type="double" size="[1 1]">                    [15.0000 ]                </ToleranceOut>                 <LongFrmMode index="1" type="struct" size="[1 1]">              <mode index="1" type="char" size="[1 20]">                 NORMAL              </mode>              <SfrmMinLine index="1" type="double" size="[1 1]">                 [2]              </SfrmMinLine>                   <LfrmModeExpTh index="1" type="double" size="[1 1]">                       [0.62]                   </LfrmModeExpTh>                </LongFrmMode>                 <StrategyMode index="1" type="char" size="[1 20]">                    LOWLIGHT_PRIOR                </StrategyMode>           <ExpRatioCtrl index="1" type="struct" size="[1 1]">                  <ExpRatioType index="1" type="char" size="[1 8]">                     AUTO                  </ExpRatioType>             <RatioExpDot index="1" type="double" size="[1 6]">                [0 0.1 0.3 0.5 0.7 1]             </RatioExpDot>             <M2SRatioFix index="1" type="double" size="[1 6]">                [4 4 4 4 4 4]             </M2SRatioFix>             <L2MRatioFix index="1" type="double" size="[1 6]">                [4 4 4 4 4 4]             </L2MRatioFix>                      <M2SRatioMax index="1" type="double" size="[1 6]">                [64 64 64 64 64 64]             </M2SRatioMax>             <L2MRatioMax index="1" type="double" size="[1 6]">                [32 32 30 28 26 24]             </L2MRatioMax>           </ExpRatioCtrl>                <LumaDistTh index="1" type="double" size="[1 1]">                   [10]                </LumaDistTh>                <LframeCtrl index="1" type="struct" size="[1 1]">             <OEROILowTh index="1" type="double" size="[1 1]">                       [150.0]                   </OEROILowTh>                   <LvHighTh index="1" type="double" size="[1 1]">                       [7.5]                   </LvHighTh>                   <LvLowTh index="1" type="double" size="[1 1]">                       [0.3125]                   </LvLowTh>                   <LExpLevel index="1" type="double" size="[1 6]">                      [0 0.01 0.03 0.05 0.1 0.2]                   </LExpLevel>                   <LSetPoint index="1" type="double" size="[1 6]">                      [75 70 65 60 45 40]                   </LSetPoint>                   <TargetLLLuma index="1" type="double" size="[1 6]">                      [35 32 30 28 25 20]                   </TargetLLLuma>                   <NonOEPdfTh index="1" type="double" size="[1 6]">                       [0.4 0.45 0.55 0.65 0.75 1]                   </NonOEPdfTh>                   <LowLightPdfTh index="1" type="double" size="[1 6]">                       [0.20 0.22 0.25 0.3 0.35 0.4]                   </LowLightPdfTh>                 </LframeCtrl>                <MframeCtrl index="1" type="struct" size="[1 1]">                   <MExpLevel index="1" type="double" size="[1 6]">                      [0.05 0.1 0.2 0.5 0.7 1]                   </MExpLevel>                   <MSetPoint index="1" type="double" size="[1 6]">                      [60 60 55 50 45 40]                   </MSetPoint>                </MframeCtrl>                <SframeCtrl index="1" type="struct" size="[1 1]">                   <SExpLevel index="1" type="double" size="[1 6]">                      [0 0.05 0.15 0.25 0.4 0.6]                   </SExpLevel>                   <TargetHLLuma index="1" type="double" size="[1 6]">                      [100 100 100 90 80 70]                   </TargetHLLuma>                   <SSetPoint index="1" type="double" size="[1 6]">                      [18 18 15 12 12 12]                   </SSetPoint>                   <HLLumaTolerance index="1" type="double" size="[1 1]">                      [12]                   </HLLumaTolerance>                   <HLROIExpandEn index="1" type="double" size="[1 1]">                      [0]                   </HLROIExpandEn>                </SframeCtrl>             </HdrAECtrl>          </cell>          </TunePara>       </AEC>       <AF index="1" type="struct" size="[1 1]">          <Window index="1" type="struct" size="[1 1]">             <h_offs index="1" type="double" size="[1 1]">                [0]             </h_offs>             <v_offs index="1" type="double" size="[1 1]">                [0]             </v_offs>             <h_size index="1" type="double" size="[1 1]">                [0]             </h_size>             <v_size index="1" type="double" size="[1 1]">                [0]             </v_size>          </Window>          <afmeas_iso index="1" type="cell" size="[1 13]">              <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                   <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                   <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <afmThres index="1" type="double" size="[1 1]">                [4]             </afmThres>             <gammaY index="1" type="double" size="[1 17]">                     [0 45 108 179 245 344 409 459 500 567 622 676 759 833 896 962 1023]                  </gammaY>                  <gaussWeight index="1" type="double" size="[1 3]">                     [32 16 8]                  </gaussWeight>              </cell>          </afmeas_iso>          <fixed_mode index="1" type="struct" size="[1 1]">             <code index="1" type="double" size="[1 1]">                [8]             </code>          </fixed_mode>          <macro_mode index="1" type="struct" size="[1 1]">             <code index="1" type="double" size="[1 1]">                [32]             </code>          </macro_mode>          <infinity_mode index="1" type="struct" size="[1 1]">             <code index="1" type="double" size="[1 1]">                [32]             </code>          </infinity_mode>          <contrast_af index="1" type="struct" size="[1 1]">             <enable index="1" type="double" size="[1 1]">                [1]             </enable>             <AfSearchStrategy index="1" type="char" size="[1 14]">                ADAPTIVE_RANGE             </AfSearchStrategy>             <FullDir index="1" type="char" size="[1 8]">                ADAPTIVE             </FullDir>             <FullRangeTbl index="1" type="double" size="[1 9]">                [0 8 16 24 32 40 48 56 64]             </FullRangeTbl>             <AdaptiveDir index="1" type="char" size="[1 8]">                ADAPTIVE             </AdaptiveDir>             <AdaptRangeTbl index="1" type="double" size="[1 9]">                [0 8 16 24 32 40 48 56 64]             </AdaptRangeTbl>             <TrigThers index="1" type="double" size="[1 1]">                [0.075]             </TrigThers>             <StableThers index="1" type="double" size="[1 1]">                [0.02]             </StableThers>             <StableFrames index="1" type="double" size="[1 1]">                [3]             </StableFrames>             <StableTime index="1" type="double" size="[1 1]">                [200]             </StableTime>             <OutFocusValue index="1" type="double" size="[1 1]">                [50]             </OutFocusValue>             <OutFocusPos index="1" type="double" size="[1 1]">                [30]             </OutFocusPos>          </contrast_af>          <laser_af index="1" type="struct" size="[1 3]">             <enable index="1" type="double" size="[1 1]">                [0]             </enable>             <vcmDot index="1" type="double" size="[1 7]">                [0 16 32 40 48 56 64]             </vcmDot>             <distanceDot index="1" type="double" size="[1 7]">                [0.2 0.24 0.34 0.4 0.66 1 3]             </distanceDot>          </laser_af>          <pdaf index="1" type="struct" size="[1 1]">             <enable index="1" type="double" size="[1 1]">                [0]             </enable>          </pdaf>          <vcmConfig index="1" type="struct" size="[1 1]">             <startCurrent index="1" type="double" size="[1 1]">                [-1]             </startCurrent>             <ratedCurrent index="1" type="double" size="[1 1]">                [-1]             </ratedCurrent>             <stepMode index="1" type="double" size="[1 1]">                [-1]             </stepMode>             <extraDelay index="1" type="double" size="[1 1]">                [0]             </extraDelay>          </vcmConfig>       </AF>          <MERGE index="1" type="struct" size="[1 1]">                 <EnvLv index="1" type="double" size="[1 13]">                     [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                 </EnvLv>                 <OECurve_smooth index="1" type="double" size="[1 13]">                     [0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4]                 </OECurve_smooth>                 <OECurve_offset index="1" type="double" size="[1 13]">                     [210 210 210 210 210 210 210 210 210 210 210 210 210]                 </OECurve_offset>                 <MoveCoef index="1" type="double" size="[1 13]">                     [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                 </MoveCoef>                 <MDCurveLM_smooth index="1" type="double" size="[1 13]">                     [0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4]                 </MDCurveLM_smooth>                 <MDCurveLM_offset index="1" type="double" size="[1 13]">                     [0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.38]                 </MDCurveLM_offset>                 <MDCurveMS_smooth index="1" type="double" size="[1 13]">                     [0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4000 0.4]                 </MDCurveMS_smooth>                 <MDCurveMS_offset index="1" type="double" size="[1 13]">                     [0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.3800 0.38]                 </MDCurveMS_offset>                 <OECurve_damp index="1" type="double" size="[1 1]">                   [0.3]                </OECurve_damp>                <MDCurveLM_damp index="1" type="double" size="[1 1]">                  [0.3]                </MDCurveLM_damp>                <MDCurveMS_damp index="1" type="double" size="[1 1]">                   [0.3]                </MDCurveMS_damp>          </MERGE>          <TMO index="1" type="struct" size="[1 1]">        <Enable index="1" type="cell" size="[1 3]">                    <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>                     <En index="1" type="double" size="[1 1]">                         [1.0000 ]                     </En>        </cell>                    <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>                     <En index="1" type="double" size="[1 1]">                         [1.0000 ]                     </En>        </cell>                     <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>                     <En index="1" type="double" size="[1 1]">                         [0 ]                     </En>        </cell>                  </Enable>          <GlobalLuma index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>                     <GlobalLumaMode index="1" type="double" size="[1 1]">                         [1.0000 ]                     </GlobalLumaMode>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <GlobalLuma index="1" type="double" size="[1 13]">                         [0.2500 0.2500 0.2500 0.2500 0.1700 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1]                     </GlobalLuma>        </cell>        <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>                     <GlobalLumaMode index="1" type="double" size="[1 1]">                         [1.0000 ]                     </GlobalLumaMode>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <GlobalLuma index="1" type="double" size="[1 13]">                         [0.2500 0.2500 0.2500 0.2500 0.1700 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1]                     </GlobalLuma>        </cell>        <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>                     <GlobalLumaMode index="1" type="double" size="[1 1]">                         [1.0000 ]                     </GlobalLumaMode>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <GlobalLuma index="1" type="double" size="[1 13]">                         [0.2500 0.2500 0.2500 0.2500 0.1700 0.1 0.1 0.1 0.1 0.1 0.1 0.1 0.1]                     </GlobalLuma>        </cell>                 </GlobalLuma>                 <DetailsHighLight index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>                     <DetailsHighLightMode index="1" type="double" size="[1 1]">                         [0.0000 ]                     </DetailsHighLightMode>                     <OEPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </OEPdf>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsHighLight index="1" type="double" size="[1 13]">                         [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                     </DetailsHighLight>                    </cell>        <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>                     <DetailsHighLightMode index="1" type="double" size="[1 1]">                         [0.0000 ]                     </DetailsHighLightMode>                     <OEPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </OEPdf>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsHighLight index="1" type="double" size="[1 13]">                         [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                     </DetailsHighLight>                    </cell>        <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>                     <DetailsHighLightMode index="1" type="double" size="[1 1]">                         [0.0000 ]                     </DetailsHighLightMode>                     <OEPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </OEPdf>                     <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsHighLight index="1" type="double" size="[1 13]">                         [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                     </DetailsHighLight>                    </cell>                 </DetailsHighLight>                 <DetailsLowLight index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>                     <DetailsLowLightMode index="1" type="double" size="[1 1]">                         [2.0000 ]                     </DetailsLowLightMode>                     <FocusLuma index="1" type="double" size="[1 13]">                         [1 15 20 25 30 35 40 50 60 70 80 90 100]                     </FocusLuma>                     <DarkPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </DarkPdf>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsLowLight index="1" type="double" size="[1 13]">                         [1 1 1 1 1 1 1 1 1 1 1 1 1]                     </DetailsLowLight>        </cell>        <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>                     <DetailsLowLightMode index="1" type="double" size="[1 1]">                         [2.0000 ]                     </DetailsLowLightMode>                     <FocusLuma index="1" type="double" size="[1 13]">                         [1 15 20 25 30 35 40 50 60 70 80 90 100]                     </FocusLuma>                     <DarkPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </DarkPdf>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsLowLight index="1" type="double" size="[1 13]">                         [1 1 1 1 1 1 1 1 1 1 1 1 1]                     </DetailsLowLight>        </cell>        <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>                     <DetailsLowLightMode index="1" type="double" size="[1 1]">                         [2.0000 ]                     </DetailsLowLightMode>                     <FocusLuma index="1" type="double" size="[1 13]">                         [1 15 20 25 30 35 40 50 60 70 80 90 100]                     </FocusLuma>                     <DarkPdf index="1" type="double" size="[1 13]">                         [0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.8 1]                     </DarkPdf>                     <ISO index="1" type="double" size="[1 13]">                         [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                     </ISO>                     <Tolerance index="1" type="double" size="[1 1]">                         [0.0000 ]                     </Tolerance>                     <DetailsLowLight index="1" type="double" size="[1 13]">                         [1 1 1 1 1 1 1 1 1 1 1 1 1]                     </DetailsLowLight>        </cell>                 </DetailsLowLight>          <GlobalTMO index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>        <Enable index="1" type="double" size="[1 1]">                   [0]                  </Enable>        <IIR index="1" type="double" size="[1 1]">                   [64]                  </IIR>                 <Mode index="1" type="double" size="[1 1]">                     [0]                  </Mode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <GlobalTMOStrength index="1" type="double" size="[1 13]">                     [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                  </GlobalTMOStrength>        </cell>        <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>        <Enable index="1" type="double" size="[1 1]">                   [0]                  </Enable>        <IIR index="1" type="double" size="[1 1]">                   [64]                  </IIR>                 <Mode index="1" type="double" size="[1 1]">                     [0]                  </Mode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <GlobalTMOStrength index="1" type="double" size="[1 13]">                     [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                  </GlobalTMOStrength>        </cell>        <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>        <Enable index="1" type="double" size="[1 1]">                   [0]                  </Enable>        <IIR index="1" type="double" size="[1 1]">                   [64]                  </IIR>                 <Mode index="1" type="double" size="[1 1]">                     [0]                  </Mode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <GlobalTMOStrength index="1" type="double" size="[1 13]">                     [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                  </GlobalTMOStrength>        </cell>          </GlobalTMO>          <LocalTMO index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   normal                   </Name>                 <LocalTMOMode index="1" type="double" size="[1 1]">                     [0]                  </LocalTMOMode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <LocalTMOStrength index="1" type="double" size="[1 13]">                     [0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3]                  </LocalTMOStrength>        </cell>        <cell index="2" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   HDR                   </Name>                 <LocalTMOMode index="1" type="double" size="[1 1]">                     [0]                  </LocalTMOMode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <LocalTMOStrength index="1" type="double" size="[1 13]">                     [0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3]                  </LocalTMOStrength>        </cell>        <cell index="3" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                   night                   </Name>                 <LocalTMOMode index="1" type="double" size="[1 1]">                     [0]                  </LocalTMOMode>                  <DynamicRange index="1" type="double" size="[1 13]">                     [1 20 30 44 48 55 60 66 68 72 78 80 84]                  </DynamicRange>                      <EnvLv index="1" type="double" size="[1 13]">                         [0 0.005 0.01 0.05 0.1 0.15  0.2 0.3 0.4 0.5 0.6 0.8 1.0]                     </EnvLv>        <Tolerance index="1" type="double" size="[1 1]">                     [0]                  </Tolerance>                  <LocalTMOStrength index="1" type="double" size="[1 13]">                     [0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3 0.3]                  </LocalTMOStrength>        </cell>          </LocalTMO>    <Damp index="1" type="double" size="[1 1]">               [0.3]    </Damp>             </TMO>          <DRC index="1" type="struct" size="[1 1]">        <CalibPara index="1" type="cell" size="[1 1]">                    <cell index="1" type="struct" size="[1 1]">        <Scene index="1" type="char" size="[1 8]">                   A0                   </Scene>                     <sw_adrc_position index="1" type="int" size="[1 1]">                         [4096 ]                     </sw_adrc_position>                     <sw_adrc_offset_pow2 index="1" type="int" size="[1 1]">                         [8 ]                     </sw_adrc_offset_pow2>                     <sw_adrc_lpdetail_ratio index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_lpdetail_ratio>                     <sw_adrc_hpdetail_ratio index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_hpdetail_ratio>                     <sw_adrc_weipre_frame index="1" type="int" size="[1 1]">                         [255 ]                     </sw_adrc_weipre_frame>                     <sw_adrc_weicur_pix index="1" type="int" size="[1 1]">                         [96 ]                     </sw_adrc_weicur_pix>                     <sw_adrc_edge_scl index="1" type="int" size="[1 1]">                         [16 ]                     </sw_adrc_edge_scl>                     <sw_adrc_motion_scl index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_motion_scl>                     <sw_adrc_force_sgm_inv0 index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_force_sgm_inv0>                     <sw_adrc_space_sgm_inv0 index="1" type="int" size="[1 1]">                         [3968 ]                     </sw_adrc_space_sgm_inv0>                     <sw_adrc_space_sgm_inv1 index="1" type="int" size="[1 1]">                         [4068 ]                     </sw_adrc_space_sgm_inv1>                     <sw_adrc_range_sgm_inv0 index="1" type="int" size="[1 1]">                         [1024 ]                     </sw_adrc_range_sgm_inv0>                     <sw_adrc_range_sgm_inv1 index="1" type="int" size="[1 1]">                         [1024 ]                     </sw_adrc_range_sgm_inv1>                     <sw_adrc_weig_bilat index="1" type="int" size="[1 1]">                         [16 ]                     </sw_adrc_weig_bilat>                     <sw_adrc_weig_maxl index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_weig_maxl>                     <sw_adrc_min_ogain index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_min_ogain>                     <iir_frame index="1" type="int" size="[1 1]">                         [16 ]                     </iir_frame>                     <adrc_gain index="1" type="int" size="[1 1]">                         [1024 ]                     </adrc_gain>                     <sw_adrc_scale_y0 index="1" type="int" size="[1 17]">                         [0 2 20 76 193 381 631 772 919 1066 1211 1479 1700 1863 1968 2024 2048 ]                     </sw_adrc_scale_y0>        </cell>                  </CalibPara>          <TuningPara index="1" type="cell" size="[1 1]">                    <cell index="1" type="struct" size="[1 1]">        <Scene index="1" type="char" size="[1 8]">                   A0                   </Scene>                     <sw_adrc_position index="1" type="int" size="[1 1]">                         [4096 ]                     </sw_adrc_position>                     <sw_adrc_offset_pow2 index="1" type="int" size="[1 1]">                         [8 ]                     </sw_adrc_offset_pow2>                     <sw_adrc_lpdetail_ratio index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_lpdetail_ratio>                     <sw_adrc_hpdetail_ratio index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_hpdetail_ratio>                     <sw_adrc_weipre_frame index="1" type="int" size="[1 1]">                         [255 ]                     </sw_adrc_weipre_frame>                     <sw_adrc_weicur_pix index="1" type="int" size="[1 1]">                         [96 ]                     </sw_adrc_weicur_pix>                     <sw_adrc_edge_scl index="1" type="int" size="[1 1]">                         [16 ]                     </sw_adrc_edge_scl>                     <sw_adrc_motion_scl index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_motion_scl>                     <sw_adrc_force_sgm_inv0 index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_force_sgm_inv0>                     <sw_adrc_space_sgm_inv0 index="1" type="int" size="[1 1]">                         [3968 ]                     </sw_adrc_space_sgm_inv0>                     <sw_adrc_space_sgm_inv1 index="1" type="int" size="[1 1]">                         [4068 ]                     </sw_adrc_space_sgm_inv1>                     <sw_adrc_range_sgm_inv0 index="1" type="int" size="[1 1]">                         [1024 ]                     </sw_adrc_range_sgm_inv0>                     <sw_adrc_range_sgm_inv1 index="1" type="int" size="[1 1]">                         [1024 ]                     </sw_adrc_range_sgm_inv1>                     <sw_adrc_weig_bilat index="1" type="int" size="[1 1]">                         [16 ]                     </sw_adrc_weig_bilat>                     <sw_adrc_weig_maxl index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_weig_maxl>                     <sw_adrc_min_ogain index="1" type="int" size="[1 1]">                         [0 ]                     </sw_adrc_min_ogain>                     <iir_frame index="1" type="int" size="[1 1]">                         [16 ]                     </iir_frame>                     <adrc_gain index="1" type="int" size="[1 1]">                         [1024 ]                     </adrc_gain>                     <sw_adrc_scale_y0 index="1" type="int" size="[1 17]">                         [0 2 20 76 193 381 631 772 919 1066 1211 1479 1700 1863 1968 2024 2048 ]                     </sw_adrc_scale_y0>        </cell>                 </TuningPara>             </DRC>         <BLC index="1" type="struct" size="[1 1]">
            <Enable index="1" type="double" size="[1 1]">
                [1 ]
            </Enable>
            <Mode index="1" type="cell" size="[1 2]">
                <cell index="1" type="struct" size="[1 1]">
                    <Name index="1" type="char" size="[1 6]">
                        normal
                    </Name>
                    <ISO index="1" type="double" size="[1 13]">
                        [50.0000 100.0000 200.0000 400.0000 800.0000 1600.0000 3200.0000 10000.0000 12800.0000 25600.0000 51200.0000 102400.0000 204800.0000 ]
                    </ISO>
                    <black_level index="1" type="double" size="[4 13]">
                        [256.0000 256.1250 255.9375 255.8125 255.4375 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        256.0000 256.1250 256.0625 255.6250 255.2500 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        256.0000 256.1250 256.0000 255.8125 255.6875 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        256.0000 256.2500 255.8750 255.5000 255.1875 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 ]
                    </black_level>
                </cell>
                <cell index="1" type="struct" size="[1 1]">
                    <Name index="1" type="char" size="[1 3]">
                        hdr
                    </Name>
                    <ISO index="1" type="double" size="[1 13]">
                        [50.0000 100.0000 200.0000 400.0000 800.0000 1600.0000 3200.0000 10000.0000 12800.0000 25600.0000 51200.0000 102400.0000 204800.0000 ]
                    </ISO>
                    <black_level index="1" type="double" size="[4 13]">
                        [256.0000 256.1250 255.9375 255.8125 255.4375 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        256.0000 256.1250 256.0625 255.6250 255.2500 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        256.0000 256.1250 256.0000 255.8125 255.6875 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 
                        256.0000 256.2500 255.8750 255.5000 255.1875 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 256.0000 ]
                    </black_level>
                </cell>
            </Mode>
        </BLC>
      <DPCC index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">             [1]          </Enable>    <Version index="1" type="char" size="[1 2]">             V1          </Version>    <Fast_mode index="1" type="struct" size="[1 1]">    <Fast_mode_enable index="1" type="double" size="[1 1]">             [0]          </Fast_mode_enable>          <ISO index="1" type="double" size="[1 13]">             [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400  204800]          </ISO>          <Single_enable index="1" type="double" size="[1 1]">             [0]          </Single_enable>    <Single_level index="1" type="double" size="[1 13]">             [0 0 0 0 0 0 0 0 0 0 0 0 0]          </Single_level>    <Double_enable index="1" type="double" size="[1 1]">             [0]          </Double_enable>    <Double_level index="1" type="double" size="[1 13]">             [0 0 0 0 0 0 0 0 0 0 0 0 0]          </Double_level>    <Triple_enable index="1" type="double" size="[1 1]">             [0]          </Triple_enable>    <Triple_level index="1" type="double" size="[1 13]">             [0 0 0 0 0 0 0 0 0 0 0 0 0]          </Triple_level>    </Fast_mode>             <Expert_mode index="1" type="struct" size="[1 1]">                 <ISO index="1" type="double" size="[1 13]">                     [50.0000 100.0000 200.0000 400.0000 800.0000 1500.0000 1507.0000 1510.0000 3200.0000 6400.0000 12800.0000 102400.0000 204800.0000 ]                 </ISO>                 <Stage1_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </Stage1_enable>                 <grayscale_mode index="1" type="double" size="[1 1]">                     [0 ]                 </grayscale_mode>                 <rk_out_sel index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </rk_out_sel>                 <dpcc_out_sel index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </dpcc_out_sel>                 <stage1_rb_3x3 index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 1 1 1 0 0 0 ]                 </stage1_rb_3x3>                 <stage1_g_3x3 index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 1 1 1 0 0 0 ]                 </stage1_g_3x3>                 <stage1_inc_rb_center index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </stage1_inc_rb_center>                 <stage1_inc_g_center index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </stage1_inc_g_center>                 <stage1_use_fix_set index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </stage1_use_fix_set>                 <stage1_use_set1 index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </stage1_use_set1>                 <stage1_use_set2 index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0]                 </stage1_use_set2>                 <stage1_use_set3 index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0]                 </stage1_use_set3>                 <set_cell index="1" type="cell" size="[1 3]">                     <cell index="1" type="struct" size="[1 1]">             <RK index="1" type="struct" size="[1 1]">                 <RK_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </RK_red_blue_enable>                 <RK_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </RK_green_enable>                 <rb_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </rb_sw_mindis>                 <g_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </g_sw_mindis>                 <sw_dis_scale_min index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </sw_dis_scale_min>                 <sw_dis_scale_max index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </sw_dis_scale_max>             </RK>             <LC index="1" type="struct" size="[1 1]">                 <LC_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </LC_red_blue_enable>                 <LC_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </LC_green_enable>                 <rb_line_thr index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8  ]                 </rb_line_thr>                 <g_line_thr index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8  ]                 </g_line_thr>                 <rb_line_mad_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4]                 </rb_line_mad_fac>                 <g_line_mad_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </g_line_mad_fac>             </LC>             <PG index="1" type="struct" size="[1 1]">                 <PG_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </PG_red_blue_enable>                 <PG_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </PG_green_enable>                 <rb_pg_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </rb_pg_fac>                 <g_pg_fac index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </g_pg_fac>             </PG>             <RND index="1" type="struct" size="[1 1]">                 <RND_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RND_red_blue_enable>                 <RND_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RND_green_enable>                 <rb_rnd_thr index="1" type="double" size="[1 13]">                     [10 10 10 10 10 10 10 10 10 10 10 10 10  ]                 </rb_rnd_thr>                 <g_rnd_thr index="1" type="double" size="[1 13]">                     [10 10 10 10 10 10 10 10 10 10 10 10 10  ]                 </g_rnd_thr>                 <rb_rnd_offs index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </rb_rnd_offs>                 <g_rnd_offs index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </g_rnd_offs>             </RND>             <RG index="1" type="struct" size="[1 1]">                 <RG_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </RG_red_blue_enable>                 <RG_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1  ]                 </RG_green_enable>                 <rb_rg_fac index="1" type="double" size="[1 13]">                     [32 32 32 32 32 32 32 32 32 32 32 32 32 ]                 </rb_rg_fac>                 <g_rg_fac index="1" type="double" size="[1 13]">                     [32 32 32 32 32 32 32 32 32 32 32 32 32 ]                 </g_rg_fac>             </RG>             <RO index="1" type="struct" size="[1 1]">                 <RO_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RO_red_blue_enable>                 <RO_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RO_green_enable>                 <rb_ro_lim index="1" type="double" size="[1 13]">                     [2 2 2 2 2 2 2 2 2 2 2 2 2 ]                 </rb_ro_lim>                 <g_ro_lim index="1" type="double" size="[1 13]">                     [2 2 2 2 2 2 2 2 2 2 2 2 2 ]                 </g_ro_lim>             </RO>                     </cell>                     <cell index="2" type="struct" size="[1 1]">            <RK index="1" type="struct" size="[1 1]">                 <RK_red_blue_enable index="1" type="double" size="[1 13]">                    [ 0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </RK_red_blue_enable>                 <RK_green_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0  ]                 </RK_green_enable>                 <rb_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </rb_sw_mindis>                 <g_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </g_sw_mindis>                 <sw_dis_scale_min index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </sw_dis_scale_min>                 <sw_dis_scale_max index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </sw_dis_scale_max>             </RK>             <LC index="1" type="struct" size="[1 1]">                 <LC_red_blue_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </LC_red_blue_enable>                 <LC_green_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </LC_green_enable>                 <rb_line_thr index="1" type="double" size="[1 13]">                     [16 16 16 16 16 16 16 16 16 16 16 16 16]                 </rb_line_thr>                 <g_line_thr index="1" type="double" size="[1 13]">                     [24 24 24 24 24 24 24 24 24 24 24 24 24 ]                 </g_line_thr>                 <rb_line_mad_fac index="1" type="double" size="[1 13]">                     [16 16 16 16 16 16 16 16 16 16 16 16 16]                 </rb_line_mad_fac>                 <g_line_mad_fac index="1" type="double" size="[1 13]">                     [12 12 8 1 1 1 1 1 1 1 1 1 1  ]                 </g_line_mad_fac>             </LC>             <PG index="1" type="struct" size="[1 1]">                 <PG_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </PG_red_blue_enable>                 <PG_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </PG_green_enable>                 <rb_pg_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </rb_pg_fac>                 <g_pg_fac index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </g_pg_fac>             </PG>             <RND index="1" type="struct" size="[1 1]">                 <RND_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </RND_red_blue_enable>                 <RND_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </RND_green_enable>                 <rb_rnd_thr index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8]                 </rb_rnd_thr>                 <g_rnd_thr index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8]                 </g_rnd_thr>                 <rb_rnd_offs index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </rb_rnd_offs>                 <g_rnd_offs index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </g_rnd_offs>             </RND>             <RG index="1" type="struct" size="[1 1]">                 <RG_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </RG_red_blue_enable>                 <RG_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RG_green_enable>                 <rb_rg_fac index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8]                 </rb_rg_fac>                 <g_rg_fac index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8]                 </g_rg_fac>             </RG>             <RO index="1" type="struct" size="[1 1]">                 <RO_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RO_red_blue_enable>                 <RO_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </RO_green_enable>                 <rb_ro_lim index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0]                 </rb_ro_lim>                 <g_ro_lim index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </g_ro_lim>        </RO>                     </cell>                     <cell index="3" type="struct" size="[1 1]">        <RK index="1" type="struct" size="[1 1]">                 <RK_red_blue_enable index="1" type="double" size="[1 13]">                    [ 0 0 0 0 0 0 0 0 0 0 0 0 0  ]                 </RK_red_blue_enable>                 <RK_green_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0   ]                 </RK_green_enable>                 <rb_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </rb_sw_mindis>                 <g_sw_mindis index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </g_sw_mindis>                 <sw_dis_scale_min index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0]                 </sw_dis_scale_min>                 <sw_dis_scale_max index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </sw_dis_scale_max>             </RK>             <LC index="1" type="struct" size="[1 1]">                 <LC_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </LC_red_blue_enable>                 <LC_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1]                 </LC_green_enable>                 <rb_line_thr index="1" type="double" size="[1 13]">                     [32 32 32 32 32 32 32 32 32 32 32 32 32 ]                 </rb_line_thr>                 <g_line_thr index="1" type="double" size="[1 13]">                     [32 32 32 32 32 32 32 32 32 32 32 32 32  ]                 </g_line_thr>                 <rb_line_mad_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </rb_line_mad_fac>                 <g_line_mad_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </g_line_mad_fac>             </LC>             <PG index="1" type="struct" size="[1 1]">                 <PG_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </PG_red_blue_enable>                 <PG_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </PG_green_enable>                 <rb_pg_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </rb_pg_fac>                 <g_pg_fac index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </g_pg_fac>             </PG>             <RND index="1" type="struct" size="[1 1]">                 <RND_red_blue_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0 ]                 </RND_red_blue_enable>                 <RND_green_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0  ]                 </RND_green_enable>                 <rb_rnd_thr index="1" type="double" size="[1 13]">                     [8 8 8 8 8 8 8 8 8 8 8 8 8 ]                 </rb_rnd_thr>                 <g_rnd_thr index="1" type="double" size="[1 13]">                     [6 6 6 6 6 6 6 6 6 6 6 6 6]                 </g_rnd_thr>                 <rb_rnd_offs index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3]                 </rb_rnd_offs>                 <g_rnd_offs index="1" type="double" size="[1 13]">                     [3 3 3 3 3 3 3 3 3 3 3 3 3 ]                 </g_rnd_offs>             </RND>             <RG index="1" type="struct" size="[1 1]">                 <RG_red_blue_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0  ]                 </RG_red_blue_enable>                 <RG_green_enable index="1" type="double" size="[1 13]">                     [0 0 0 0 0 0 0 0 0 0 0 0 0  ]                 </RG_green_enable>                 <rb_rg_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4 ]                 </rb_rg_fac>                 <g_rg_fac index="1" type="double" size="[1 13]">                     [4 4 4 4 4 4 4 4 4 4 4 4 4]                 </g_rg_fac>             </RG>             <RO index="1" type="struct" size="[1 1]">                 <RO_red_blue_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RO_red_blue_enable>                 <RO_green_enable index="1" type="double" size="[1 13]">                     [1 1 1 1 1 1 1 1 1 1 1 1 1 ]                 </RO_green_enable>                 <rb_ro_lim index="1" type="double" size="[1 13]">                     [2 2 2 2 2 2 2 2 2 2 2 2 2]                 </rb_ro_lim>                 <g_ro_lim index="1" type="double" size="[1 13]">                     [2 2 2 2 2 2 2 2 2 2 2 2 2]                 </g_ro_lim>        </RO>                     </cell>                 </set_cell>             </Expert_mode>    <dpcc_pdaf index="1" type="struct" size="[1 1]">      <pdaf_en index="1" type="double" size="[1 1]">               [0]            </pdaf_en>      <pdaf_point_en index="1" type="double" size="[1 16]">               [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]            </pdaf_point_en>      <pdaf_offsetx index="1" type="double" size="[1 1]">               [0]            </pdaf_offsetx>      <pdaf_offsety index="1" type="double" size="[1 1]">               [0]            </pdaf_offsety>            <pdaf_wrapx_num index="1" type="double" size="[1 1]">               [0]            </pdaf_wrapx_num>      <pdaf_wrapy_num index="1" type="double" size="[1 1]">               [0]            </pdaf_wrapy_num>               <point_x index="1" type="double" size="[1 16]">               [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]            </point_x>       <point_y index="1" type="double" size="[1 16]">               [0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]            </point_y>       <point_forword_med index="1" type="double" size="[1 1]">               [0]            </point_forword_med>    </dpcc_pdaf>             <sensor_dpcc index="1" type="struct" size="[1 1]">               <sensor_dpcc_auto_en index="1" type="double" size="[1 1]">                     [0]               </sensor_dpcc_auto_en>               <max_level index="1" type="double" size="[1 1]">               [20]               </max_level>             <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1500 1507 1510 3200 6400 12800 102400  204800]                </ISO>             <level_single index="1" type="double" size="[1 13]">                      [19 19 19 19 19 19 19 19 19 19 19 19  19]              </level_single>             <level_multiple index="1" type="double" size="[1 13]">                 [19 19 19 19 19 19 19 19 19 19 19 19  19]              </level_multiple>             </sensor_dpcc>       </DPCC>       <BAYERNR index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">             [1]          </Enable>    <Version index="1" type="char" size="[1 2]">             V1          </Version>    <Mode index="1" type="cell" size="[1 3]">      <cell index="1" type="struct" size="[1 1]">              <Name index="1" type="char" size="[1 8]">                   normal              </Name>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>         <cell index="2" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>       </Setting>      </cell>      <cell index="1" type="struct" size="[1 1]">              <Name index="1" type="char" size="[1 8]">                   hdr              </Name>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>         <cell index="2" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>       </Setting>      </cell>      <cell index="1" type="struct" size="[1 1]">              <Name index="1" type="char" size="[1 8]">                   gray              </Name>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>         <cell index="2" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <filtPara index="1" type="double" size="[1 13]">                [0.05    0.05    0.05    0.05    0.1    0.15    0.20    0.25    0.3 0.3 0.3 0.3 0.3]             </filtPara>            <luLevel index="1" type="double" size="[1 8]">                [0 1 2 3 4 5 6 7]             </luLevel>             <luLevelVal index="1" type="double" size="[1 8]">                [16    32    48    80    112    144    208    255]             </luLevelVal>             <luRatio index="1" type="double" size="[8 13]">               [1.500000     1.500000    1.500000    1.500000    1.500000     1.500000    1.500000    1.500000    1.500000 1.500000    1.500000    1.500000    1.500000           1.500000     1.500000    1.496738    1.408852    1.380731      1.380731    1.380731    1.380731    1.380731 1.380731    1.380731    1.380731    1.380731           1.497163     1.499107    1.468128    1.351045    1.307059    1.307059    1.307059    1.307059    1.307059 1.307059    1.307059    1.307059    1.307059           1.420206     1.435329    1.379806    1.272242    1.216978    1.216978    1.216978    1.216978    1.216978 1.216978    1.216978    1.216978    1.216978           1.317301     1.338934    1.289341    1.211357    1.158748    1.158748    1.158748    1.158748    1.158748 1.158748    1.158748    1.158748    1.158748           1.222855     1.244522    1.208133    1.157453    1.113836    1.113836    1.113836    1.113836    1.113836 1.113836    1.113836    1.113836    1.113836           1.076859     1.087988    1.076184    1.061807    1.042855    1.042855    1.042855    1.042855    1.042855 1.042855    1.042855    1.042855    1.042855           1.000000     1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000    1.000000 1.000000    1.000000    1.000000    1.000000]             </luRatio>        <lamda index="1" type="double" size="[1 1]">                [307]             </lamda>             <fixW index="1" type="double" size="[4 13]">                [0.7    0.6    0.5    0.4    0.3    0.2    0.2    0.2  0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.3    0.3    0.2    0.1  0.1  0.1  0.1  0.1         0.6    0.5    0.4    0.3    0.3    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1         0.4    0.3    0.25    0.2    0.2    0.2    0.2    0.2    0.1  0.1  0.1  0.1  0.1]             </fixW>                      <gauss_en index="1" type="char" size="[1 1]">                [1]             </gauss_en>             <RGainOff index="1" type="double" size="[1 1]">                [0]             </RGainOff>             <RGainFilp index="1" type="double" size="[1 1]">                [0]             </RGainFilp>             <BGainOff index="1" type="double" size="[1 1]">                [0]             </BGainOff>             <BGainFilp index="1" type="double" size="[1 1]">                [0]             </BGainFilp>             <edgeSoftness index="1" type="double" size="[1 1]">                [1.6]             </edgeSoftness>             <gaussWeight0 index="1" type="double" size="[1 1]">                [0.21]             </gaussWeight0>             <gaussWeight1 index="1" type="double" size="[1 1]">                [0.56]             </gaussWeight1>             <bilEdgeFilter index="1" type="double" size="[1 1]">                [1]             </bilEdgeFilter>             <bilFilterStreng index="1" type="double" size="[1 13]">                [1 1 1 1 1 1 1 1 1 1 1 1 1]             </bilFilterStreng>             <bilEdgeSoft index="1" type="double" size="[1 1]">                [2.0]             </bilEdgeSoft>             <bilEdgeSoftRatio index="1" type="double" size="[1 1]">                [0.0]             </bilEdgeSoftRatio>             <bilRegWgt index="1" type="double" size="[1 1]">                [0.0]             </bilRegWgt>         </cell>       </Setting>      </cell>    </Mode>       </BAYERNR>         <LSC index="1" type="struct" size="[1 1]">
            <enable index="1" type="char" size="[1 1]">
                [1 ]
            </enable>
            <damp_enable index="1" type="char" size="[1 1]">
                [1 ]
            </damp_enable>
            <alscCoef index="1" type="struct" size="[1 1]">
                <resolutionAlll index="1" type="cell" size="[1 2]">
                    <cell index="1" type="struct" size="[1 1]">
                        <name index="1" type="char" size="[1 9]">
                            2592x1944
                        </name>
                    </cell>
                    <cell index="1" type="struct" size="[1 1]">
                        <name index="1" type="char" size="[1 9]">
                            2560x1440
                        </name>
                    </cell>
                </resolutionAlll>
                <illAll index="1" type="cell" size="[1 8]">
                    <cell index="1" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 1]">
                            A
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [0.9678 2.4472 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 10]">
                            A_100 A_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="5" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 3]">
                            CWF
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.3479 2.1712 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 14]">
                            CWF_100 CWF_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="2" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 3]">
                            D50
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.3566 1.5905 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 14]">
                            D50_100 D50_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="3" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 3]">
                            D65
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.6193 1.3980 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 14]">
                            D65_100 D65_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="4" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 3]">
                            D75
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.6078 1.2549 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 14]">
                            D75_100 D75_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="4" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 2]">
                            HZ
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [0.8155 2.6035 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 12]">
                            HZ_100 HZ_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="6" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [0 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 4]">
                            TL84
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.6078 1.2549 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 16]">
                            TL84_100 TL84_70 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 4.0000 6.0000 8.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [100.0000 100.0000 90.0000 70.0000 ]
                        </vig>
                    </cell>
                    <cell index="6" type="struct" size="[1 1]">
                        <usedForCase index="1" type="double" size="[1 1]">
                            [2 ]
                        </usedForCase>
                        <name index="1" type="char" size="[1 4]">
                            GRAY
                        </name>
                        <wbGain index="1" type="double" size="[1 2]">
                            [1.0000 1.0000 ]
                        </wbGain>
                        <tableUsed index="1" type="char" size="[1 6]">
                            GRAY_0 
                        </tableUsed>
                        <gains index="1" type="double" size="[1 4]">
                            [1.0000 10.0000 31.0000 64.0000 ]
                        </gains>
                        <vig index="1" type="double" size="[1 4]">
                            [90.0000 60.0000 25.0000 0.0000 ]
                        </vig>
                    </cell>
                </illAll>
            </alscCoef>
            <tableAll index="1" type="cell" size="[1 30]">
                <cell index="1" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 15]">
                        2560x1440_A_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 1]">
                        A
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="2" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 14]">
                        2560x1440_A_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 1]">
                        A
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="3" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2560x1440_D50_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D50
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="4" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_D50_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D50
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="5" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2560x1440_D65_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D65
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="6" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_D65_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D65
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="7" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2560x1440_D75_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D75
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="8" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_D75_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D75
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="9" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2560x1440_CWF_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        CWF
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="10" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_CWF_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        CWF
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="11" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 18]">
                        2560x1440_TL84_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        TL84
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="12" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2560x1440_TL84_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        TL84
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="13" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_HZ_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 2]">
                        HZ
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="14" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 15]">
                        2560x1440_HZ_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 2]">
                        HZ
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [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_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [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_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [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 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="1" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 15]">
                        2592x1944_A_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 1]">
                        A
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [5064 3857 3209 2966 2678 2549 2356 2270 2270 2203 2363 2465 2649 2863 3195 3741 4803 
                        4206 3446 2978 2697 2473 2341 2152 2023 2018 2028 2127 2263 2515 2649 2990 3431 4254 
                        3741 3181 2778 2549 2334 2115 1944 1811 1756 1820 1939 2068 2270 2515 2788 3128 3818 
                        3562 3014 2678 2371 2152 1875 1692 1561 1548 1587 1696 1870 2109 2386 2594 2885 3338 
                        3323 2841 2524 2263 1954 1673 1510 1391 1356 1386 1492 1665 1919 2216 2465 2820 3237 
                        3102 2727 2425 2121 1811 1577 1356 1253 1210 1241 1354 1516 1764 2062 2356 2640 3026 
                        3026 2717 2319 2028 1696 1432 1262 1135 1119 1147 1233 1434 1673 1959 2229 2532 2874 
                        3014 2621 2298 1969 1633 1379 1172 1082 1050 1084 1197 1358 1608 1929 2277 2549 2874 
                        2897 2558 2312 1929 1633 1361 1182 1053 1024 1071 1169 1322 1564 1904 2216 2473 2897 
                        2978 2549 2291 1934 1640 1363 1184 1084 1053 1082 1185 1349 1581 1885 2203 2457 2841 
                        2978 2631 2312 1996 1677 1426 1245 1140 1092 1128 1222 1389 1640 1909 2256 2482 2841 
                        3115 2659 2417 2091 1764 1544 1356 1222 1191 1214 1320 1477 1711 2012 2277 2515 2990 
                        3338 2788 2457 2216 1894 1669 1495 1361 1311 1349 1454 1618 1866 2127 2378 2668 3209 
                        3479 2919 2567 2284 2040 1856 1654 1519 1465 1516 1629 1798 2018 2203 2441 2799 3479 
                        3818 3154 2659 2433 2242 2023 1852 1739 1715 1727 1829 1949 2196 2363 2612 2990 3741 
                        4303 3463 2954 2585 2371 2203 2080 1980 1944 1934 2051 2177 2363 2515 2885 3353 4353 
                        5555 3939 3209 2820 2603 2409 2270 2158 2170 2203 2263 2319 2498 2788 3195 3857 5434 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3356 2656 2280 2083 1908 1854 1786 1781 1743 1730 1751 1849 1975 2054 2266 2636 3420 
                        3033 2417 2139 1970 1859 1812 1730 1659 1655 1644 1674 1768 1803 1928 2054 2425 2912 
                        2656 2238 2031 1893 1808 1678 1604 1539 1501 1504 1576 1659 1718 1835 1986 2204 2617 
                        2401 2132 1903 1786 1678 1573 1471 1386 1386 1386 1456 1549 1651 1739 1864 2036 2377 
                        2346 2019 1849 1730 1566 1465 1348 1279 1254 1279 1328 1430 1543 1651 1768 1965 2231 
                        2171 1949 1826 1633 1492 1371 1256 1185 1154 1185 1229 1321 1459 1590 1698 1849 2095 
                        2177 1888 1755 1569 1430 1295 1198 1140 1077 1115 1158 1252 1389 1514 1667 1808 2008 
                        2108 1873 1739 1569 1400 1250 1142 1068 1058 1058 1122 1210 1358 1507 1651 1795 1949 
                        2120 1913 1722 1517 1376 1233 1115 1057 1024 1066 1102 1196 1333 1468 1644 1781 1965 
                        2132 1898 1730 1523 1376 1233 1135 1058 1034 1063 1117 1198 1309 1465 1604 1751 2008 
                        2171 1869 1726 1549 1419 1263 1185 1102 1092 1098 1149 1241 1350 1501 1611 1768 1992 
                        2190 1949 1760 1576 1471 1306 1221 1153 1129 1126 1214 1285 1394 1520 1651 1799 2071 
                        2280 1992 1786 1663 1520 1386 1304 1229 1212 1223 1276 1355 1474 1569 1698 1883 2145 
                        2483 2132 1859 1730 1597 1483 1405 1328 1306 1306 1376 1438 1536 1633 1773 1992 2324 
                        2617 2224 1975 1786 1682 1597 1501 1462 1419 1430 1471 1526 1633 1730 1854 2132 2526 
                        3085 2417 2083 1898 1755 1682 1633 1549 1533 1539 1562 1648 1702 1831 2014 2331 2821 
                        3856 2767 2302 2060 1864 1803 1718 1722 1698 1670 1706 1760 1826 1959 2217 2726 3737 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3413 2685 2233 2031 1911 1774 1757 1637 1640 1659 1652 1711 1852 1969 2159 2578 3566 
                        2974 2422 2133 1927 1833 1757 1644 1582 1555 1568 1614 1715 1740 1886 2031 2342 2950 
                        2856 2268 2008 1843 1723 1640 1542 1472 1428 1448 1503 1600 1679 1774 1917 2172 2607 
                        2489 2166 1937 1824 1644 1525 1417 1358 1315 1345 1392 1481 1593 1723 1847 2060 2414 
                        2389 2060 1872 1753 1579 1439 1325 1253 1211 1242 1306 1389 1519 1644 1748 1948 2247 
                        2283 2008 1829 1667 1490 1360 1221 1166 1131 1151 1227 1310 1448 1589 1731 1901 2166 
                        2219 1953 1806 1637 1451 1294 1173 1104 1062 1096 1156 1240 1408 1542 1699 1815 2066 
                        2185 1937 1753 1589 1408 1244 1140 1062 1042 1053 1127 1227 1350 1548 1671 1806 2019 
                        2185 1917 1757 1579 1414 1240 1115 1046 1024 1057 1089 1203 1337 1487 1644 1801 1975 
                        2146 1969 1783 1589 1406 1255 1134 1060 1036 1045 1104 1223 1342 1490 1629 1774 1986 
                        2199 1964 1801 1593 1448 1278 1164 1106 1073 1083 1177 1255 1352 1496 1652 1774 2072 
                        2233 2019 1801 1640 1487 1330 1234 1152 1117 1138 1197 1271 1408 1542 1655 1829 2140 
                        2381 2048 1867 1711 1542 1422 1308 1223 1211 1219 1271 1358 1469 1604 1711 1901 2283 
                        2533 2159 1953 1740 1589 1496 1389 1332 1320 1306 1358 1439 1552 1659 1788 2025 2422 
                        2811 2254 2019 1792 1679 1579 1481 1436 1386 1436 1466 1535 1629 1736 1886 2185 2588 
                        3050 2498 2115 1886 1753 1683 1562 1555 1522 1532 1565 1611 1719 1815 2036 2350 2987 
                        3753 2800 2290 2048 1927 1783 1679 1629 1644 1652 1671 1757 1881 2031 2212 2695 3917 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3061 2370 2041 1792 1660 1572 1563 1507 1515 1515 1563 1555 1597 1781 2041 2429 2999 
                        2578 2161 1872 1670 1642 1547 1531 1470 1470 1477 1470 1555 1606 1670 1848 2130 2601 
                        2409 2013 1749 1679 1606 1531 1448 1400 1367 1400 1413 1499 1563 1642 1749 2013 2314 
                        2314 1848 1729 1642 1507 1386 1336 1267 1283 1300 1354 1427 1470 1597 1699 1872 2161 
                        2099 1825 1651 1563 1462 1367 1289 1245 1195 1230 1261 1361 1441 1547 1651 1760 1908 
                        1986 1749 1615 1515 1361 1289 1195 1153 1126 1153 1204 1278 1386 1499 1555 1679 1933 
                        1933 1729 1606 1441 1373 1235 1153 1105 1080 1093 1166 1230 1342 1455 1523 1699 1872 
                        1837 1709 1589 1470 1324 1200 1113 1061 1053 1065 1126 1220 1318 1441 1563 1624 1860 
                        1972 1709 1624 1470 1324 1190 1105 1031 1024 1061 1148 1225 1295 1420 1523 1633 1803 
                        1972 1699 1589 1462 1318 1209 1135 1069 1057 1057 1109 1220 1318 1434 1547 1606 1872 
                        1946 1729 1606 1470 1342 1235 1153 1089 1065 1097 1148 1251 1330 1400 1531 1689 1921 
                        2099 1760 1606 1499 1400 1306 1230 1157 1126 1122 1190 1256 1373 1462 1580 1670 1896 
                        2099 1792 1689 1515 1434 1354 1267 1190 1209 1230 1261 1312 1420 1484 1606 1760 2013 
                        2261 1884 1729 1615 1477 1393 1354 1295 1283 1295 1342 1400 1477 1547 1651 1872 2193 
                        2389 2041 1792 1642 1555 1462 1413 1373 1324 1380 1406 1448 1499 1572 1760 2070 2449 
                        2826 2243 1896 1749 1606 1555 1477 1441 1434 1427 1477 1507 1589 1709 1837 2177 2696 
                        3457 2512 2084 1760 1729 1679 1624 1615 1580 1539 1580 1624 1689 1860 2084 2578 3584 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="2" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 14]">
                        2592x1944_A_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 1]">
                        A
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2104 1642 1428 1317 1232 1183 1151 1128 1110 1130 1148 1175 1247 1324 1433 1660 2136 
                        1934 1546 1379 1273 1200 1149 1104 1086 1081 1093 1108 1159 1203 1280 1395 1573 1951 
                        1806 1479 1331 1230 1163 1110 1072 1052 1042 1056 1080 1115 1173 1242 1350 1507 1828 
                        1717 1435 1311 1207 1137 1091 1055 1029 1021 1035 1061 1097 1157 1222 1321 1466 1749 
                        1692 1427 1307 1217 1150 1094 1051 1024 1013 1032 1059 1092 1150 1231 1313 1456 1692 
                        1679 1434 1317 1230 1157 1100 1055 1025 1018 1032 1065 1113 1162 1233 1328 1463 1697 
                        1672 1465 1344 1239 1168 1117 1069 1034 1020 1031 1067 1119 1186 1256 1351 1491 1714 
                        1694 1473 1348 1258 1180 1123 1075 1040 1026 1042 1079 1130 1195 1269 1365 1513 1731 
                        1680 1480 1350 1263 1182 1121 1075 1042 1024 1042 1085 1132 1199 1269 1364 1502 1734 
                        1700 1469 1341 1255 1182 1123 1073 1033 1022 1042 1071 1130 1200 1272 1362 1504 1712 
                        1690 1452 1333 1245 1171 1110 1063 1034 1020 1031 1065 1119 1183 1253 1354 1495 1702 
                        1691 1451 1321 1236 1157 1102 1057 1028 1019 1032 1065 1109 1167 1245 1338 1485 1709 
                        1692 1435 1317 1220 1152 1090 1053 1030 1020 1032 1063 1103 1164 1234 1327 1478 1723 
                        1729 1452 1321 1222 1149 1106 1061 1042 1029 1037 1071 1111 1169 1236 1335 1484 1763 
                        1820 1493 1350 1245 1176 1126 1087 1064 1055 1060 1089 1136 1189 1258 1361 1531 1866 
                        1960 1589 1412 1290 1214 1167 1127 1104 1096 1104 1129 1169 1232 1306 1416 1611 2005 
                        2136 1691 1469 1349 1266 1200 1164 1147 1146 1147 1171 1203 1266 1353 1487 1717 2192 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [1975 1548 1367 1259 1194 1148 1118 1102 1097 1106 1130 1171 1203 1280 1379 1570 2020 
                        1834 1458 1312 1219 1158 1120 1090 1072 1061 1070 1099 1126 1172 1234 1338 1496 1834 
                        1696 1400 1267 1182 1131 1085 1053 1043 1033 1045 1064 1095 1140 1204 1296 1440 1727 
                        1615 1361 1247 1165 1115 1069 1035 1018 1018 1023 1048 1077 1130 1186 1274 1404 1647 
                        1575 1361 1251 1171 1116 1072 1043 1011 1005 1024 1045 1085 1136 1194 1281 1391 1605 
                        1577 1371 1254 1188 1129 1088 1048 1019 1011 1022 1055 1094 1153 1207 1285 1407 1611 
                        1576 1381 1285 1206 1149 1095 1057 1031 1018 1037 1070 1113 1162 1229 1310 1427 1627 
                        1590 1404 1295 1221 1157 1107 1066 1041 1022 1040 1079 1119 1178 1243 1326 1445 1637 
                        1605 1407 1292 1221 1165 1118 1070 1039 1024 1036 1081 1125 1182 1248 1328 1448 1649 
                        1594 1401 1293 1213 1159 1102 1063 1034 1019 1037 1074 1118 1172 1243 1328 1442 1632 
                        1597 1381 1280 1206 1145 1100 1056 1031 1019 1033 1068 1113 1162 1227 1310 1430 1631 
                        1594 1374 1261 1191 1127 1089 1052 1025 1013 1032 1057 1098 1147 1212 1298 1417 1615 
                        1584 1364 1251 1177 1120 1079 1048 1024 1016 1026 1051 1085 1142 1200 1283 1413 1632 
                        1629 1370 1256 1180 1119 1074 1050 1029 1016 1030 1053 1089 1135 1197 1289 1411 1662 
                        1727 1409 1283 1191 1135 1099 1068 1051 1047 1053 1076 1109 1158 1220 1309 1457 1754 
                        1847 1499 1338 1243 1178 1133 1106 1087 1074 1089 1113 1147 1191 1265 1361 1531 1904 
                        2027 1596 1399 1296 1210 1162 1145 1120 1119 1124 1151 1181 1234 1304 1412 1628 2075 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2030 1556 1362 1281 1183 1152 1123 1101 1099 1104 1132 1160 1217 1287 1393 1587 2038 
                        1844 1462 1310 1226 1156 1122 1091 1074 1065 1071 1094 1132 1183 1240 1348 1496 1857 
                        1700 1394 1276 1191 1126 1085 1057 1038 1037 1041 1065 1096 1147 1211 1305 1434 1736 
                        1611 1365 1251 1167 1105 1071 1037 1021 1016 1024 1043 1084 1134 1188 1281 1396 1666 
                        1580 1362 1253 1173 1115 1080 1038 1017 1006 1018 1050 1088 1135 1194 1283 1399 1627 
                        1577 1372 1268 1191 1131 1082 1049 1023 1010 1022 1053 1099 1146 1210 1292 1415 1615 
                        1589 1391 1287 1210 1148 1104 1060 1031 1021 1034 1068 1114 1170 1232 1315 1435 1631 
                        1598 1409 1305 1226 1161 1110 1068 1038 1023 1044 1077 1122 1180 1250 1328 1453 1645 
                        1606 1421 1304 1230 1164 1119 1074 1036 1024 1042 1076 1131 1185 1248 1335 1452 1636 
                        1594 1415 1297 1219 1161 1103 1066 1033 1025 1041 1078 1122 1177 1241 1325 1446 1628 
                        1589 1385 1285 1206 1148 1101 1054 1027 1012 1035 1068 1109 1168 1236 1317 1435 1631 
                        1590 1378 1265 1191 1133 1089 1046 1027 1013 1032 1058 1095 1150 1218 1297 1424 1624 
                        1597 1362 1260 1177 1126 1080 1049 1022 1015 1024 1055 1091 1140 1204 1295 1411 1627 
                        1624 1374 1263 1180 1121 1078 1049 1027 1020 1031 1052 1084 1132 1197 1288 1412 1661 
                        1710 1414 1292 1200 1145 1098 1067 1052 1039 1049 1072 1108 1156 1231 1314 1448 1769 
                        1832 1492 1342 1245 1176 1130 1103 1085 1078 1083 1110 1143 1187 1257 1360 1527 1928 
                        2023 1591 1393 1289 1219 1166 1144 1119 1114 1123 1146 1177 1233 1308 1427 1628 2086 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [1860 1462 1325 1237 1158 1124 1098 1067 1065 1085 1086 1130 1173 1246 1335 1515 1906 
                        1692 1387 1278 1193 1129 1092 1064 1042 1050 1058 1075 1099 1156 1224 1297 1434 1728 
                        1548 1338 1233 1157 1112 1067 1041 1030 1024 1025 1051 1084 1125 1185 1275 1380 1672 
                        1514 1318 1226 1153 1092 1055 1026 1002 1005 1012 1036 1066 1123 1174 1251 1347 1599 
                        1477 1313 1224 1160 1105 1068 1038 1009 1003 1019 1048 1084 1117 1194 1273 1361 1570 
                        1524 1331 1248 1168 1120 1076 1047 1023 1007 1023 1057 1093 1132 1217 1273 1370 1564 
                        1500 1353 1277 1200 1149 1092 1051 1023 1021 1037 1072 1120 1161 1222 1302 1383 1566 
                        1535 1361 1292 1214 1149 1104 1073 1033 1017 1043 1083 1133 1188 1251 1318 1433 1618 
                        1538 1374 1295 1216 1157 1106 1075 1040 1024 1045 1080 1135 1190 1231 1321 1436 1607 
                        1497 1381 1284 1207 1143 1104 1073 1033 1022 1038 1078 1121 1188 1236 1309 1412 1604 
                        1513 1363 1260 1186 1130 1098 1057 1027 1012 1023 1072 1109 1168 1222 1293 1404 1594 
                        1498 1340 1248 1182 1126 1071 1047 1023 1016 1032 1057 1104 1151 1210 1273 1380 1592 
                        1515 1322 1232 1166 1111 1073 1038 1009 1013 1024 1038 1096 1129 1194 1256 1371 1584 
                        1541 1328 1234 1153 1110 1061 1041 1016 1010 1021 1046 1083 1123 1181 1259 1368 1614 
                        1639 1348 1258 1164 1106 1072 1051 1030 1024 1030 1062 1101 1131 1193 1284 1402 1689 
                        1710 1410 1297 1216 1143 1105 1075 1058 1056 1063 1081 1123 1170 1248 1306 1470 1805 
                        1838 1515 1335 1254 1195 1137 1123 1109 1107 1109 1136 1165 1187 1290 1388 1573 1929 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="3" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2592x1944_D50_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D50
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [4258 3351 2919 2659 2379 2238 2090 2113 2082 2074 2113 2238 2360 2517 2934 3411 4323 
                        3905 3094 2659 2430 2302 2082 2008 1875 1827 1875 1926 2074 2178 2389 2646 3061 3826 
                        3453 2874 2495 2311 2097 1926 1792 1690 1637 1680 1792 1888 2052 2229 2462 2803 3331 
                        3181 2709 2369 2178 1953 1759 1613 1486 1475 1506 1586 1726 1907 2097 2340 2586 3111 
                        2965 2551 2321 2037 1839 1600 1460 1336 1305 1329 1434 1591 1798 2022 2238 2506 2846 
                        2817 2420 2195 1939 1695 1486 1314 1218 1182 1226 1308 1467 1661 1900 2113 2389 2776 
                        2749 2369 2129 1881 1591 1398 1223 1137 1097 1117 1207 1358 1591 1809 2052 2265 2586 
                        2723 2330 2137 1833 1547 1326 1160 1070 1049 1081 1158 1320 1526 1786 2030 2256 2551 
                        2634 2360 2074 1803 1526 1314 1146 1051 1024 1058 1149 1287 1494 1759 2030 2203 2528 
                        2697 2360 2082 1786 1560 1326 1160 1077 1045 1058 1170 1290 1486 1721 2015 2229 2473 
                        2671 2360 2090 1815 1582 1378 1218 1128 1081 1124 1202 1345 1526 1770 1980 2229 2610 
                        2803 2410 2145 1913 1666 1430 1287 1192 1177 1187 1296 1412 1609 1815 2067 2283 2659 
                        3028 2473 2265 2001 1742 1582 1402 1311 1264 1293 1391 1535 1726 1913 2161 2420 2762 
                        3181 2646 2311 2097 1894 1716 1556 1471 1430 1445 1560 1675 1857 2022 2238 2551 3028 
                        3432 2803 2430 2212 2044 1857 1726 1618 1604 1609 1695 1803 2001 2153 2369 2697 3273 
                        3879 3044 2634 2340 2178 2008 1926 1821 1775 1809 1869 2008 2090 2330 2562 3012 3654 
                        4758 3584 2889 2551 2311 2186 2121 2037 1980 1994 2082 2082 2265 2517 2934 3391 4641 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3422 2610 2213 2005 1825 1808 1723 1692 1678 1645 1681 1723 1816 1980 2139 2500 3532 
                        2863 2326 2070 1878 1778 1696 1645 1584 1568 1572 1614 1674 1734 1842 1985 2299 2810 
                        2567 2163 1925 1783 1715 1601 1531 1481 1456 1450 1519 1584 1670 1730 1847 2110 2533 
                        2355 2032 1860 1730 1618 1513 1413 1361 1312 1335 1392 1464 1568 1689 1774 1959 2334 
                        2232 1930 1766 1667 1531 1423 1312 1244 1238 1246 1305 1370 1481 1578 1692 1869 2121 
                        2151 1883 1738 1604 1453 1323 1250 1177 1143 1165 1201 1281 1421 1540 1656 1766 2043 
                        2053 1829 1707 1543 1405 1269 1181 1113 1079 1092 1143 1244 1346 1472 1578 1742 1920 
                        2065 1803 1685 1510 1373 1217 1129 1051 1039 1059 1102 1194 1316 1458 1572 1715 1916 
                        2021 1820 1656 1516 1361 1211 1097 1041 1024 1036 1100 1185 1299 1434 1556 1689 1883 
                        2011 1816 1656 1501 1351 1213 1116 1055 1029 1042 1103 1187 1296 1439 1549 1685 1911 
                        2093 1795 1678 1531 1365 1234 1146 1100 1070 1091 1131 1207 1310 1431 1565 1696 1925 
                        2133 1833 1704 1556 1418 1290 1213 1137 1110 1126 1167 1248 1356 1472 1575 1727 2011 
                        2188 1911 1707 1608 1456 1353 1260 1209 1183 1194 1236 1299 1408 1510 1642 1778 2059 
                        2334 1980 1795 1670 1528 1437 1356 1277 1262 1277 1323 1373 1495 1575 1696 1911 2213 
                        2525 2110 1883 1685 1635 1516 1447 1385 1356 1375 1431 1470 1543 1649 1783 2026 2508 
                        2939 2312 1980 1783 1685 1594 1562 1472 1484 1475 1522 1565 1621 1746 1916 2226 2831 
                        3582 2619 2219 1925 1754 1707 1670 1625 1578 1575 1621 1652 1727 1878 2127 2584 3549 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3385 2692 2190 1983 1850 1762 1715 1642 1646 1585 1674 1693 1799 1895 2159 2525 3271 
                        2882 2314 2051 1859 1770 1693 1608 1563 1550 1563 1602 1660 1719 1811 1962 2267 2850 
                        2601 2208 1953 1799 1685 1592 1494 1444 1409 1449 1488 1547 1642 1730 1877 2073 2430 
                        2525 2073 1895 1750 1618 1511 1394 1330 1316 1321 1382 1457 1544 1671 1782 1957 2240 
                        2253 1983 1846 1685 1544 1415 1307 1258 1211 1232 1286 1367 1471 1608 1719 1855 2159 
                        2177 1924 1790 1632 1463 1341 1230 1162 1155 1167 1215 1286 1415 1532 1674 1803 2062 
                        2141 1900 1750 1572 1415 1275 1169 1112 1077 1089 1159 1242 1372 1482 1615 1734 2013 
                        2118 1855 1726 1541 1397 1248 1127 1056 1035 1065 1119 1221 1336 1479 1608 1746 1909 
                        2067 1859 1696 1529 1374 1219 1128 1050 1024 1049 1104 1200 1314 1452 1588 1730 1891 
                        2040 1881 1696 1544 1394 1238 1148 1072 1038 1065 1119 1196 1314 1477 1595 1715 1928 
                        2112 1855 1715 1557 1397 1275 1175 1115 1069 1092 1164 1221 1346 1468 1592 1742 1988 
                        2171 1928 1738 1595 1452 1325 1219 1152 1122 1138 1206 1262 1384 1505 1602 1794 2040 
                        2328 1957 1790 1653 1520 1379 1288 1219 1194 1206 1248 1341 1441 1547 1678 1841 2153 
                        2430 2045 1895 1689 1566 1471 1374 1303 1290 1301 1350 1420 1520 1608 1726 1953 2314 
                        2673 2208 1938 1746 1656 1560 1477 1415 1372 1387 1441 1502 1572 1689 1837 2106 2567 
                        2981 2407 2035 1837 1734 1642 1560 1508 1505 1494 1535 1579 1667 1754 1948 2300 2925 
                        3781 2710 2300 1988 1859 1742 1667 1615 1598 1618 1632 1696 1758 1924 2202 2610 3589 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2929 2324 1933 1726 1590 1539 1483 1487 1474 1483 1478 1530 1606 1714 1933 2248 2965 
                        2557 2057 1810 1667 1569 1520 1465 1417 1393 1401 1426 1483 1539 1622 1770 2031 2544 
                        2313 1933 1684 1595 1487 1447 1373 1339 1321 1317 1373 1409 1478 1554 1661 1888 2280 
                        2177 1817 1616 1559 1447 1377 1296 1249 1227 1249 1296 1369 1413 1492 1595 1745 2048 
                        2039 1714 1579 1492 1397 1285 1224 1193 1170 1196 1221 1299 1365 1474 1534 1672 1918 
                        1873 1667 1559 1434 1346 1242 1173 1116 1109 1121 1151 1236 1313 1409 1501 1655 1838 
                        1831 1622 1534 1413 1296 1190 1116 1074 1065 1084 1119 1199 1272 1381 1474 1595 1790 
                        1810 1622 1520 1393 1259 1162 1084 1048 1033 1044 1091 1159 1259 1369 1469 1559 1726 
                        1817 1611 1515 1385 1272 1156 1094 1037 1024 1035 1081 1154 1230 1343 1465 1559 1764 
                        1790 1650 1539 1381 1272 1176 1089 1033 1046 1053 1084 1162 1265 1350 1456 1549 1739 
                        1866 1667 1510 1405 1299 1199 1114 1079 1058 1072 1116 1190 1275 1354 1465 1585 1770 
                        1989 1661 1549 1434 1321 1227 1159 1101 1091 1111 1137 1202 1282 1373 1496 1585 1810 
                        2048 1726 1590 1483 1354 1292 1214 1162 1151 1167 1199 1262 1350 1438 1525 1672 1957 
                        2187 1817 1644 1515 1443 1339 1317 1246 1227 1214 1269 1321 1401 1469 1579 1777 2057 
                        2417 1933 1690 1549 1478 1409 1350 1317 1296 1321 1350 1381 1434 1534 1655 1910 2248 
                        2670 2083 1838 1638 1544 1496 1413 1417 1373 1381 1426 1469 1510 1590 1777 2101 2746 
                        3288 2358 1981 1797 1616 1569 1534 1510 1492 1510 1487 1534 1611 1797 1973 2441 3333 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="4" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2592x1944_D50_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D50
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2128 1739 1518 1384 1298 1255 1198 1188 1170 1193 1221 1237 1298 1384 1508 1739 2150 
                        2060 1648 1476 1369 1274 1224 1193 1168 1172 1173 1193 1236 1288 1369 1476 1661 2101 
                        1931 1598 1432 1328 1261 1202 1164 1141 1130 1146 1179 1231 1274 1335 1458 1620 1948 
                        1799 1536 1396 1307 1239 1184 1143 1113 1103 1117 1153 1195 1245 1314 1412 1567 1829 
                        1761 1505 1366 1277 1220 1158 1111 1100 1078 1083 1116 1168 1214 1290 1389 1524 1761 
                        1719 1478 1347 1257 1187 1139 1086 1056 1048 1056 1095 1135 1192 1263 1362 1488 1719 
                        1661 1440 1332 1245 1182 1118 1076 1035 1024 1039 1072 1113 1187 1251 1332 1466 1698 
                        1671 1431 1325 1246 1174 1110 1074 1030 1015 1033 1069 1115 1184 1240 1332 1465 1671 
                        1663 1468 1342 1248 1186 1121 1071 1035 1024 1039 1080 1140 1196 1260 1356 1495 1687 
                        1683 1492 1361 1282 1205 1138 1098 1056 1044 1060 1098 1152 1210 1270 1383 1520 1721 
                        1736 1511 1397 1300 1225 1160 1109 1078 1070 1086 1118 1169 1236 1306 1405 1540 1776 
                        1786 1535 1415 1307 1236 1178 1139 1106 1092 1101 1149 1178 1247 1341 1423 1555 1815 
                        1818 1544 1412 1310 1248 1194 1148 1122 1108 1118 1158 1194 1260 1337 1437 1585 1818 
                        1876 1547 1420 1328 1257 1200 1158 1136 1112 1131 1163 1200 1263 1328 1420 1589 1892 
                        1931 1576 1424 1328 1249 1197 1164 1146 1125 1141 1169 1208 1261 1335 1441 1609 1931 
                        2020 1613 1448 1346 1262 1190 1172 1147 1141 1147 1177 1212 1268 1346 1448 1624 2060 
                        2128 1685 1479 1344 1264 1219 1181 1150 1154 1161 1171 1225 1284 1360 1469 1725 2150 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2150 1668 1439 1361 1276 1231 1186 1180 1180 1189 1195 1224 1287 1352 1465 1661 2138 
                        1998 1591 1427 1328 1268 1222 1183 1168 1158 1174 1192 1222 1272 1344 1447 1604 2008 
                        1876 1535 1406 1306 1250 1201 1165 1148 1141 1146 1168 1201 1254 1321 1411 1559 1885 
                        1758 1491 1373 1281 1217 1178 1142 1121 1112 1124 1147 1187 1233 1295 1386 1512 1782 
                        1686 1450 1334 1260 1194 1153 1116 1083 1080 1093 1121 1155 1209 1263 1350 1485 1707 
                        1622 1417 1309 1230 1171 1125 1089 1056 1047 1061 1094 1135 1186 1243 1324 1450 1648 
                        1612 1398 1288 1212 1157 1110 1060 1042 1023 1040 1078 1113 1171 1225 1306 1426 1619 
                        1579 1393 1284 1213 1150 1099 1061 1029 1014 1031 1070 1111 1164 1226 1306 1416 1603 
                        1594 1400 1301 1228 1163 1113 1070 1043 1024 1041 1081 1118 1180 1247 1320 1437 1631 
                        1622 1434 1321 1251 1189 1139 1091 1061 1049 1065 1103 1144 1195 1265 1352 1468 1661 
                        1685 1474 1349 1271 1215 1159 1121 1086 1074 1091 1124 1168 1221 1292 1373 1489 1699 
                        1710 1485 1360 1287 1228 1182 1136 1117 1099 1114 1146 1185 1235 1301 1390 1511 1739 
                        1759 1491 1371 1299 1237 1189 1153 1125 1116 1127 1155 1195 1251 1321 1393 1539 1783 
                        1790 1507 1386 1299 1233 1193 1163 1137 1128 1132 1161 1202 1249 1318 1409 1535 1814 
                        1858 1524 1383 1294 1227 1183 1165 1138 1128 1140 1165 1192 1254 1309 1406 1559 1858 
                        1926 1566 1403 1292 1226 1184 1159 1140 1127 1140 1159 1200 1244 1320 1417 1585 1977 
                        2064 1606 1414 1298 1222 1185 1162 1141 1139 1144 1156 1204 1236 1318 1424 1640 2064 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2138 1671 1453 1351 1283 1221 1196 1174 1175 1180 1203 1231 1276 1364 1453 1686 2125 
                        1999 1594 1440 1332 1269 1220 1190 1178 1167 1172 1190 1236 1287 1357 1445 1620 1999 
                        1851 1550 1405 1309 1251 1205 1175 1147 1145 1152 1175 1218 1265 1321 1429 1556 1878 
                        1761 1500 1368 1295 1224 1176 1140 1118 1111 1123 1151 1188 1237 1303 1390 1521 1800 
                        1689 1464 1354 1260 1195 1157 1118 1085 1079 1099 1128 1165 1207 1271 1367 1489 1732 
                        1631 1425 1317 1234 1181 1132 1091 1063 1055 1067 1096 1142 1190 1247 1332 1454 1651 
                        1597 1398 1295 1217 1156 1112 1071 1042 1021 1046 1075 1124 1175 1229 1310 1420 1616 
                        1594 1397 1292 1214 1162 1106 1066 1033 1018 1037 1068 1121 1176 1236 1314 1433 1619 
                        1597 1422 1313 1219 1175 1118 1079 1041 1024 1045 1083 1128 1184 1251 1332 1455 1628 
                        1625 1438 1325 1252 1190 1138 1100 1061 1053 1072 1102 1143 1202 1272 1349 1467 1664 
                        1661 1468 1353 1279 1213 1164 1120 1091 1078 1091 1130 1166 1225 1300 1377 1503 1709 
                        1727 1489 1368 1291 1226 1172 1148 1111 1100 1116 1145 1189 1248 1317 1389 1515 1749 
                        1755 1510 1375 1303 1238 1188 1154 1129 1118 1129 1160 1196 1251 1321 1405 1532 1770 
                        1792 1521 1390 1307 1234 1197 1159 1133 1132 1136 1167 1197 1250 1310 1408 1561 1817 
                        1851 1527 1392 1302 1237 1196 1160 1136 1132 1144 1163 1202 1248 1313 1405 1556 1887 
                        1937 1563 1402 1304 1241 1185 1158 1138 1131 1144 1172 1198 1247 1316 1411 1588 1999 
                        2065 1622 1422 1301 1243 1189 1172 1145 1138 1139 1172 1205 1247 1330 1427 1643 2125 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [1994 1609 1449 1328 1278 1205 1179 1160 1164 1178 1186 1233 1270 1346 1438 1623 2041 
                        1898 1540 1409 1324 1254 1199 1181 1162 1148 1180 1181 1213 1276 1332 1419 1565 1939 
                        1784 1497 1387 1292 1248 1197 1161 1155 1142 1149 1167 1203 1263 1316 1406 1532 1837 
                        1696 1463 1353 1273 1219 1178 1150 1118 1111 1128 1145 1184 1246 1296 1379 1496 1759 
                        1612 1437 1325 1251 1207 1156 1120 1100 1094 1095 1131 1168 1214 1272 1359 1468 1668 
                        1570 1397 1310 1206 1168 1127 1084 1056 1055 1070 1098 1143 1186 1246 1310 1416 1622 
                        1524 1365 1269 1211 1161 1116 1065 1030 1029 1043 1084 1111 1173 1224 1291 1392 1573 
                        1534 1373 1284 1205 1150 1107 1066 1036 1022 1027 1075 1102 1167 1218 1291 1410 1558 
                        1525 1384 1286 1227 1170 1119 1077 1038 1024 1051 1087 1130 1187 1254 1317 1412 1585 
                        1570 1410 1314 1245 1197 1133 1100 1067 1057 1072 1110 1160 1210 1265 1347 1458 1608 
                        1585 1440 1347 1265 1215 1159 1119 1095 1079 1099 1134 1176 1241 1294 1373 1491 1694 
                        1663 1456 1368 1289 1236 1183 1151 1119 1113 1125 1162 1201 1250 1304 1395 1499 1677 
                        1668 1478 1376 1302 1233 1185 1158 1131 1124 1136 1158 1204 1247 1326 1403 1511 1759 
                        1727 1474 1379 1296 1226 1184 1156 1134 1132 1139 1167 1202 1260 1319 1407 1530 1775 
                        1767 1497 1377 1284 1228 1178 1149 1133 1131 1133 1167 1197 1234 1308 1396 1532 1837 
                        1821 1504 1361 1275 1198 1161 1145 1127 1120 1133 1157 1174 1225 1299 1380 1540 1898 
                        1949 1555 1358 1270 1211 1166 1142 1124 1128 1130 1142 1179 1232 1302 1397 1582 2041 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="5" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2592x1944_D65_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D65
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [4116 3255 2592 2399 2110 2110 2019 1990 1908 1917 2078 2058 2245 2399 2744 3181 4037 
                        3528 2957 2470 2307 2110 1980 1891 1794 1779 1764 1849 1935 2058 2233 2529 2916 3558 
                        3255 2709 2427 2175 1990 1810 1721 1615 1543 1602 1666 1757 2009 2120 2269 2624 3157 
                        2876 2455 2245 2089 1810 1640 1527 1433 1418 1458 1521 1627 1802 1935 2198 2484 2876 
                        2856 2413 2164 1962 1735 1505 1381 1296 1257 1300 1354 1527 1700 1874 2089 2345 2709 
                        2762 2320 2058 1825 1615 1423 1280 1213 1179 1213 1276 1448 1584 1794 2009 2233 2624 
                        2624 2332 2019 1771 1532 1346 1189 1120 1071 1129 1186 1337 1538 1757 1990 2198 2624 
                        2592 2233 1971 1742 1499 1288 1153 1077 1044 1093 1147 1276 1478 1693 1944 2142 2372 
                        2592 2221 1935 1707 1468 1284 1126 1032 1026 1063 1135 1246 1428 1640 1926 2099 2455 
                        2399 2245 1971 1707 1478 1276 1117 1052 1024 1052 1141 1261 1438 1666 1900 2078 2345 
                        2455 2187 1971 1742 1505 1320 1217 1114 1079 1126 1186 1312 1499 1700 1874 2164 2441 
                        2624 2282 2038 1794 1572 1409 1272 1189 1138 1153 1257 1359 1555 1771 1971 2153 2413 
                        2726 2372 2099 1866 1659 1516 1350 1268 1213 1249 1372 1510 1640 1841 2048 2245 2641 
                        2876 2427 2221 1990 1833 1653 1489 1428 1372 1418 1473 1602 1749 1883 2099 2385 2957 
                        3133 2674 2282 2048 1908 1742 1666 1584 1527 1549 1609 1786 1849 2099 2257 2514 3133 
                        3588 2856 2484 2142 2009 1944 1833 1757 1673 1707 1771 1891 2068 2120 2427 2895 3715 
                        4466 3499 2744 2514 2257 2142 1971 1900 1841 1874 1944 2078 2153 2372 2799 3359 4241 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3367 2566 2164 2012 1826 1788 1721 1663 1628 1671 1704 1725 1802 1955 2137 2537 3367 
                        2900 2413 2060 1865 1816 1696 1643 1572 1587 1579 1605 1696 1721 1865 1961 2270 2750 
                        2456 2130 1928 1802 1663 1616 1534 1456 1444 1462 1481 1558 1659 1713 1836 2085 2585 
                        2293 2036 1855 1725 1643 1500 1397 1330 1300 1335 1369 1472 1565 1700 1788 1928 2263 
                        2184 1933 1770 1687 1527 1409 1307 1239 1228 1253 1290 1375 1472 1576 1683 1850 2184 
                        2177 1875 1734 1590 1441 1335 1239 1198 1141 1178 1209 1302 1414 1520 1624 1783 2091 
                        2098 1836 1700 1558 1409 1276 1194 1128 1110 1124 1170 1239 1356 1514 1587 1783 1972 
                        2073 1807 1708 1530 1364 1235 1135 1087 1052 1073 1131 1215 1322 1487 1561 1721 1901 
                        2018 1826 1671 1484 1351 1207 1110 1065 1024 1065 1113 1180 1278 1438 1537 1704 1850 
                        2018 1811 1683 1491 1359 1226 1126 1065 1043 1072 1124 1170 1290 1406 1558 1696 1933 
                        2060 1783 1659 1497 1364 1253 1162 1103 1063 1092 1133 1224 1312 1435 1558 1738 1896 
                        2150 1881 1704 1561 1409 1285 1211 1150 1120 1143 1180 1239 1351 1481 1624 1765 1995 
                        2177 1928 1721 1594 1472 1345 1271 1217 1170 1207 1253 1330 1409 1507 1583 1788 2117 
                        2340 1978 1761 1651 1524 1432 1332 1288 1257 1280 1320 1403 1484 1565 1696 1917 2255 
                        2510 2137 1850 1692 1609 1527 1426 1367 1372 1386 1397 1462 1524 1647 1752 2001 2501 
                        2876 2324 1995 1774 1655 1616 1537 1484 1453 1491 1504 1558 1647 1734 1966 2219 2761 
                        3613 2707 2191 1978 1788 1679 1655 1639 1576 1569 1616 1667 1788 1933 2164 2604 3539 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3334 2564 2122 1991 1810 1718 1675 1552 1567 1581 1608 1675 1763 1907 2109 2488 3163 
                        2751 2326 2008 1834 1714 1692 1560 1514 1488 1531 1556 1581 1659 1781 1956 2234 2774 
                        2479 2122 1880 1745 1647 1552 1453 1413 1390 1381 1440 1538 1556 1692 1786 2070 2426 
                        2287 2039 1791 1680 1549 1459 1359 1302 1275 1294 1338 1404 1494 1608 1692 1907 2227 
                        2205 1901 1772 1612 1484 1370 1280 1220 1207 1204 1251 1330 1431 1549 1643 1791 2102 
                        2149 1917 1758 1563 1443 1317 1198 1141 1124 1124 1187 1258 1373 1484 1639 1758 2003 
                        2156 1810 1696 1549 1362 1251 1155 1095 1056 1073 1130 1215 1317 1462 1578 1688 1934 
                        2076 1834 1647 1484 1356 1228 1126 1038 1027 1053 1113 1173 1299 1425 1563 1667 1907 
                        2033 1805 1675 1488 1351 1209 1086 1037 1024 1040 1081 1187 1260 1416 1535 1671 1875 
                        2027 1820 1651 1528 1330 1202 1102 1059 1029 1035 1095 1171 1268 1390 1518 1663 1810 
                        2033 1805 1709 1535 1376 1235 1136 1092 1066 1071 1121 1192 1282 1425 1552 1688 1844 
                        2156 1891 1714 1560 1404 1302 1192 1141 1122 1128 1196 1240 1338 1484 1593 1701 2014 
                        2227 1885 1754 1615 1443 1354 1256 1190 1157 1179 1240 1309 1390 1531 1627 1795 2109 
                        2383 1991 1772 1675 1518 1425 1346 1275 1247 1275 1319 1384 1456 1563 1651 1891 2176 
                        2634 2169 1880 1709 1567 1504 1434 1373 1330 1348 1393 1434 1560 1635 1758 2014 2400 
                        2995 2310 1973 1795 1655 1596 1528 1475 1456 1465 1501 1556 1623 1731 1928 2198 2751 
                        3544 2697 2219 1945 1805 1659 1623 1589 1545 1589 1578 1643 1754 1839 2122 2507 3489 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3034 2293 2018 1770 1591 1551 1531 1454 1476 1508 1494 1551 1607 1673 1954 2304 2791 
                        2655 2142 1843 1684 1561 1531 1471 1441 1404 1424 1458 1494 1551 1661 1776 2061 2455 
                        2360 1994 1720 1607 1546 1437 1361 1353 1335 1346 1372 1445 1498 1576 1696 1915 2220 
                        2152 1796 1661 1556 1428 1368 1310 1265 1246 1227 1324 1372 1396 1494 1628 1789 2070 
                        2044 1732 1596 1517 1412 1296 1240 1186 1180 1183 1233 1303 1349 1467 1581 1702 1871 
                        1879 1720 1591 1485 1349 1243 1180 1136 1108 1141 1183 1221 1320 1432 1503 1628 1843 
                        1908 1678 1536 1441 1310 1224 1133 1093 1078 1093 1125 1212 1282 1384 1489 1596 1850 
                        1850 1661 1561 1408 1306 1191 1115 1076 1053 1046 1103 1188 1299 1376 1503 1571 1757 
                        1893 1645 1508 1396 1285 1177 1090 1055 1024 1057 1093 1155 1240 1353 1449 1556 1757 
                        1864 1656 1522 1408 1279 1174 1115 1046 1062 1066 1100 1157 1249 1338 1445 1551 1751 
                        1923 1650 1556 1412 1285 1203 1115 1090 1071 1090 1110 1183 1272 1361 1462 1612 1757 
                        1994 1678 1571 1445 1338 1233 1163 1120 1093 1131 1171 1221 1282 1396 1508 1612 1809 
                        2171 1783 1607 1467 1353 1292 1218 1188 1177 1186 1224 1265 1331 1467 1517 1673 1962 
                        2171 1829 1667 1546 1428 1372 1310 1218 1227 1252 1272 1342 1388 1454 1591 1776 1986 
                        2337 1946 1714 1551 1494 1404 1364 1331 1292 1349 1364 1396 1471 1541 1678 1915 2326 
                        2699 2142 1871 1656 1566 1494 1437 1408 1432 1420 1428 1467 1531 1612 1816 2124 2655 
                        3489 2467 2078 1809 1661 1617 1531 1485 1503 1508 1551 1607 1656 1757 1970 2430 3278 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="6" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2592x1944_D65_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D65
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2203 1738 1497 1390 1317 1247 1209 1192 1179 1188 1223 1266 1301 1403 1512 1748 2240 
                        2055 1653 1476 1365 1287 1232 1201 1176 1161 1180 1205 1237 1293 1371 1483 1662 2101 
                        1930 1583 1446 1337 1256 1210 1174 1147 1137 1151 1170 1215 1270 1343 1452 1599 1943 
                        1817 1537 1400 1307 1237 1178 1134 1121 1108 1121 1152 1194 1242 1323 1413 1569 1851 
                        1753 1484 1383 1280 1211 1160 1118 1096 1081 1090 1125 1171 1223 1290 1383 1527 1784 
                        1699 1457 1351 1255 1194 1132 1087 1054 1046 1060 1103 1142 1202 1264 1362 1504 1728 
                        1669 1451 1337 1244 1170 1118 1069 1038 1027 1038 1075 1128 1189 1267 1358 1471 1706 
                        1652 1446 1334 1238 1173 1117 1063 1041 1022 1033 1075 1128 1188 1251 1344 1479 1688 
                        1673 1462 1342 1254 1179 1130 1077 1049 1024 1046 1086 1130 1187 1267 1352 1503 1710 
                        1707 1493 1361 1274 1204 1141 1093 1058 1056 1067 1100 1156 1208 1283 1383 1514 1736 
                        1725 1505 1386 1309 1222 1164 1116 1086 1068 1082 1120 1179 1238 1309 1403 1541 1765 
                        1788 1526 1402 1307 1240 1183 1136 1110 1092 1110 1140 1202 1253 1317 1414 1563 1821 
                        1795 1542 1413 1325 1245 1194 1153 1119 1110 1123 1157 1198 1258 1330 1431 1581 1874 
                        1851 1553 1425 1317 1242 1198 1163 1131 1111 1131 1163 1202 1255 1333 1431 1593 1911 
                        1904 1558 1426 1326 1256 1198 1166 1133 1123 1133 1166 1215 1256 1337 1452 1599 1970 
                        2010 1608 1449 1342 1244 1198 1173 1149 1138 1146 1177 1206 1258 1348 1456 1653 2070 
                        2168 1687 1468 1354 1266 1220 1176 1163 1159 1155 1188 1229 1286 1384 1489 1697 2185 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2126 1636 1438 1344 1274 1209 1186 1168 1170 1168 1192 1228 1276 1344 1458 1672 2134 
                        1978 1588 1416 1321 1254 1212 1180 1158 1164 1167 1192 1222 1266 1340 1445 1609 1991 
                        1836 1518 1389 1296 1234 1189 1164 1140 1133 1141 1167 1199 1252 1311 1410 1559 1894 
                        1751 1487 1349 1271 1216 1165 1138 1119 1109 1116 1146 1181 1226 1287 1384 1526 1776 
                        1669 1444 1325 1246 1191 1145 1107 1079 1072 1091 1118 1157 1204 1263 1353 1470 1701 
                        1624 1409 1298 1220 1160 1122 1082 1049 1046 1055 1089 1126 1174 1243 1315 1439 1662 
                        1575 1390 1286 1207 1147 1109 1064 1032 1022 1036 1069 1110 1167 1225 1308 1425 1615 
                        1573 1384 1280 1202 1154 1094 1060 1028 1018 1029 1066 1115 1166 1226 1308 1419 1609 
                        1584 1395 1291 1218 1165 1114 1067 1034 1024 1039 1081 1120 1174 1239 1320 1446 1624 
                        1613 1422 1323 1238 1184 1133 1091 1054 1046 1065 1099 1143 1196 1264 1343 1471 1671 
                        1653 1447 1337 1263 1204 1153 1109 1078 1067 1082 1119 1165 1216 1283 1366 1488 1701 
                        1697 1477 1358 1276 1218 1171 1130 1104 1092 1109 1143 1180 1234 1306 1382 1514 1730 
                        1739 1487 1369 1288 1224 1181 1143 1116 1112 1116 1152 1186 1247 1305 1389 1535 1783 
                        1766 1501 1376 1287 1226 1179 1152 1129 1113 1129 1152 1189 1243 1307 1407 1529 1813 
                        1819 1507 1375 1289 1224 1176 1149 1129 1118 1131 1160 1191 1239 1311 1401 1551 1876 
                        1919 1537 1377 1286 1223 1174 1148 1128 1124 1128 1154 1186 1232 1306 1410 1584 1958 
                        2048 1592 1402 1299 1221 1182 1147 1127 1122 1129 1158 1194 1234 1314 1428 1640 2102 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2113 1640 1445 1345 1268 1228 1192 1176 1172 1180 1198 1234 1276 1356 1468 1690 2129 
                        1988 1588 1427 1333 1263 1210 1182 1162 1155 1171 1186 1227 1274 1344 1446 1626 2022 
                        1857 1529 1391 1303 1238 1191 1166 1147 1142 1149 1173 1207 1258 1323 1420 1571 1910 
                        1770 1491 1361 1280 1214 1169 1140 1116 1115 1120 1144 1180 1234 1294 1389 1523 1795 
                        1682 1452 1332 1248 1189 1147 1113 1091 1081 1091 1126 1160 1207 1270 1355 1484 1719 
                        1628 1410 1300 1226 1173 1120 1079 1053 1048 1055 1096 1133 1182 1243 1334 1446 1645 
                        1576 1397 1284 1213 1155 1111 1061 1036 1027 1038 1077 1114 1169 1230 1312 1433 1615 
                        1574 1388 1282 1212 1151 1102 1063 1032 1012 1033 1066 1116 1167 1230 1310 1426 1613 
                        1581 1405 1293 1218 1164 1118 1073 1035 1024 1045 1081 1129 1187 1249 1327 1444 1636 
                        1621 1423 1327 1243 1179 1137 1091 1056 1049 1063 1103 1142 1204 1264 1352 1469 1667 
                        1657 1457 1347 1270 1208 1156 1110 1082 1069 1088 1117 1163 1226 1283 1368 1502 1692 
                        1697 1475 1368 1280 1218 1168 1135 1110 1092 1106 1144 1184 1237 1305 1392 1518 1739 
                        1752 1484 1368 1283 1226 1185 1141 1119 1105 1125 1151 1196 1245 1311 1396 1536 1782 
                        1780 1502 1375 1294 1232 1184 1154 1133 1118 1128 1152 1201 1245 1316 1412 1541 1827 
                        1834 1522 1376 1286 1226 1180 1152 1135 1122 1132 1159 1190 1247 1313 1414 1555 1880 
                        1923 1553 1381 1288 1232 1182 1147 1128 1125 1133 1160 1188 1240 1310 1414 1597 1995 
                        2051 1596 1400 1308 1220 1182 1151 1128 1130 1135 1161 1194 1247 1318 1425 1644 2082 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2015 1599 1406 1313 1238 1200 1173 1153 1157 1160 1176 1212 1255 1323 1424 1623 2069 
                        1898 1532 1393 1296 1237 1201 1164 1153 1150 1156 1175 1212 1258 1328 1415 1567 1932 
                        1757 1499 1370 1284 1229 1184 1156 1142 1130 1145 1169 1198 1248 1310 1396 1525 1834 
                        1674 1452 1345 1264 1205 1161 1135 1116 1108 1116 1148 1174 1224 1285 1374 1488 1725 
                        1617 1415 1321 1242 1177 1139 1106 1083 1079 1083 1118 1154 1208 1262 1335 1454 1680 
                        1553 1376 1281 1216 1159 1120 1079 1047 1041 1063 1090 1129 1175 1235 1307 1423 1610 
                        1515 1359 1268 1202 1147 1098 1059 1027 1016 1035 1065 1110 1166 1217 1293 1389 1576 
                        1518 1366 1263 1202 1132 1091 1055 1019 1010 1023 1063 1110 1160 1224 1300 1387 1585 
                        1534 1374 1282 1211 1152 1104 1067 1037 1024 1035 1081 1121 1175 1237 1316 1405 1596 
                        1558 1397 1305 1239 1183 1131 1095 1053 1041 1066 1095 1149 1196 1254 1331 1440 1614 
                        1605 1426 1328 1258 1193 1146 1111 1078 1068 1083 1131 1171 1221 1286 1370 1477 1673 
                        1625 1468 1357 1274 1209 1176 1136 1100 1101 1106 1148 1186 1242 1303 1377 1492 1696 
                        1689 1460 1353 1282 1226 1184 1148 1120 1118 1123 1151 1197 1245 1303 1393 1515 1748 
                        1699 1476 1369 1281 1213 1171 1151 1128 1117 1125 1154 1188 1243 1307 1395 1520 1770 
                        1766 1462 1355 1263 1210 1160 1143 1117 1112 1126 1146 1177 1225 1293 1386 1512 1814 
                        1813 1492 1351 1261 1199 1155 1138 1114 1109 1111 1138 1172 1210 1287 1372 1546 1921 
                        1940 1533 1362 1259 1191 1146 1132 1111 1102 1120 1132 1167 1218 1290 1395 1592 2029 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="7" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2592x1944_D75_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D75
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [4165 3139 2742 2393 2256 2113 2053 1969 1969 1951 1996 2043 2221 2329 2641 3209 3902 
                        3734 2927 2475 2304 2199 1978 1859 1783 1797 1828 1892 2005 2034 2268 2434 2947 3610 
                        3094 2625 2329 2177 2043 1875 1719 1647 1604 1622 1705 1820 1942 2144 2329 2609 3232 
                        2927 2504 2210 2043 1892 1699 1581 1444 1449 1468 1558 1679 1859 1987 2188 2461 2927 
                        2724 2380 2166 1996 1761 1525 1411 1341 1305 1313 1406 1536 1740 1925 2113 2354 2690 
                        2690 2354 2093 1892 1635 1483 1313 1207 1171 1210 1305 1420 1628 1851 2015 2199 2548 
                        2578 2244 2015 1783 1628 1384 1207 1116 1097 1125 1224 1337 1541 1797 2015 2166 2461 
                        2548 2233 1951 1805 1488 1325 1180 1086 1044 1097 1171 1278 1520 1733 1996 2233 2447 
                        2594 2188 2005 1733 1515 1297 1146 1046 1024 1088 1155 1285 1463 1699 1908 2134 2420 
                        2533 2210 1960 1726 1536 1317 1168 1099 1056 1080 1164 1270 1494 1685 1942 2063 2461 
                        2578 2280 2024 1761 1553 1354 1227 1128 1088 1111 1197 1329 1515 1685 1960 2134 2489 
                        2658 2233 2093 1820 1616 1430 1297 1227 1190 1190 1267 1384 1604 1797 1951 2233 2533 
                        2850 2380 2083 1908 1699 1499 1397 1313 1263 1309 1397 1536 1699 1875 2053 2316 2658 
                        3072 2434 2210 1996 1843 1653 1515 1449 1402 1420 1494 1622 1761 1951 2144 2393 2967 
                        3209 2609 2292 2063 1917 1790 1660 1592 1569 1558 1647 1747 1900 2043 2233 2625 3116 
                        3734 2987 2461 2210 2072 1925 1859 1828 1747 1712 1783 1942 2034 2199 2406 2850 3766 
                        4512 3465 2850 2393 2166 2166 2005 2043 1900 1875 1900 2072 2244 2367 2777 3209 4760 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3228 2415 2148 1962 1805 1805 1729 1656 1633 1618 1648 1734 1805 1929 2085 2519 3243 
                        2802 2304 2013 1848 1738 1656 1614 1546 1533 1570 1570 1656 1696 1815 1962 2238 2736 
                        2556 2103 1873 1773 1672 1578 1500 1468 1415 1432 1481 1519 1633 1704 1848 2030 2415 
                        2319 1995 1819 1692 1595 1478 1401 1309 1302 1332 1371 1459 1523 1648 1729 1940 2209 
                        2097 1893 1742 1633 1487 1379 1290 1229 1208 1218 1276 1352 1453 1560 1656 1805 2110 
                        2097 1843 1738 1606 1438 1299 1224 1183 1119 1150 1201 1273 1401 1493 1644 1738 2042 
                        2097 1829 1684 1536 1398 1273 1185 1093 1069 1094 1143 1231 1329 1456 1563 1708 1919 
                        1984 1791 1633 1500 1337 1224 1132 1066 1044 1061 1117 1199 1304 1438 1553 1700 1853 
                        1956 1778 1614 1475 1350 1224 1098 1044 1027 1041 1086 1177 1271 1424 1526 1652 1834 
                        1962 1751 1636 1506 1329 1216 1114 1042 1024 1047 1098 1158 1264 1398 1529 1652 1883 
                        2078 1773 1640 1500 1365 1222 1156 1093 1041 1083 1128 1206 1299 1426 1533 1668 1951 
                        2066 1888 1636 1529 1404 1288 1201 1119 1114 1121 1169 1222 1337 1435 1546 1712 1951 
                        2189 1903 1708 1588 1453 1360 1260 1191 1167 1201 1227 1290 1398 1468 1592 1778 2110 
                        2319 1984 1729 1606 1556 1412 1324 1257 1246 1248 1312 1381 1444 1553 1660 1848 2142 
                        2475 2072 1810 1692 1603 1459 1415 1350 1342 1355 1404 1426 1550 1595 1747 1990 2312 
                        2955 2281 1990 1734 1672 1581 1529 1497 1435 1459 1484 1529 1595 1696 1898 2209 2882 
                        3574 2643 2162 1962 1810 1652 1629 1614 1574 1603 1606 1621 1696 1898 2116 2510 3726 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3587 2498 2119 1911 1784 1673 1677 1608 1597 1554 1615 1677 1740 1826 2033 2454 3136 
                        2753 2286 2027 1841 1710 1626 1554 1524 1498 1547 1537 1615 1693 1762 1911 2271 2711 
                        2553 2113 1885 1753 1657 1568 1472 1396 1404 1388 1445 1517 1593 1661 1817 1998 2428 
                        2403 1998 1821 1706 1551 1442 1377 1302 1290 1288 1366 1419 1541 1634 1702 1921 2227 
                        2220 1916 1718 1626 1498 1366 1276 1212 1198 1212 1265 1340 1445 1541 1661 1821 2100 
                        2100 1865 1731 1600 1454 1300 1208 1147 1135 1141 1200 1274 1377 1498 1623 1757 2039 
                        2165 1831 1693 1544 1385 1256 1156 1095 1068 1083 1158 1212 1332 1454 1597 1714 1948 
                        2045 1821 1650 1514 1355 1236 1114 1052 1036 1060 1101 1191 1295 1413 1565 1689 1901 
                        1970 1798 1657 1524 1345 1212 1100 1038 1024 1053 1100 1173 1276 1404 1527 1677 1826 
                        1976 1793 1630 1479 1332 1210 1110 1052 1038 1045 1091 1173 1286 1399 1511 1661 1875 
                        2033 1807 1661 1541 1379 1233 1156 1084 1055 1074 1145 1212 1302 1445 1524 1669 1890 
                        2152 1845 1681 1572 1410 1288 1202 1145 1119 1134 1185 1260 1363 1460 1579 1714 1993 
                        2256 1906 1753 1604 1472 1348 1276 1208 1191 1200 1210 1330 1390 1507 1611 1784 2051 
                        2355 1998 1762 1634 1534 1448 1330 1276 1249 1279 1315 1385 1476 1593 1698 1841 2179 
                        2507 2165 1855 1702 1586 1494 1416 1379 1327 1382 1399 1466 1534 1630 1748 2021 2445 
                        3015 2316 1959 1807 1650 1608 1501 1479 1466 1479 1488 1544 1634 1718 1921 2199 2786 
                        3550 2629 2199 1959 1784 1698 1653 1615 1611 1568 1600 1638 1727 1901 2172 2619 3681 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2958 2330 1941 1705 1611 1562 1528 1487 1491 1511 1495 1511 1588 1715 1889 2282 3106 
                        2577 2094 1845 1659 1593 1528 1467 1423 1391 1437 1445 1495 1557 1649 1786 2086 2588 
                        2301 1921 1720 1630 1532 1441 1374 1334 1331 1344 1391 1408 1471 1553 1679 1921 2282 
                        2063 1827 1630 1562 1483 1354 1328 1265 1242 1248 1279 1354 1445 1511 1611 1792 2078 
                        2048 1736 1579 1519 1405 1306 1254 1190 1172 1170 1226 1306 1387 1471 1523 1664 1883 
                        1969 1684 1566 1467 1322 1265 1177 1134 1112 1123 1162 1223 1338 1412 1515 1621 1876 
                        1908 1649 1549 1426 1303 1208 1148 1081 1075 1075 1127 1187 1294 1398 1503 1593 1792 
                        1858 1664 1536 1398 1300 1175 1130 1045 1059 1055 1107 1172 1268 1360 1456 1571 1775 
                        1845 1640 1515 1391 1300 1192 1105 1047 1035 1045 1094 1155 1226 1341 1479 1544 1758 
                        1864 1644 1491 1394 1294 1187 1105 1053 1045 1024 1109 1158 1245 1341 1445 1562 1736 
                        1895 1674 1544 1391 1300 1213 1125 1075 1069 1079 1143 1195 1279 1367 1467 1584 1792 
                        1990 1689 1571 1464 1347 1254 1172 1150 1127 1120 1155 1223 1291 1391 1467 1602 1827 
                        2018 1753 1579 1495 1364 1282 1226 1180 1177 1177 1210 1274 1341 1445 1536 1710 1990 
                        2193 1864 1635 1523 1456 1367 1288 1240 1223 1234 1265 1347 1419 1483 1571 1764 2167 
                        2400 1941 1684 1544 1503 1445 1360 1338 1294 1316 1334 1381 1456 1536 1644 1889 2330 
                        2754 2110 1804 1649 1562 1511 1441 1423 1405 1415 1419 1479 1519 1597 1798 2167 2650 
                        3584 2431 2055 1764 1640 1593 1575 1532 1515 1532 1519 1584 1649 1781 1983 2431 3348 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="8" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2592x1944_D75_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        D75
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2170 1669 1481 1362 1277 1228 1197 1182 1172 1182 1211 1228 1302 1382 1493 1702 2141 
                        1967 1614 1433 1345 1257 1204 1183 1156 1147 1156 1176 1218 1265 1345 1455 1614 1990 
                        1913 1546 1405 1315 1234 1185 1154 1123 1121 1135 1154 1199 1257 1324 1416 1572 1934 
                        1818 1504 1375 1268 1209 1158 1129 1095 1099 1106 1135 1164 1223 1292 1385 1516 1799 
                        1712 1472 1343 1259 1202 1141 1108 1076 1065 1081 1103 1153 1202 1266 1361 1495 1745 
                        1629 1437 1317 1231 1172 1127 1074 1050 1030 1050 1085 1127 1179 1253 1334 1448 1689 
                        1616 1430 1304 1221 1164 1098 1064 1027 1021 1031 1064 1114 1164 1235 1321 1440 1675 
                        1612 1417 1303 1221 1158 1104 1050 1028 1018 1023 1060 1121 1177 1249 1328 1459 1640 
                        1644 1441 1331 1259 1173 1117 1067 1034 1024 1039 1072 1123 1198 1259 1348 1495 1688 
                        1670 1449 1355 1272 1196 1143 1096 1051 1040 1061 1101 1155 1209 1295 1373 1504 1700 
                        1721 1484 1365 1287 1223 1155 1116 1080 1073 1080 1116 1167 1223 1303 1393 1518 1770 
                        1736 1504 1370 1299 1225 1168 1128 1101 1084 1112 1140 1187 1239 1315 1399 1564 1770 
                        1797 1507 1371 1306 1223 1178 1136 1108 1096 1108 1148 1184 1252 1306 1419 1531 1815 
                        1837 1504 1405 1300 1223 1184 1141 1112 1099 1112 1147 1184 1238 1309 1415 1554 1818 
                        1832 1533 1395 1290 1220 1179 1147 1117 1109 1123 1147 1199 1242 1315 1405 1586 1892 
                        1944 1571 1411 1309 1241 1183 1144 1131 1123 1131 1163 1197 1249 1317 1422 1599 1990 
                        2034 1653 1457 1324 1252 1191 1170 1162 1146 1155 1170 1228 1269 1334 1445 1653 2113 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2120 1642 1431 1334 1262 1210 1187 1162 1169 1171 1200 1227 1284 1351 1452 1664 2120 
                        1958 1566 1413 1310 1247 1201 1174 1154 1152 1156 1180 1208 1257 1326 1428 1591 1979 
                        1830 1505 1374 1283 1232 1180 1153 1128 1124 1136 1164 1190 1239 1303 1397 1545 1857 
                        1723 1472 1342 1255 1199 1160 1124 1107 1093 1112 1132 1166 1215 1280 1359 1499 1739 
                        1666 1426 1304 1231 1179 1130 1097 1069 1065 1081 1104 1146 1191 1248 1332 1446 1680 
                        1596 1393 1294 1212 1154 1108 1067 1044 1032 1046 1074 1115 1165 1221 1302 1421 1615 
                        1556 1371 1266 1198 1145 1095 1052 1021 1016 1032 1061 1100 1156 1217 1295 1402 1586 
                        1565 1383 1280 1201 1146 1099 1058 1025 1014 1027 1069 1109 1163 1227 1299 1420 1602 
                        1581 1395 1297 1222 1154 1114 1071 1033 1024 1037 1074 1114 1179 1252 1313 1437 1612 
                        1615 1424 1314 1236 1186 1127 1093 1055 1045 1060 1095 1145 1192 1260 1334 1453 1654 
                        1645 1445 1346 1263 1203 1155 1106 1074 1062 1083 1119 1163 1212 1277 1358 1501 1686 
                        1676 1471 1350 1272 1219 1169 1129 1102 1089 1102 1129 1178 1232 1294 1371 1508 1712 
                        1724 1477 1357 1270 1216 1174 1143 1107 1099 1110 1143 1186 1229 1295 1378 1514 1740 
                        1746 1477 1359 1269 1215 1169 1132 1114 1113 1112 1146 1187 1224 1292 1390 1510 1762 
                        1813 1494 1360 1272 1203 1168 1139 1123 1111 1123 1147 1180 1219 1287 1387 1528 1866 
                        1897 1523 1375 1274 1209 1161 1136 1123 1121 1120 1142 1173 1226 1298 1389 1566 1937 
                        2012 1580 1386 1288 1211 1167 1141 1121 1117 1124 1141 1180 1229 1300 1400 1601 2083 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2121 1659 1450 1342 1273 1220 1185 1166 1167 1166 1198 1234 1296 1355 1455 1689 2121 
                        1991 1588 1417 1322 1254 1209 1172 1163 1153 1166 1188 1218 1269 1334 1437 1601 2002 
                        1841 1525 1382 1291 1233 1188 1154 1132 1136 1141 1163 1200 1250 1318 1410 1561 1868 
                        1757 1470 1346 1274 1203 1159 1123 1111 1097 1116 1136 1170 1219 1277 1367 1508 1765 
                        1655 1430 1320 1246 1177 1134 1106 1078 1065 1080 1111 1150 1195 1253 1352 1465 1676 
                        1605 1397 1294 1216 1164 1109 1072 1046 1038 1048 1081 1122 1175 1235 1317 1420 1631 
                        1578 1374 1284 1202 1138 1097 1056 1030 1019 1034 1072 1110 1160 1224 1299 1415 1609 
                        1557 1391 1281 1209 1147 1103 1060 1027 1012 1033 1064 1113 1170 1228 1310 1419 1612 
                        1578 1408 1294 1227 1169 1110 1069 1037 1024 1037 1083 1128 1183 1246 1321 1441 1628 
                        1625 1428 1326 1247 1190 1139 1092 1055 1045 1066 1104 1150 1205 1271 1342 1472 1644 
                        1648 1464 1350 1267 1213 1159 1115 1090 1075 1092 1125 1168 1226 1285 1371 1499 1682 
                        1686 1470 1358 1276 1208 1171 1130 1104 1091 1109 1141 1179 1236 1302 1387 1517 1729 
                        1743 1486 1356 1281 1217 1176 1139 1117 1110 1114 1145 1190 1240 1303 1382 1523 1758 
                        1757 1486 1358 1281 1219 1176 1142 1113 1109 1119 1153 1191 1232 1292 1393 1524 1806 
                        1815 1491 1377 1280 1213 1173 1146 1116 1115 1122 1143 1176 1233 1299 1387 1537 1850 
                        1889 1532 1383 1274 1216 1165 1140 1124 1117 1132 1149 1186 1230 1294 1398 1563 1959 
                        2024 1583 1385 1300 1222 1171 1143 1131 1121 1125 1151 1184 1233 1308 1404 1638 2059 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2007 1561 1404 1305 1240 1205 1166 1158 1157 1158 1177 1211 1253 1333 1421 1606 2026 
                        1841 1526 1373 1288 1240 1201 1164 1146 1140 1151 1174 1196 1246 1308 1405 1557 1905 
                        1748 1480 1355 1269 1213 1173 1148 1132 1122 1132 1148 1193 1236 1301 1378 1517 1804 
                        1636 1432 1327 1253 1195 1153 1112 1102 1093 1106 1135 1162 1211 1271 1348 1458 1722 
                        1599 1392 1296 1217 1170 1126 1101 1075 1059 1079 1101 1135 1185 1245 1329 1424 1644 
                        1528 1365 1269 1206 1146 1106 1059 1036 1028 1047 1067 1114 1156 1217 1287 1396 1589 
                        1505 1342 1257 1196 1134 1091 1050 1020 1010 1024 1050 1103 1148 1212 1275 1386 1524 
                        1486 1343 1270 1182 1145 1089 1052 1012 1005 1026 1055 1109 1154 1214 1276 1379 1563 
                        1536 1367 1278 1205 1161 1103 1069 1035 1024 1038 1073 1124 1180 1237 1297 1412 1576 
                        1563 1402 1301 1235 1173 1135 1086 1062 1051 1058 1090 1140 1208 1258 1320 1442 1604 
                        1594 1425 1319 1251 1201 1156 1105 1079 1071 1087 1126 1161 1217 1268 1353 1458 1627 
                        1611 1452 1333 1256 1216 1164 1128 1101 1101 1109 1142 1183 1232 1292 1368 1469 1679 
                        1655 1441 1343 1263 1216 1177 1136 1116 1095 1112 1145 1177 1232 1299 1371 1484 1716 
                        1660 1449 1334 1265 1201 1167 1144 1110 1097 1119 1139 1167 1228 1290 1369 1485 1722 
                        1748 1444 1333 1257 1186 1153 1116 1109 1096 1114 1134 1163 1202 1269 1378 1480 1789 
                        1781 1459 1328 1250 1184 1140 1116 1100 1099 1109 1130 1159 1200 1269 1358 1507 1857 
                        1882 1509 1340 1264 1182 1152 1112 1109 1095 1096 1117 1152 1205 1277 1379 1550 1970 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="9" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2592x1944_CWF_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        CWF
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [3869 3017 2547 2283 2077 2011 1884 1823 1804 1810 1884 1927 2027 2263 2485 2999 4088 
                        3402 2682 2391 2175 1996 1817 1766 1667 1651 1678 1742 1850 1935 2069 2358 2682 3402 
                        3017 2509 2194 2011 1857 1707 1574 1518 1461 1513 1579 1656 1797 1972 2175 2497 3072 
                        2682 2315 2094 1913 1736 1555 1452 1366 1323 1363 1436 1550 1678 1863 2019 2294 2654 
                        2534 2243 2004 1823 1609 1469 1327 1261 1213 1239 1293 1432 1584 1730 1965 2185 2522 
                        2473 2166 1957 1724 1531 1359 1233 1160 1124 1155 1204 1341 1491 1678 1884 2077 2380 
                        2380 2112 1863 1630 1473 1261 1157 1088 1081 1088 1136 1274 1416 1614 1817 2036 2358 
                        2347 2036 1843 1630 1400 1242 1124 1058 1045 1049 1116 1218 1396 1569 1804 1980 2325 
                        2358 2044 1817 1564 1393 1218 1112 1024 1034 1043 1121 1216 1341 1550 1772 1957 2253 
                        2294 2044 1791 1619 1396 1216 1121 1052 1034 1041 1129 1207 1344 1536 1748 1942 2194 
                        2369 2069 1843 1635 1424 1270 1157 1074 1063 1078 1147 1227 1370 1569 1772 2004 2304 
                        2473 2103 1913 1651 1509 1327 1201 1124 1116 1144 1190 1300 1448 1609 1830 2019 2369 
                        2626 2175 1957 1766 1584 1396 1270 1218 1195 1195 1280 1389 1504 1695 1884 2077 2522 
                        2668 2315 2044 1857 1667 1522 1396 1320 1303 1320 1385 1478 1635 1791 1965 2213 2626 
                        3035 2402 2157 1935 1772 1630 1531 1452 1444 1461 1495 1630 1760 1884 2060 2402 2880 
                        3208 2682 2315 2052 1877 1772 1673 1635 1604 1619 1656 1760 1877 2019 2243 2640 3249 
                        4121 3168 2586 2283 2086 1972 1863 1779 1730 1772 1797 1913 2044 2223 2509 3072 4296 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3385 2613 2202 1914 1823 1799 1718 1684 1672 1701 1705 1697 1799 1925 2114 2517 3401 
                        2839 2329 2051 1867 1762 1684 1598 1591 1548 1555 1617 1652 1744 1818 1980 2298 2771 
                        2499 2134 1909 1813 1697 1594 1513 1453 1423 1440 1517 1551 1656 1748 1847 2076 2454 
                        2353 2027 1813 1709 1591 1471 1394 1345 1314 1332 1399 1453 1548 1636 1757 1925 2202 
                        2167 1914 1762 1672 1510 1394 1304 1231 1201 1234 1277 1369 1459 1587 1680 1789 2082 
                        2082 1852 1718 1562 1437 1345 1238 1165 1126 1155 1210 1299 1402 1510 1636 1748 1974 
                        2076 1827 1656 1494 1388 1252 1167 1099 1075 1106 1153 1223 1311 1484 1558 1709 1925 
                        2051 1799 1644 1494 1358 1223 1117 1067 1055 1069 1114 1193 1296 1423 1548 1676 1903 
                        1986 1785 1621 1450 1334 1218 1110 1049 1035 1055 1099 1159 1275 1397 1541 1652 1867 
                        1919 1762 1609 1471 1339 1197 1115 1057 1024 1052 1098 1155 1261 1388 1541 1684 1872 
                        2033 1799 1660 1474 1355 1229 1145 1089 1064 1079 1121 1212 1301 1414 1530 1668 1852 
                        2082 1823 1668 1530 1391 1292 1195 1147 1110 1119 1161 1223 1339 1431 1558 1692 1946 
                        2140 1893 1705 1591 1456 1311 1249 1205 1177 1181 1240 1289 1399 1517 1621 1794 2114 
                        2283 1963 1775 1609 1510 1402 1342 1275 1261 1256 1301 1374 1447 1548 1672 1867 2181 
                        2554 2108 1823 1680 1598 1497 1402 1382 1342 1374 1405 1468 1530 1636 1780 2033 2386 
                        2911 2283 1974 1780 1660 1598 1513 1481 1456 1453 1500 1537 1613 1722 1903 2202 2816 
                        3579 2633 2147 1952 1775 1697 1644 1632 1587 1594 1576 1628 1705 1883 2134 2573 3319 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3328 2515 2083 1918 1801 1689 1668 1561 1579 1579 1660 1685 1732 1875 2045 2382 3312 
                        2829 2325 2027 1845 1732 1648 1583 1505 1479 1470 1509 1601 1660 1787 1918 2248 2694 
                        2621 2142 1912 1759 1664 1536 1454 1386 1352 1388 1432 1502 1605 1672 1815 2039 2533 
                        2425 2003 1835 1689 1594 1435 1355 1298 1250 1271 1336 1420 1515 1624 1728 1918 2190 
                        2241 1934 1768 1644 1509 1374 1281 1217 1185 1197 1241 1344 1429 1564 1656 1815 2135 
                        2142 1850 1728 1579 1420 1306 1219 1159 1113 1135 1210 1255 1363 1522 1624 1763 2009 
                        2057 1845 1710 1539 1383 1241 1155 1091 1069 1076 1147 1212 1336 1460 1572 1719 1945 
                        2027 1815 1680 1526 1344 1215 1117 1053 1041 1058 1091 1177 1298 1414 1557 1697 1912 
                        1985 1830 1652 1476 1344 1208 1111 1043 1024 1041 1086 1167 1281 1417 1564 1676 1912 
                        1968 1820 1640 1509 1331 1210 1104 1048 1035 1048 1083 1159 1276 1380 1515 1680 1923 
                        2064 1825 1702 1533 1363 1223 1145 1091 1064 1066 1120 1202 1283 1432 1554 1685 1881 
                        2241 1870 1702 1564 1426 1303 1183 1133 1109 1135 1169 1241 1331 1460 1579 1728 1956 
                        2204 1907 1754 1640 1495 1358 1264 1219 1165 1181 1223 1298 1400 1486 1624 1796 2039 
                        2399 2045 1801 1640 1526 1417 1355 1264 1241 1267 1303 1372 1479 1561 1672 1918 2226 
                        2611 2162 1875 1719 1628 1509 1429 1363 1350 1355 1388 1451 1557 1636 1787 2027 2469 
                        2991 2341 1962 1806 1702 1583 1519 1489 1417 1457 1457 1554 1616 1710 1934 2226 2901 
                        3670 2662 2197 1956 1820 1660 1640 1575 1554 1586 1620 1620 1750 1902 2057 2572 3710 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2903 2344 1798 1683 1536 1472 1458 1382 1438 1432 1451 1419 1529 1623 1840 2213 2903 
                        2415 2028 1768 1614 1514 1438 1400 1382 1358 1346 1382 1451 1485 1606 1701 2003 2472 
                        2182 1808 1674 1529 1425 1400 1341 1281 1276 1302 1324 1376 1413 1529 1623 1872 2213 
                        2082 1758 1574 1472 1394 1318 1261 1236 1176 1194 1271 1291 1394 1438 1500 1729 2055 
                        1929 1665 1514 1445 1329 1246 1208 1155 1142 1146 1203 1231 1324 1425 1472 1631 1918 
                        1840 1648 1521 1352 1271 1199 1146 1122 1076 1095 1142 1226 1271 1370 1472 1614 1819 
                        1798 1590 1479 1376 1286 1159 1106 1073 1055 1084 1114 1168 1236 1318 1413 1543 1729 
                        1720 1590 1445 1346 1246 1172 1095 1034 1041 1058 1073 1126 1222 1329 1432 1492 1657 
                        1768 1590 1445 1335 1241 1151 1073 1034 1031 1031 1073 1099 1203 1324 1406 1514 1729 
                        1748 1606 1451 1352 1256 1126 1076 1024 1031 1048 1065 1142 1203 1276 1425 1485 1738 
                        1883 1623 1465 1352 1241 1159 1106 1102 1051 1069 1095 1155 1256 1318 1425 1543 1710 
                        1883 1657 1521 1400 1291 1203 1181 1095 1095 1118 1118 1208 1256 1370 1438 1582 1808 
                        1978 1710 1551 1413 1324 1246 1199 1130 1151 1151 1159 1261 1302 1400 1465 1665 1906 
                        2109 1768 1598 1479 1382 1313 1251 1208 1194 1226 1261 1271 1376 1425 1514 1720 2003 
                        2244 1929 1639 1492 1425 1364 1307 1297 1256 1281 1313 1370 1425 1445 1623 1861 2109 
                        2637 2055 1788 1623 1507 1458 1382 1352 1302 1364 1400 1413 1458 1521 1720 1990 2615 
                        3164 2276 2015 1798 1606 1543 1521 1492 1472 1432 1479 1507 1574 1657 1953 2397 3042 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="10" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2592x1944_CWF_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 3]">
                        CWF
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2110 1642 1437 1325 1254 1193 1172 1145 1139 1138 1172 1201 1262 1340 1456 1668 2110 
                        1973 1575 1409 1305 1231 1186 1156 1130 1118 1130 1142 1193 1239 1315 1421 1590 2011 
                        1845 1530 1379 1296 1217 1175 1134 1113 1108 1120 1140 1182 1233 1301 1400 1572 1877 
                        1776 1490 1366 1284 1205 1155 1116 1100 1086 1106 1128 1172 1227 1284 1387 1523 1805 
                        1744 1479 1359 1271 1203 1148 1104 1084 1079 1086 1122 1158 1210 1280 1364 1510 1762 
                        1690 1445 1343 1259 1197 1140 1101 1067 1057 1073 1110 1153 1204 1275 1368 1493 1724 
                        1658 1459 1337 1247 1190 1135 1080 1058 1044 1056 1094 1141 1201 1263 1346 1483 1682 
                        1652 1438 1331 1250 1183 1123 1072 1049 1029 1054 1089 1138 1194 1262 1354 1479 1684 
                        1639 1436 1324 1248 1182 1125 1074 1040 1024 1048 1085 1134 1192 1264 1338 1476 1679 
                        1644 1444 1331 1250 1180 1120 1081 1044 1032 1044 1083 1135 1194 1262 1340 1485 1700 
                        1666 1453 1337 1255 1184 1120 1080 1045 1044 1056 1094 1138 1201 1263 1351 1471 1698 
                        1698 1457 1343 1255 1190 1140 1098 1065 1057 1065 1104 1143 1193 1267 1358 1487 1724 
                        1753 1473 1354 1263 1203 1144 1107 1089 1073 1086 1122 1158 1210 1271 1359 1510 1771 
                        1786 1503 1361 1279 1212 1165 1122 1103 1098 1100 1135 1179 1220 1292 1397 1550 1825 
                        1877 1543 1395 1301 1229 1179 1147 1123 1117 1123 1150 1182 1241 1306 1411 1572 1933 
                        1973 1605 1426 1315 1247 1193 1163 1150 1134 1147 1166 1208 1264 1329 1438 1621 2050 
                        2156 1685 1450 1356 1276 1213 1187 1170 1152 1162 1198 1217 1276 1356 1495 1712 2219 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2069 1605 1396 1308 1228 1183 1158 1141 1119 1143 1168 1195 1244 1319 1425 1646 2085 
                        1931 1534 1378 1281 1214 1179 1143 1136 1124 1127 1152 1186 1236 1306 1406 1566 1938 
                        1826 1488 1361 1271 1207 1165 1134 1112 1111 1121 1140 1175 1227 1293 1381 1524 1855 
                        1738 1464 1347 1260 1201 1155 1126 1105 1094 1107 1135 1168 1216 1279 1370 1513 1764 
                        1687 1457 1335 1254 1195 1145 1108 1088 1081 1094 1124 1153 1207 1272 1360 1483 1735 
                        1648 1434 1324 1244 1189 1137 1096 1073 1060 1074 1104 1144 1197 1268 1345 1473 1674 
                        1600 1417 1299 1234 1177 1124 1087 1056 1047 1059 1098 1139 1195 1253 1337 1448 1660 
                        1589 1404 1302 1222 1169 1117 1074 1043 1036 1048 1081 1129 1182 1249 1327 1447 1635 
                        1596 1401 1299 1220 1164 1112 1068 1036 1024 1041 1082 1129 1181 1243 1324 1444 1634 
                        1606 1404 1299 1222 1169 1110 1072 1045 1026 1048 1081 1125 1182 1241 1327 1441 1643 
                        1617 1405 1297 1227 1168 1119 1078 1055 1038 1052 1091 1134 1185 1251 1337 1451 1642 
                        1639 1431 1309 1241 1176 1129 1096 1064 1059 1073 1101 1141 1193 1264 1343 1467 1688 
                        1683 1443 1327 1247 1188 1144 1113 1085 1072 1090 1119 1154 1205 1265 1346 1487 1726 
                        1754 1481 1358 1264 1203 1161 1122 1103 1097 1107 1133 1170 1220 1286 1381 1513 1790 
                        1843 1510 1366 1281 1220 1177 1145 1123 1116 1126 1158 1190 1231 1303 1405 1551 1891 
                        1972 1570 1406 1312 1238 1188 1166 1143 1131 1147 1166 1202 1252 1320 1428 1612 2006 
                        2101 1655 1422 1319 1242 1195 1178 1150 1145 1158 1184 1206 1271 1338 1452 1679 2150 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2069 1592 1393 1295 1228 1176 1156 1131 1131 1137 1148 1197 1242 1313 1418 1632 2085 
                        1945 1534 1382 1283 1212 1171 1139 1125 1117 1125 1150 1183 1234 1296 1400 1566 1958 
                        1803 1491 1352 1266 1203 1159 1127 1112 1106 1114 1138 1167 1222 1286 1384 1532 1849 
                        1723 1464 1342 1258 1199 1153 1119 1102 1096 1103 1129 1168 1214 1274 1367 1499 1775 
                        1687 1447 1327 1247 1188 1147 1113 1082 1073 1093 1119 1164 1203 1270 1362 1477 1726 
                        1643 1428 1317 1241 1182 1136 1095 1067 1057 1073 1102 1146 1205 1264 1345 1463 1661 
                        1608 1417 1307 1229 1176 1122 1080 1056 1045 1059 1091 1136 1185 1249 1332 1451 1660 
                        1597 1404 1297 1226 1167 1117 1077 1041 1030 1049 1080 1130 1182 1243 1329 1447 1635 
                        1605 1404 1294 1220 1164 1116 1070 1036 1024 1043 1079 1124 1181 1245 1324 1440 1630 
                        1601 1392 1292 1224 1162 1114 1072 1042 1028 1038 1081 1127 1175 1241 1319 1444 1622 
                        1596 1408 1304 1225 1168 1121 1077 1048 1040 1055 1089 1132 1189 1240 1329 1455 1655 
                        1639 1422 1317 1229 1170 1132 1091 1062 1051 1070 1098 1143 1193 1255 1343 1457 1674 
                        1702 1440 1327 1247 1191 1142 1106 1085 1075 1085 1114 1158 1210 1277 1354 1487 1731 
                        1749 1471 1350 1264 1199 1159 1129 1107 1097 1103 1131 1166 1220 1283 1375 1510 1785 
                        1832 1499 1378 1283 1216 1173 1141 1119 1109 1124 1149 1185 1227 1301 1402 1540 1855 
                        1972 1566 1397 1306 1232 1188 1158 1138 1127 1138 1158 1194 1241 1312 1422 1595 2006 
                        2085 1637 1428 1324 1242 1195 1174 1152 1143 1162 1166 1219 1261 1338 1442 1674 2134 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [1969 1580 1383 1279 1202 1166 1149 1110 1108 1121 1144 1172 1209 1287 1383 1593 2013 
                        1844 1506 1369 1271 1210 1151 1136 1109 1118 1120 1142 1175 1237 1294 1396 1518 1920 
                        1743 1468 1359 1273 1214 1162 1136 1121 1114 1121 1153 1186 1234 1280 1377 1500 1843 
                        1706 1458 1354 1270 1195 1163 1132 1118 1101 1112 1149 1180 1226 1300 1380 1500 1752 
                        1638 1443 1344 1278 1203 1160 1125 1096 1100 1111 1146 1177 1228 1285 1377 1484 1708 
                        1596 1434 1322 1246 1194 1153 1104 1082 1067 1077 1119 1164 1212 1273 1362 1463 1675 
                        1575 1410 1319 1238 1176 1127 1095 1060 1037 1060 1095 1147 1193 1258 1334 1419 1638 
                        1549 1400 1303 1213 1165 1117 1078 1035 1030 1057 1092 1133 1183 1245 1326 1437 1609 
                        1552 1393 1291 1221 1157 1110 1075 1033 1024 1041 1080 1120 1179 1247 1329 1421 1612 
                        1549 1391 1281 1213 1160 1117 1073 1044 1030 1044 1078 1133 1188 1232 1311 1427 1609 
                        1551 1401 1288 1225 1176 1116 1076 1047 1033 1051 1090 1132 1187 1258 1311 1448 1625 
                        1584 1415 1322 1233 1171 1142 1090 1068 1062 1077 1104 1142 1206 1266 1337 1443 1675 
                        1652 1434 1336 1257 1197 1154 1110 1096 1081 1096 1125 1177 1215 1271 1369 1474 1708 
                        1721 1479 1345 1278 1213 1169 1127 1107 1101 1112 1149 1174 1239 1300 1388 1511 1784 
                        1809 1500 1368 1273 1220 1168 1136 1131 1119 1131 1153 1186 1240 1303 1395 1535 1861 
                        1920 1541 1387 1294 1230 1175 1153 1125 1124 1142 1159 1181 1251 1317 1387 1566 1961 
                        2013 1593 1412 1303 1237 1172 1149 1144 1130 1149 1180 1211 1251 1328 1443 1620 2108 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="11" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 18]">
                        2592x1944_TL84_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        TL84
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [4165 3139 2742 2393 2256 2113 2053 1969 1969 1951 1996 2043 2221 2329 2641 3209 3902 
                        3734 2927 2475 2304 2199 1978 1859 1783 1797 1828 1892 2005 2034 2268 2434 2947 3610 
                        3094 2625 2329 2177 2043 1875 1719 1647 1604 1622 1705 1820 1942 2144 2329 2609 3232 
                        2927 2504 2210 2043 1892 1699 1581 1444 1449 1468 1558 1679 1859 1987 2188 2461 2927 
                        2724 2380 2166 1996 1761 1525 1411 1341 1305 1313 1406 1536 1740 1925 2113 2354 2690 
                        2690 2354 2093 1892 1635 1483 1313 1207 1171 1210 1305 1420 1628 1851 2015 2199 2548 
                        2578 2244 2015 1783 1628 1384 1207 1116 1097 1125 1224 1337 1541 1797 2015 2166 2461 
                        2548 2233 1951 1805 1488 1325 1180 1086 1044 1097 1171 1278 1520 1733 1996 2233 2447 
                        2594 2188 2005 1733 1515 1297 1146 1046 1024 1088 1155 1285 1463 1699 1908 2134 2420 
                        2533 2210 1960 1726 1536 1317 1168 1099 1056 1080 1164 1270 1494 1685 1942 2063 2461 
                        2578 2280 2024 1761 1553 1354 1227 1128 1088 1111 1197 1329 1515 1685 1960 2134 2489 
                        2658 2233 2093 1820 1616 1430 1297 1227 1190 1190 1267 1384 1604 1797 1951 2233 2533 
                        2850 2380 2083 1908 1699 1499 1397 1313 1263 1309 1397 1536 1699 1875 2053 2316 2658 
                        3072 2434 2210 1996 1843 1653 1515 1449 1402 1420 1494 1622 1761 1951 2144 2393 2967 
                        3209 2609 2292 2063 1917 1790 1660 1592 1569 1558 1647 1747 1900 2043 2233 2625 3116 
                        3734 2987 2461 2210 2072 1925 1859 1828 1747 1712 1783 1942 2034 2199 2406 2850 3766 
                        4512 3465 2850 2393 2166 2166 2005 2043 1900 1875 1900 2072 2244 2367 2777 3209 4760 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3228 2415 2148 1962 1805 1805 1729 1656 1633 1618 1648 1734 1805 1929 2085 2519 3243 
                        2802 2304 2013 1848 1738 1656 1614 1546 1533 1570 1570 1656 1696 1815 1962 2238 2736 
                        2556 2103 1873 1773 1672 1578 1500 1468 1415 1432 1481 1519 1633 1704 1848 2030 2415 
                        2319 1995 1819 1692 1595 1478 1401 1309 1302 1332 1371 1459 1523 1648 1729 1940 2209 
                        2097 1893 1742 1633 1487 1379 1290 1229 1208 1218 1276 1352 1453 1560 1656 1805 2110 
                        2097 1843 1738 1606 1438 1299 1224 1183 1119 1150 1201 1273 1401 1493 1644 1738 2042 
                        2097 1829 1684 1536 1398 1273 1185 1093 1069 1094 1143 1231 1329 1456 1563 1708 1919 
                        1984 1791 1633 1500 1337 1224 1132 1066 1044 1061 1117 1199 1304 1438 1553 1700 1853 
                        1956 1778 1614 1475 1350 1224 1098 1044 1027 1041 1086 1177 1271 1424 1526 1652 1834 
                        1962 1751 1636 1506 1329 1216 1114 1042 1024 1047 1098 1158 1264 1398 1529 1652 1883 
                        2078 1773 1640 1500 1365 1222 1156 1093 1041 1083 1128 1206 1299 1426 1533 1668 1951 
                        2066 1888 1636 1529 1404 1288 1201 1119 1114 1121 1169 1222 1337 1435 1546 1712 1951 
                        2189 1903 1708 1588 1453 1360 1260 1191 1167 1201 1227 1290 1398 1468 1592 1778 2110 
                        2319 1984 1729 1606 1556 1412 1324 1257 1246 1248 1312 1381 1444 1553 1660 1848 2142 
                        2475 2072 1810 1692 1603 1459 1415 1350 1342 1355 1404 1426 1550 1595 1747 1990 2312 
                        2955 2281 1990 1734 1672 1581 1529 1497 1435 1459 1484 1529 1595 1696 1898 2209 2882 
                        3574 2643 2162 1962 1810 1652 1629 1614 1574 1603 1606 1621 1696 1898 2116 2510 3726 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3587 2498 2119 1911 1784 1673 1677 1608 1597 1554 1615 1677 1740 1826 2033 2454 3136 
                        2753 2286 2027 1841 1710 1626 1554 1524 1498 1547 1537 1615 1693 1762 1911 2271 2711 
                        2553 2113 1885 1753 1657 1568 1472 1396 1404 1388 1445 1517 1593 1661 1817 1998 2428 
                        2403 1998 1821 1706 1551 1442 1377 1302 1290 1288 1366 1419 1541 1634 1702 1921 2227 
                        2220 1916 1718 1626 1498 1366 1276 1212 1198 1212 1265 1340 1445 1541 1661 1821 2100 
                        2100 1865 1731 1600 1454 1300 1208 1147 1135 1141 1200 1274 1377 1498 1623 1757 2039 
                        2165 1831 1693 1544 1385 1256 1156 1095 1068 1083 1158 1212 1332 1454 1597 1714 1948 
                        2045 1821 1650 1514 1355 1236 1114 1052 1036 1060 1101 1191 1295 1413 1565 1689 1901 
                        1970 1798 1657 1524 1345 1212 1100 1038 1024 1053 1100 1173 1276 1404 1527 1677 1826 
                        1976 1793 1630 1479 1332 1210 1110 1052 1038 1045 1091 1173 1286 1399 1511 1661 1875 
                        2033 1807 1661 1541 1379 1233 1156 1084 1055 1074 1145 1212 1302 1445 1524 1669 1890 
                        2152 1845 1681 1572 1410 1288 1202 1145 1119 1134 1185 1260 1363 1460 1579 1714 1993 
                        2256 1906 1753 1604 1472 1348 1276 1208 1191 1200 1210 1330 1390 1507 1611 1784 2051 
                        2355 1998 1762 1634 1534 1448 1330 1276 1249 1279 1315 1385 1476 1593 1698 1841 2179 
                        2507 2165 1855 1702 1586 1494 1416 1379 1327 1382 1399 1466 1534 1630 1748 2021 2445 
                        3015 2316 1959 1807 1650 1608 1501 1479 1466 1479 1488 1544 1634 1718 1921 2199 2786 
                        3550 2629 2199 1959 1784 1698 1653 1615 1611 1568 1600 1638 1727 1901 2172 2619 3681 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [2958 2330 1941 1705 1611 1562 1528 1487 1491 1511 1495 1511 1588 1715 1889 2282 3106 
                        2577 2094 1845 1659 1593 1528 1467 1423 1391 1437 1445 1495 1557 1649 1786 2086 2588 
                        2301 1921 1720 1630 1532 1441 1374 1334 1331 1344 1391 1408 1471 1553 1679 1921 2282 
                        2063 1827 1630 1562 1483 1354 1328 1265 1242 1248 1279 1354 1445 1511 1611 1792 2078 
                        2048 1736 1579 1519 1405 1306 1254 1190 1172 1170 1226 1306 1387 1471 1523 1664 1883 
                        1969 1684 1566 1467 1322 1265 1177 1134 1112 1123 1162 1223 1338 1412 1515 1621 1876 
                        1908 1649 1549 1426 1303 1208 1148 1081 1075 1075 1127 1187 1294 1398 1503 1593 1792 
                        1858 1664 1536 1398 1300 1175 1130 1045 1059 1055 1107 1172 1268 1360 1456 1571 1775 
                        1845 1640 1515 1391 1300 1192 1105 1047 1035 1045 1094 1155 1226 1341 1479 1544 1758 
                        1864 1644 1491 1394 1294 1187 1105 1053 1045 1024 1109 1158 1245 1341 1445 1562 1736 
                        1895 1674 1544 1391 1300 1213 1125 1075 1069 1079 1143 1195 1279 1367 1467 1584 1792 
                        1990 1689 1571 1464 1347 1254 1172 1150 1127 1120 1155 1223 1291 1391 1467 1602 1827 
                        2018 1753 1579 1495 1364 1282 1226 1180 1177 1177 1210 1274 1341 1445 1536 1710 1990 
                        2193 1864 1635 1523 1456 1367 1288 1240 1223 1234 1265 1347 1419 1483 1571 1764 2167 
                        2400 1941 1684 1544 1503 1445 1360 1338 1294 1316 1334 1381 1456 1536 1644 1889 2330 
                        2754 2110 1804 1649 1562 1511 1441 1423 1405 1415 1419 1479 1519 1597 1798 2167 2650 
                        3584 2431 2055 1764 1640 1593 1575 1532 1515 1532 1519 1584 1649 1781 1983 2431 3348 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="12" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 17]">
                        2592x1944_TL84_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        TL84
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2059 1607 1391 1280 1225 1171 1147 1116 1108 1116 1144 1180 1239 1304 1410 1621 2059 
                        1907 1517 1357 1259 1192 1140 1114 1093 1089 1101 1120 1155 1209 1270 1380 1547 1927 
                        1804 1461 1326 1240 1174 1131 1096 1077 1066 1079 1104 1137 1190 1254 1347 1488 1813 
                        1700 1436 1313 1227 1165 1114 1081 1056 1055 1065 1083 1127 1177 1238 1333 1472 1723 
                        1652 1426 1308 1225 1162 1114 1082 1050 1043 1055 1084 1119 1179 1235 1328 1451 1702 
                        1622 1417 1298 1238 1159 1115 1070 1044 1034 1048 1086 1123 1177 1238 1329 1456 1662 
                        1618 1416 1310 1233 1165 1116 1073 1041 1033 1047 1080 1128 1182 1246 1330 1460 1651 
                        1615 1424 1306 1227 1168 1112 1067 1044 1026 1040 1076 1130 1180 1256 1334 1463 1661 
                        1618 1418 1309 1232 1165 1116 1071 1035 1024 1040 1076 1121 1185 1245 1336 1456 1658 
                        1615 1420 1303 1230 1160 1109 1065 1038 1020 1038 1081 1117 1177 1250 1326 1458 1648 
                        1631 1421 1307 1220 1156 1103 1059 1032 1025 1038 1068 1123 1167 1236 1330 1450 1651 
                        1635 1417 1298 1218 1154 1108 1070 1042 1032 1044 1079 1121 1174 1234 1321 1456 1676 
                        1652 1416 1304 1221 1156 1106 1072 1050 1041 1053 1079 1122 1173 1242 1320 1451 1695 
                        1731 1446 1313 1227 1162 1114 1088 1058 1055 1060 1093 1130 1180 1238 1333 1466 1746 
                        1795 1472 1334 1243 1171 1126 1099 1084 1080 1089 1104 1148 1190 1268 1356 1516 1830 
                        1937 1529 1384 1278 1209 1167 1133 1109 1105 1106 1136 1170 1222 1286 1394 1572 1958 
                        2071 1642 1431 1304 1232 1177 1150 1136 1125 1133 1159 1193 1250 1317 1441 1657 2120 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2059 1593 1377 1274 1224 1164 1146 1118 1116 1126 1138 1177 1226 1296 1404 1607 2043 
                        1878 1509 1349 1266 1198 1149 1121 1103 1100 1107 1127 1157 1203 1272 1364 1529 1919 
                        1778 1457 1321 1235 1177 1136 1101 1087 1079 1089 1114 1138 1188 1252 1359 1490 1789 
                        1684 1429 1307 1219 1162 1120 1087 1073 1066 1074 1099 1135 1179 1240 1326 1456 1709 
                        1637 1413 1292 1224 1160 1112 1082 1063 1048 1066 1092 1126 1180 1245 1330 1437 1666 
                        1615 1400 1296 1211 1158 1119 1076 1047 1040 1050 1089 1126 1179 1240 1320 1443 1647 
                        1596 1404 1295 1222 1159 1124 1078 1045 1032 1048 1081 1122 1180 1240 1327 1433 1631 
                        1588 1412 1295 1223 1157 1113 1074 1043 1026 1043 1082 1125 1177 1243 1329 1438 1641 
                        1591 1399 1285 1218 1163 1113 1072 1035 1024 1039 1081 1125 1183 1241 1329 1448 1635 
                        1597 1403 1295 1216 1163 1108 1070 1036 1021 1040 1082 1123 1175 1240 1321 1442 1627 
                        1609 1401 1293 1216 1157 1112 1073 1038 1031 1053 1081 1129 1176 1236 1316 1450 1631 
                        1619 1410 1286 1220 1161 1114 1078 1047 1040 1055 1084 1124 1175 1233 1323 1453 1661 
                        1652 1413 1302 1217 1158 1119 1088 1055 1054 1062 1092 1131 1182 1235 1324 1454 1685 
                        1720 1439 1315 1226 1171 1127 1096 1078 1060 1076 1104 1137 1185 1245 1340 1464 1730 
                        1783 1468 1335 1245 1184 1142 1119 1091 1086 1093 1123 1150 1201 1270 1365 1510 1837 
                        1912 1538 1373 1269 1203 1166 1133 1114 1109 1114 1137 1174 1223 1296 1386 1567 1954 
                        2067 1603 1407 1296 1231 1175 1154 1126 1132 1138 1161 1195 1249 1322 1435 1661 2109 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2054 1586 1369 1284 1202 1168 1140 1122 1108 1122 1142 1176 1221 1306 1406 1596 2070 
                        1881 1499 1350 1258 1193 1147 1116 1099 1094 1103 1125 1159 1207 1271 1372 1536 1908 
                        1752 1455 1320 1232 1177 1132 1101 1084 1076 1082 1113 1145 1192 1254 1349 1489 1798 
                        1667 1427 1309 1223 1160 1118 1085 1066 1062 1073 1097 1131 1185 1239 1331 1462 1722 
                        1626 1406 1299 1214 1158 1118 1082 1058 1043 1063 1088 1124 1174 1239 1320 1446 1683 
                        1617 1405 1295 1215 1157 1117 1073 1046 1039 1049 1082 1120 1177 1244 1319 1442 1644 
                        1594 1397 1297 1220 1158 1112 1070 1041 1031 1045 1081 1124 1178 1242 1321 1442 1624 
                        1586 1405 1292 1220 1159 1109 1065 1037 1024 1046 1077 1125 1181 1240 1326 1440 1634 
                        1589 1408 1292 1220 1159 1118 1068 1035 1024 1041 1075 1123 1179 1249 1323 1443 1624 
                        1574 1396 1297 1216 1157 1106 1068 1030 1024 1036 1077 1121 1177 1244 1315 1440 1616 
                        1589 1406 1289 1217 1160 1105 1067 1038 1029 1045 1078 1120 1174 1237 1315 1435 1638 
                        1613 1396 1287 1217 1159 1110 1073 1044 1031 1050 1084 1126 1177 1237 1319 1445 1649 
                        1654 1409 1294 1219 1158 1111 1085 1055 1045 1058 1093 1129 1176 1235 1326 1446 1693 
                        1707 1427 1303 1225 1172 1125 1092 1068 1062 1073 1101 1132 1183 1246 1339 1458 1738 
                        1780 1466 1331 1240 1177 1128 1110 1096 1086 1089 1115 1151 1194 1257 1355 1496 1803 
                        1894 1519 1369 1268 1200 1155 1131 1108 1099 1114 1138 1165 1214 1295 1379 1574 1963 
                        2070 1605 1399 1304 1235 1179 1148 1127 1120 1127 1152 1181 1248 1315 1423 1658 2130 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [1945 1535 1373 1259 1186 1153 1115 1100 1098 1116 1121 1159 1212 1281 1382 1535 2031 
                        1810 1480 1334 1237 1164 1123 1109 1095 1084 1095 1109 1145 1201 1259 1360 1491 1845 
                        1671 1435 1311 1234 1163 1134 1106 1082 1071 1082 1111 1140 1187 1255 1335 1476 1746 
                        1640 1437 1307 1213 1165 1126 1089 1071 1061 1080 1108 1141 1194 1253 1323 1446 1710 
                        1618 1396 1307 1221 1161 1129 1088 1071 1065 1080 1107 1150 1184 1248 1354 1433 1671 
                        1578 1406 1309 1231 1166 1128 1088 1062 1057 1071 1097 1144 1194 1257 1332 1453 1667 
                        1594 1410 1307 1236 1176 1123 1089 1046 1045 1063 1093 1139 1194 1256 1353 1429 1619 
                        1556 1392 1314 1237 1166 1115 1072 1052 1034 1048 1090 1140 1200 1256 1329 1437 1628 
                        1571 1412 1295 1227 1163 1122 1074 1045 1024 1049 1083 1127 1185 1259 1324 1431 1607 
                        1545 1383 1285 1224 1161 1110 1067 1035 1022 1043 1085 1130 1177 1250 1322 1428 1604 
                        1558 1375 1278 1218 1154 1109 1070 1042 1029 1046 1089 1118 1188 1249 1322 1429 1619 
                        1566 1370 1294 1219 1160 1113 1074 1049 1040 1062 1083 1123 1183 1238 1317 1434 1628 
                        1605 1405 1284 1215 1161 1109 1088 1071 1056 1066 1097 1124 1190 1254 1330 1433 1671 
                        1640 1427 1307 1233 1165 1131 1098 1076 1065 1080 1113 1141 1188 1253 1331 1456 1710 
                        1746 1445 1319 1234 1175 1129 1101 1097 1086 1087 1121 1145 1193 1262 1343 1486 1778 
                        1845 1513 1351 1266 1195 1145 1120 1105 1099 1105 1125 1168 1214 1288 1387 1536 1900 
                        2031 1598 1411 1289 1226 1171 1143 1138 1125 1127 1143 1189 1254 1321 1441 1611 2077 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="13" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2592x1944_HZ_100
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 2]">
                        HZ
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [100.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [5506 4085 3377 3003 2743 2602 2475 2397 2382 2296 2499 2593 2743 2922 3423 3837 5277 
                        4392 3567 3064 2878 2611 2382 2261 2134 2076 2122 2275 2397 2550 2773 3064 3653 4577 
                        3877 3392 2922 2666 2428 2165 1963 1890 1809 1849 1989 2202 2352 2602 2856 3233 3896 
                        3688 3127 2793 2524 2268 1963 1751 1606 1603 1631 1747 1943 2134 2382 2694 3039 3534 
                        3423 2968 2714 2374 2015 1775 1557 1420 1352 1420 1523 1739 2010 2275 2638 2783 3362 
                        3318 2835 2567 2190 1871 1620 1384 1260 1226 1264 1389 1538 1835 2134 2428 2804 3233 
                        3114 2793 2404 2070 1775 1505 1273 1165 1098 1131 1258 1464 1707 2059 2374 2638 3127 
                        3153 2733 2374 2054 1711 1399 1204 1089 1044 1078 1193 1381 1652 1984 2309 2629 3089 
                        3052 2714 2420 2010 1674 1394 1184 1027 1024 1044 1176 1324 1610 1953 2275 2611 2956 
                        3089 2714 2428 2010 1692 1420 1182 1066 1044 1076 1164 1384 1624 1953 2255 2584 2856 
                        3153 2704 2420 2116 1751 1475 1275 1136 1087 1141 1248 1404 1670 1963 2338 2558 3039 
                        3220 2783 2435 2159 1853 1554 1354 1248 1200 1226 1333 1514 1755 2076 2367 2647 3052 
                        3584 2889 2584 2309 1984 1696 1514 1392 1345 1371 1472 1711 1919 2171 2459 2814 3304 
                        3635 3052 2666 2435 2111 1890 1715 1583 1538 1567 1681 1822 2082 2289 2611 2945 3454 
                        3877 3304 2825 2516 2324 2105 1900 1788 1755 1775 1909 2026 2235 2412 2694 3233 3837 
                        4605 3518 3015 2723 2435 2338 2111 2010 2015 2015 2093 2235 2404 2647 2980 3551 4443 
                        5628 3999 3347 2956 2783 2558 2467 2275 2268 2241 2324 2459 2685 2922 3318 3957 5670 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [3662 2830 2314 2200 2002 1910 1853 1805 1820 1774 1789 1928 2015 2154 2289 2672 3277 
                        3193 2573 2306 2048 1933 1847 1779 1744 1669 1701 1764 1831 1904 2008 2125 2461 3129 
                        2707 2376 2021 1910 1799 1739 1626 1572 1526 1564 1656 1687 1847 1859 1995 2223 2743 
                        2583 2177 1970 1864 1687 1600 1497 1438 1405 1428 1497 1568 1669 1789 1933 2132 2471 
                        2422 2096 1916 1779 1617 1482 1384 1311 1302 1300 1377 1438 1560 1710 1826 2002 2332 
                        2147 2028 1898 1706 1541 1409 1273 1228 1179 1202 1271 1390 1511 1630 1769 1887 2139 
                        2240 1983 1853 1613 1461 1325 1202 1149 1094 1126 1188 1276 1415 1537 1678 1864 2089 
                        2162 1958 1779 1596 1418 1265 1142 1081 1027 1061 1124 1253 1371 1522 1674 1820 2062 
                        2132 1928 1759 1596 1390 1245 1138 1048 1024 1029 1122 1211 1348 1489 1647 1799 2075 
                        2192 1946 1754 1572 1405 1253 1149 1061 1031 1052 1126 1216 1359 1507 1660 1769 2015 
                        2208 1952 1779 1584 1441 1278 1186 1106 1077 1081 1181 1260 1359 1504 1647 1779 2103 
                        2232 1989 1847 1656 1500 1342 1253 1179 1162 1166 1248 1297 1435 1564 1669 1837 2062 
                        2385 2048 1842 1696 1556 1431 1330 1263 1240 1258 1327 1402 1507 1638 1759 1958 2240 
                        2500 2154 1916 1754 1660 1572 1455 1359 1339 1362 1435 1500 1592 1665 1815 2028 2395 
                        2707 2297 2028 1842 1739 1617 1545 1493 1468 1458 1515 1592 1647 1739 1939 2177 2649 
                        3008 2510 2162 1952 1847 1734 1656 1613 1605 1580 1634 1643 1749 1870 2041 2385 3022 
                        3773 2817 2432 2110 1910 1870 1725 1779 1774 1692 1769 1784 1904 2055 2358 2743 3820 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [3623 2753 2401 2107 1992 1817 1828 1721 1702 1661 1731 1828 1883 2011 2278 2791 3623 
                        3022 2614 2228 1992 1912 1780 1688 1643 1609 1609 1716 1755 1801 1973 2144 2449 2922 
                        2922 2365 2072 1967 1770 1688 1584 1518 1482 1486 1560 1635 1755 1918 2038 2237 2614 
                        2636 2237 2031 1860 1735 1580 1479 1380 1380 1371 1458 1533 1639 1765 1918 2122 2383 
                        2420 2114 1967 1811 1665 1458 1368 1277 1246 1270 1338 1441 1564 1726 1860 2011 2374 
                        2401 2051 1912 1750 1605 1371 1267 1189 1149 1189 1246 1338 1515 1656 1775 1973 2093 
                        2253 2045 1855 1679 1472 1324 1201 1124 1066 1108 1167 1304 1472 1609 1801 1872 2093 
                        2320 2025 1866 1661 1482 1310 1137 1055 1031 1074 1147 1249 1371 1557 1735 1866 2114 
                        2295 2018 1844 1618 1454 1291 1139 1054 1026 1036 1118 1239 1392 1545 1726 1889 2100 
                        2228 2025 1844 1609 1444 1275 1143 1046 1024 1052 1128 1252 1402 1533 1697 1855 2093 
                        2261 2051 1833 1670 1500 1307 1187 1102 1041 1083 1173 1267 1392 1601 1726 1942 2122 
                        2508 2086 1900 1665 1537 1365 1262 1194 1143 1173 1222 1310 1458 1593 1731 1924 2295 
                        2560 2107 1967 1765 1618 1454 1332 1275 1224 1229 1318 1414 1533 1679 1801 1961 2347 
                        2682 2278 1979 1849 1679 1545 1437 1371 1318 1318 1405 1500 1630 1726 1849 2151 2581 
                        2868 2411 2122 1860 1785 1639 1522 1479 1437 1472 1522 1589 1697 1822 1992 2245 2670 
                        3367 2592 2221 1992 1838 1721 1665 1589 1541 1593 1630 1688 1765 1918 2093 2478 3052 
                        4076 3082 2468 2114 1930 1877 1740 1817 1683 1648 1731 1844 1866 2129 2221 2717 4049 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [3224 2485 2169 1940 1741 1864 1692 1704 1668 1657 1645 1680 1754 1940 2057 2339 3458 
                        2681 2272 1956 1808 1808 1754 1704 1580 1580 1570 1645 1634 1704 1835 1940 2317 2841 
                        2485 2111 1909 1780 1729 1657 1559 1529 1539 1510 1549 1591 1668 1754 1879 2093 2593 
                        2294 2057 1767 1754 1668 1549 1420 1429 1387 1437 1482 1510 1657 1692 1767 1988 2230 
                        2209 1835 1794 1668 1580 1510 1412 1333 1333 1318 1437 1529 1591 1634 1754 1893 2189 
                        2149 1879 1754 1668 1520 1420 1340 1236 1211 1269 1318 1412 1501 1657 1704 1924 2075 
                        2075 1879 1729 1634 1520 1348 1243 1181 1131 1142 1243 1340 1473 1601 1704 1780 2005 
                        2093 1893 1754 1570 1412 1297 1205 1080 1051 1120 1164 1340 1455 1529 1645 1754 2022 
                        2189 1835 1692 1570 1455 1311 1181 1070 1024 1080 1187 1304 1437 1559 1601 1794 1972 
                        2039 1850 1729 1580 1482 1311 1187 1094 1051 1089 1175 1311 1446 1570 1692 1704 2005 
                        2093 1864 1680 1601 1491 1348 1217 1147 1120 1164 1217 1340 1446 1559 1668 1794 2039 
                        2251 1909 1754 1612 1529 1412 1371 1230 1205 1205 1283 1387 1501 1570 1692 1864 2057 
                        2251 1940 1767 1668 1601 1437 1387 1311 1326 1333 1371 1455 1491 1634 1704 1879 2251 
                        2565 2075 1850 1680 1645 1520 1473 1412 1395 1363 1429 1482 1601 1645 1794 1988 2339 
                        2651 2189 1924 1692 1692 1612 1570 1491 1491 1520 1491 1559 1612 1668 1835 2130 2593 
                        2807 2362 2005 1808 1741 1668 1612 1520 1591 1591 1601 1668 1741 1794 2039 2294 2945 
                        3615 2711 2230 2057 1864 1741 1729 1704 1692 1680 1704 1767 1850 1956 2189 2711 3458 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="14" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 15]">
                        2592x1944_HZ_70
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 2]">
                        HZ
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [70.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [2070 1653 1458 1318 1247 1214 1168 1138 1134 1145 1172 1210 1262 1345 1479 1681 2167 
                        1948 1566 1403 1304 1229 1170 1130 1106 1100 1120 1133 1174 1233 1309 1416 1616 1962 
                        1843 1508 1362 1272 1199 1146 1112 1083 1084 1093 1119 1157 1208 1286 1397 1545 1878 
                        1756 1470 1347 1252 1180 1123 1092 1065 1057 1062 1092 1133 1188 1261 1369 1498 1797 
                        1700 1463 1338 1247 1177 1112 1082 1051 1046 1056 1094 1128 1196 1260 1370 1496 1738 
                        1687 1457 1335 1246 1174 1116 1074 1042 1028 1044 1084 1123 1193 1259 1356 1490 1715 
                        1677 1458 1342 1245 1185 1120 1067 1037 1022 1040 1075 1123 1192 1257 1363 1497 1695 
                        1687 1467 1355 1256 1176 1126 1075 1032 1022 1043 1078 1130 1199 1265 1361 1499 1733 
                        1699 1476 1342 1258 1190 1125 1080 1037 1024 1045 1080 1135 1197 1271 1379 1516 1717 
                        1678 1467 1350 1256 1173 1126 1075 1040 1025 1046 1075 1130 1195 1269 1366 1513 1714 
                        1704 1478 1342 1245 1181 1127 1075 1046 1032 1046 1084 1130 1192 1271 1369 1504 1741 
                        1705 1470 1340 1254 1177 1119 1087 1050 1037 1053 1090 1136 1196 1277 1377 1517 1743 
                        1738 1469 1348 1264 1173 1128 1094 1059 1048 1062 1091 1146 1192 1278 1370 1510 1748 
                        1766 1498 1363 1266 1184 1137 1095 1068 1063 1068 1105 1151 1208 1275 1380 1519 1797 
                        1866 1515 1397 1281 1208 1157 1115 1096 1090 1096 1119 1164 1216 1306 1397 1576 1902 
                        1962 1599 1435 1314 1247 1186 1148 1130 1124 1134 1155 1190 1242 1340 1448 1624 2045 
                        2150 1691 1486 1362 1271 1232 1188 1161 1153 1168 1192 1227 1281 1368 1479 1720 2202 ]
                    </LSC_SAMPLES_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [2000 1579 1381 1295 1209 1171 1143 1130 1110 1127 1146 1174 1230 1310 1398 1628 2028 
                        1865 1488 1329 1249 1188 1149 1111 1096 1091 1099 1120 1156 1203 1281 1366 1523 1888 
                        1740 1442 1312 1229 1165 1126 1090 1074 1069 1077 1106 1136 1187 1237 1342 1487 1779 
                        1679 1408 1282 1210 1150 1104 1077 1054 1052 1062 1086 1126 1167 1230 1320 1449 1706 
                        1634 1398 1282 1215 1145 1098 1064 1036 1039 1047 1086 1116 1166 1231 1310 1433 1667 
                        1587 1384 1277 1204 1144 1106 1058 1039 1022 1047 1075 1122 1171 1235 1308 1429 1633 
                        1595 1387 1298 1212 1158 1104 1068 1031 1024 1038 1076 1117 1171 1235 1316 1449 1626 
                        1583 1406 1296 1218 1157 1111 1060 1031 1030 1039 1074 1123 1181 1250 1328 1445 1660 
                        1586 1397 1299 1225 1153 1107 1070 1038 1024 1041 1076 1125 1180 1248 1326 1442 1639 
                        1590 1395 1301 1222 1164 1108 1071 1036 1025 1044 1074 1126 1185 1242 1338 1451 1636 
                        1595 1387 1284 1219 1164 1108 1073 1041 1021 1041 1079 1123 1178 1247 1326 1443 1634 
                        1610 1395 1286 1208 1154 1112 1075 1044 1035 1047 1086 1122 1171 1243 1327 1446 1658 
                        1643 1404 1291 1215 1155 1110 1078 1052 1053 1049 1089 1123 1180 1239 1324 1445 1684 
                        1679 1431 1296 1218 1167 1113 1083 1065 1060 1068 1095 1129 1174 1238 1340 1462 1724 
                        1750 1455 1322 1233 1179 1129 1103 1086 1078 1083 1109 1149 1190 1259 1363 1494 1799 
                        1888 1516 1360 1272 1196 1163 1134 1109 1100 1112 1134 1167 1215 1290 1388 1559 1960 
                        2056 1579 1410 1295 1221 1182 1157 1133 1124 1133 1161 1198 1243 1330 1428 1653 2100 ]
                    </LSC_SAMPLES_greenR>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [2043 1586 1383 1299 1222 1184 1156 1129 1130 1136 1156 1191 1243 1299 1430 1626 2043 
                        1870 1510 1353 1263 1201 1155 1127 1109 1110 1112 1137 1169 1221 1290 1375 1560 1927 
                        1746 1451 1321 1243 1174 1132 1103 1081 1082 1093 1116 1149 1196 1264 1356 1502 1805 
                        1661 1428 1301 1220 1156 1120 1093 1058 1061 1072 1096 1130 1184 1248 1330 1464 1713 
                        1610 1407 1296 1213 1165 1117 1088 1056 1044 1065 1082 1129 1172 1241 1324 1442 1658 
                        1618 1410 1300 1218 1164 1116 1073 1049 1039 1052 1087 1132 1184 1245 1323 1455 1657 
                        1603 1407 1303 1225 1168 1115 1075 1046 1039 1051 1078 1127 1195 1249 1335 1446 1666 
                        1613 1409 1306 1232 1167 1121 1076 1041 1032 1051 1092 1133 1195 1256 1343 1460 1668 
                        1601 1412 1308 1231 1173 1126 1078 1043 1024 1051 1083 1141 1197 1262 1341 1469 1639 
                        1605 1415 1310 1232 1167 1121 1081 1044 1034 1054 1084 1136 1188 1268 1348 1460 1668 
                        1589 1412 1299 1233 1164 1121 1078 1040 1036 1056 1092 1133 1188 1257 1345 1464 1650 
                        1618 1415 1304 1221 1167 1119 1079 1057 1045 1062 1096 1135 1188 1253 1342 1461 1690 
                        1666 1413 1300 1225 1159 1120 1085 1065 1055 1065 1090 1139 1186 1253 1343 1460 1709 
                        1704 1428 1315 1224 1174 1123 1090 1074 1064 1077 1105 1143 1195 1256 1355 1477 1731 
                        1756 1476 1331 1251 1193 1146 1119 1093 1082 1090 1119 1149 1200 1272 1372 1522 1847 
                        1858 1524 1364 1267 1217 1162 1137 1122 1113 1122 1143 1184 1225 1299 1391 1582 1951 
                        2016 1618 1407 1314 1227 1184 1167 1146 1133 1150 1170 1207 1279 1329 1437 1669 2115 ]
                    </LSC_SAMPLES_greenB>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [1816 1453 1326 1235 1196 1142 1111 1098 1102 1110 1111 1155 1211 1251 1345 1503 1900 
                        1666 1384 1257 1209 1148 1112 1107 1106 1087 1073 1107 1136 1188 1240 1309 1428 1699 
                        1589 1339 1272 1195 1150 1104 1078 1067 1071 1067 1088 1127 1176 1240 1307 1400 1649 
                        1570 1349 1250 1206 1136 1104 1078 1038 1051 1058 1100 1127 1174 1221 1300 1388 1570 
                        1470 1316 1256 1199 1131 1089 1075 1056 1040 1046 1086 1111 1168 1227 1288 1393 1571 
                        1491 1334 1257 1201 1146 1104 1069 1040 1034 1040 1079 1126 1159 1229 1289 1392 1567 
                        1506 1312 1269 1199 1157 1125 1079 1050 1025 1060 1079 1114 1182 1240 1301 1385 1556 
                        1467 1355 1261 1219 1151 1109 1075 1046 1022 1056 1085 1131 1202 1247 1326 1393 1592 
                        1518 1340 1295 1208 1154 1111 1067 1039 1024 1048 1087 1145 1191 1250 1328 1416 1568 
                        1515 1355 1277 1205 1151 1109 1075 1037 1022 1056 1085 1143 1189 1247 1326 1393 1592 
                        1482 1347 1254 1199 1145 1114 1069 1041 1044 1050 1089 1125 1169 1240 1318 1405 1610 
                        1491 1334 1257 1215 1159 1115 1079 1050 1044 1060 1090 1137 1184 1243 1340 1392 1594 
                        1519 1353 1256 1199 1143 1123 1086 1066 1049 1056 1097 1134 1181 1242 1305 1393 1627 
                        1570 1349 1266 1192 1149 1115 1078 1068 1062 1058 1100 1139 1174 1235 1317 1409 1657 
                        1589 1379 1256 1210 1163 1127 1100 1088 1071 1088 1111 1127 1176 1240 1343 1421 1714 
                        1666 1384 1291 1224 1148 1124 1119 1106 1087 1095 1131 1162 1188 1272 1346 1451 1807 
                        1739 1477 1326 1235 1196 1142 1148 1098 1126 1135 1136 1182 1226 1303 1386 1529 1900 ]
                    </LSC_SAMPLES_blue>
                </cell>
                <cell index="14" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2592x1944_GRAY_0
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2592x1944
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        GRAY
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [162 162 162 162 162 162 162 162 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [121 122 121 122 121 122 121 122 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [0.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                </cell>
                <cell index="14" type="struct" size="[1 1]">
                    <name index="1" type="char" size="[1 16]">
                        2560x1440_GRAY_0
                    </name>
                    <resolution index="1" type="char" size="[1 9]">
                        2560x1440
                    </resolution>
                    <illumination index="1" type="char" size="[1 4]">
                        GRAY
                    </illumination>
                    <LSC_sectors index="1" type="double" size="[1 1]">
                        [16 ]
                    </LSC_sectors>
                    <LSC_No index="1" type="double" size="[1 1]">
                        [10 ]
                    </LSC_No>
                    <LSC_Xo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Xo>
                    <LSC_Yo index="1" type="double" size="[1 1]">
                        [15 ]
                    </LSC_Yo>
                    <LSC_SECT_SIZE_X index="1" type="double" size="[1 8]">
                        [160 160 160 160 160 160 160 160 ]
                    </LSC_SECT_SIZE_X>
                    <LSC_SECT_SIZE_Y index="1" type="double" size="[1 8]">
                        [90 90 90 90 90 90 90 90 ]
                    </LSC_SECT_SIZE_Y>
                    <vignetting index="1" type="double" size="[1 1]">
                        [0.0000 ]
                    </vignetting>
                    <LSC_SAMPLES_red index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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_red>
                    <LSC_SAMPLES_greenR index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                    <LSC_SAMPLES_greenB index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                    <LSC_SAMPLES_blue index="1" type="double" size="[17 17]">
                        [1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 
                        1024 1024 1024 1024 1024 1024 1024 1024 1024 1024 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>
                </cell>
            </tableAll>
        </LSC>
      <RKDM index="1" type="struct" size="[1 1]">            <enable index="1" type="char" size="[1 1]">        [1]    </enable>          <debayer_filter1 index="1" type="double" size="[1 5]">             [2    -6    0    6    -2]          </debayer_filter1>          <debayer_filter2 index="1" type="double" size="[1 5]">             [2    -4    4    -4    2]          </debayer_filter2>          <debayer_gain_offset index="1" type="double" size="[1 1]">             [4]          </debayer_gain_offset>          <ISO index="1" type="double" size="[1 9]">             [50 100 200 400 800 1600 3200 6400 12800]          </ISO>          <sharp_strength index="1" type="double" size="[1 9]">             [4    4    4    4    4    4    4    4    4]          </sharp_strength>          <debayer_hf_offset index="1" type="double" size="[1 9]">             [1    1    1    1    1    1    1    1    1]          </debayer_hf_offset>          <debayer_offset index="1" type="double" size="[1 1]">             [1]          </debayer_offset>          <debayer_clip_en index="1" type="char" size="[1 1]">             [1]          </debayer_clip_en>          <debayer_filter_g_en index="1" type="char" size="[1 1]">             [1]          </debayer_filter_g_en>          <debayer_filter_c_en index="1" type="char" size="[1 1]">             [1]          </debayer_filter_c_en>          <debayer_thed0 index="1" type="char" size="[1 1]">             [3]          </debayer_thed0>          <debayer_thed1 index="1" type="char" size="[1 1]">             [6]          </debayer_thed1>          <debayer_dist_scale index="1" type="char" size="[1 1]">             [8]          </debayer_dist_scale>          <debayer_cnr_strength index="1" type="char" size="[1 1]">             [5]          </debayer_cnr_strength>          <debayer_shift_num index="1" type="char" size="[1 1]">             [2]          </debayer_shift_num>       </RKDM>         <CCM index="1" type="struct" size="[1 1]">
            <enable index="1" type="char" size="[1 1]">
                [1 ]
            </enable>
            <Mode index="1" type="cell" size="[1 2]">
                <cell index="1" type="struct" size="[1 1]">
                    <Name index="1" type="char" size="[1 6]">
                            normal
                        </Name>
                    <damp_enable index="1" type="char" size="[1 1]">
                            [1 ]
                        </damp_enable>
                    <lumaCCM index="1" type="struct" size="[1 1]">
                        <RGB2Y_para index="1" type="double" size="[1 3]">
                                [38.0000 75.0000 15.0000 ]
                            </RGB2Y_para>
                        <low_bound_pos_bit index="1" type="double" size="[1 1]">
                                [8.0000 ]
                            </low_bound_pos_bit>
                        <y_alpha_curve index="1" type="double" size="[1 17]">
                                [0.0000 64.0000 128.0000 192.0000 256.0000 320.0000 384.0000 448.0000 512.0000 576.0000 640.0000 704.0000 768.0000 832.0000 896.0000 960.0000 1024.0000 ]
                            </y_alpha_curve>
                        <gain_alphaScale_curve index="1" type="struct" size="[1 1]">
                            <gain index="1" type="double" size="[1 9]">
                                    [1.0000 2.0000 4.0000 8.0000 16.0000 32.0000 64.0000 128.0000 256.0000 ]
                                </gain>
                            <scale index="1" type="double" size="[1 9]">
                                    [1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 ]
                                </scale>
                        </gain_alphaScale_curve>
                    </lumaCCM>
                    <aCcmCof index="1" type="cell" size="[1 4]">
                        <illAll index="1" type="cell" size="[1 7]">
                            <cell index="1" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 1]">
                                        A
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.0036 2.3600 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 10]">
                                        A_100 A_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="5" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                        CWF
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.3887 2.0716 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                        CWF_100 CWF_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="2" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                        D50
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.4268 1.5592 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                        D50_100 D50_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="3" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                        D65
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.7093 1.3485 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                        D65_100 D65_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="4" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                        D75
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.6879 1.2222 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                        D75_100 D75_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="4" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 2]">
                                        HZ
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [0.8429 2.5169 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 12]">
                                        HZ_100 HZ_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                            <cell index="6" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 4]">
                                        TL84
                                    </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                        [1.1543 1.9943 ]
                                    </wbGain>
                                <matrixUsed index="1" type="char" size="[1 16]">
                                        TL84_100 TL84_74 
                                    </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                        [1.0000 4.0000 6.0000 16.0000 ]
                                    </gains>
                                <sat index="1" type="double" size="[1 4]">
                                        [100.0000 100.0000 90.0000 50.0000 ]
                                    </sat>
                            </cell>
                        </illAll>
                    </aCcmCof>
                    <matrixAll index="1" type="cell" size="[1 14]">
                        <cell index="1" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 5]">
                                    A_100
                                </name>
                            <illumination index="1" type="char" size="[1 1]">
                                    A
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [2.1125 -0.7373 -0.3752 
                                    -0.5899 2.1073 -0.5174 
                                    -0.2933 -1.0452 2.3385 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="2" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 4]">
                                    A_74
                                </name>
                            <illumination index="1" type="char" size="[1 1]">
                                    A
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.6288 -0.3133 -0.3155 
                                    -0.3708 1.7928 -0.4220 
                                    -0.1524 -0.5392 1.6916 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="3" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                    D50_100
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D50
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.7560 -0.6522 -0.1038
                                    -0.2730 1.7028 -0.4298
                                    -0.0397 -0.2869 1.3266 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="4" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                    D50_74
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D50
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.7460 -0.5453 -0.2007 
                                    -0.2233 1.6330 -0.4097 
                                    -0.0074 -0.2075 1.2149 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="5" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                    D65_100
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D65
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.9781 -0.8277 -0.1504
                                   -0.1881 1.6206 -0.4324
                                     0.0090 -0.2512 1.2422 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="6" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                    D65_74
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D65
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.8659 -0.7150 -0.1509 
                                    -0.1379 1.5497 -0.4118 
                                    0.0445 -0.1817 1.1372 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="7" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                    D75_100
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D75
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.8919 -0.8312 -0.0607
                                    -0.4280 1.6975 -0.2695
                                    -0.0249 -0.1836 1.2084 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="8" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                    D75_74
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    D75
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.8769 -0.7143 -0.1626 
                                    -0.1764 1.6247 -0.4482 
                                    0.0114 -0.1153 1.1039 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="9" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                    CWF_100
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    CWF
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [2.4632 -1.3031 -0.1601 
                                    -0.5486 1.8219 -0.2733 
                                    -0.1776 -0.6564 1.8339 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="10" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                    CWF_74
                                </name>
                            <illumination index="1" type="char" size="[1 3]">
                                    CWF
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.9254 -0.8078 -0.1176 
                                    -0.3032 1.5055 -0.2023 
                                    -0.0299 -0.3273 1.3573 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="11" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 8]">
                                    TL84_100
                                </name>
                            <illumination index="1" type="char" size="[1 4]">
                                    TL84
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [2.1034 -0.9455 -0.1579 
                                    -0.5497 1.9378 -0.3881 
                                    -0.1678 -0.7065 1.8743 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="12" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                    TL84_74
                                </name>
                            <illumination index="1" type="char" size="[1 4]">
                                    TL84
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.6313 -0.4992 -0.1321 
                                    -0.3319 1.6353 -0.3034 
                                    -0.0504 -0.3205 1.3709 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="13" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                    HZ_100
                                </name>
                            <illumination index="1" type="char" size="[1 2]">
                                    HZ
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [100.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [2.0930 -0.5588 -0.5341 
                                    -0.6779 2.2301 -0.5522 
                                    -0.7531 -1.0741 2.8272 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                        <cell index="14" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 5]">
                                    HZ_74
                                </name>
                            <illumination index="1" type="char" size="[1 2]">
                                    HZ
                                </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                    [74.0000 ]
                                </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                    [1.5857 -0.1495 -0.4362 
                                    -0.4644 1.9154 -0.4510 
                                    -0.5213 -0.5288 2.0501 ]
                                </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                    [0.0000 0.0000 0.0000 ]
                                </ccOffsets>
                        </cell>
                    </matrixAll>
                </cell>
                <cell index="1" type="struct" size="[1 1]">
                    <Name index="1" type="char" size="[1 3]">
                                hdr
                            </Name>
                    <damp_enable index="1" type="char" size="[1 1]">
                                [1 ]
                            </damp_enable>
                    <lumaCCM index="1" type="struct" size="[1 1]">
                        <RGB2Y_para index="1" type="double" size="[1 3]">
                                    [38.0000 75.0000 15.0000 ]
                                </RGB2Y_para>
                        <low_bound_pos_bit index="1" type="double" size="[1 1]">
                                    [8.0000 ]
                                </low_bound_pos_bit>
                        <y_alpha_curve index="1" type="double" size="[1 17]">
                                    [0.0000 64.0000 128.0000 192.0000 256.0000 320.0000 384.0000 448.0000 512.0000 576.0000 640.0000 704.0000 768.0000 832.0000 896.0000 960.0000 1024.0000 ]
                                </y_alpha_curve>
                        <gain_alphaScale_curve index="1" type="struct" size="[1 1]">
                            <gain index="1" type="double" size="[1 9]">
                                        [1.0000 2.0000 4.0000 8.0000 16.0000 32.0000 64.0000 128.0000 256.0000 ]
                                    </gain>
                            <scale index="1" type="double" size="[1 9]">
                                        [1.0000 0.8000 0.8000 0.9000 1.0000 1.0000 1.0000 1.0000 1.0000 ]
                                    </scale>
                        </gain_alphaScale_curve>
                    </lumaCCM>
                    <aCcmCof index="1" type="cell" size="[1 4]">
                        <illAll index="1" type="cell" size="[1 7]">
                            <cell index="1" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 1]">
                                            A
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [1.3271 3.3148 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 10]">
                                            A_100 A_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="5" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                            CWF
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [1.8823 2.8817 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                            CWF_100 CWF_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="2" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                            D50
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [1.9051 1.9785 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                            D50_100 D50_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="3" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                            D65
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [2.2062 1.7040 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                            D65_100 D65_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="4" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 3]">
                                            D75
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [2.2996 1.5809 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 14]">
                                            D75_100 D75_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="4" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 2]">
                                            HZ
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [1.1183 3.6332 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 12]">
                                            HZ_100 HZ_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                            <cell index="6" type="struct" size="[1 1]">
                                <name index="1" type="char" size="[1 4]">
                                            TL84
                                        </name>
                                <wbGain index="1" type="double" size="[1 2]">
                                            [1.5274 2.6033 ]
                                        </wbGain>
                                <matrixUsed index="1" type="char" size="[1 16]">
                                            TL84_100 TL84_74 
                                        </matrixUsed>
                                <gains index="1" type="double" size="[1 4]">
                                            [1.0000 4.0000 6.0000 16.0000 ]
                                        </gains>
                                <sat index="1" type="double" size="[1 4]">
                                            [100.0000 100.0000 90.0000 50.0000 ]
                                        </sat>
                            </cell>
                        </illAll>
                    </aCcmCof>
                    <matrixAll index="1" type="cell" size="[1 14]">
                        <cell index="1" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 5]">
                                        A_100
                                    </name>
                            <illumination index="1" type="char" size="[1 1]">
                                        A
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.2656 -0.2498 -0.0158 
                                        -0.4621 1.4010 0.0611 
                                        -0.0438 -1.0811 2.1249 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="2" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 4]">
                                        A_74
                                    </name>
                            <illumination index="1" type="char" size="[1 1]">
                                        A
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [0.9632 -0.0233 0.0600 
                                        -0.3153 1.1992 0.1160 
                                        -0.0064 -0.6371 1.6435 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="3" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                        D50_100
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D50
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.3481 -0.2895 -0.0587 
                                        -0.3168 1.4265 -0.1097 
                                        0.0110 -0.6122 1.6012 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="4" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                        D50_74
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D50
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.0545 -0.0378 -0.0167 
                                        -0.1776 1.2328 -0.0552 
                                        0.0644 -0.2753 1.2110 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="5" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                        D65_100
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D65
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.5216 -0.4032 -0.1184 
                                        -0.3214 1.5514 -0.2300 
                                        0.0068 -0.4594 1.4525 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="6" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                        D65_74
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D65
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.1955 -0.1072 -0.0883 
                                        -0.1682 1.3399 -0.1717 
                                        0.0739 -0.1475 1.0736 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="7" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                        D75_100
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D75
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.4704 -0.3814 -0.0890 
                                        -0.2778 1.4837 -0.2059 
                                        -0.0115 -0.4119 1.4234 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="8" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                        D75_74
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        D75
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.1598 -0.0983 -0.0615 
                                        -0.1339 1.2826 -0.1487 
                                        0.0625 -0.1196 1.0571 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="9" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                        CWF_100
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        CWF
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.4207 -0.4177 -0.0030 
                                        -0.3712 1.3693 0.0019 
                                        0.0688 -0.5709 1.5021 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="10" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                        CWF_74
                                    </name>
                            <illumination index="1" type="char" size="[1 3]">
                                        CWF
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.1073 -0.1501 0.0428 
                                        -0.2188 1.1730 0.0458 
                                        0.1061 -0.2623 1.1561 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="11" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 8]">
                                        TL84_100
                                    </name>
                            <illumination index="1" type="char" size="[1 4]">
                                        TL84
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.2081 -0.1987 -0.0094 
                                        -0.4071 1.4505 -0.0435 
                                        0.0527 -0.5564 1.5037 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="12" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 7]">
                                        TL84_74
                                    </name>
                            <illumination index="1" type="char" size="[1 4]">
                                        TL84
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [0.9275 0.0417 0.0307 
                                        -0.2678 1.2629 0.0048 
                                        0.0718 -0.2217 1.1499 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="13" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 6]">
                                        HZ_100
                                    </name>
                            <illumination index="1" type="char" size="[1 2]">
                                        HZ
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [100.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.5217 -0.3782 -0.1435 
                                        -0.6794 1.5774 0.1020 
                                        -0.7287 -0.3560 2.0847 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                        <cell index="14" type="struct" size="[1 5]">
                            <name index="1" type="char" size="[1 5]">
                                        HZ_74
                                    </name>
                            <illumination index="1" type="char" size="[1 2]">
                                        HZ
                                    </illumination>
                            <saturation index="1" type="double" size="[1 1]">
                                        [74.0000 ]
                                    </saturation>
                            <ccMatrix index="1" type="double" size="[3 3]">
                                        [1.1191 -0.0797 -0.0394 
                                        -0.5095 1.3681 0.1414 
                                        -0.5470 -0.0619 1.6089 ]
                                    </ccMatrix>
                            <ccOffsets index="1" type="double" size="[1 3]">
                                        [0.0000 0.0000 0.0000 ]
                                    </ccOffsets>
                        </cell>
                    </matrixAll>
                </cell>
            </Mode>
        </CCM>
      <UVNR index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">             [1]          </Enable>    <Version index="1" type="char" size="[1 1]">       V1    </Version>    <Mode index="1" type="cell" size="[1 3]">      <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   normal               </Name>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>      </cell>      <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>        </cell>      </Setting>         </cell>      <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   hdr               </Name>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>      </cell>      <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>        </cell>      </Setting>         </cell>      <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   gray               </Name>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>      </cell>      <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>        <ISO index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </ISO>             <step0_uvgrad_ratio index="1" type="double" size="[1 13]">                [40.0    40.0    40.0    50.0    60.0    60.0    60.0    60.0    60.0  60.0    60.0    60.0 60.0]             </step0_uvgrad_ratio>             <step0_uvgrad_offset index="1" type="double" size="[1 13]">                [0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8    0.8  0.8    0.8    0.8  0.8]             </step0_uvgrad_offset>             <step1_nonMed1 index="1" type="double" size="[1 4]">                [3    3    3    3]             </step1_nonMed1>             <step1_nonBf1 index="1" type="double" size="[1 4]">                [31    31    31    31]             </step1_nonBf1>             <step1_downSample_w index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_w>             <step1_downSample_h index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_h>             <step1_downSample_meansize index="1" type="double" size="[1 13]">                [4    4    4    4    4    4    4    4    4      4    4    4      4]             </step1_downSample_meansize>             <step1_median_ratio index="1" type="double" size="[1 13]">                [0.2    0.2    0.2    0.2    0.2    0.2    0.2    0.5    0.5   0.5    0.5  0.5   0.5]             </step1_median_ratio>             <step1_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step1_median_size>             <step1_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0   0]             </step1_median_IIR>             <step1_bf_sigmaR index="1" type="double" size="[1 13]">                [8.53    10.24    10.24    10.24    12.8    12.8    21.3    25.6    25.6  25.6    25.6  25.6    25.6]             </step1_bf_sigmaR>             <step1_bf_uvgain index="1" type="double" size="[1 13]">                [1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.5    1.0  1.0    1.0    1.0  1.0]             </step1_bf_uvgain>             <step1_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00   0.00]             </step1_bf_ratio>             <step1_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5       5    5    5       5]             </step1_bf_size>             <step1_bf_sigmaD index="1" type="double" size="[1 13]">                [16    16    16    16    16    16    16    16    16      16    16    16     16]             </step1_bf_sigmaD>             <step1_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0       0    0    0       0]             </step1_bf_isRowIIR>             <step1_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1       1    1    1      1]             </step1_bf_isYcopy>             <step2_nonExt_block index="1" type="double" size="[1 4]">                [7    7    7    7]             </step2_nonExt_block>             <step2_nonMed index="1" type="double" size="[1 4]">                [1    1    1    1]             </step2_nonMed>             <step2_nonBf index="1" type="double" size="[1 4]">                [3    3    3    3]             </step2_nonBf>             <step2_downSample_w index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_w>             <step2_downSample_h index="1" type="double" size="[1 13]">                [32      32    32    32    32    32    32    32    32    32    32    32     32]             </step2_downSample_h>             <step2_downSample_meansize index="1" type="double" size="[1 13]">                [8      8    8    8    8    8    8    8    8       8    8    8       8]             </step2_downSample_meansize>             <step2_median_ratio index="1" type="double" size="[1 13]">                [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]             </step2_median_ratio>             <step2_median_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3       3    3    3     3]             </step2_median_size>             <step2_median_IIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0     0    0    0     0]             </step2_median_IIR>             <step2_bf_sigmaR index="1" type="double" size="[1 13]">                [5.12    6.4    8.53    10.24    10.24    12.8    12.8    12.8    17.06  17.06  17.06  17.06  17.06]             </step2_bf_sigmaR>             <step2_bf_uvgain index="1" type="double" size="[1 13]">                [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.0]             </step2_bf_uvgain>             <step2_bf_ratio index="1" type="double" size="[1 13]">                [0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00    0.00   0.00    0.00    0.00  0.00]             </step2_bf_ratio>             <step2_bf_size index="1" type="double" size="[1 13]">                [5    5    5    5    5    5    5    5    5      5    5    5     5]             </step2_bf_size>             <step2_bf_sigmaD index="1" type="double" size="[1 13]">                [128 128     128    128    128    128    128    128    128    128    128    128   128]             </step2_bf_sigmaD>             <step2_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0    0]             </step2_bf_isRowIIR>             <step2_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1    1]             </step2_bf_isYcopy>             <step3_nonBf3 index="1" type="double" size="[1 4]">                [32      32    32   32]             </step3_nonBf3>             <step3_bf_sigmaR index="1" type="double" size="[1 13]">                [3.413    4.267    5.689    7.11    8.53    8.53    10.24    10.24    10.24  10.24    10.24  10.24    10.24]             </step3_bf_sigmaR>             <step3_bf_uvgain index="1" type="double" size="[1 13]">                [4.0    4.0    4.0    3.0    3.0    3.0    3.0    2.5    2.0   2.0  2.0   2.0   2.0]             </step3_bf_uvgain>             <step3_bf_ratio index="1" type="double" size="[1 13]">                [1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00    1.00   1.00    1.00    1.00     1.0]             </step3_bf_ratio>             <step3_bf_size index="1" type="double" size="[1 13]">                [3    3    3    3    3    3    3    3    3      3    3    3     3]             </step3_bf_size>             <step3_bf_sigmaD index="1" type="double" size="[1 13]">                [8    8    8    8    8    8    8    8    8      8    8    8       8]             </step3_bf_sigmaD>             <step3_bf_isRowIIR index="1" type="double" size="[1 13]">                [0    0    0    0    0    0    0    0    0      0    0    0     0]             </step3_bf_isRowIIR>             <step3_bf_isYcopy index="1" type="double" size="[1 13]">                [1    1    1    1    1    1    1    1    1      1    1    1     1]             </step3_bf_isYcopy>             <kernel_3x3 index="1" type="double" size="[1 3]">                [1    0.8825    0.7788]             </kernel_3x3>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1    0.8825    0.7788    0.6065    0.3679]             </kernel_5x5>             <kernel_9x9 index="1" type="double" size="[1 8]">                [1    0.8825    0.7788    0.6065    0.3679    0.1969    0.1353    0.0439 ]             </kernel_9x9>             <kernel_9x9_num index="1" type="double" size="[1 1]">                [0]             </kernel_9x9_num>             <sigma_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </sigma_adj_luma>             <sigma_adj_ratio index="1" type="double" size="[1 9]">                [1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0    1.0]             </sigma_adj_ratio>             <threshold_adj_luma index="1" type="double" size="[1 9]">                [0    32    64    96    128    160    192    224    256]             </threshold_adj_luma>             <threshold_adj_thre index="1" type="double" size="[1 9]">                [10    10    10    10    10    10    10    10    10]             </threshold_adj_thre>        </cell>      </Setting>         </cell>    </Mode>        </UVNR>       <GAMMA index="1" type="struct" size="[1 1]">    <gamma_en index="1" type="char" size="[1 1]">        [1]    </gamma_en>    <gamma_out_segnum index="1" type="char" size="[1 1]">        [0]    </gamma_out_segnum>    <gamma_out_offset index="1" type="char" size="[1 1]">        [0]    </gamma_out_offset>          <curve_normal index="1" type="double" size="[1 45]">             [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]          </curve_normal>          <curve_hdr index="1" type="double" size="[1 45]">             [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]          </curve_hdr>          <curve_night index="1" type="double" size="[1 45]">             [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]          </curve_night>       </GAMMA>       <YNR index="1" type="struct" size="[1 1]">        <Enable index="1" type="double" size="[1 1]">            [1]        </Enable>        <Version index="1" type="char" size="[1 1]">            V1        </Version>        <Mode index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   normal               </Name>         <Setting index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>       </YNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>        </YNR_ISO>       </cell>      </Setting>    </cell>        <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   hdr               </Name>         <Setting index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>       </YNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>        </YNR_ISO>       </cell>      </Setting>    </cell>        <cell index="1" type="struct" size="[1 1]">         <Name index="1" type="char" size="[1 8]">                   gray               </Name>         <Setting index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>       </YNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>          <YNR_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9332 0.6865 0.4320 0.2739 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.8451 0.9787 0.7649 0.5108 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.8322 0.9514 0.7381 0.4824 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6986 1.4097 1.2535 0.8366 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.25 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.4]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.25 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.1]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.60 0.50]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.67    0.67    0.67    0.67    0.67]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.57    0.57    0.57    0.57    0.57]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.5    0.5    0.4    0.3    0.2]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9705 0.7580 0.4856 0.2991 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.7414 0.9915 0.8479 0.5629 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7546 0.9337 0.8045 0.5478 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6777 1.3441 1.3399 0.9403 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.30 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.40]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.30 0.50 0.80]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.25 1.30 1.25 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [2.00 2.00 1.20 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.75 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.11  0.11  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9803 0.8076 0.5477 0.3742 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6903 0.9419 0.8266 0.5464 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.7051 0.8922 0.8274 0.5191 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.6291 1.2325 1.3371 0.9198 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.2 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.6 1.0 1.0]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.30]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.10 1.5 1.0 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.10 1.00 1.00 1.00]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [4.00 4.00 2.00 1.20]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.70 0.70 0.60 0.30]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.50]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.12  0.12  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9916 0.8348 0.5930 0.4323 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.6344 0.9054 0.8065 0.5319 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6500 0.8519 0.7976 0.5142 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5847 1.1568 1.3008 0.9211 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.3 1.20 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.5]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.40 0.7 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.25]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.35 0.40 0.60 0.60]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.2 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.20 1.20 1.20]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.00 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.4]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.8 0.90 1.00 1.00]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.50    0.50    0.30]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.51    0.51    0.51    0.51    0.30]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.50    0.50    0.40    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                         [0.9995 0.8669 0.6279 0.4620 ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                         [0.5868 0.8782 0.8352 0.5524 ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                         [0.6041 0.8250 0.8222 0.5392 ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                         [0.5544 1.0703 1.3144 0.9702 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.50 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.3]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.3 0.5 1.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.20]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.5 1.00 1.00]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [1.1 1.20 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.3 1.50 1.50]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.00]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.3]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [1.1 1.2 1.3 1.3]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1..00    0.50    0.40    0.35    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.13  0.10  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.943143    0.670219    0.447672    0.367264     ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.841796    0.983082    0.704658    0.501561    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.872441    0.988400    0.711805    0.508803    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.650330  1.422823  1.174284  0.756609  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.0 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.40 0.85 0.85 0.9]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.50 1.50 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.50 0.45 0.25 0.4]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.20    1.00    1.00    1.00    0.80    0.70]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.24    1.24    1.00    1.00    0.76    0.63]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.90    1.60    1.30    1.00    0.80    0.80]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.43    1.00    0.56    0.56    0.56    0.56]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.950737    0.688738    0.458664    0.381073    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.828681    0.993787    0.735815    0.528401    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.857875    0.996543    0.736578    0.529529    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.603438  1.372599  1.211613  0.787788  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.25 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.20 0.70]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [0.75 0.7 0.66 0.36]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.948291    0.681660    0.448094    0.360975    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.832203    0.996846    0.738511    0.520798    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.861563    0.996721    0.731136    0.527112    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.613480 1.382101 1.208057 0.788342 ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [0.24 0.5 2.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.4]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <sigma_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001]             </sigma_curve>             <ynr_lci index="1" type="double" size="[1 4]">                [0.936182    0.654274    0.455860    0.403902    ]             </ynr_lci>             <ynr_lhci index="1" type="double" size="[1 4]">                [0.855909    0.979829    0.691382    0.538871    ]             </ynr_lhci>             <ynr_hlci index="1" type="double" size="[1 4]">                [0.885451    0.981653    0.701294    0.551322    ]             </ynr_hlci>             <ynr_hhci index="1" type="double" size="[1 4]">                [0.706894  1.463291  1.102797  0.741516  ]             </ynr_hhci>             <lo_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </lo_lumaPoint>             <lo_lumaRatio index="1" type="double" size="[1 6]">                [1.0 1.00 1.5 1.5 1.0 1.0]             </lo_lumaRatio>             <lo_directionStrength index="1" type="double" size="[1 1]">                [0.2]             </lo_directionStrength>             <lo_bfScale index="1" type="double" size="[1 4]">                [1.00 1.00 3.00 1.00]             </lo_bfScale>             <imerge_ratio index="1" type="double" size="[1 1]">                [0.15]             </imerge_ratio>             <imerge_bound index="1" type="double" size="[1 1]">                [1.25]             </imerge_bound>             <denoise_weight index="1" type="double" size="[1 4]">                [0.30 0.85 0.30 0.30]             </denoise_weight>             <hi_lumaPoint index="1" type="double" size="[1 6]">                [0 32 64 128 192 256]             </hi_lumaPoint>             <hi_lumaRatio index="1" type="double" size="[1 6]">                [2.0 2.50 1.5 1.5 1.0 1.0]             </hi_lumaRatio>             <hi_bfScale index="1" type="double" size="[1 4]">                [1.20 1.10 0.86 0.86]             </hi_bfScale>             <hwith_d index="1" type="double" size="[1 4]">                [6.00 6.00 4.0 2.0]             </hwith_d>             <hi_denoiseStrength index="1" type="double" size="[1 1]">                [1.2]             </hi_denoiseStrength>             <hi_detailMinAdjDnW index="1" type="double" size="[1 1]">                [0.2]             </hi_detailMinAdjDnW>             <hi_denoiseWeight index="1" type="double" size="[1 4]">                [0.75 0.70 0.66 0.36]             </hi_denoiseWeight>             <y_luma_point index="1" type="double" size="[1 6]">                [64    128    192    256    384    512]             </y_luma_point>             <hgrad_y_level1 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level1>             <hgrad_y_level2 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level2>             <hgrad_y_level3 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level3>             <hgrad_y_level4 index="1" type="double" size="[1 6]">                [1.00    0.65    0.55    0.45    0.30    0.20]             </hgrad_y_level4>             <hi_soft_thresh_scale index="1" type="double" size="[1 4]">                [0.13  0.30  0.30  0.10]             </hi_soft_thresh_scale>               </cell>        </YNR_ISO>       </cell>      </Setting>    </cell>         </Mode>       </YNR>       <GIC index="1" type="struct" size="[1 1]">
   <CalibParaV20 index="1" type="cell" size="[1 1]">
   <cell index="1" type="struct" size="[1 1]">
            <scene index="1" type="char" size="[1 10]">                 A0              </scene>    <enable index="1" type="char" size="[1 1]">        [1]    </enable>    <edge_en     index="1" type="char" size="[1 1]">        [0]    </edge_en>    <gr_ration     index="1" type="char" size="[1 1]">        [0]    </gr_ration>    <noise_cut_en     index="1" type="char" size="[1 1]">        [0]    </noise_cut_en>
         <Setting index="1" type="struct" size="[1 9]">             <iso index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]             </iso>             <min_busy_thre index="1" type="double" size="[1 9]">                [40 40 40 40 40 40 40 40 40]             </min_busy_thre>             <min_grad_thr1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr1>             <min_grad_thr2 index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr2>             <k_grad1 index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1>             <k_grad2 index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2>             <gb_thre index="1" type="double" size="[1 9]">                [32 32 32 32 32 32 32 32 32]             </gb_thre>             <maxCorV index="1" type="double" size="[1 9]">                [10 10 10 10 10 10 10 10 10]             </maxCorV>             <maxCorVboth index="1" type="double" size="[1 9]">                [20 20 20 20 20 20 20 20 20]             </maxCorVboth>             <dark_thre index="1" type="double" size="[1 9]">                [120 120 120 120 120 120 120 120 120]             </dark_thre>             <dark_threHi index="1" type="double" size="[1 9]">                [240 240 240 240 240 240 240 240 240]             </dark_threHi>             <k_grad1_dark index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1_dark>             <k_grad2_dark     index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2_dark    >             <min_grad_thr_dark1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr_dark1>             <min_grad_thr_dark2     index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr_dark2>             <GValueLimitLo index="1" type="double" size="[1 9]">                [1280 1280 1280 1280 1280 1280 1280 1280 1280]             </GValueLimitLo>             <GValueLimitHi     index="1" type="double" size="[1 9]">                [1760 1760 1760 1760 1760 1760 1760 1760 1760]             </GValueLimitHi>             <textureStrength  index="1" type="double" size="[1 9]">                [0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25]             </textureStrength>             <ScaleLo  index="1" type="double" size="[1 9]">                [3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0]             </ScaleLo>             <ScaleHi  index="1" type="double" size="[1 9]">                [5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0]             </ScaleHi>             <globalStrength     index="1" type="double" size="[1 9]">                [1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </globalStrength>             <noise_coea index="1" type="double" size="[1 9]">                [199 199 199 199 199 199 199 199 199]             </noise_coea>             <noise_coeb index="1" type="double" size="[1 9]">                [957 957 957 957 957 957 957 957 957]             </noise_coeb>             <diff_clip     index="1" type="double" size="[1 9]">                [32767 32767  32767 32767 32767  32767 32767 32767  32767]             </diff_clip>          </Setting>
   </cell>    </CalibParaV20>
   <CalibParaV21 index="1" type="cell" size="[1 1]">
   <cell index="1" type="struct" size="[1 1]">
            <scene index="1" type="char" size="[1 10]">                 A0              </scene>    <enable index="1" type="char" size="[1 1]">        [0]    </enable>    <gr_ration     index="1" type="char" size="[1 1]">        [0]    </gr_ration>          <SettingV21 index="1" type="struct" size="[1 9]">             <iso index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]             </iso>             <min_busy_thre index="1" type="double" size="[1 9]">                [40 40 40 40 40 40 40 40 40]             </min_busy_thre>             <min_grad_thr1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr1>             <min_grad_thr2 index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr2>             <k_grad1 index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1>             <k_grad2 index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2>             <gb_thre index="1" type="double" size="[1 9]">                [32 32 32 32 32 32 32 32 32]             </gb_thre>             <maxCorV index="1" type="double" size="[1 9]">                [10 10 10 10 10 10 10 10 10]             </maxCorV>             <maxCorVboth index="1" type="double" size="[1 9]">                [20 20 20 20 20 20 20 20 20]             </maxCorVboth>             <dark_thre index="1" type="double" size="[1 9]">                [120 120 120 120 120 120 120 120 120]             </dark_thre>             <dark_threHi index="1" type="double" size="[1 9]">                [240 240 240 240 240 240 240 240 240]             </dark_threHi>             <k_grad1_dark index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1_dark>             <k_grad2_dark     index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2_dark    >             <min_grad_thr_dark1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr_dark1>             <min_grad_thr_dark2     index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr_dark2>             <NoiseScale index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]             </NoiseScale>             <NoiseBase index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]             </NoiseBase>             <globalStrength     index="1" type="double" size="[1 9]">                [1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </globalStrength>             <diff_clip     index="1" type="double" size="[1 9]">                [32767 32767  32767 32767 32767  32767 32767 32767  32767]             </diff_clip>          </SettingV21>
   </cell>    </CalibParaV21>
   <TuningParaV20 index="1" type="cell" size="[1 1]">
   <cell index="1" type="struct" size="[1 1]">
            <scene index="1" type="char" size="[1 10]">                 A0              </scene>    <enable index="1" type="char" size="[1 1]">        [1]    </enable>    <edge_en     index="1" type="char" size="[1 1]">        [0]    </edge_en>    <gr_ration     index="1" type="char" size="[1 1]">        [0]    </gr_ration>    <noise_cut_en     index="1" type="char" size="[1 1]">        [0]    </noise_cut_en>
         <Setting index="1" type="struct" size="[1 9]">             <iso index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]             </iso>             <min_busy_thre index="1" type="double" size="[1 9]">                [40 40 40 40 40 40 40 40 40]             </min_busy_thre>             <min_grad_thr1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr1>             <min_grad_thr2 index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr2>             <k_grad1 index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1>             <k_grad2 index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2>             <gb_thre index="1" type="double" size="[1 9]">                [32 32 32 32 32 32 32 32 32]             </gb_thre>             <maxCorV index="1" type="double" size="[1 9]">                [10 10 10 10 10 10 10 10 10]             </maxCorV>             <maxCorVboth index="1" type="double" size="[1 9]">                [20 20 20 20 20 20 20 20 20]             </maxCorVboth>             <dark_thre index="1" type="double" size="[1 9]">                [120 120 120 120 120 120 120 120 120]             </dark_thre>             <dark_threHi index="1" type="double" size="[1 9]">                [240 240 240 240 240 240 240 240 240]             </dark_threHi>             <k_grad1_dark index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1_dark>             <k_grad2_dark     index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2_dark    >             <min_grad_thr_dark1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr_dark1>             <min_grad_thr_dark2     index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr_dark2>             <GValueLimitLo index="1" type="double" size="[1 9]">                [1280 1280 1280 1280 1280 1280 1280 1280 1280]             </GValueLimitLo>             <GValueLimitHi     index="1" type="double" size="[1 9]">                [1760 1760 1760 1760 1760 1760 1760 1760 1760]             </GValueLimitHi>             <textureStrength  index="1" type="double" size="[1 9]">                [0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25 0.25]             </textureStrength>             <ScaleLo  index="1" type="double" size="[1 9]">                [3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0]             </ScaleLo>             <ScaleHi  index="1" type="double" size="[1 9]">                [5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0]             </ScaleHi>             <globalStrength     index="1" type="double" size="[1 9]">                [1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </globalStrength>             <noise_coea index="1" type="double" size="[1 9]">                [199 199 199 199 199 199 199 199 199]             </noise_coea>             <noise_coeb index="1" type="double" size="[1 9]">                [957 957 957 957 957 957 957 957 957]             </noise_coeb>             <diff_clip     index="1" type="double" size="[1 9]">                [32767 32767  32767 32767 32767  32767 32767 32767  32767]             </diff_clip>          </Setting>
   </cell>    </TuningParaV20>    <TuningParaV21 index="1" type="cell" size="[1 1]">
   <cell index="1" type="struct" size="[1 1]">
            <scene index="1" type="char" size="[1 10]">                 A0              </scene>    <enable index="1" type="char" size="[1 1]">        [1]    </enable>    <gr_ration     index="1" type="char" size="[1 1]">        [0]    </gr_ration>          <SettingV21 index="1" type="struct" size="[1 9]">             <iso index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]             </iso>             <min_busy_thre index="1" type="double" size="[1 9]">                [40 40 40 40 40 40 40 40 40]             </min_busy_thre>             <min_grad_thr1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr1>             <min_grad_thr2 index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr2>             <k_grad1 index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1>             <k_grad2 index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2>             <gb_thre index="1" type="double" size="[1 9]">                [32 32 32 32 32 32 32 32 32]             </gb_thre>             <maxCorV index="1" type="double" size="[1 9]">                [10 10 10 10 10 10 10 10 10]             </maxCorV>             <maxCorVboth index="1" type="double" size="[1 9]">                [20 20 20 20 20 20 20 20 20]             </maxCorVboth>             <dark_thre index="1" type="double" size="[1 9]">                [120 120 120 120 120 120 120 120 120]             </dark_thre>             <dark_threHi index="1" type="double" size="[1 9]">                [240 240 240 240 240 240 240 240 240]             </dark_threHi>             <k_grad1_dark index="1" type="double" size="[1 9]">                [64 64 64 64 64 64 64 64 64]             </k_grad1_dark>             <k_grad2_dark     index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]             </k_grad2_dark    >             <min_grad_thr_dark1 index="1" type="double" size="[1 9]">                [16 16 16 16 16 16 16 16 16]             </min_grad_thr_dark1>             <min_grad_thr_dark2     index="1" type="double" size="[1 9]">                [8 8 8 8 8 8 8 8 8]             </min_grad_thr_dark2>             <NoiseScale index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]             </NoiseScale>             <NoiseBase index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]             </NoiseBase>             <globalStrength     index="1" type="double" size="[1 9]">                [1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </globalStrength>             <diff_clip     index="1" type="double" size="[1 9]">                [32767 32767  32767 32767 32767  32767 32767 32767  32767]             </diff_clip>          </SettingV21>
   </cell>    </TuningParaV21>
      </GIC>       <MFNR index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">        [1]    </Enable>    <Version index="1" type="char" size="[1 1]">        V1    </Version>    <local_gain_en index="1" type="double" size="[1 1]">        [1]    </local_gain_en>    <mode_3to1 index="1" type="double" size="[1 1]">        [1]    </mode_3to1>    <max_level index="1" type="char" size="[1 1]">        [4]    </max_level>    <max_level_uv index="1" type="char" size="[1 1]">        [3]    </max_level_uv>    <back_ref_num index="1" type="char" size="[1 1]">        [1]    </back_ref_num>          <awb_uv_ratio index="1" type="cell" size="[1 4]">        <cell index="1" type="struct" size="[1 1]">                 <name index="1" type="char" size="[1 1]">                    A                 </name>                 <ratio index="1" type="double" size="[1 2]">                    [1.00000    1.00000]                 </ratio>        </cell>        <cell index="2" type="struct" size="[1 1]">                 <name index="1" type="char" size="[1 3]">                    D65                 </name>                 <ratio index="1" type="double" size="[1 2]">                    [1.00000    1.00000]                 </ratio>        </cell>        <cell index="3" type="struct" size="[1 1]">                 <name index="1" type="char" size="[1 7]">                    TL84                 </name>                 <ratio index="1" type="double" size="[1 2]">                    [0.90000    0.70000]                 </ratio>        </cell>        <cell index="4" type="struct" size="[1 1]">                 <name index="1" type="char" size="[1 6]">                    CWF                 </name>                 <ratio index="1" type="double" size="[1 2]">                    [1.00000    1.00000]                 </ratio>        </cell>          </awb_uv_ratio>    <Mode index="1" type="cell" size="[1 3]">       <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                 normal              </Name>              <Dynamic index="1" type="struct" size="[1 1]">                      <Enable index="1" type="double" size="[1 1]">               [0]           </Enable>              <LowTh_iso index="1" type="double" size="[1 1]">                  [50]                  </LowTh_iso>          <LowTh_time index="1" type="double" size="[1 1]">                  [0.01]                  </LowTh_time>              <HighTh_iso index="1" type="double" size="[1 1]">                  [50]                  </HighTh_iso>          <HighTh_time index="1" type="double" size="[1 1]">                  [0.025]                  </HighTh_time>              </Dynamic>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>    </Setting>         </cell>       <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                 hdr              </Name>       <Dynamic index="1" type="struct" size="[1 1]">                      <Enable index="1" type="double" size="[1 1]">               [0]           </Enable>              <LowTh_iso index="1" type="double" size="[1 1]">                  [50]                  </LowTh_iso>          <LowTh_time index="1" type="double" size="[1 1]">                  [0.01]                  </LowTh_time>              <HighTh_iso index="1" type="double" size="[1 1]">                  [50]                  </HighTh_iso>          <HighTh_time index="1" type="double" size="[1 1]">                  [0.025]                  </HighTh_time>              </Dynamic>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>    </Setting>         </cell>       <cell index="1" type="struct" size="[1 1]">        <Name index="1" type="char" size="[1 8]">                 gray              </Name>    <Dynamic index="1" type="struct" size="[1 1]">                      <Enable index="1" type="double" size="[1 1]">               [0]           </Enable>              <LowTh_iso index="1" type="double" size="[1 1]">                  [50]                  </LowTh_iso>          <LowTh_time index="1" type="double" size="[1 1]">                  [0.01]                  </LowTh_time>              <HighTh_iso index="1" type="double" size="[1 1]">                  [50]                  </HighTh_iso>          <HighTh_time index="1" type="double" size="[1 1]">                  [0.025]                  </HighTh_time>              </Dynamic>              <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <MFNR_ISO index="1" type="cell" size="[1 13]">                   <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-8.43031629716230e-013 7.96403418022611e-009 -2.69124846208717e-005 3.30491353997608e-002 1.82112440798101e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.68993 0.41986 0.24798 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.77114 0.62293 0.46145 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.20000    1.20000    1.20000    1.1000    1.10000    1.00000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.2000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.68993 0.41986 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.77114 0.62293 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.10000    1.10000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [64    64    64    64]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [64    64    64]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-9.07873071141055e-013 9.05495555543235e-009 -3.21717261013016e-005 4.12882265916323e-002 2.10344756396116e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.647000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.73721 0.47316 0.28630 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.70806 0.62814 0.46846 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.5000    0.50000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.500    0.5000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.10000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.73721 0.47316 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.70806 0.62814 0.38596 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.30000    1.20000    1.20000    1.20000    1.20000    1.20000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.4000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-1.52155493457974e-012 1.40665186878902e-008 -4.69371860616144e-005 5.84762430174166e-002 2.60227194063991e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.790000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.77354 0.53926 0.36661 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.65807 0.59759 0.44849 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.5000    0.5000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.45000    0.45000    0.45000    0.45000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.40000    1.30000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.70000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.77354 0.53926 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.65807 0.59759 0.35740 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.450000    0.50000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.50000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.78200837475752e-012 2.61174369092566e-008 -8.77094728358591e-005 1.11980382041814e-001 2.36814539463394e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.714000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.80420 0.59319 0.43480 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.60811 0.56888 0.41942 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.40000    0.40000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.60000    1.50000    1.30000    1.25000    1.30000    1.30000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.80420 0.59319 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.60811 0.56888 0.39704 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.50000    1.50000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [2.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [32    32 32 32]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [32    32 32]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.60000    0.60000    0.60000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                         [-2.23709690355328e-012 2.11901816670340e-008 -7.26688079299778e-005 9.60394777007423e-002 2.24640616934303e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.331000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                         [1.00000 0.82405 0.62343 0.46180 ]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                         [0.57401 0.56317 0.43568 0.00000 ]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.5000    0.5000    0.4000    0.4000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.40000    0.40000    0.40000    0.40000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.70000    1.50000    1.30000    1.35000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [2.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                         [1.00000 0.82405 0.62343 ]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                         [0.57401 0.56317 0.39342 ]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.50000    0.40000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.40000    0.40000    0.40000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                 [1.80000    1.70000    1.50000    1.50000    1.50000    1.50000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                 [2.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.650000    0.650000    0.650000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.244000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72770    0.46182    0.29414]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.73231    0.60469    0.39427    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72770    0.46182]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.73231    0.60469    0.39427]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.40000    0.5000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    255.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [3.20000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>            <weight_limit_y index="1" type="double" size="[1 4]">                [16    16 16 16]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [16    16 16]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.70000    0.70000    0.70000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.40000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.750000    0.750000    0.750000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001    ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">               [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.60000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <weight_limit_y index="1" type="double" size="[1 4]">                [4 4 4 4]             </weight_limit_y>             <weight_limit_uv index="1" type="double" size="[1 3]">                [4 4 4]             </weight_limit_uv>             <ratio_frq index="1" type="double" size="[1 4]">                [0.50000    2.00000    0.50000    2.00000]             </ratio_frq>             <luma_w_in_chroma index="1" type="double" size="[1 3]">                [0.80000    0.80000    0.80000]             </luma_w_in_chroma>             <noise_curve index="1" type="double" size="[1 5]">                [-5.2418645928747404e-012 4.8376129534209651e-008 -1.5800986577370335e-004 2.0569720083710763e-001 -2.4685997272630630e+001 ]             </noise_curve>             <noise_curve_x00 index="1" type="double" size="[1 1]">                [3.170000e+03]             </noise_curve_x00>             <y_lo_noiseprofile index="1" type="double" size="[1 4]">                [1.00000    0.72924    0.45749    0.28517]             </y_lo_noiseprofile>             <y_hi_noiseprofile index="1" type="double" size="[1 4]">                [0.72960    0.61071    0.39626    0.00000]             </y_hi_noiseprofile>             <y_lo_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_lo_denoiseweight>             <y_hi_denoiseweight index="1" type="double" size="[1 4]">                [1.00000    1.00000    1.00000    1.00000]             </y_hi_denoiseweight>             <y_lo_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_lo_bfscale>             <y_hi_bfscale index="1" type="double" size="[1 4]">                [0.50000    0.50000    0.50000    0.70000]             </y_hi_bfscale>             <y_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </y_lumanrpoint>             <y_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.40000    1.40000    1.40000]             </y_lumanrcurve>             <y_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </y_denoisestrength>             <y_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_lo_lvl0_gfdelta>             <y_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </y_hi_lvl0_gfdelta>             <y_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl1_gfdelta>             <y_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl1_gfdelta>             <y_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl2_gfdelta>             <y_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl2_gfdelta>             <y_lo_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_lo_lvl3_gfdelta>             <y_hi_lvl3_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </y_hi_lvl3_gfdelta>             <uv_lo_noiseprofile index="1" type="double" size="[1 3]">                [1.00000    0.72924    0.45749]             </uv_lo_noiseprofile>             <uv_hi_noiseprofile index="1" type="double" size="[1 3]">                [0.72960    0.61071    0.39626]             </uv_hi_noiseprofile>             <uv_lo_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_lo_denoiseweight>             <uv_hi_denoiseweight index="1" type="double" size="[1 3]">                [1.00000    1.00000    1.00000]             </uv_hi_denoiseweight>             <uv_lo_bfscale index="1" type="double" size="[1 3]">                [0.50000    0.70000    0.70000]             </uv_lo_bfscale>             <uv_hi_bfscale index="1" type="double" size="[1 3]">                [0.30000    0.30000    0.4000]             </uv_hi_bfscale>             <uv_lumanrpoint index="1" type="double" size="[1 6]">                [0.00000    32.00000    64.00000    192.00000    232.00000    256.00000]             </uv_lumanrpoint>             <uv_lumanrcurve index="1" type="double" size="[1 6]">                [1.00000    1.00000    1.00000    1.00000    1.00000    1.00000]             </uv_lumanrcurve>             <uv_denoisestrength index="1" type="double" size="[1 1]">                [1.80000]             </uv_denoisestrength>             <uv_lo_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_lo_lvl0_gfdelta>             <uv_hi_lvl0_gfdelta index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </uv_hi_lvl0_gfdelta>             <uv_lo_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl1_gfdelta>             <uv_hi_lvl1_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl1_gfdelta>             <uv_lo_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_lo_lvl2_gfdelta>             <uv_hi_lvl2_gfdelta index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </uv_hi_lvl2_gfdelta>             <lvl0_gfsigma index="1" type="double" size="[1 6]">                [0.06250    0.03906    0.03906    0.03906    0.03906    0.03906]             </lvl0_gfsigma>             <lvl1_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl1_gfsigma>             <lvl2_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl2_gfsigma>             <lvl3_gfsigma index="1" type="double" size="[1 3]">                [0.12500    0.10938    0.10938]             </lvl3_gfsigma>              </cell>             </MFNR_ISO>      </cell>    </Setting>         </cell>        </Mode>       </MFNR>       <SHARP index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">         [1]    </Enable>    <Version index="1" type="char" size="[1 1]">         V1    </Version>          <luma_point index="1" type="double" size="[1 8]">         [0    16    32    64    96    160    224    256]          </luma_point>    <Mode index="1" type="cell" size="[1 3]">     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 normal            </Name>    <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>     </Setting>    </cell>     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 hdr            </Name>      <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>     </Setting>    </cell>     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 gray            </Name>      <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>            <cell index="2" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <SHARP_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.2]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [2.0    3.0    4.0    4.0    6.0    5.0    4.0    4.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.3]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  12  5  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  16  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.6]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.6]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.65]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.5]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.6]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                 [4  6  10  14  16  10  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  18  24  32  32  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.7]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.60]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.3]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.9]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  10  16  16  14  8  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [10  12  20  24  28  28  10  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.9]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.2]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.50]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [3.0    4.0    5.0    6.0    6.0    5.0    4.0    3.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.8]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  10  14  14  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">               [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  16  24  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.80]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.70]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.5]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [4.0    5.0    6.0    8.0    8.0    8.0    7.0    6.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.7]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [1.0]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [8  8  12  14  16  16  7  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.40  -0.30  -0.30  -0.25  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  15  22  28  28  12  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.8]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.75]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [32]             </local_sharp_strength>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [4.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [5.0    5.0    6.0    8.0    9.0    8.0    8.0    7.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.4]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.00]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                 [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <lratio index="1" type="double" size="[1 1]">                [0.67]             </lratio>             <hratio index="1" type="double" size="[1 1]">                [1.50]             </hratio>             <mf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </mf_sharp_ratio>             <hf_sharp_ratio index="1" type="double" size="[1 1]">                [3.0]             </hf_sharp_ratio>             <luma_sigma index="1" type="double" size="[1 8]">                [6.0    8.0    10.0    12.0    14.0    12.0    12.0    10.0]             </luma_sigma>             <pbf_gain index="1" type="double" size="[1 1]">                [0.6]             </pbf_gain>             <pbf_ratio index="1" type="double" size="[1 1]">                [0.5]             </pbf_ratio>             <pbf_add index="1" type="double" size="[1 1]">                [0.0]             </pbf_add>             <mf_clip_pos index="1" type="double" size="[1 8]">                [4  6  8  8  10  8  4  0]             </mf_clip_pos>             <mf_clip_neg index="1" type="double" size="[1 8]">                [-1.00  -0.50  -0.25  -0.25  -0.20  -0.20  -0.10  -0.00]             </mf_clip_neg>             <hf_clip index="1" type="double" size="[1 8]">                [6  10  12  16  20  20  8  0]             </hf_clip>             <mbf_gain index="1" type="double" size="[1 1]">                [0.7]             </mbf_gain>             <hbf_gain index="1" type="double" size="[1 1]">                [0.70]             </hbf_gain>             <hbf_ratio index="1" type="double" size="[1 1]">                [0.7]             </hbf_ratio>             <mbf_add index="1" type="double" size="[1 1]">                [2.00]             </mbf_add>             <hbf_add index="1" type="double" size="[1 1]">                [1.00]             </hbf_add>             <local_sharp_strength index="1" type="double" size="[1 1]">                [16]             </local_sharp_strength>                </cell>              </SHARP_ISO>      </cell>     </Setting>    </cell>        </Mode>       </SHARP>       <EDGEFILTER index="1" type="struct" size="[1 1]">    <Enable index="1" type="double" size="[1 1]">         [1]    </Enable>    <Version index="1" type="char" size="[1 1]">         V1    </Version>          <luma_point index="1" type="double" size="[1 8]">         [0    16    32    64    96    160    224    256]          </luma_point>    <Mode index="1" type="cell" size="[1 3]">     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 normal            </Name>             <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>        <cell index="2" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>      </Setting>     </cell>     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 hdr            </Name>             <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>        <cell index="2" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>      </Setting>     </cell>     <cell index="1" type="struct" size="[1 1]">      <Name index="1" type="char" size="[1 8]">                 gray            </Name>             <Setting index="1" type="cell" size="[1 2]">        <cell index="1" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>        <cell index="2" type="struct" size="[1 1]">          <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                </SNR_Mode>          <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                </Sensor_Mode>                <EDGEFILTER_ISO index="1" type="cell" size="[1 13]">                  <cell index="1" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [50]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                 [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="2" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [100]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [2  6  8  10  16  16  14  10]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [3  4  4  5  6  5  5  4]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="3" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [3]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  7  8  7  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.15  0.20  0.30  0.40  0.40  0.30  0.20  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="4" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [24]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [5  6  6  8  9  8  7  6]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.3  0.40  0.50  0.50  0.50  0.40  0.30  0.20]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="5" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [64]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  32  32  24  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.60  0.60  0.60  0.60  0.60  0.50  0.40]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="6" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [1600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.5  0.50  0.60  0.60  0.60  0.50  0.50  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="7" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [3200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="8" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [6400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="9" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [12800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="10" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [25600]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="11" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [51200]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="12" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [102400]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>              </cell>              <cell index="13" type="struct" size="[1 1]">             <iso index="1" type="double" size="[1 1]">                [204800]             </iso>             <edge_thed index="1" type="double" size="[1 1]">                [5]             </edge_thed>             <src_wgt index="1" type="double" size="[1 1]">                [0.0]             </src_wgt>             <alpha_adp_en index="1" type="char" size="[1 1]">                [1]             </alpha_adp_en>             <local_alpha index="1" type="double" size="[1 1]">                [1.0]             </local_alpha>             <global_alpha index="1" type="double" size="[1 1]">                [1.0]             </global_alpha>             <noise_clip index="1" type="double" size="[1 8]">                [4  8  16  24  24  16  16  16]             </noise_clip>             <dog_clip_pos index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_pos>             <dog_clip_neg index="1" type="double" size="[1 8]">                [6  8  8  8  8  8  8  8]             </dog_clip_neg>             <dog_alpha index="1" type="double" size="[1 8]">                 [0.9  0.90  1.0  1.0  1.0  0.80  0.60  0.50]             </dog_alpha>             <direct_filter_coeff index="1" type="double" size="[1 5]">                [0.10    0.20    0.40    0.20    0.10]             </direct_filter_coeff>             <dog_kernel_row0 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row0>             <dog_kernel_row1 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row1>             <dog_kernel_row2 index="1" type="double" size="[1 5]">                [-0.140625    0.234375    0.437500    0.234375    -0.140625]             </dog_kernel_row2>             <dog_kernel_row3 index="1" type="double" size="[1 5]">                [-0.109375    0.078125    0.234375    0.078125    -0.109375]             </dog_kernel_row3>             <dog_kernel_row4 index="1" type="double" size="[1 5]">                [-0.062500    -0.109375    -0.140625    -0.109375    -0.062500]             </dog_kernel_row4>                </cell>              </EDGEFILTER_ISO>       </cell>      </Setting>     </cell>    </Mode>       </EDGEFILTER>         <DEHAZE index="1" type="struct" size="[1 1]">
   <CalibParaV20 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>    <Enable index="1" type="double" size="[1 1]">                [1]            </Enable>                 <cfg_alpha index="1" type="double" size="[1 1]">                      [0.0000 ]                  </cfg_alpha>                 <Dehaze_Setting index="1" type="struct" size="[1 1]">                     <Dehaze_en index="1" type="double" size="[1 1]">                         [1]                     </Dehaze_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <dc_min_th index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </dc_min_th>                     <dc_max_th index="1" type="double" size="[1 9]">                         [192 192 192 192 192 192 192 192 192]                     </dc_max_th>                     <yhist_th index="1" type="double" size="[1 9]">                         [249 249 249 249 249 249 249 249 249]                     </yhist_th>                     <yblk_th index="1" type="double" size="[1 9]">                         [0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020]                     </yblk_th>                     <dark_th index="1" type="double" size="[1 9]">                         [250 250 250 250 250 250 250 250 250]                     </dark_th>                     <bright_min index="1" type="double" size="[1 9]">                         [180 180 180 180 180 180 180 180 180 ]                     </bright_min>                     <bright_max index="1" type="double" size="[1 9]">                         [240 240 240 240 240 240 240 240 240]                     </bright_max>                     <wt_max index="1" type="double" size="[1 9]">                         [0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000]                     </wt_max>                     <air_min index="1" type="double" size="[1 9]">                         [200  200 200 200 200 200 200 200 200]                     </air_min>                     <air_max index="1" type="double" size="[1 9]">                         [250  250 250 250 250 250 250 250 250]                     </air_max>                     <tmax_base index="1" type="double" size="[1 9]">                         [125 125 125 125 125 125 125 125 125 ]                     </tmax_base>                     <tmax_off index="1" type="double" size="[1 9]">                         [0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000]                     </tmax_off>                     <tmax_max index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </tmax_max>                     <cfg_wt index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </cfg_wt>                     <cfg_air index="1" type="double" size="[1 9]">                         [210 210 210 210 210 210 210 210 210 ]                     </cfg_air>                     <cfg_tmax index="1" type="double" size="[1 9]">                         [0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000]                     </cfg_tmax>                     <dc_thed index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]                     </dc_thed>                     <dc_weitcur index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1 ]                     </dc_weitcur>                     <air_thed index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]                     </air_thed>                     <air_weitcur index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </air_weitcur>                     <stab_fnum index="1" type="double" size="[1 1]">                [8.0]                     </stab_fnum>                     <sigma index="1" type="double" size="[1 1]">                         [6.0000 ]                     </sigma>                     <wt_sigma index="1" type="double" size="[1 1]">                         [8.0000 ]                     </wt_sigma>                     <air_sigma index="1" type="double" size="[1 1]">                         [120.0000 ]                     </air_sigma>                     <tmax_sigma index="1" type="double" size="[1 1]">                         [0.0100 ]                     </tmax_sigma>                 </Dehaze_Setting>                 <Enhance_Setting index="1" type="struct" size="[1 1]">                     <Enhance_en index="1" type="double" size="[1 1]">                         [1 ]                     </Enhance_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <enhance_value index="1" type="double" size="[1 9]">                [1.25 1.25 1.25 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_value>                 </Enhance_Setting>                 <Hist_Setting index="1" type="struct" size="[1 1]">                     <Hist_en index="1" type="double" size="[1 1]">                         [1 ]                     </Hist_en>                     <ISO index="1" type="double" size="[1 9]">                         [50 100 200 400 800 1600 3200 6400 12800 ]                     </ISO>                     <hist_channel index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]                     </hist_channel>                     <hist_para_en index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1]                     </hist_para_en>                     <hist_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_gratio>                     <hist_th_off index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </hist_th_off>                     <hist_k index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_k>                     <hist_scale index="1" type="double" size="[1 9]">                         [0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 ]                     </hist_scale>                     <hist_min index="1" type="double" size="[1 9]">                         [0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150]                     </hist_min>                     <cfg_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </cfg_gratio>                 </Hist_Setting>
       </cell>
   </CalibParaV20>    <CalibParaV21 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>    <Enable index="1" type="double" size="[1 1]">                [1]            </Enable>                 <cfg_alpha index="1" type="double" size="[1 1]">                      [0.0000 ]                  </cfg_alpha>                 <Dehaze_V21_Setting index="1" type="struct" size="[1 1]">                     <Dehaze_en index="1" type="double" size="[1 1]">                         [0]                     </Dehaze_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>
       <air_lc_en index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1 ]                     </air_lc_en>                     <dc_min_th index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </dc_min_th>                     <dc_max_th index="1" type="double" size="[1 9]">                         [192 192 192 192 192 192 192 192 192]                     </dc_max_th>                     <yhist_th index="1" type="double" size="[1 9]">                         [249 249 249 249 249 249 249 249 249]                     </yhist_th>                     <yblk_th index="1" type="double" size="[1 9]">                         [0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020]                     </yblk_th>                     <dark_th index="1" type="double" size="[1 9]">                         [250 250 250 250 250 250 250 250 250]                     </dark_th>                     <bright_min index="1" type="double" size="[1 9]">                         [180 180 180 180 180 180 180 180 180 ]                     </bright_min>                     <bright_max index="1" type="double" size="[1 9]">                         [240 240 240 240 240 240 240 240 240]                     </bright_max>                     <wt_max index="1" type="double" size="[1 9]">                         [0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000]                     </wt_max>                     <air_min index="1" type="double" size="[1 9]">                         [200  200 200 200 200 200 200 200 200]                     </air_min>                     <air_max index="1" type="double" size="[1 9]">                         [250  250 250 250 250 250 250 250 250]                     </air_max>                     <tmax_base index="1" type="double" size="[1 9]">                         [125 125 125 125 125 125 125 125 125 ]                     </tmax_base>                     <tmax_off index="1" type="double" size="[1 9]">                         [0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000]                     </tmax_off>                     <tmax_max index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </tmax_max>                     <cfg_wt index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </cfg_wt>                     <cfg_air index="1" type="double" size="[1 9]">                         [210 210 210 210 210 210 210 210 210 ]                     </cfg_air>                     <cfg_tmax index="1" type="double" size="[1 9]">                         [0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000]                     </cfg_tmax>                     <dc_weitcur index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1 ]                     </dc_weitcur>                     <bf_weight index="1" type="double" size="[1 9]">                [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                     </bf_weight>                     <range_sigma index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </range_sigma>
                  <space_sigma_pre index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </space_sigma_pre>
       <space_sigma_cur index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </space_sigma_cur>                     <stab_fnum index="1" type="double" size="[1 1]">                [8.0]                     </stab_fnum>                     <sigma index="1" type="double" size="[1 1]">                         [6.0000 ]                     </sigma>                     <wt_sigma index="1" type="double" size="[1 1]">                         [8.0000 ]                     </wt_sigma>                     <air_sigma index="1" type="double" size="[1 1]">                         [120.0000 ]                     </air_sigma>                     <tmax_sigma index="1" type="double" size="[1 1]">                         [0.0100 ]                     </tmax_sigma>
       <pre_wet index="1" type="double" size="[1 1]">                         [0.0100 ]                     </pre_wet>                 </Dehaze_V21_Setting>                 <Enhance_V21_Setting index="1" type="struct" size="[1 1]">                     <Enhance_en index="1" type="double" size="[1 1]">                         [1 ]                     </Enhance_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <enhance_value index="1" type="double" size="[1 9]">                [1.25 1.25 1.25 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_value>
       <enhance_chroma index="1" type="double" size="[1 9]">                [1.5 1.4 1.3 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_chroma>
       <enh_curve index="1" type="double" size="[1 17]">                [0 64 128 192 256 320 384 448 512 576 640 704 768 832 896 960 1023]                     </enh_curve>                 </Enhance_V21_Setting>                 <Hist_V21_Setting index="1" type="struct" size="[1 1]">                     <Hist_en index="1" type="double" size="[1 1]">                         [0]                     </Hist_en>                     <ISO index="1" type="double" size="[1 9]">                         [50 100 200 400 800 1600 3200 6400 12800 ]                     </ISO>                     <hist_para_en index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1]                     </hist_para_en>                     <hist_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_gratio>                     <hist_th_off index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </hist_th_off>                     <hist_k index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_k>                     <hist_scale index="1" type="double" size="[1 9]">                         [0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 ]                     </hist_scale>                     <hist_min index="1" type="double" size="[1 9]">                         [0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150]                     </hist_min>                     <cfg_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </cfg_gratio>                 </Hist_V21_Setting>
       </cell>
   </CalibParaV21>    <TuningParaV20 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>    <Enable index="1" type="double" size="[1 1]">                [1]            </Enable>                 <cfg_alpha index="1" type="double" size="[1 1]">                      [0.0000 ]                  </cfg_alpha>                 <Dehaze_Setting index="1" type="struct" size="[1 1]">                     <Dehaze_en index="1" type="double" size="[1 1]">                         [1]                     </Dehaze_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <dc_min_th index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </dc_min_th>                     <dc_max_th index="1" type="double" size="[1 9]">                         [192 192 192 192 192 192 192 192 192]                     </dc_max_th>                     <yhist_th index="1" type="double" size="[1 9]">                         [249 249 249 249 249 249 249 249 249]                     </yhist_th>                     <yblk_th index="1" type="double" size="[1 9]">                         [0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020]                     </yblk_th>                     <dark_th index="1" type="double" size="[1 9]">                         [250 250 250 250 250 250 250 250 250]                     </dark_th>                     <bright_min index="1" type="double" size="[1 9]">                         [180 180 180 180 180 180 180 180 180 ]                     </bright_min>                     <bright_max index="1" type="double" size="[1 9]">                         [240 240 240 240 240 240 240 240 240]                     </bright_max>                     <wt_max index="1" type="double" size="[1 9]">                         [0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000]                     </wt_max>                     <air_min index="1" type="double" size="[1 9]">                         [200  200 200 200 200 200 200 200 200]                     </air_min>                     <air_max index="1" type="double" size="[1 9]">                         [250  250 250 250 250 250 250 250 250]                     </air_max>                     <tmax_base index="1" type="double" size="[1 9]">                         [125 125 125 125 125 125 125 125 125 ]                     </tmax_base>                     <tmax_off index="1" type="double" size="[1 9]">                         [0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000]                     </tmax_off>                     <tmax_max index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </tmax_max>                     <cfg_wt index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </cfg_wt>                     <cfg_air index="1" type="double" size="[1 9]">                         [210 210 210 210 210 210 210 210 210 ]                     </cfg_air>                     <cfg_tmax index="1" type="double" size="[1 9]">                         [0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000]                     </cfg_tmax>                     <dc_thed index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]                     </dc_thed>                     <dc_weitcur index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1 ]                     </dc_weitcur>                     <air_thed index="1" type="double" size="[1 9]">                [2 2 2 2 2 2 2 2 2]                     </air_thed>                     <air_weitcur index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </air_weitcur>                     <stab_fnum index="1" type="double" size="[1 1]">                [8.0]                     </stab_fnum>                     <sigma index="1" type="double" size="[1 1]">                         [6.0000 ]                     </sigma>                     <wt_sigma index="1" type="double" size="[1 1]">                         [8.0000 ]                     </wt_sigma>                     <air_sigma index="1" type="double" size="[1 1]">                         [120.0000 ]                     </air_sigma>                     <tmax_sigma index="1" type="double" size="[1 1]">                         [0.0100 ]                     </tmax_sigma>                 </Dehaze_Setting>                 <Enhance_Setting index="1" type="struct" size="[1 1]">                     <Enhance_en index="1" type="double" size="[1 1]">                         [1 ]                     </Enhance_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <enhance_value index="1" type="double" size="[1 9]">                [1.25 1.25 1.25 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_value>                 </Enhance_Setting>                 <Hist_Setting index="1" type="struct" size="[1 1]">                     <Hist_en index="1" type="double" size="[1 1]">                         [1 ]                     </Hist_en>                     <ISO index="1" type="double" size="[1 9]">                         [50 100 200 400 800 1600 3200 6400 12800 ]                     </ISO>                     <hist_channel index="1" type="double" size="[1 9]">                [0 0 0 0 0 0 0 0 0]                     </hist_channel>                     <hist_para_en index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1]                     </hist_para_en>                     <hist_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_gratio>                     <hist_th_off index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </hist_th_off>                     <hist_k index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_k>                     <hist_scale index="1" type="double" size="[1 9]">                         [0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 ]                     </hist_scale>                     <hist_min index="1" type="double" size="[1 9]">                         [0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150]                     </hist_min>                     <cfg_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </cfg_gratio>                 </Hist_Setting>
       </cell>
   </TuningParaV20>    <TuningParaV21 index="1" type="cell" size="[1 1]">             <cell index="1" type="struct" size="[1 1]">                <scene index="1" type="char" size="[1 10]">                   A0                </scene>    <Enable index="1" type="double" size="[1 1]">                [1]            </Enable>                 <cfg_alpha index="1" type="double" size="[1 1]">                      [0.0000 ]                  </cfg_alpha>                 <Dehaze_V21_Setting index="1" type="struct" size="[1 1]">                     <Dehaze_en index="1" type="double" size="[1 1]">                         [0]                     </Dehaze_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>
       <air_lc_en index="1" type="double" size="[1 9]">                         [0 0 0 0 0 0 0 0 0 ]                     </air_lc_en>                     <dc_min_th index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </dc_min_th>                     <dc_max_th index="1" type="double" size="[1 9]">                         [192 192 192 192 192 192 192 192 192]                     </dc_max_th>                     <yhist_th index="1" type="double" size="[1 9]">                         [249 249 249 249 249 249 249 249 249]                     </yhist_th>                     <yblk_th index="1" type="double" size="[1 9]">                         [0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020 0.0020]                     </yblk_th>                     <dark_th index="1" type="double" size="[1 9]">                         [250 250 250 250 250 250 250 250 250]                     </dark_th>                     <bright_min index="1" type="double" size="[1 9]">                         [180 180 180 180 180 180 180 180 180 ]                     </bright_min>                     <bright_max index="1" type="double" size="[1 9]">                         [240 240 240 240 240 240 240 240 240]                     </bright_max>                     <wt_max index="1" type="double" size="[1 9]">                         [0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000 0.9000]                     </wt_max>                     <air_min index="1" type="double" size="[1 9]">                         [200  200 200 200 200 200 200 200 200]                     </air_min>                     <air_max index="1" type="double" size="[1 9]">                         [250  250 250 250 250 250 250 250 250]                     </air_max>                     <tmax_base index="1" type="double" size="[1 9]">                         [125 125 125 125 125 125 125 125 125 ]                     </tmax_base>                     <tmax_off index="1" type="double" size="[1 9]">                         [0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000]                     </tmax_off>                     <tmax_max index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </tmax_max>                     <cfg_wt index="1" type="double" size="[1 9]">                         [0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000 0.8000]                     </cfg_wt>                     <cfg_air index="1" type="double" size="[1 9]">                         [210 210 210 210 210 210 210 210 210 ]                     </cfg_air>                     <cfg_tmax index="1" type="double" size="[1 9]">                         [0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000 0.2000]                     </cfg_tmax>                     <dc_weitcur index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1 ]                     </dc_weitcur>                     <bf_weight index="1" type="double" size="[1 9]">                [0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5 0.5]                     </bf_weight>                     <range_sigma index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </range_sigma>
                  <space_sigma_pre index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </space_sigma_pre>
       <space_sigma_cur index="1" type="double" size="[1 9]">                         [0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400 0.1400]                     </space_sigma_cur>                     <stab_fnum index="1" type="double" size="[1 1]">                [8.0]                     </stab_fnum>                     <sigma index="1" type="double" size="[1 1]">                         [6.0000 ]                     </sigma>                     <wt_sigma index="1" type="double" size="[1 1]">                         [8.0000 ]                     </wt_sigma>                     <air_sigma index="1" type="double" size="[1 1]">                         [120.0000 ]                     </air_sigma>                     <tmax_sigma index="1" type="double" size="[1 1]">                         [0.0100 ]                     </tmax_sigma>
       <pre_wet index="1" type="double" size="[1 1]">                         [0.0100 ]                     </pre_wet>                 </Dehaze_V21_Setting>                 <Enhance_V21_Setting index="1" type="struct" size="[1 1]">                     <Enhance_en index="1" type="double" size="[1 1]">                         [1]                     </Enhance_en>                     <ISO index="1" type="double" size="[1 9]">                [50 100 200 400 800 1600 3200 6400 12800]                     </ISO>                     <enhance_value index="1" type="double" size="[1 9]">                [1.25 1.25 1.25 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_value>
       <enhance_chroma index="1" type="double" size="[1 9]">                [1.5 1.4 1.3 1.2 1.2 1.2 1.1 1.1 1]                     </enhance_chroma>
       <enh_curve index="1" type="double" size="[1 17]">                [0 64 128 192 256 320 384 448 512 576 640 704 768 832 896 960 1023]                     </enh_curve>                 </Enhance_V21_Setting>                 <Hist_V21_Setting index="1" type="struct" size="[1 1]">                     <Hist_en index="1" type="double" size="[1 1]">                         [0]                     </Hist_en>                     <ISO index="1" type="double" size="[1 9]">                         [50 100 200 400 800 1600 3200 6400 12800 ]                     </ISO>                     <hist_para_en index="1" type="double" size="[1 9]">                         [1 1 1 1 1 1 1 1 1]                     </hist_para_en>                     <hist_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_gratio>                     <hist_th_off index="1" type="double" size="[1 9]">                         [64 64 64 64 64 64 64 64 64 ]                     </hist_th_off>                     <hist_k index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </hist_k>                     <hist_scale index="1" type="double" size="[1 9]">                         [0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 0.09 ]                     </hist_scale>                     <hist_min index="1" type="double" size="[1 9]">                         [0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150 0.0150]                     </hist_min>                     <cfg_gratio index="1" type="double" size="[1 9]">                         [2 2 2 2 2 2 2 2 2 ]                     </cfg_gratio>                 </Hist_V21_Setting>
       </cell>
   </TuningParaV21>         </DEHAZE>       <LUT3D  index="1" type="struct" size="[1 1]">          <enable index="1" type="double" size="[1 1]">             [0]          </enable>          <look_up_table_r index="1" type="double" size="[1 729]">             [  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_r>          <look_up_table_g index="1" type="double" size="[1 729]">             [  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_g>          <look_up_table_b index="1" type="double" size="[1 729]">             [  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 ]          </look_up_table_b>       </LUT3D>       <LDCH index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">                [0]           </enable>           <mesh_file index="1" type="char" size="[1 1]">                LDCH_mesh_2688_1520_os04a10_4IR           </mesh_file>           <correct_level index="1" type="int" size="[1 1]">                [255]           </correct_level>           <correct_level_max index="1" type="int" size="[1 1]">                [255]           </correct_level_max>     <light_center index="1" type="double" size="[1 2]">          [1351.1178239999999277 739.4860800000000153]     </light_center>     <distortion_coeff index="1" type="double" size="[1 4]">          [-1830.2636074851754983 0.0004237951284061 -0.0000002507674855 0.0000000001272470]     </distortion_coeff>       </LDCH>       <FEC index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">                [0]           </enable>           <mesh_file index="1" type="char" size="[1 1]">                FEC_mesh_2688_1520_os04a10_4IR           </mesh_file>           <correct_level index="1" type="int" size="[1 1]">                [255]           </correct_level>     <light_center index="1" type="double" size="[1 2]">          [1351.1178239999999277 739.4860800000000153]     </light_center>     <distortion_coeff index="1" type="double" size="[1 4]">          [-1830.2636074851754983 0.0004237951284061 -0.0000002507674855 0.0000000001272470]     </distortion_coeff>       </FEC>       <ORB index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">                [0]           </enable>       </ORB>       <CPSL index="1" type="struct" size="[1 1]">           <enable index="1" type="char" size="[1 1]">                [1]           </enable>           <mode index="1" type="int" size="[1 1]">                [0]           </mode>           <force_gray index="1" type="char" size="[1 1]">                [1]           </force_gray>           <light_src index="1" type="int" size="[1 1]">                [0]           </light_src>           <auto_adjust_sens index="1" type="double" size="[1 1]">                [50]           </auto_adjust_sens>           <auto_on2off_th index="1" type="int" size="[1 1]">                [3000]           </auto_on2off_th>           <auto_off2on_th index="1" type="int" size="[1 1]">                [100]           </auto_off2on_th>           <auto_sw_interval index="1" type="int" size="[1 1]">                [60]           </auto_sw_interval>           <manual_on index="1" type="char" size="[1 1]">                [0]           </manual_on>           <manual_strength index="1" type="double" size="[1 1]">                [100]           </manual_strength>       </CPSL>       <LUMADETECT index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">                [1]           </enable>           <fixed_times index="1" type="int" size="[1 1]">                [0]           </fixed_times>           <threshold index="1" type="double" size="[1 1]">                [0.0002]           </threshold>           <threshold_level2 index="1" type="double" size="[1 1]">                [1000]           </threshold_level2>        </LUMADETECT>       <COLOR_AS_GREY index="1" type="struct" size="[1 1]">           <enable index="1" type="int" size="[1 1]">                [0]           </enable>        </COLOR_AS_GREY>       <BAYERNR_V2 index="1" type="cell" size="[1 3]">      <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   normal              </ModeName>         <Bayernr2D index="1" type="struct" size="[1 1]">          <Enable index="1" type="double" size="[1 1]">                     [1]                   </Enable>            <Setting index="1" type="cell" size="[1 2]">           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 0 0 0 0 0 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384 ]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 0 0 0 0 0 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384 ]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>               </Setting>                  </Bayernr2D>        <Bayernr3D index="1" type="struct" size="[1 1]">        <Enable index="1" type="double" size="[1 1]">                   [1]              </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.2  0.2  0.2  0.2  0.15  0.1  0.06  0.06  0.06  0.06  0.06  0.06  0.06]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024]                  </sigma>               </cell>         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.2  0.2  0.2  0.2  0.15  0.1  0.06  0.06  0.06  0.06  0.06  0.06  0.06]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024]                  </sigma>               </cell>              </Setting>                  </Bayernr3D>         </cell>      <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   hdr              </ModeName>         <Bayernr2D index="1" type="struct" size="[1 1]">          <Enable index="1" type="double" size="[1 1]">                     [1]                   </Enable>            <Setting index="1" type="cell" size="[1 2]">           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 0 0 0 0 0 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384 ]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 0 0 0 0 0 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384 ]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>               </Setting>                  </Bayernr2D>        <Bayernr3D index="1" type="struct" size="[1 1]">        <Enable index="1" type="double" size="[1 1]">                   [1]              </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.2  0.2  0.2  0.2  0.15  0.1  0.06  0.06  0.06  0.06  0.06  0.06  0.06]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024]                  </sigma>               </cell>         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.2  0.2  0.2  0.2  0.15  0.1  0.06  0.06  0.06  0.06  0.06  0.06  0.06]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024]                  </sigma>               </cell>              </Setting>                  </Bayernr3D>         </cell>      <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   gray              </ModeName>         <Bayernr2D index="1" type="struct" size="[1 1]">          <Enable index="1" type="double" size="[1 1]">                     [1]                   </Enable>            <Setting index="1" type="cell" size="[1 2]">           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 0 0 0 0 0 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384 ]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>           <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </filter_strength>           <gauss_guide index="1" type="double" size="[1 13]">                 [ 0 0 0 0 0 1 1 1 1 1 1 1 1]                 </gauss_guide>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384            768   768   768   768   640   640   640   640   512   512   512   512   512   512   512   384 ]                 </sigma>           <edgesofts index="1" type="double" size="[1 13]">                 [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.0]                 </edgesofts>                 <ratio index="1" type="double" size="[1 13]">                 [0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01  0.01]                 </ratio>                          <weight index="1" type="double" size="[1 13]">                 [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  ]                 </weight>                </cell>               </Setting>                  </Bayernr2D>        <Bayernr3D index="1" type="struct" size="[1 1]">        <Enable index="1" type="double" size="[1 1]">                   [1]              </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.2  0.2  0.2  0.2  0.15  0.1  0.06  0.06  0.06  0.06  0.06  0.06  0.06]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024]                  </sigma>               </cell>         <cell index="1" type="struct" size="[1 1]">                 <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>                 <ISO index="1" type="double" size="[1 13]">                   [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]                 </ISO>                 <filter_strength index="1" type="double" size="[1 13]">                 [ 0.2  0.2  0.2  0.2  0.15  0.1  0.06  0.06  0.06  0.06  0.06  0.06  0.06]                 </filter_strength>           <sp_filter_strength index="1" type="double" size="[1 13]">                 [ 0.55  0.55  0.6  0.6  0.65  0.65  0.65  0.7  0.7  0.7  0.7  0.7  0.7]                 </sp_filter_strength>           <lo_clipwgt index="1" type="double" size="[1 13]">                 [ 0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </lo_clipwgt>           <hi_clipwgt index="1" type="double" size="[1 13]">                 [0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215  0.03215 ]                 </hi_clipwgt>           <softwgt index="1" type="double" size="[1 13]">                 [0  0  0  0  0  0  0  0  0  0  0  0  0   ]                 </softwgt>                 <lumapoint ndex="1" type="double" size="[1 16]">                 [256  512  768  1024  1280  1536  1792  2048  2304  2560  2816  3072  3328  3584  3840  4095]                 </lumapoint>                 <sigma index="1" type="double" size="[13  16]">                 [3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024        3072 3072 3072 3072 2560 2560 2560 2560 2048 2048 2048 2048 1536 1536 1536 1024]                  </sigma>               </cell>              </Setting>                  </Bayernr3D>         </cell>    </BAYERNR_V2>             <YNR_V2 index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   normal               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1             1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>             <sigma_curve index="1" type="double" size="[13 5]">                [-7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5                        1  1  1  1  1  1  1  1  1  1  1  1  1 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [0.6 0.65 0.70 0.75 0.8 0.9 0.95 1 1.1 1.1 1.1 1.1 1.1            0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [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]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [1  1  1  1  1  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1             1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>             <sigma_curve index="1" type="double" size="[13 5]">                [-7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5                        1  1  1  1  1  1  1  1  1  1  1  1  1 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5             0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [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]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [1  1  1  1  1  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   hdr               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1             1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>             <sigma_curve index="1" type="double" size="[13 5]">                [-7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5                        1  1  1  1  1  1  1  1  1  1  1  1  1 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [0.6 0.65 0.70 0.75 0.8 0.9 0.95 1 1.1 1.1 1.1 1.1 1.1            0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [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]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [1  1  1  1  1  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1             1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>             <sigma_curve index="1" type="double" size="[13 5]">                [-7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5                        1  1  1  1  1  1  1  1  1  1  1  1  1 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5             0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [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]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [1  1  1  1  1  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   gray               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1             1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>             <sigma_curve index="1" type="double" size="[13 5]">                [-7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5                        1  1  1  1  1  1  1  1  1  1  1  1  1 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [0.6 0.65 0.70 0.75 0.8 0.9 0.95 1 1.1 1.1 1.1 1.1 1.1            0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [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]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [1  1  1  1  1  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <ynr_bft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </ynr_bft3x3_bypass>        <ynr_lbft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lbft5x5_bypass>        <ynr_lgft3x3_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_lgft3x3_bypass>        <ynr_flt1x1_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </ynr_flt1x1_bypass>        <ynr_sft5x5_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  0]             </ynr_sft5x5_bypass>             <rnr_strength index="1" type="double" size="[13 17]">                [1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1             1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1            1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1              1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  1  ]             </rnr_strength>             <sigma_curve index="1" type="double" size="[13 5]">                [-7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01            -7.802291006919682e-13  6.773665890751374e-09  -2.204313937475975e-05  2.987511260578973e-02  1.093824098804321e+01]             </sigma_curve>             <ynr_ci index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5                        1  1  1  1  1  1  1  1  1  1  1  1  1 ]             </ynr_ci>             <low_bf index="1" type="double" size="[2 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5             0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6  0.6 ]             </low_bf>             <low_thred_adj index="1" type="double" size="[1 13]">                [0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25  0.25 ]             </low_thred_adj>             <low_peak_supress index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_peak_supress>             <low_edge_adj_thresh index="1" type="double" size="[1 13]">                [7  7  7  7  7  7  7  7  7  7  7  7  7  ]             </low_edge_adj_thresh>             <low_center_weight index="1" type="double" size="[1 13]">                [0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40  0.40]             </low_center_weight>             <low_dist_adj index="1" type="double" size="[1 13]">                [8  8  8  8  8  8  8  8  8  8  8  8  8]             </low_dist_adj>             <low_weight index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5 ]             </low_weight>             <low_filt_strength index="1" type="double" size="[2 13]">                [0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7  0.7            0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85  0.85]             </low_filt_strength>             <low_bi_weight index="1" type="double" size="[1 13]">                [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]             </low_bi_weight>             <base_filter_weight index="1" type="double" size="[3 13]">                [0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28  0.28               0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46  0.46              0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26  0.26 ]             </base_filter_weight>             <high_thred_adj index="1" type="double" size="[1 13]">                [1  1  1  1  1  1  1  1  1  1  1  1  1]             </high_thred_adj>             <high_weight index="1" type="double" size="[1 13]">                [0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  0.78  ]             </high_weight>             <high_direction_weight index="1" type="double" size="[13 8]">                [1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5                        1  1  1  1  0.5  0.5  0.5  0.5                       1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5            1  1  1  1  0.5  0.5  0.5  0.5]             </high_direction_weight>             <hi_min_adj index="1" type="double" size="[1 13]">                [0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  0.9  ]             </hi_min_adj>             <hi_edge_thed index="1" type="double" size="[1 13]">                [100  100  100  100  100  100  100  100  100  100  100  100  100 ]             </hi_edge_thed>      </cell>     </Setting>          </cell>        </YNR_V2>             <CNR_V1 index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   normal               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   hdr               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   gray               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <hf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0   ]             </hf_bypass>        <lf_bypass index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </lf_bypass>        <cnr_exgain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_exgain>        <cnr_g_gain index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </cnr_g_gain>        <color_sat_adj index="1" type="double" size="[1 13]">                [40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0  40.0]             </color_sat_adj>        <color_sat_adj_alpha index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </color_sat_adj_alpha>        <hf_spikes_reducion_strength index="1" type="double" size="[1 13]">                [0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5]             </hf_spikes_reducion_strength>        <hf_denoise_strength index="1" type="double" size="[1 13]">                [10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2  10.2 ]             </hf_denoise_strength>        <hf_color_sat index="1" type="double" size="[1 13]">                [1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5  1.5]             </hf_color_sat>        <hf_denoise_alpha index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_denoise_alpha>        <hf_bf_wgt_clip index="1" type="double" size="[1 13]">                [0  0  0  0  0  0  0  0  0  0  0  0  0  ]             </hf_bf_wgt_clip>        <thumb_spikes_reducion_strength index="1" type="double" size="[1 13]">                [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]             </thumb_spikes_reducion_strength>        <thumb_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_denoise_strength>        <thumb_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </thumb_color_sat>        <lf_denoise_strength index="1" type="double" size="[1 13]">                [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.0 ]             </lf_denoise_strength>        <lf_color_sat index="1" type="double" size="[1 13]">                [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.0 ]             </lf_color_sat>        <lf_denoise_alpha index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0]             </lf_denoise_alpha>             <kernel_5x5 index="1" type="double" size="[1 5]">                [1  0.8825  0.7788  0.6065  0.3679]             </kernel_5x5>      </cell>     </Setting>          </cell>        </CNR_V1>           <Sharp_V3 index="1" type="cell" size="[1 3]">        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   normal               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 8    12    16    16    24    20    16    16                  12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.00 0.00 0.00 0.00 0.20 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [6.0 6.0 6.0 7.0 7.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0            64 96 128 160 192 160 128 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [1023  1023  1023  1023  1023  1023  1023  1023            1023  1023  1023  1023  1023  1023  1023  1023            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 8    12    16    16    24    20    16    16                  12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.00 0.00 0.00 0.00 0.20 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [6.0 6.0 6.0 7.0 7.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [1023  1023  1023  1023  1023  1023  1023  1023            1023  1023  1023  1023  1023  1023  1023  1023            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   hdr               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 8    12    16    16    24    20    16    16                  12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.00 0.00 0.00 0.00 0.20 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [6.0 6.0 6.0 7.0 7.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [1023  1023  1023  1023  1023  1023  1023  1023            1023  1023  1023  1023  1023  1023  1023  1023            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 8    12    16    16    24    20    16    16                  12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.00 0.00 0.00 0.00 0.20 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [6.0 6.0 6.0 7.0 7.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [1023  1023  1023  1023  1023  1023  1023  1023            1023  1023  1023  1023  1023  1023  1023  1023            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>     </Setting>          </cell>        <cell index="1" type="struct" size="[1 1]">         <ModeName index="1" type="char" size="[1 8]">                   gray               </ModeName>         <Enable index="1" type="double" size="[1 1]">             [1]         </Enable>         <Setting index="1" type="cell" size="[1 2]">         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      LSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      lcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 8    12    16    16    24    20    16    16                  12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.00 0.00 0.00 0.00 0.20 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [6.0 6.0 6.0 7.0 7.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [1023  1023  1023  1023  1023  1023  1023  1023            1023  1023  1023  1023  1023  1023  1023  1023            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>         <cell index="1" type="struct" size="[1 1]">           <SNR_Mode index="1" type="char" size="[1 8]">                      HSNR                 </SNR_Mode>           <Sensor_Mode index="1" type="char" size="[1 8]">                      hcg                 </Sensor_Mode>             <iso index="1" type="double" size="[1 13]">                [50 100 200 400 800 1600 3200 6400 12800 25600 51200 102400 204800]             </iso>        <luma_point index="1" type="double" size="[1 8]">                [0 64 128 256 384 640 896 1024]             </luma_point>        <luma_sigma index="1" type="double" size="[13 8]">                [ 8    12    16    16    24    20    16    16                  12    16    20    24    28    24    20    20                  24    32    40    48    56    48    48    40                  32    40    48    56    64    56    48    40                  40    48    56    64    80    64    56    48                 48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56                  48    56    64    80    96    80    64    56]             </luma_sigma>        <pbf_gain index="1" type="double" size="[1 13]">                [0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8  0.8]             </pbf_gain>        <pbf_add index="1" type="double" size="[1 13]">                [1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0  1.0 ]             </pbf_add>        <pbf_ratio index="1" type="double" size="[1 13]">                [0.00 0.00 0.00 0.00 0.20 0.20 0.20 0.30 0.40 0.40 0.40 0.40 0.40]             </pbf_ratio>        <gaus_ratio index="1" type="double" size="[1 13]">                [0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 ]             </gaus_ratio>             <sharp_ratio index="1" type="double" size="[1 13]">                [6.0 6.0 6.0 7.0 7.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0 8.0]             </sharp_ratio>             <hf_clip index="1" type="double" size="[13 8]">                [64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0            64 96 12 16 19 16 12 0]             </hf_clip>             <bf_gain index="1" type="double" size="[1 13]">                [2.00 3.00 3.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00 4.00]             </bf_gain>             <bf_add index="1" type="double" size="[1 13]">                [32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0 32.0]             </bf_add>             <bf_ratio index="1" type="double" size="[1 13]">                [1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00]             </bf_ratio>             <local_sharp_strength index="1" type="double" size="[13 8]">                [1023  1023  1023  1023  1023  1023  1023  1023            1023  1023  1023  1023  1023  1023  1023  1023            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            512  512  512  512  512  512  512  512            256  256  256  256  256  256  256  256            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128            128  128  128  128  128  128  128  128]             </local_sharp_strength>             <prefilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </prefilter_coeff>             <GaussianFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </GaussianFilter_coeff>             <hfBilateralFilter_coeff index="1" type="double" size="[3 13]">                [0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042  0.2042                 0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238  0.1238                 0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751  0.0751]             </hfBilateralFilter_coeff>             <sharp_ratio_h index="1" type="double" size="[1 13]">                [2.0 2.0 2.0 2.0 2.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0]             </sharp_ratio_h>             <sharp_ratio_m index="1" type="double" size="[1 13]">                [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.0 ]             </sharp_ratio_m>             <sharp_ratio_l index="1" type="double" size="[1 13]">                [4.0 4.0 3.0 3.0 3.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 2.0 ]             </sharp_ratio_l>             <clip_hf index="1" type="double" size="[13 8]">                [4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0               4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0             4 6 8 10 12 10 8 0 ]             </clip_hf>        <clip_mf index="1" type="double" size="[13 8]">                [8 12 16 20 26 24 12 0              8 12 16 20 26 24 12 0               8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0             8 12 16 20 26 24 12 0 ]             </clip_mf>        <clip_lf index="1" type="double" size="[13 8]">                [6 8 12 16 20 18 8 0               6 8 12 16 20 18 8 0              6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0            6 8 12 16 20 18 8 0]             </clip_lf>             <local_wgt index="1" type="double" size="[13 8]">                [128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1               128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1             128 128 128 128 128 128 64 1 ]             </local_wgt>      </cell>     </Setting>          </cell>        </Sharp_V3>    </sensor>      <expset index="1" type="struct" size="[1 1]">      <Gain2Reg index="1" type="struct" size="[1 1]">         <IsLinear index="1" type="double" size="[1 1]">             [1]         </IsLinear>         <Linear index="1" type="double" size="[1 7]">            [1 8 128 0 1 128 1024]         </Linear>         <NonLinear index="1" type="char" size="[1 10]">            DB_MODE         </NonLinear>      </Gain2Reg>      <Time2Reg index="1" type="double" size="[1 4]">         [0 0 1 0.5]      </Time2Reg>      <CISGainSet index="1" type="struct" size="[1 1]">             <CISAgainRange index="1" type="double" size="[1 2]">               [1 8]          </CISAgainRange>    <CISExtraAgainRange index="1" type="double" size="[1 2]">             [1 1]          </CISExtraAgainRange>          <CISDgainRange index="1" type="double" size="[1 2]">             [1 1]          </CISDgainRange>          <CISIspDgainRange index="1" type="double" size="[1 2]">             [1 1]          </CISIspDgainRange>           <CISHdrGainIndSetEn index="1" type="double" size="[1 1]">             [1]          </CISHdrGainIndSetEn>      </CISGainSet>      <CISTimeSet index="1" type="struct" size="[1 1]">           <Normal index="1" type="struct" size="[1 1]">              <CISTimeRegMaxFac index="1" type="double" size="[1 2]">                 [1.0000 4.0000 ]                 </CISTimeRegMaxFac>              <CISTimeRegMin index="1" type="double" size="[1 1]">                 [4]              </CISTimeRegMin>              <CISTimeRegOdevity index="1" type="double" size="[1 2]">                 [1 0]              </CISTimeRegOdevity>                  </Normal>           <Hdr index="1" type="cell" size="[1 2]">          <cell index="1" type="struct" size="[1 1]">            <name index="1" type="char" size="[1 8]">          2frame            </name>            <CISTimeRegUnEqualEn index="1" type="double" size="[1 1]">               [1]            </CISTimeRegUnEqualEn>                  <CISTimeRegSumFac index="1" type="double" size="[1 2]">                [1.0000 4.0000 ]            </CISTimeRegSumFac>             <CISTimeRegMax index="1" type="double" size="[1 3]">                [0 0 0]             </CISTimeRegMax>             <CISTimeRegMin index="1" type="double" size="[1 1]">                [4]             </CISTimeRegMin>             <CISTimeRegOdevity index="1" type="double" size="[1 2]">               [1 0]             </CISTimeRegOdevity>          </cell>          <cell index="1" type="struct" size="[1 1]">            <name index="1" type="char" size="[1 8]">          3frame            </name>            <CISTimeRegUnEqualEn index="1" type="double" size="[1 1]">               [1]            </CISTimeRegUnEqualEn>                  <CISTimeRegSumFac index="1" type="double" size="[1 2]">                [1.0000 4.0000 ]            </CISTimeRegSumFac>             <CISTimeRegMax index="1" type="double" size="[1 3]">                [0 0 0]             </CISTimeRegMax>             <CISTimeRegMin index="1" type="double" size="[1 1]">                [4]             </CISTimeRegMin>             <CISTimeRegOdevity index="1" type="double" size="[1 2]">                [1 0]             </CISTimeRegOdevity>            </cell>           </Hdr>       </CISTimeSet>             <CISMinFps index="1" type="double" size="[1 1]">    [10]       </CISMinFps>          <CISHdrSet index="1" type="struct" size="[1 1]">         <enable index="1" type="double" size="[1 1]">            [0]         </enable>         <support_mode index="1" type="char" size="[1 1]">            MODE_2_LINE         </support_mode>         <line_mode index="1" type="char" size="[1 1]">            STAGGER         </line_mode>          </CISHdrSet>    <CISDcgSet index="1" type="struct" size="[1 1]">      <Normal index="1" type="struct" size="[1 1]">                <support_en index="1" type="double" size="[1 1]">           [0]        </support_en>        <dcg_optype index="1" type="char" size="[1 8]">           AUTO        </dcg_optype>        <dcgmode_init index="1" type="double" size="[1 1]">           [0]        </dcgmode_init>        <dcg_ratio index="1" type="double" size="[1 1]">           [1]        </dcg_ratio>        <gain_ctrl index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">              [1]           </enable>           <lcg2hcg_th index="1" type="double" size="[1 1]">              [32]           </lcg2hcg_th>           <hcg2lcg_th index="1" type="double" size="[1 1]">              [16]           </hcg2lcg_th>        </gain_ctrl>        <env_ctrl index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">              [0]           </enable>           <lcg2hcg_th index="1" type="double" size="[1 1]">              [0.3125]           </lcg2hcg_th>           <hcg2lcg_th index="1" type="double" size="[1 1]">              [0.6]           </hcg2lcg_th>        </env_ctrl>      </Normal>      <Hdr index="1" type="struct" size="[1 1]">            <support_en index="1" type="double" size="[1 1]">           [0]        </support_en>        <dcg_optype index="1" type="char" size="[1 8]">           AUTO        </dcg_optype>        <dcgmode_init index="1" type="double" size="[1 3]">           [0 0 0]        </dcgmode_init>        <dcg_ratio index="1" type="double" size="[1 1]">           [3.5]        </dcg_ratio>        <sync_switch index="1" type="double" size="[1 1]">           [1]        </sync_switch>        <gain_ctrl index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">              [1]           </enable>           <lcg2hcg_th index="1" type="double" size="[1 1]">              [32]           </lcg2hcg_th>           <hcg2lcg_th index="1" type="double" size="[1 1]">              [16]           </hcg2lcg_th>        </gain_ctrl>        <env_ctrl index="1" type="struct" size="[1 1]">           <enable index="1" type="double" size="[1 1]">              [0]           </enable>           <lcg2hcg_th index="1" type="double" size="[1 1]">              [0.3125]           </lcg2hcg_th>           <hcg2lcg_th index="1" type="double" size="[1 1]">              [0.6]           </hcg2lcg_th>        </env_ctrl>      </Hdr>    </CISDcgSet>          <CISExpUpdate index="1" type="struct" size="[1 1]">       <Normal index="1" type="struct" size="[1 1]">             <time_update index="1" type="double" size="[1 1]">            [2]         </time_update>         <gain_update index="1" type="double" size="[1 1]">            [2]         </gain_update>         <dcg_update index="1" type="double" size="[1 1]">            [2]         </dcg_update>      </Normal>      <Hdr index="1" type="struct" size="[1 1]">             <time_update index="1" type="double" size="[1 1]">            [2]         </time_update>         <gain_update index="1" type="double" size="[1 1]">            [2]         </gain_update>         <dcg_update index="1" type="double" size="[1 1]">            [1]         </dcg_update>      </Hdr>          </CISExpUpdate>      <CISFlip index="1" type="double" size="[1 1]">         [0]      </CISFlip>       </expset>   <module  index="1" type="struct" size="[1 1]">      <FNumber index="1" type="double" size="[1 1]">         [1.6]      </FNumber>      <EFL index="1" type="double" size="[1 1]">         [5.2]      </EFL>      <LensTavg index="1" type="double" size="[1 1]">         [90]      </LensTavg>      <IRCutTavg index="1" type="double" size="[1 1]">         [90]      </IRCutTavg>   </module> </matfile>