summaryrefslogtreecommitdiff
path: root/camlibs/ptp2/cameras/nikon-d70.txt
blob: 631affd51ddaa3b165626a72c7addba57ced312f (plain)
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
Device info:
Manufacturer: Nikon Corporation
  model: D70
  device version: V1.02
  serial number: '(null)'
Vendor extension ID: 0x0000000a
Vendor extension description: Nikon PTP Extensions
Supported operations:
  0x1001
  0x1002
  0x1003
  0x1004
  0x1005
  0x1006
  0x1007
  0x1008
  0x1009
  0x100a
  0x100b
  0x100c
  0x100d
  0x100e
  0x100f
  0x1014
  0x1015
  0x1016
  0x101b
  0x90c0
  0x90c1
  0x90c2
  0x90c3
  0x90c4
  0x90c5
  0x90c6
  0x90c7
  0x90c8
  0x90c9
Events Supported:
  0x4001
  0x4002
  0x4004
  0x4005
  0x4006
  0x4009
  0x400a
  0x400c
  0x400d
  0xc101
  0xc102
Device Properties Supported:
  0x5001
  0x5003
  0x5004
  0x5005
  0x5007
  0x5008
  0x500a
  0x500b
  0x500c
  0x500d
  0x500e
  0x500f
  0x5010
  0x5011
  0x5013
  0x5018
  0x501c
  0xd017
  0xd018
  0xd019
  0xd01a
  0xd01b
  0xd01c
  0xd01d
  0xd01f
  0xd025
  0xd026
  0xd02a
  0xd02b
  0xd02c
  0xd02d
  0xd045
  0xd04f
  0xd054
  0xd056
  0xd058
  0xd059
  0xd05e
  0xd05f
  0xd062
  0xd063
  0xd064
  0xd06b
  0xd06c
  0xd075
  0xd078
  0xd07a
  0xd086
  0xd08a
  0xd090
  0xd091
  0xd092
  0xd0c0
  0xd0c2
  0xd0c3
  0xd0c4
  0xd0c5
  0xd0e0
  0xd0e1
  0xd0e2
  0xd0e3
  0xd0e4
  0xd0e5
  0xd0e6
  0xd100
  0xd101
  0xd102
  0xd103
  0xd104
  0xd105
  0xd106
  0xd108
  0xd109
  0xd10a
  0xd10d
  0xd10e
  0xd10b
  0xd120
  0xd121
  0xd122
  0xd124
  0xd125
  0xd126
  0xd140
  0xd142
  0xd160
  0xd161
  0xd163
  0xd164
  0xd165
  0xd166
  0xd167
  0xd168
  0xd169
  0xd16b
  0xd16c
  0xd16d
  0xd16e
  0xd180
  0xd190
  0xd1b0
  0xd1c0
  0xd1c1

v2 firmware:

Device info:
Manufacturer: Nikon Corporation
  model: D70
  device version: V2.00
  serial number: '(null)'
Vendor extension ID: 0x0000000a
Vendor extension description: Nikon PTP Extensions
Supported operations:
  0x1001
  0x1002
  0x1003
  0x1004
  0x1005
  0x1006
  0x1007
  0x1008
  0x1009
  0x100a
  0x100b
  0x100c
  0x100d
  0x100e
  0x100f
  0x1014
  0x1015
  0x1016
  0x101b
  0x90c0
  0x90c1
  0x90c2
  0x90c3
  0x90c4
  0x90c5
  0x90c6
  0x90c7
  0x90c8
  0x90c9
Events Supported:
  0x4001
  0x4002
  0x4004
  0x4005
  0x4006
  0x4009
  0x400a
  0x400c
  0x400d
  0xc101
  0xc102
Device Properties Supported:
  0x5001
  0x5003
  0x5004
  0x5005
  0x5007
  0x5008
  0x500a
  0x500b
  0x500c
  0x500d
  0x500e
  0x500f
  0x5010
  0x5011
  0x5013
  0x5018
  0x501c
  0xd017
  0xd018
  0xd019
  0xd01a
  0xd01b
  0xd01c
  0xd01d
  0xd01f
  0xd025
  0xd026
  0xd02a
  0xd02b
  0xd02c
  0xd02d
  0xd045
  0xd04f
  0xd054
  0xd056
  0xd058
  0xd059
  0xd05e
  0xd05f
  0xd062
  0xd063
  0xd064
  0xd06b
  0xd06c
  0xd075
  0xd078
  0xd07a
  0xd086
  0xd08a
  0xd090
  0xd091
  0xd092
  0xd0c0
  0xd0c2
  0xd0c3
  0xd0c4
  0xd0c5
  0xd0e0
  0xd0e1
  0xd0e2
  0xd0e3
  0xd0e4
  0xd0e5
  0xd0e6
  0xd100
  0xd101
  0xd102
  0xd103
  0xd104
  0xd105
  0xd106
  0xd108
  0xd109
  0xd10a
  0xd10d
  0xd10e
  0xd10b
  0xd120
  0xd121
  0xd122
  0xd124
  0xd125
  0xd126
  0xd140
  0xd142
  0xd160
  0xd161
  0xd163
  0xd164
  0xd165
  0xd166
  0xd167
  0xd168
  0xd169
  0xd16b
  0xd16c
  0xd16d
  0xd16e
  0xd180
  0xd190
  0xd1b0
  0xd1c0
  0xd1c1

Camera summary:
Model: D70
  device version: V2.00
  serial number:  (null)
Vendor extension ID: 0x0000000a
Vendor extension description: Nikon PTP Extensions
	Battery Level(0x5001):(read only) (type=0x2) Range [0 - 100, step 1] value: 100% (100)
[x]	Image Size(0x5003):(readwrite) (type=0xffff) Enumeration [
		'3008x2000',
		'2240x1488',
		'1504x1000'
		] value: '3008x2000'
[x]	Compression Setting(0x5004):(readwrite) (type=0x2) Enumeration [0,1,2,4,5] value: JPEG Fine (2)
[x]	White Balance(0x5005):(readwrite) (type=0x4) Enumeration [2,4,5,6,7,32784,32785,32787] value: Auto (2)


[x]	F-Number(0x5007):(readwrite) (type=0x4) Enumeration [350,400,450,500,560,630,710,800,900,1000,1100,1300,1400,1600,1800,2000,2200] value: f/3.5 (350)

	Focal Length(0x5008):(read only) (type=0x6) Range [1800 - 7000, step 1] value: 18 mm (1800)
	Focus Mode(0x500a):(read only) (type=0x4) Enumeration [1,32784,32785] value: AF-S (32784)

[x]	Exposure Metering Mode(0x500b):(readwrite) (type=0x4) Enumeration [2,3,4] value: Matrix (3)

[x]	Flash Mode(0x500c):(readwrite) (type=0x4) Enumeration [4,32784,32785,32786,32787] value: Default (32784)

[-]	Exposure Time(0x500d):(read only) (type=0x6) Enumeration [1,2,3,4,5,6,8,10,12,15,20,25,31,40,50,62,80,100,125,166,200,250,333,400,500,666,769,1000,1250,1666,2000,2500,3333,4000,5000,6250,7692,10000,13000,16000,20000,25000,30000,40000,50000,60000,80000,100000,130000,150000,200000,250000,300000] value: 0.017 sec (1666)
			(zuviele choices)

[x]	Exposure Program Mode(0x500e):(read only) (type=0x4) Enumeration [1,2,3,4,32784,32785,32786,32787,32788,32789,32790] value: P (2)

[x]	Exposure Index (film speed ISO)(0x500f):(readwrite) (type=0x4) Enumeration [200,250,320,400,500,640,800,1000,1250,1600] value: ISO 200 (200)


Exposure Bias Compensation(0x5010):(readwrite) (type=0x3) Enumeration [-5000,-4666,-4333,-4000,-3666,-3333,-3000,-2666,-2333,-2000,-1666,-1333,-1000,-666,-333,0,333,666,1000,1333,1666,2000,2333,2666,3000,3333,3666,4000,4333,4666,5000] value: 0.0 stops (0)



Date Time(0x5011):(readwrite) (type=0xffff) '20050708T100610'

[x]	Still Capture Mode(0x5013):(readwrite) (type=0x4) Enumeration [1,2,32785,32787,32788] value: Single Shot (1)

Burst Number(0x5018):(readwrite) (type=0x4) Range [1 - 49, step 1] value: 1

[x]	Focus Metering Mode(0x501c):(readwrite) (type=0x4) Enumeration [2,32784,32785] value: Single Area (32784)


Auto White Balance Bias(0xd017):(readwrite) (type=0x1) Range [-3 - 3, step 1] value: 0
Tungsten White Balance Bias(0xd018):(readwrite) (type=0x1) Range [-3 - 3, step 1] value: 0
Flourescent White Balance Bias(0xd019):(readwrite) (type=0x1) Range [-3 - 3, step 1] value: 0
Daylight White Balance Bias(0xd01a):(readwrite) (type=0x1) Range [-3 - 3, step 1] value: 0
Flash White Balance Bias(0xd01b):(readwrite) (type=0x1) Range [-3 - 3, step 1] value: 0
Cloudy White Balance Bias(0xd01c):(readwrite) (type=0x1) Range [-3 - 3, step 1] value: 0
Shady White Balance Bias(0xd01d):(readwrite) (type=0x1) Range [-3 - 4, step 1] value: 0
Property 0xd01f:(readwrite) (type=0x2) Range [0 - 2, step 1] value: 0
Property 0xd025:(read only) (type=0x6) 33685926
Property 0xd026:(read only) (type=0x6) 33685926
Sharpening(0xd02a):(readwrite) (type=0x2) Range [0 - 6, step 1] value: 0
Tone Compensation(0xd02b):(readwrite) (type=0x2) Range [0 - 6, step 1] value: 0
Colour Mode(0xd02c):(readwrite) (type=0x2) Range [0 - 2, step 1] value: sRGB (0)
Hue Adjustment(0xd02d):(readwrite) (type=0x1) Range [-9 - 9, step 3] value: 0
Property 0xd045:(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Focus Area(0xd04f):(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Auto ISO(0xd054):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
Exposure Step(0xd056):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 0
Exposure Compensation(0xd058):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
Centre Weight Area(0xd059):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 8 mm (1)
Exposure Lock(0xd05e):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
Focus Lock(0xd05f):(readwrite) (type=0x2) Range [0 - 5, step 1] value: 0
Auto Meter Off Time(0xd062):(readwrite) (type=0x2) Range [0 - 4, step 1] value: 1
Self Timer Delay(0xd063):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 2
LCD Off Time(0xd064):(readwrite) (type=0x2) Range [0 - 4, step 1] value: 1
Long Exposure Noise Reduction(0xd06b):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
File Number Sequencing(0xd06c):(readwrite) (type=0x2) Range [0 - 2, step 1] value: On (1)
Flash Shutter Speed(0xd075):(readwrite) (type=0x2) Range [0 - 11, step 1] value: 0
Auto Bracket Set(0xd078):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 0
Auto Bracket Order(0xd07a):(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Reverse Command Dials(0xd086):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
No CF Card Release(0xd08a):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (1)
Image Comment String(0xd090):(readwrite) (type=0xffff) '                                    '
Property 0xd091:(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Auto Image Rotation(0xd092):(readwrite) (type=0x2) Range [0 - 1, step 1] value: On (0)
Exposure Bracketing(0xd0c0):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
Exposure Bracketing Number(0xd0c2):(readwrite) (type=0x2) Range [0 - 2, step 1] value: 2
Property 0xd0c3:(read only) (type=0x2) Range [1 - 3, step 1] value: 1
Property 0xd0c4:(readwrite) (type=0x2) Range [0 - 2, step 1] value: 0
Property 0xd0c5:(readwrite) (type=0x2) Range [0 - 2, step 1] value: 0
Lens ID(0xd0e0):(read only) (type=0x2) AF-S Nikkor 18-70mm 1:3.5-4.5G ED DX (127)
Property 0xd0e1:(read only) (type=0x2) Range [0 - 1, step 1] value: 1
Property 0xd0e2:(read only) (type=0x2) 3
Min. Focal Length(0xd0e3):(read only) (type=0x6) 18 mm (1800)
Max. Focal Length(0xd0e4):(read only) (type=0x6) 70 mm (7000)
Max. Aperture at Min. Focal Length(0xd0e5):(read only) (type=0x4) f/3.5 (350)
Max. Aperture at Max. Focal Length(0xd0e6):(read only) (type=0x4) f/4.5 (450)
Property 0xd100:(read only) (type=0x6) Enumeration [73536,71936,70536,69536,68736,68036,67536,67136,66786,66536,66336,66176,66036,65936,65856,65786,65736,65696,65661,65636,65616,65596,65586,65576,65566,65561,65556,65551,65549,65546,65544,65542,65541,65540,65539,655385,65538,655376,655373,65537,851978,1048586,131073,1638410,196609,262145,327681,393217,524289,655361,851969,983041,1310721,1638401,1966081] value: 65544
Property 0xd101:(read only) (type=0x2) Range [0 - 1, step 1] value: 0
Property 0xd102:(read only) (type=0x2) 0
Maximum Shots(0xd103):(read only) (type=0x2) Range [0 - 49, step 1] value: 9
Property 0xd104:(read only) (type=0x2) Range [0 - 1, step 1] value: 0
Property 0xd105:(read only) (type=0x2) Range [0 - 1, step 1] value: 0
Property 0xd106:(read only) (type=0x2) Range [0 - 1, step 1] value: 0
Active AF Sensor(0xd108):(readwrite) (type=0x2) Range [0 - 4, step 1] value: Centre (0)
Property 0xd109:(readwrite) (type=0x1) Range [-30 - 30, step 2] value: 0
Exposure Meter(0xd10a):(read only) (type=0x1) Range [-128 - 127, step 1] value: 0.0 stops (0)
Property 0xd10d:(read only) (type=0xffff) 'NO= 3003d00a        '
Property 0xd10e:(read only) (type=0x2) Range [0 - 2, step 1] value: 0
Property 0xd10b:(readwrite) (type=0x2) Range [0 - 1, step 1] value: 0
Property 0xd120:(read only) (type=0x2) Range [0 - 1, step 1] value: 0
Property 0xd121:(read only) (type=0x2) Range [0 - 1, step 1] value: 0
Property 0xd122:(read only) (type=0x2) Range [0 - 1, step 1] value: 0
Property 0xd124:(read only) (type=0x1) Range [-18 - 18, step 1] value: 0
Property 0xd125:(read only) (type=0x2) Range [0 - 7, step 1] value: 1
Flash Exposure Compensation(0xd126):(readwrite) (type=0x1) Range [-18 - 6, step 2] value: 0.0 stops (0)
Property 0xd140:(readwrite) (type=0x2) Range [0 - 7, step 1] value: 0
Property 0xd142:(readwrite) (type=0x2) Range [0 - 2, step 1] value: 0
AF Beep Mode(0xd160):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (1)
??? AF Related(0xd161):(readwrite) (type=0x2) Range [0 - 1, step 1] value: Off (0)
AF Lamp(0xd163):(readwrite) (type=0x2) Range [0 - 1, step 1] value: On (0)
Auto ISO P/A/DVP Setting(0xd164):(readwrite) (type=0x2) Range [0 - 12, step 1] value: 2
Image Review(0xd165):(readwrite) (type=0x2) Range [0 - 1, step 1] value: On (0)
AF Area Illumination(0xd166):(readwrite) (type=0x2) Range [0 - 2, step 1] value: Auto (0)
Flash Mode(0xd167):(readwrite) (type=0x2) Range [0 - 2, step 1] value: iTTL (0)
Property 0xd168:(readwrite) (type=0x2) Range [0 - 2, step 1] value: 0
Flash Sign(0xd169):(readwrite) (type=0x2) Range [0 - 1, step 1] value: On (0)
Remote Timeout(0xd16b):(readwrite) (type=0x2) Range [0 - 3, step 1] value: 1 min (0)
Viewfinder Grid Display(0xd16c):(readwrite) (type=0x2) Range [0 - 1, step 1] value: On (1)
Flash Power(0xd16d):(readwrite) (type=0x2) Range [0 - 4, step 1] value: Full (0)
Property 0xd16e:(readwrite) (type=0x2) Range [0 - 7, step 1] value: 0
Property 0xd180:(readwrite) (type=0x2) Range [0 - 2, step 1] value: 0
Property 0xd190:(readwrite) (type=0x2) Range [0 - 12, step 2] value: 6


	Low Light(0xd1b0):(read only) (type=0x2) Range [0 - 4, step 1] value: No (0)
	Flash Open(0xd1c0):(read only) (type=0x2) Range [0 - 1, step 1] value: No (0)
	Flash Charged(0xd1c1):(read only) (type=0x2) Range [0 - 1, step 1] value: No (0)



autofocusdrive
	Label: Fonction autofocus du Nikon DSLR
	Type: TOGGLE
	Current: 0
manualfocusdrive
	Label: Function manuel focus de Nikon DSLR 
	Type: RANGE
	Current: 0
	Bottom: -32767
	Top: 32767
	Step: 1
datetime
	Label: Camera Date and Time
	Type: DATE
	Current: 1249549384
	Printable: jeu 06 aoû 2009 11:03:04 CEST
imagecomment
	Label: Commentaire de l'image
	Type: TEXT
	Current:                                     
imagecommentenable
	Label: Permettre les commentaires d'image
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
lcdofftime
	Label: Temps de l'extinction de l'écran LCD
	Type: RADIO
	Current: 10 secondes
	Choice: 0 10 secondes
	Choice: 1 20 seconds
	Choice: 2 1 minute
	Choice: 3 5 minutes
	Choice: 4 10 minutes
recordingmedia
	Label: Média d'enregistrement
	Type: RADIO
	Current: Carte
	Choice: 0 Carte
	Choice: 1 SDRAM
meterofftime
	Label: Temp de mesure expiré
	Type: RADIO
	Current: 4 secondes
	Choice: 0 4 secondes
	Choice: 1 6 secondes
	Choice: 2 8 secondes
	Choice: 3 16 secondes
	Choice: 4 30 secondes
csmmenu
	Label: Menu CSM
	Type: RADIO
	Current: Activé
	Choice: 0 Activé
	Choice: 1 Désactivé
reversedial
	Label: Inverser les bonttons de commande
	Type: RADIO
	Current: Activé
	Choice: 0 Activé
	Choice: 1 Désactivé
fastfs
	Label: Système de fichiers rapide
	Type: TOGGLE
	Current: 1
capturetarget
	Label: Fichier cible Type: RADIO
	Current: Mémoire interne
	Choice: 0 Mémoire interne
	Choice: 1 Carte mémoire
acpower
	Label: Prise d'alimentation
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
externalflash
	Label: Flash externe
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
batterylevel
	Label: Niveau de batterie
	Type: TEXT
	Current: 100%
orientation
	Label: orientation de la l'appareil
	Type: RADIO
	Current: 0'
	Choice: 0 0'
	Choice: 1 270'
	Choice: 2 90'
flashopen
	Label: Flash activé
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
flashcharged
	Label: Flash Chargé
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
minfocallength
	Label: Distance focale minimum
	Type: TEXT
	Current: 18 mm
maxfocallength
	Label: Distance focale maximum
	Type: TEXT
	Current: 70 mm
apertureatminfocallength
	Label: L'ouverture maximum est la distance focale minimum
	Type: TEXT
	Current: 4 mm
apertureatmaxfocallength
	Label: L'ouverture minimum est la distance focale maximum
	Type: TEXT
	Current: 4 mm
lowlight
	Label: Lumière faible
	Type: RANGE
	Current: 0
	Bottom: 0
	Top: 4
	Step: 1
lightmeter
	Label: Posemètre
	Type: TEXT
	Current: 0,0
aflocked
	Label: AF vérrouillé
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
aelocked
	Label: AE vérrouillé
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
fvlocked
	Label: FV vérrouillé
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
imagequality
	Label: Qualité de l'image
	Type: RADIO
	Current: JPEG Basic
	Choice: 0 JPEG Basic
	Choice: 1 JPEG Normal
	Choice: 2 JPEG Fine
	Choice: 3 NEF+Basic
	Choice: 4 NEF+Normal
imagesize
	Label: Taille de l'image
	Type: RADIO
	Current: 1504x1000
	Choice: 0 3008x2000
	Choice: 1 2240x1488
	Choice: 2 1504x1000
iso
	Label: Vitesse ISO
	Type: RADIO
	Current: 1600
	Choice: 0 200
	Choice: 1 250
	Choice: 2 320
	Choice: 3 400
	Choice: 4 500
	Choice: 5 640
	Choice: 6 800
	Choice: 7 1000
	Choice: 8 1250
	Choice: 9 1600
whitebalance
	Label: Balance des blancs
	Type: RADIO
	Current: Lumière naturelle
	Choice: 0 Automatique
	Choice: 1 Lumière naturelle
	Choice: 2 Fluorescent
	Choice: 3 Tungstène
	Choice: 4 Flash
	Choice: 5 Nuageux
	Choice: 6 Ombre
	Choice: 7 Pré-configuré
colormodel
	Label: Mode couleur
	Type: RADIO
	Current: AdobeRGB
	Choice: 0 sRGB (portrait)
	Choice: 1 AdobeRGB
	Choice: 2 sRGB (nature)
autoiso
	Label: Automatique ISO
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
autoisopadv
	Label: Heure d'extinction automatique
	Type: RADIO
	Current: 1/60
	Choice: 0 1/125
	Choice: 1 1/60
	Choice: 2 1/30
	Choice: 3 1/15
	Choice: 4 1/8
	Choice: 5 1/4
	Choice: 6 1/2
	Choice: 7 1
	Choice: 8 2
	Choice: 9 4
	Choice: 10 8
	Choice: 11 15
	Choice: 12 30
longexpnr
	Label: Réduction du bruit pour l'exposition longue
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
autofocusmode
	Label: Mode focus automatique
	Type: RADIO
	Current: AF-C
	Choice: 0 AF-S
	Choice: 1 AF-C
assistlight
	Label: illuminateur d'assistance
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
exposurecompensation
	Label: Correction d'exposition
	Type: RADIO
	Current: 1666
	Choice: 0 -5000
	Choice: 1 -4666
	Choice: 2 -4333
	Choice: 3 -4000
	Choice: 4 -3666
	Choice: 5 -3333
	Choice: 6 -3000
	Choice: 7 -2666
	Choice: 8 -2333
	Choice: 9 -2000
	Choice: 10 -1666
	Choice: 11 -1333
	Choice: 12 -1000
	Choice: 13 -666
	Choice: 14 -333
	Choice: 15 0
	Choice: 16 333
	Choice: 17 666
	Choice: 18 1000
	Choice: 19 1333
	Choice: 20 1666
	Choice: 21 2000
	Choice: 22 2333
	Choice: 23 2666
	Choice: 24 3000
	Choice: 25 3333
	Choice: 26 3666
	Choice: 27 4000
	Choice: 28 4333
	Choice: 29 4666
	Choice: 30 5000
exposurecompensation
	Label: Correction d'exposition
	Type: RADIO
	Current: 1666
	Choice: 0 -5000
	Choice: 1 -4666
	Choice: 2 -4333
	Choice: 3 -4000
	Choice: 4 -3666
	Choice: 5 -3333
	Choice: 6 -3000
	Choice: 7 -2666
	Choice: 8 -2333
	Choice: 9 -2000
	Choice: 10 -1666
	Choice: 11 -1333
	Choice: 12 -1000
	Choice: 13 -666
	Choice: 14 -333
	Choice: 15 0
	Choice: 16 333
	Choice: 17 666
	Choice: 18 1000
	Choice: 19 1333
	Choice: 20 1666
	Choice: 21 2000
	Choice: 22 2333
	Choice: 23 2666
	Choice: 24 3000
	Choice: 25 3333
	Choice: 26 3666
	Choice: 27 4000
	Choice: 28 4333
	Choice: 29 4666
	Choice: 30 5000
flashmode
	Label: Mode flash
	Type: RADIO
	Current: iTTL
	Choice: 0 iTTL
	Choice: 1 Manuel
	Choice: 2 Commander
flashcommandermode
	Label: Mode Commander flash
	Type: RADIO
	Current: TTL
	Choice: 0 TTL
	Choice: 1 Ouverture du diaphragme automatique
	Choice: 2 Manuel
flashcommanderpower
	Label: Energie Flash Commander 
	Type: RADIO
	Current: Pleine
	Choice: 0 Pleine
	Choice: 1 1/2
	Choice: 2 1/4
	Choice: 3 1/8
	Choice: 4 1/16
	Choice: 5 1/32
	Choice: 6 1/64
	Choice: 7 1/128
af-area-illumination
	Label: Illumation de la zone d'autofocus
	Type: RADIO
	Current: Automatique
	Choice: 0 Automatique
	Choice: 1 Désactivé
	Choice: 2 Activé
afbeep
	Label: Mode sonore pour autofocus
	Type: TOGGLE
	Current: 0
f-number
	Label: Valeur d'ouverture du diaphragme
	Type: RADIO
	Current: f/3,5
	Choice: 0 f/3,5
	Choice: 1 f/4
	Choice: 2 f/4,5
	Choice: 3 f/5
	Choice: 4 f/5,6
	Choice: 5 f/6,3
	Choice: 6 f/7,1
	Choice: 7 f/8
	Choice: 8 f/9
	Choice: 9 f/10
	Choice: 10 f/11
	Choice: 11 f/13
	Choice: 12 f/14
	Choice: 13 f/16
	Choice: 14 f/18
	Choice: 15 f/20
	Choice: 16 f/22
focallength
	Label: Distance focale
	Type: RANGE
	Current: 18
	Bottom: 18
	Top: 70
	Step: 0,01
focusmode
	Label: Mode focus
	Type: RADIO
	Current: AF-C
	Choice: 0 Manuel
	Choice: 1 AF-S
	Choice: 2 AF-C
expprogram
	Label: Programme d'exposition
	Type: RADIO
	Current: A
	Choice: 0 M
	Choice: 1 P
	Choice: 2 A
	Choice: 3 S
	Choice: 4 Automatique
	Choice: 5 Portrait
	Choice: 6 Paysage
	Choice: 7 Macro
	Choice: 8 Sports
	Choice: 9 Portrait de nuit
	Choice: 10 Paysage de nuit
capturemode
	Label: Toujours en mode capture
	Type: RADIO
	Current: Rafale
	Choice: 0 Un seul coup
	Choice: 1 Rafale
	Choice: 2 Retardateur
	Choice: 3 Distante
	Choice: 4 retardateur avec télécommande
focusmetermode
	Label: Mode de mesure du focus
	Type: RADIO
	Current: Sujet le plus proche
	Choice: 0 Multi-spot
	Choice: 1 Simple Zone
	Choice: 2 Sujet le plus proche
exposuremetermode
	Label: Mode Mesure de l'exposition
	Type: RADIO
	Current: Multi Spot
	Choice: 0 Pondérée centré
	Choice: 1 Multi Spot
	Choice: 2 Point centré 
flashmode
	Label: Mode flash
	Type: RADIO
	Current: iTTL
	Choice: 0 iTTL
	Choice: 1 Manuel
	Choice: 2 Commander
shutterspeed
	Label: Vitesse de l'obturateur 
	Type: RADIO
	Current: 0,0166s
	Choice: 0 0,0001s
	Choice: 1 0,0002s
	Choice: 2 0,0003s
	Choice: 3 0,0004s
	Choice: 4 0,0005s
	Choice: 5 0,0006s
	Choice: 6 0,0008s
	Choice: 7 0,0010s
	Choice: 8 0,0012s
	Choice: 9 0,0015s
	Choice: 10 0,0020s
	Choice: 11 0,0025s
	Choice: 12 0,0031s
	Choice: 13 0,0040s
	Choice: 14 0,0050s
	Choice: 15 0,0062s
	Choice: 16 0,0080s
	Choice: 17 0,0100s
	Choice: 18 0,0125s
	Choice: 19 0,0166s
	Choice: 20 0,0200s
	Choice: 21 0,0250s
	Choice: 22 0,0333s
	Choice: 23 0,0400s
	Choice: 24 0,0500s
	Choice: 25 0,0666s
	Choice: 26 0,0769s
	Choice: 27 0,1000s
	Choice: 28 0,1250s
	Choice: 29 0,1666s
	Choice: 30 0,2000s
	Choice: 31 0,2500s
	Choice: 32 0,3333s
	Choice: 33 0,4000s
	Choice: 34 0,5000s
	Choice: 35 0,6250s
	Choice: 36 0,7692s
	Choice: 37 1,0000s
	Choice: 38 1,3000s
	Choice: 39 1,6000s
	Choice: 40 2,0000s
	Choice: 41 2,5000s
	Choice: 42 3,0000s
	Choice: 43 4,0000s
	Choice: 44 5,0000s
	Choice: 45 6,0000s
	Choice: 46 8,0000s
	Choice: 47 10,0000s
	Choice: 48 13,0000s
	Choice: 49 15,0000s
	Choice: 50 20,0000s
	Choice: 51 25,0000s
	Choice: 52 30,0000s
shutterspeed2
	Label: Vitesse de l'obturateur 
	Type: RADIO
	Current: 1/80
	Choice: 0 1/8000
	Choice: 1 1/6400
	Choice: 2 1/5000
	Choice: 3 1/4000
	Choice: 4 1/3200
	Choice: 5 1/2500
	Choice: 6 1/2000
	Choice: 7 1/1600
	Choice: 8 1/1250
	Choice: 9 1/1000
	Choice: 10 1/800
	Choice: 11 1/640
	Choice: 12 1/500
	Choice: 13 1/400
	Choice: 14 1/320
	Choice: 15 1/250
	Choice: 16 1/200
	Choice: 17 1/160
	Choice: 18 1/125
	Choice: 19 1/100
	Choice: 20 1/80
	Choice: 21 1/60
	Choice: 22 1/50
	Choice: 23 1/40
	Choice: 24 1/30
	Choice: 25 1/25
	Choice: 26 1/20
	Choice: 27 1/15
	Choice: 28 1/13
	Choice: 29 1/10
	Choice: 30 1/8
	Choice: 31 1/6
	Choice: 32 1/5
	Choice: 33 1/4
	Choice: 34 1/3
	Choice: 35 10/25
	Choice: 36 1/2
	Choice: 37 10/16
	Choice: 38 10/13
	Choice: 39 1
	Choice: 40 13/10
	Choice: 41 16/10
	Choice: 42 2
	Choice: 43 25/10
	Choice: 44 3
	Choice: 45 4
	Choice: 46 5
	Choice: 47 6
	Choice: 48 8
	Choice: 49 10
	Choice: 50 13
	Choice: 51 15
	Choice: 52 20
	Choice: 53 25
	Choice: 54 30
focusareawrap
	Label: Zone de focus couvert
	Type: RADIO
	Current: Activé
	Choice: 0 Activé
	Choice: 1 Désactivé
exposurelock
	Label: Exposition vérouillé
	Type: RADIO
	Current: Activé
	Choice: 0 Activé
	Choice: 1 Désactivé
aelaflmode
	Label: Mode AE-L/AF-L
	Type: RADIO
	Current: AE/AF vérrouillé
	Choice: 0 AE/AF vérrouillé
	Choice: 1 Exposition automatique seulement vérouillé
	Choice: 2 Autofocus seulement vérouillé
	Choice: 3 Autofocus vérouillé et en attente
	Choice: 4 Autofocus activé
	Choice: 5 Niveau du flash vérouillé
filenrsequencing 
	Label: Numéro de fichier séquencé
	Type: RADIO
	Current: Activé
	Choice: 0 Activé
	Choice: 1 Désactivé
flashsign 
	Label: Authentifier le flash
	Type: RADIO
	Current: Activé
	Choice: 0 Activé
	Choice: 1 Désactivé
viewfindergrid   
	Label: Grille Viewfinder
	Type: RADIO
	Current: Activé
	Choice: 0 Activé
	Choice: 1 Désactivé
imagereview 
	Label: Vision de l'image
	Type: RADIO
	Current: Activé
	Choice: 0 Activé
	Choice: 1 Désactivé
imagerotationflag 
	Label: Drapeau de rotation de l'image
	Type: RADIO
	Current: Activé
	Choice: 0 Activé
	Choice: 1 Désactivé
nocfcardrelease 
	Label: Débloquer sans la carte CompactFlash
	Type: RADIO
	Current: Activé
	Choice: 0 Activé
	Choice: 1 Désactivé
flashmodemanualpower 
	Label: Mode manuel pour la puissance du flash
	Type: RADIO
	Current: Pleine
	Choice: 0 Pleine
	Choice: 1 1/2
	Choice: 2 1/4
	Choice: 3 1/8
	Choice: 4 1/16
autofocusarea 
	Label: Auto Focus de la zone
	Type: RADIO
	Current: Centre
	Choice: 0 Centre
	Choice: 1 Haut
	Choice: 2 Bas
	Choice: 3 Gauche
	Choice: 4 Droite
flashexposurecompensation 
	Label: Correction d'exposition par le flash
	Type: RANGE
	Current: 0
	Bottom: -3
	Top: 1
	Step: 0,333333
bracketing 
	Label: Bracketing
	Type: RADIO
	Current: Désactivé
	Choice: 0 Activé
	Choice: 1 Désactivé
evstep 
	Label: Palier EV
	Type: RADIO
	Current: 1/3
	Choice: 0 1/3
	Choice: 1 1/2
	Choice: 2 Valeur inconnue 0002
bracketset 
	Label: bracket réglée
	Type: RADIO
	Current: Exposition automatique uniquement
	Choice: 0 Exposition automatique & Flash
	Choice: 1 Exposition automatique uniquement
	Choice: 2 Flash uniquement
	Choice: 3 Balance des blancs du bracketing
bracketorder 
	Label: Ordre de bracket
	Type: RADIO
	Current: Au-dessous > MTR
	Choice: 0 MTR > au-dessous
	Choice: 1 Au-dessous > MTR
burstnumber 
	Label: Nombre d'image par rafale
	Type: RANGE
	Current: 1
	Bottom: 1
	Top: 49
	Step: 1
autowhitebias 
	Label: Balance des blancs automatique
	Type: RANGE
	Current: 0
	Bottom: -3
	Top: 3
	Step: 1
tungstenwhitebias 
	Label: Balance des blancs tungstène
	Type: RANGE
	Current: 0
	Bottom: -3
	Top: 3
	Step: 1
flourescentwhitebias 
	Label: Balance des blancs fluorescent
	Type: RANGE
	Current: 0
	Bottom: -3
	Top: 3
	Step: 1
daylightwhitebias 
	Label: Balance des blancs ensoleillé
	Type: RANGE
	Current: 0
	Bottom: -3
	Top: 3
	Step: 1
flashwhitebias 
	Label: Balance des blancs flash
	Type: RANGE
	Current: 0
	Bottom: -3
	Top: 3
	Step: 1
cloudywhitebias 
	Label: Balance des blancs nuageux
	Type: RANGE
	Current: 0
	Bottom: -3
	Top: 3
	Step: 1
shadewhitebias 
	Label: Balance des blancs ombre
	Type: RANGE
	Current: 0
	Bottom: -3
	Top: 4
	Step: 1
whitebiaspresetno 
	Label: Nombre de Balance des blancs pré-configuré
	Type: RADIO
	Current: 0
	Choice: 0 0
	Choice: 1 1
whitebiaspreset0 
	Label: Balance des blancs pré-configuré 0
	Type: TEXT
	Current: 23069381
whitebiaspreset1 
	Label: Balance des blancs pré-configuré 1
	Type: TEXT
	Current: 33685926
selftimerdelay 
	Label: Délai du retardateur
	Type: RADIO
	Current: 2 secondes
	Choice: 0 2 secondes
	Choice: 1 5 secondes
	Choice: 2 10 secondes
	Choice: 3 20 seconds
centerweightsize 
	Label: Zone pondérée centrale
	Type: RADIO
	Current: 6 mm
	Choice: 0 6 mm
	Choice: 1 8 mm
	Choice: 2 10 mm
	Choice: 3 12 mm
flashshutterspeed 
	Label: Vitesse de l'obturateur
	Type: RADIO
	Current: 1/60
	Choice: 0 1/60
	Choice: 1 1/30
	Choice: 2 1/15
	Choice: 3 1/8
	Choice: 4 1/4
	Choice: 5 1/2
	Choice: 6 1
	Choice: 7 2
	Choice: 8 4
	Choice: 9 8
	Choice: 10 15
	Choice: 11 30
remotetimeout 
	Label: Temporisation
	Type: RADIO
	Current: 15 minutes
	Choice: 0 1 minute
	Choice: 1 5 minutes
	Choice: 2 10 minutes
	Choice: 3 15 minutes
optimizeimage 
	Label: Optimiser l'image
	Type: RADIO
	Current: Normal
	Choice: 0 Normal
	Choice: 1 Vivid
	Choice: 2 Plus nette
	Choice: 3 Plus Doux
	Choice: 4 Directement pour l'impression
	Choice: 5 Portrait
	Choice: 6 Paysage
	Choice: 7 Personnalisé
sharpening 
	Label: Netteté
	Type: RADIO
	Current: Moyenne élevé
	Choice: 0 Automatique
	Choice: 1 Normal
	Choice: 2 Faible
	Choice: 3 Moyenne bas
	Choice: 4 Moyenne élevé
	Choice: 5 Haute
	Choice: 6 Aucune
tonecompensation 
	Label: Compensation des tons
	Type: RADIO
	Current: Automatique
	Choice: 0 Automatique
	Choice: 1 Normal
	Choice: 2 Faible contraste
	Choice: 3 Moyenne bas
	Choice: 4 Moyenne élevé
	Choice: 5 Contrôler
	Choice: 6 Personnalisé
saturation 
	Label: Saturation
	Type: RADIO
	Current: Modéré
	Choice: 0 Normal
	Choice: 1 Modéré
	Choice: 2 Renforcé
hueadjustment 
	Label: Ajustement de le nuance
	Type: RANGE
	Current: 0
	Bottom: -9
	Top: 9
	Step: 3
5001 
	Label: Niveau de batterie
	Type: MENU
	Current: 100
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
	Choice: 22 22
	Choice: 23 23
	Choice: 24 24
	Choice: 25 25
	Choice: 26 26
	Choice: 27 27
	Choice: 28 28
	Choice: 29 29
	Choice: 30 30
	Choice: 31 31
	Choice: 32 32
	Choice: 33 33
	Choice: 34 34
	Choice: 35 35
	Choice: 36 36
	Choice: 37 37
	Choice: 38 38
	Choice: 39 39
	Choice: 40 40
	Choice: 41 41
	Choice: 42 42
	Choice: 43 43
	Choice: 44 44
	Choice: 45 45
	Choice: 46 46
	Choice: 47 47
	Choice: 48 48
	Choice: 49 49
	Choice: 50 50
	Choice: 51 51
	Choice: 52 52
	Choice: 53 53
	Choice: 54 54
	Choice: 55 55
	Choice: 56 56
	Choice: 57 57
	Choice: 58 58
	Choice: 59 59
	Choice: 60 60
	Choice: 61 61
	Choice: 62 62
	Choice: 63 63
	Choice: 64 64
	Choice: 65 65
	Choice: 66 66
	Choice: 67 67
	Choice: 68 68
	Choice: 69 69
	Choice: 70 70
	Choice: 71 71
	Choice: 72 72
	Choice: 73 73
	Choice: 74 74
	Choice: 75 75
	Choice: 76 76
	Choice: 77 77
	Choice: 78 78
	Choice: 79 79
	Choice: 80 80
	Choice: 81 81
	Choice: 82 82
	Choice: 83 83
	Choice: 84 84
	Choice: 85 85
	Choice: 86 86
	Choice: 87 87
	Choice: 88 88
	Choice: 89 89
	Choice: 90 90
	Choice: 91 91
	Choice: 92 92
	Choice: 93 93
	Choice: 94 94
	Choice: 95 95
	Choice: 96 96
	Choice: 97 97
	Choice: 98 98
	Choice: 99 99
	Choice: 100 100
5003 
	Label: Taille de l'image
	Type: MENU
	Current: 1504x1000
	Choice: 0 3008x2000
	Choice: 1 2240x1488
	Choice: 2 1504x1000
5004 
	Label: paramètre de compression
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 4
	Choice: 4 5
5005 
	Label: Balance des blancs
	Type: MENU
	Current: 4
	Choice: 0 2
	Choice: 1 4
	Choice: 2 5
	Choice: 3 6
	Choice: 4 7
	Choice: 5 32784
	Choice: 6 32785
	Choice: 7 32787
5007 
	Label: Valeur d'ouverture du diaphragme
	Type: MENU
	Current: 350
	Choice: 0 350
	Choice: 1 400
	Choice: 2 450
	Choice: 3 500
	Choice: 4 560
	Choice: 5 630
	Choice: 6 710
	Choice: 7 800
	Choice: 8 900
	Choice: 9 1000
	Choice: 10 1100
	Choice: 11 1300
	Choice: 12 1400
	Choice: 13 1600
	Choice: 14 1800
	Choice: 15 2000
	Choice: 16 2200
5008 
	Label: Distance focale
	Type: RANGE
	Current: 1800
	Bottom: 1800
	Top: 7000
	Step: 1
500a 
	Label: Mode focus
	Type: MENU
	Current: 32785
	Choice: 0 1
	Choice: 1 32784
	Choice: 2 32785
500b 
	Label: Mode Mesure de l'exposition
	Type: MENU
	Current: 3
	Choice: 0 2
	Choice: 1 3
	Choice: 2 4
500c 
	Label: Mode flash
	Type: MENU
	Current: 32784
	Choice: 0 4
	Choice: 1 32784
	Choice: 2 32785
	Choice: 3 32786
	Choice: 4 32787
500d 
	Label: Temp de pose
	Type: MENU
	Current: 125
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
	Choice: 3 4
	Choice: 4 5
	Choice: 5 6
	Choice: 6 8
	Choice: 7 10
	Choice: 8 12
	Choice: 9 15
	Choice: 10 20
	Choice: 11 25
	Choice: 12 31
	Choice: 13 40
	Choice: 14 50
	Choice: 15 62
	Choice: 16 80
	Choice: 17 100
	Choice: 18 125
	Choice: 19 166
	Choice: 20 200
	Choice: 21 250
	Choice: 22 333
	Choice: 23 400
	Choice: 24 500
	Choice: 25 666
	Choice: 26 769
	Choice: 27 1000
	Choice: 28 1250
	Choice: 29 1666
	Choice: 30 2000
	Choice: 31 2500
	Choice: 32 3333
	Choice: 33 4000
	Choice: 34 5000
	Choice: 35 6250
	Choice: 36 7692
	Choice: 37 10000
	Choice: 38 13000
	Choice: 39 16000
	Choice: 40 20000
	Choice: 41 25000
	Choice: 42 30000
	Choice: 43 40000
	Choice: 44 50000
	Choice: 45 60000
	Choice: 46 80000
	Choice: 47 100000
	Choice: 48 130000
	Choice: 49 150000
	Choice: 50 200000
	Choice: 51 250000
	Choice: 52 300000
500e 
	Label: Mode d'exposition programmé 
	Type: MENU
	Current: 3
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
	Choice: 3 4
	Choice: 4 32784
	Choice: 5 32785
	Choice: 6 32786
	Choice: 7 32787
	Choice: 8 32788
	Choice: 9 32789
	Choice: 10 32790
500f 
	Label: Index d'exposition  (film de vitesse ISO)
	Type: MENU
	Current: 1600
	Choice: 0 200
	Choice: 1 250
	Choice: 2 320
	Choice: 3 400
	Choice: 4 500
	Choice: 5 640
	Choice: 6 800
	Choice: 7 1000
	Choice: 8 1250
	Choice: 9 1600
5010 
	Label: Compensation de l'exposition 
	Type: MENU
	Current: 1666
	Choice: 0 -5000
	Choice: 1 -4666
	Choice: 2 -4333
	Choice: 3 -4000
	Choice: 4 -3666
	Choice: 5 -3333
	Choice: 6 -3000
	Choice: 7 -2666
	Choice: 8 -2333
	Choice: 9 -2000
	Choice: 10 -1666
	Choice: 11 -1333
	Choice: 12 -1000
	Choice: 13 -666
	Choice: 14 -333
	Choice: 15 0
	Choice: 16 333
	Choice: 17 666
	Choice: 18 1000
	Choice: 19 1333
	Choice: 20 1666
	Choice: 21 2000
	Choice: 22 2333
	Choice: 23 2666
	Choice: 24 3000
	Choice: 25 3333
	Choice: 26 3666
	Choice: 27 4000
	Choice: 28 4333
	Choice: 29 4666
	Choice: 30 5000
5011 
	Label: Date & heure
	Type: TEXT
	Current: 20090806T100539
5013 
	Label: Toujours en mode capture
	Type: MENU
	Current: 2
	Choice: 0 1
	Choice: 1 2
	Choice: 2 32785
	Choice: 3 32787
	Choice: 4 32788
5018 
	Label: Nombre d'image par rafale
	Type: MENU
	Current: 1
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
	Choice: 3 4
	Choice: 4 5
	Choice: 5 6
	Choice: 6 7
	Choice: 7 8
	Choice: 8 9
	Choice: 9 10
	Choice: 10 11
	Choice: 11 12
	Choice: 12 13
	Choice: 13 14
	Choice: 14 15
	Choice: 15 16
	Choice: 16 17
	Choice: 17 18
	Choice: 18 19
	Choice: 19 20
	Choice: 20 21
	Choice: 21 22
	Choice: 22 23
	Choice: 23 24
	Choice: 24 25
	Choice: 25 26
	Choice: 26 27
	Choice: 27 28
	Choice: 28 29
	Choice: 29 30
	Choice: 30 31
	Choice: 31 32
	Choice: 32 33
	Choice: 33 34
	Choice: 34 35
	Choice: 35 36
	Choice: 36 37
	Choice: 37 38
	Choice: 38 39
	Choice: 39 40
	Choice: 40 41
	Choice: 41 42
	Choice: 42 43
	Choice: 43 44
	Choice: 44 45
	Choice: 45 46
	Choice: 46 47
	Choice: 47 48
	Choice: 48 49
501c 
	Label: Mode de mesure du focus
	Type: MENU
	Current: 32785
	Choice: 0 2
	Choice: 1 32784
	Choice: 2 32785
d017 
	Label: Balance des blancs automatique
	Type: MENU
	Current: 0
	Choice: 0 -3
	Choice: 1 -2
	Choice: 2 -1
	Choice: 3 0
	Choice: 4 1
	Choice: 5 2
	Choice: 6 3
d018 
	Label: Balance des blancs tungstène
	Type: MENU
	Current: 0
	Choice: 0 -3
	Choice: 1 -2
	Choice: 2 -1
	Choice: 3 0
	Choice: 4 1
	Choice: 5 2
	Choice: 6 3
d019 
	Label: Balance des blancs fluorescent
	Type: MENU
	Current: 0
	Choice: 0 -3
	Choice: 1 -2
	Choice: 2 -1
	Choice: 3 0
	Choice: 4 1
	Choice: 5 2
	Choice: 6 3
d01a 
	Label: Balance des blancs ensoleillé
	Type: MENU
	Current: 0
	Choice: 0 -3
	Choice: 1 -2
	Choice: 2 -1
	Choice: 3 0
	Choice: 4 1
	Choice: 5 2
	Choice: 6 3
d01b 
	Label: Balance des blancs flash
	Type: MENU
	Current: 0
	Choice: 0 -3
	Choice: 1 -2
	Choice: 2 -1
	Choice: 3 0
	Choice: 4 1
	Choice: 5 2
	Choice: 6 3
d01c 
	Label: Balance des blancs nuageux
	Type: MENU
	Current: 0
	Choice: 0 -3
	Choice: 1 -2
	Choice: 2 -1
	Choice: 3 0
	Choice: 4 1
	Choice: 5 2
	Choice: 6 3
d01d 
	Label: Balance des blancs ombre
	Type: MENU
	Current: 0
	Choice: 0 -3
	Choice: 1 -2
	Choice: 2 -1
	Choice: 3 0
	Choice: 4 1
	Choice: 5 2
	Choice: 6 3
	Choice: 7 4
d01f 
	Label: Nombre de balance des blancs Pré-configuré
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d025 
	Label: Valeur de balance des blancs pré-configuré 0
	Type: TEXT
	Current: 23069381
d026 
	Label: Valeur de balance des blancs pré-configuré 1
	Type: TEXT
	Current: 33685926
d02a 
	Label: Netteté
	Type: MENU
	Current: 4
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
d02b 
	Label: Compensation des tons
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
d02c 
	Label: Mode couleur
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d02d 
	Label: Ajustement de le nuance
	Type: RANGE
	Current: 0
	Bottom: -9
	Top: 9
	Step: 3
d045 
	Label: Réinitilise le menu 
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d04f 
	Label: Zone de focus couvert
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d054 
	Label: Automatique ISO
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d056 
	Label: Palier d'exposition
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d058 
	Label: Correction d'exposition
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d059 
	Label: Zone pondérée centrale
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
d05e 
	Label: Exposition vérouillé
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d05f 
	Label: Focus vérrouillé
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
d062 
	Label: Extinction de la mesure automatique
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
d063 
	Label: Délai du retardateur
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
d064 
	Label: Temps de l'extinction de l'écran LCD
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
d06b 
	Label: Réduction du bruit pour le longue exposition
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d06c 
	Label: Numéro de fichier séquencé
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d075 
	Label: Vitesse de l'obturateur
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
d078 
	Label: bracket réglée
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
d07a 
	Label: Ordre de bracket
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d086 
	Label: Inverser les bonttons de commande
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d08a 
	Label: Pas de carte CompactFlash libérée
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d090 
	Label: Commentaire des images
	Type: TEXT
	Current:                                     
d091 
	Label: Commentaire des images autorisé
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d092 
	Label: Rotation de l'image
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d0c0 
	Label: Bracketing activé
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d0c2 
	Label: Programme d'exposition du bracketing
	Type: MENU
	Current: 2
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d0c3 
	Label: Mesure de l'exposition automatique compté par le bracket
	Type: MENU
	Current: 1
	Choice: 0 1
	Choice: 1 2
	Choice: 2 3
d0c4 
	Label: Palier des Balance des blancs du bracket
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d0c5 
	Label: Programme de Balance des blancs du bracket
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d0e0 
	Label: Identifient de la lentille
	Type: TEXT
	Current: 127
d0e1 
	Label: Genre d'objectif
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d0e2 
	Label: Type d'objectif
	Type: TEXT
	Current: 3
d0e3 
	Label: Distance focale minimum
	Type: TEXT
	Current: 1800
d0e4 
	Label: Distance focale maximum
	Type: TEXT
	Current: 7000
d0e5 
	Label: l'Ouverture maximale se situe à la distance focale minimum
	Type: TEXT
	Current: 350
d0e6 
	Label: l'Ouverture minimal se situe à la distance focale maximum
	Type: TEXT
	Current: 450
d100 
	Label: Temp de pose du Nikon
	Type: MENU
	Current: 65616
	Choice: 0 73536
	Choice: 1 71936
	Choice: 2 70536
	Choice: 3 69536
	Choice: 4 68736
	Choice: 5 68036
	Choice: 6 67536
	Choice: 7 67136
	Choice: 8 66786
	Choice: 9 66536
	Choice: 10 66336
	Choice: 11 66176
	Choice: 12 66036
	Choice: 13 65936
	Choice: 14 65856
	Choice: 15 65786
	Choice: 16 65736
	Choice: 17 65696
	Choice: 18 65661
	Choice: 19 65636
	Choice: 20 65616
	Choice: 21 65596
	Choice: 22 65586
	Choice: 23 65576
	Choice: 24 65566
	Choice: 25 65561
	Choice: 26 65556
	Choice: 27 65551
	Choice: 28 65549
	Choice: 29 65546
	Choice: 30 65544
	Choice: 31 65542
	Choice: 32 65541
	Choice: 33 65540
	Choice: 34 65539
	Choice: 35 655385
	Choice: 36 65538
	Choice: 37 655376
	Choice: 38 655373
	Choice: 39 65537
	Choice: 40 851978
	Choice: 41 1048586
	Choice: 42 131073
	Choice: 43 1638410
	Choice: 44 196609
	Choice: 45 262145
	Choice: 46 327681
	Choice: 47 393217
	Choice: 48 524289
	Choice: 49 655361
	Choice: 50 851969
	Choice: 51 983041
	Choice: 52 1310721
	Choice: 53 1638401
	Choice: 54 1966081
d101 
	Label: Prise d'alimentation
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d102 
	Label: État d'alerte
	Type: TEXT
	Current: 0
d103 
	Label: Prise de vue maximum 
	Type: MENU
	Current: 49
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
	Choice: 13 13
	Choice: 14 14
	Choice: 15 15
	Choice: 16 16
	Choice: 17 17
	Choice: 18 18
	Choice: 19 19
	Choice: 20 20
	Choice: 21 21
	Choice: 22 22
	Choice: 23 23
	Choice: 24 24
	Choice: 25 25
	Choice: 26 26
	Choice: 27 27
	Choice: 28 28
	Choice: 29 29
	Choice: 30 30
	Choice: 31 31
	Choice: 32 32
	Choice: 33 33
	Choice: 34 34
	Choice: 35 35
	Choice: 36 36
	Choice: 37 37
	Choice: 38 38
	Choice: 39 39
	Choice: 40 40
	Choice: 41 41
	Choice: 42 42
	Choice: 43 43
	Choice: 44 44
	Choice: 45 45
	Choice: 46 46
	Choice: 47 47
	Choice: 48 48
	Choice: 49 49
d104 
	Label: AF vérrouillé
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d105 
	Label: AE vérrouillé
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d106 
	Label: FV vérrouillé
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d108 
	Label: Capteur d'autofocus activé
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
d109 
	Label: Programme flexible
	Type: RANGE
	Current: 0
	Bottom: -30
	Top: 30
	Step: 2
d10a 
	Label: Mesure de l'exposition
	Type: RANGE
	Current: 0
	Bottom: -128
	Top: 127
	Step: 1
d10d 
	Label: Numéro de série du CCD
	Type: TEXT
	Current: NO= 300173b7        
d10e 
	Label: orientation de la l'appareil
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d10b 
	Label: Média d'enregistrement
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d120 
	Label: Flash externe connecté
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d121 
	Label: État du flash externe
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d122 
	Label: Spécification du flash externe
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d124 
	Label: Compensation de l'exposition par le flash externe
	Type: MENU
	Current: 0
	Choice: 0 -18
	Choice: 1 -17
	Choice: 2 -16
	Choice: 3 -15
	Choice: 4 -14
	Choice: 5 -13
	Choice: 6 -12
	Choice: 7 -11
	Choice: 8 -10
	Choice: 9 -9
	Choice: 10 -8
	Choice: 11 -7
	Choice: 12 -6
	Choice: 13 -5
	Choice: 14 -4
	Choice: 15 -3
	Choice: 16 -2
	Choice: 17 -1
	Choice: 18 0
	Choice: 19 1
	Choice: 20 2
	Choice: 21 3
	Choice: 22 4
	Choice: 23 5
	Choice: 24 6
	Choice: 25 7
	Choice: 26 8
	Choice: 27 9
	Choice: 28 10
	Choice: 29 11
	Choice: 30 12
	Choice: 31 13
	Choice: 32 14
	Choice: 33 15
	Choice: 34 16
	Choice: 35 17
	Choice: 36 18
d125 
	Label: Mode flash externe
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
d126 
	Label: Correction d'exposition par le flash
	Type: RANGE
	Current: 0
	Bottom: -18
	Top: 6
	Step: 2
d140 
	Label: Optimiser l'image
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
d142 
	Label: Saturation
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d160 
	Label: Mode sonore pour autofocus
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d161 
	Label: Mode autofocus
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d163 
	Label: Illuminateur d'assistance AF
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d164 
	Label: Paramètre Auto ISO P/A/DVP
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
	Choice: 8 8
	Choice: 9 9
	Choice: 10 10
	Choice: 11 11
	Choice: 12 12
d165 
	Label: Vision de l'image
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d166 
	Label: Illumation de la zone d'autofocus
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d167 
	Label: Mode flash
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d168 
	Label: Mode Commander flash
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d169 
	Label: Authentifier le flash
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d16b 
	Label: Temporisation
	Type: MENU
	Current: 3
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
d16c 
	Label: Afficher la grille Viewfinder
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
d16d 
	Label: Mode manuel pour la puissance du flash
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
d16e 
	Label: Mode flash à energie commander
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
	Choice: 5 5
	Choice: 6 6
	Choice: 7 7
d180 
	Label: Menu CSM
	Type: MENU
	Current: 1
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
d190 
	Label: Images et paliers du bracketing
	Type: RANGE
	Current: 2
	Bottom: 0
	Top: 12
	Step: 2
d1b0 
	Label: Affichage de l'état d'exposition
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
	Choice: 2 2
	Choice: 3 3
	Choice: 4 4
d1c0 
	Label: Flash activé
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1
d1c1
	Label: Flash Chargé
	Type: MENU
	Current: 0
	Choice: 0 0
	Choice: 1 1