ole2compounddocs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. #------------------------------------------------------------------------------
  2. # $File: ole2compounddocs,v 1.7 2019/08/02 18:08:18 christos Exp $
  3. # Microsoft OLE 2 Compound Documents : file(1) magic for Microsoft Structured
  4. # storage (https://en.wikipedia.org/wiki/Compound_File_Binary_Format)
  5. # Additional tests for OLE 2 Compound Documents should be under this recipe.
  6. # reference: https://www.openoffice.org/sc/compdocfileformat.pdf
  7. 0 string \320\317\021\340\241\261\032\341
  8. # https://digital-preservation.github.io/droid/
  9. # skip droid skeleton like fmt-39-signature-id-128.doc by valid version
  10. >0x1A ushort !0xABAB OLE 2 Compound Document
  11. #>0x1C uleshort x \b, endnian 0x%4.4x
  12. # big endian not tested
  13. >>0x1C ubeshort =0xfffe \b, big-endian
  14. >>>546 string jbjb : Microsoft Word Document
  15. !:mime application/msword
  16. !:apple MSWDWDBN
  17. !:ext doc
  18. # Byte Order 0xFFFE means little-endian found in real world applications
  19. #>>0x1C uleshort =0xfffe \b, little-endian
  20. >>0x1C uleshort =0xfffe
  21. # From: Joerg Jenderek
  22. # Major Version 3 or 4
  23. >>>0x1A uleshort x \b, v%u
  24. # Minor Version 32h=50 3Bh=59 3Eh=62
  25. >>>0x18 uleshort x \b.%u
  26. # SecID of first sector of the directory stream is often 1 but high like 3144h
  27. >>>48 ulelong x \b, SecID 0x%x
  28. # pointer to root entry only works with standard configuration for SecID ~< 800h
  29. # Red-Carpet-presentation-1.0-1.sdd sg10.sdv 2000_GA_Annual_Review_Data.xls
  30. # "ORLEN Factbook 2017.xls" XnView_metadata.doc
  31. # "Barham, Lisa - Die Shopping-Prinzessinnen.doc" then not recognized
  32. >>>48 ulelong >0x800 too big for FILE_BYTES_MAX = 1 MiB
  33. # Sector Shift Exponent 9~512 for major version 3 or C~4096 for major version 4
  34. >>>0x1E uleshort 0xc \b, blocksize 4096
  35. # jump to one block (4096 bytes per block) before root storage block
  36. >>>>(48.l*4096) ubyte x
  37. >>>>>&4095 use ole2-directory
  38. #>>>0x1E uleshort 9 \b, blocksize 512
  39. >>>0x1E uleshort 9
  40. # jump to one block (512 bytes per block) before root storage block
  41. # in 5.37 only true for offset ~< FILE_BYTES_MAX=7 MiB defined in ../../src/file.h
  42. >>>>(48.l*512) ubyte x
  43. >>>>>&511 use ole2-directory
  44. # check directory entry structure and display types by GUID
  45. 0 name ole2-directory
  46. # directory entry name like "Root Entry"
  47. #>0 lestring16 x \b, 1st %.10s
  48. # type of the entry; 5~Root storage
  49. #>66 ubyte x \b, type %x
  50. # node colour of the entry: 00H ~ Red 01H ~ Black
  51. #>67 ubyte x \b, color %x
  52. # the DirIDs of the child nodes. Should both be –1 in the root storage entry
  53. #>68 bequad !0xffffffffffffffff \b, DirIDs %llx
  54. # second directory entry name like VisioDocument Control000
  55. #>128 lestring16 x \b, 2nd %.20s
  56. # third directory entry like WordDocument
  57. #>256 lestring16 x \b, 3rd %.20s
  58. # forth
  59. #>384 lestring16 x \b, 4th %.10s
  60. # 5th
  61. #>512 lestring16 x \b, 5th %.10s
  62. # 6th
  63. #>640 lestring16 x \b, 6th %.10s
  64. # 7th
  65. #>768 lestring16 x \b, 7th %.10s
  66. # https://wikileaks.org/ciav7p1/cms/page_13762814.html
  67. # https://m.blog.naver.com/superman4u/40047693679
  68. # https://misc.daniel-marschall.de/projects/guid_analysis/guid.txt
  69. # http://www.windowstricks.in/online-windows-guid-converter
  70. #>80 ubequad !0 \b, clsid 0x%16.16llx
  71. #>>88 ubequad x \b%16.16llx
  72. # test for "Root Entry" inside directory by type 5 value
  73. >66 ubyte 5
  74. # look for CLSID GUID 0
  75. >>88 ubequad 0x0
  76. >>>80 ubequad 0x0
  77. # - Microstation V8 DGN files (www.bentley.com)
  78. # URL: https://en.wikipedia.org/wiki/MicroStation
  79. # Last update on 10/23/2006 by Lester Hightower
  80. # 07/24/2019 by Joerg Jenderek
  81. # Second directory entry name like Dgn~H Dgn~S
  82. >>>>128 lestring16 Dgn~ : Microstation V8 CAD
  83. #!:mime application/x-ole-storage
  84. !:mime application/x-bentley-dgn
  85. # http://www.q-cad.com/files/samples_cad_files/1344468165.dgn
  86. !:ext dgn
  87. #
  88. # URL: http://fileformats.archiveteam.org/wiki/WordPerfect
  89. # Second directory entry name PerfectOffice_
  90. >>>>128 lestring16 PerfectOffice_ : WordPerfect 7-X3 presentations Master, Document or Graphic
  91. !:mime application/vnd.wordperfect
  92. # https://www.macdisk.com/macsigen.php "WPC2" for Wordperfect 2 *.wpd
  93. !:apple ????WPC7
  94. !:ext mst/wpd/wpg
  95. #
  96. # URL: http://fileformats.archiveteam.org/wiki/Microsoft_Works_Word_Processor
  97. # Second directory entry name MatOST_
  98. >>>>128 lestring16 MatOST : Microsoft Works 3.0 document
  99. !:mime application/vnd.ms-works
  100. !:apple ????AWWP
  101. !:ext wps
  102. #
  103. # URL: http://fileformats.archiveteam.org/wiki/Microsoft_Works_Spreadsheet
  104. # 3rd directory entry name WksSSWorkBook
  105. >>>>256 lestring16 WksSSWorkBook : Microsoft Works 6-9 spreadsheet
  106. !:mime application/vnd.ms-works
  107. !:apple ????AWSS
  108. !:ext xlr
  109. #
  110. # URL: http://fileformats.archiveteam.org/wiki/XLS
  111. # what is the difference to {00020820-0000-0000-c000-000000000046} ?
  112. # Second directory entry name Workbook
  113. >>>>128 lestring16 Workbook
  114. >>>>>256 lestring16 !WksSSWorkBook : Microsoft Excel 97-2003 worksheet 0 clsid
  115. !:mime application/vnd.ms-excel
  116. # https://www.macdisk.com/macsigen.php XLS5 for Excel 5
  117. !:apple ????XLS9
  118. !:ext xls
  119. #
  120. # URL: http://fileformats.archiveteam.org/wiki/PPT
  121. # Second directory entry name Object1 Object12 Object35
  122. >>>>128 lestring16 Object : Microsoft PowerPoint 4 presentation
  123. !:mime application/vnd.ms-powerpoint
  124. # https://www.macdisk.com/macsigen.php
  125. !:apple ????PPT3
  126. !:ext ppt
  127. #
  128. # URL: https://www.msoutlook.info/question/164
  129. # Second directory entry name __CollDataStm
  130. >>>>128 lestring16 __CollDataStm : Microsoft Outlook Send Receive Settings
  131. #!:mime application/vnd.ms-outlook
  132. !:mime application/x-ms-srs
  133. # %APPDATA%\Microsoft\Outlook\Outlook.srs
  134. !:ext srs
  135. #
  136. # URL: https://www.file-extensions.org/cag-file-extension
  137. # Second directory entry name Category
  138. >>>>128 lestring16 Category : Microsoft Clip Art Gallery
  139. #!:mime application/x-ole-storage
  140. !:mime application/x-ms-cag
  141. !:apple MScgCGdb
  142. !:ext cag/
  143. #
  144. # URL: https://www.filesuffix.com/de/extension/rra
  145. # 3rd directory entry name StrIndex_StringTable
  146. >>>>256 lestring16 StrIndex_StringTable : Windows temporarily installer
  147. #!:mime application/x-ole-storage
  148. !:mime application/x-ms-rra
  149. !:ext rra
  150. #
  151. # URL: https://www.forensicswiki.org/wiki/Jump_Lists
  152. # 3rd directory entry name DestList
  153. >>>>256 lestring16 DestList : Windows jump list
  154. #!:mime application/x-ole-storage
  155. !:mime application/x-ms-jumplist
  156. # %APPDATA%\Microsoft\Windows\Recent\AutomaticDestinations\*.automaticDestinations-ms
  157. !:ext automaticDestinations-ms
  158. #
  159. # URL: https://en.wikipedia.org/wiki/Windows_thumbnail_cache
  160. # Second directory entry name 256_
  161. >>>>128 lestring16 256_ : Windows thumbnail database 256
  162. #!:mime application/x-ole-storage
  163. !:mime application/x-ms-thumbnail
  164. # Thumbs.db
  165. !:ext db
  166. >>>>128 lestring16 96_ : Windows thumbnail database 96
  167. !:mime application/x-ms-thumbnail
  168. !:ext db
  169. # 3rd directory entry name Catalog_
  170. >>>>256 lestring16 Catalog : Windows thumbnail database
  171. !:mime application/x-ms-thumbnail
  172. !:ext db
  173. #
  174. # URL: https://support.microsoft.com/en-us/help/300887/how-to-use-system-information-msinfo32-command-line-tool-switches
  175. # Note: older Microsoft Systeminfo (MSInfo Configuration File of msinfo32); newer use xml based
  176. # Second directory entry name Control000
  177. >>>>128 lestring16 Control000 : Microsoft old Systeminfo
  178. #!:mime application/x-ole-storage
  179. !:mime application/x-ms-info
  180. !:ext nfo
  181. #
  182. # URL: http://fileformats.archiveteam.org/wiki/Corel_Print_House
  183. # Second directory entry name Thumbnail
  184. >>>>128 lestring16 Thumbnail : Corel PrintHouse image
  185. #!:mime application/x-ole-storage
  186. !:mime application/x-corel-cph
  187. !:ext cph
  188. # 3rd directory entry name Thumbnail
  189. >>>>256 lestring16 Thumbnail : Corel PrintHouse image
  190. !:mime application/x-corel-cph
  191. !:ext cph
  192. #
  193. # URL: https://en.wikipedia.org/wiki/Hangul_(word_processor)
  194. # Note: "HWP Document File" signature found in FileHeader
  195. # Second directory entry name FileHeader hint for Thinkfree Office document
  196. >>>>128 lestring16 FileHeader : Hangul (Korean) 5.0 Word Processor File
  197. #!:mime application/haansofthwp
  198. !:mime application/x-hwp
  199. # https://example-files.online-convert.com/document/hwp/example.hwp
  200. !:ext hwp
  201. #
  202. # URL: https://ask.libreoffice.org/en/question/26303/creating-new-themes-for-the-gallery-not-functioning/
  203. # Second directory entry name like dd2000 dd2001 dd2036 dd2060 dd2083
  204. >>>>128 lestring16 dd2 : StarOffice Gallery view
  205. #!:mime application/x-ole-storage
  206. !:mime application/x-star-sdv
  207. !:ext sdv
  208. # remaining null clsid
  209. >>>>128 default x : UNKNOWN
  210. !:mime application/x-ole-storage
  211. # look for known clsid GUID
  212. # - Visio documents
  213. # URL: http://fileformats.archiveteam.org/wiki/Visio
  214. # Last update on 10/23/2006 by Lester Hightower, 07/20/2019 by Joerg Jenderek
  215. >>88 ubequad 0xc000000000000046 : Microsoft
  216. >>>80 ubequad 0x131a020000000000 Visio 2000-2002 Document, stencil or template
  217. !:mime application/vnd.visio
  218. # VSD~Drawing VSS~Stencil VST~Template
  219. !:ext vsd/vss/vst
  220. >>>80 ubequad 0x141a020000000000 Visio 2003-2010 Document, stencil or template
  221. !:mime application/vnd.visio
  222. !:ext vsd/vss/vst
  223. #
  224. # URL: http://fileformats.archiveteam.org/wiki/Windows_Installer
  225. >>>80 ubequad 0x84100c0000000000 Windows Installer Package
  226. !:mime application/x-msi
  227. #!:mime application/x-ms-win-installer
  228. !:ext msi
  229. >>>80 ubequad 0x86100c0000000000 Windows Installer Patch
  230. # ??
  231. !:mime application/x-wine-extension-msp
  232. #!:mime application/x-ms-msp
  233. !:ext msp
  234. #
  235. # URL: http://fileformats.archiveteam.org/wiki/DOC
  236. >>>80 ubequad 0x0009020000000000 Word 6-95 document or template
  237. !:mime application/msword
  238. # for template MSWDW8TN
  239. !:apple MSWDWDBN
  240. !:ext doc/dot
  241. >>>80 ubequad 0x0609020000000000 Word 97-2003 document or template
  242. !:mime application/msword
  243. !:apple MSWDWDBN
  244. # dot for template; no extension on Macintosh
  245. !:ext doc/dot/
  246. #
  247. # URL: http://fileformats.archiveteam.org/wiki/Microsoft_Works_Word_Processor
  248. >>>80 ubequad 0x0213020000000000 Works 3-4 document or template
  249. !:mime application/vnd.ms-works
  250. !:apple ????AWWP
  251. # ps for template https://filext.com/file-extension/PS bps for backup
  252. !:ext wps/ps/bps
  253. #
  254. # URL: http://fileformats.archiveteam.org/wiki/Microsoft_Works_Database
  255. >>>80 ubequad 0x0313020000000000 Works 3-4 database or template
  256. !:mime application/vnd.ms-works-db
  257. # https://www.macdisk.com/macsigen.php
  258. !:apple ????AWDB
  259. # db for template www.file-extensions.org/db-file-extension-microsoft-works-data bdb for backup
  260. !:ext wdb/db/bdb
  261. #
  262. # URL: https://en.wikipedia.org/wiki/Microsoft_Excel
  263. >>>80 ubequad 0x1008020000000000 Excel 5-95 worksheet, addin or template
  264. !:mime application/vnd.ms-excel
  265. # https://www.macdisk.com/macsigen.php
  266. !:apple ????XLS5
  267. # worksheet/addin/template/no extension on Macintosh
  268. !:ext xls/xla/xlt/
  269. #
  270. >>>80 ubequad 0x2008020000000000 Excel 97-2003
  271. !:mime application/vnd.ms-excel
  272. # https://www.macdisk.com/macsigen.php XLS5 for Excel 5
  273. !:apple ????XLS9
  274. # 3nd directory entry name
  275. >>>>256 lestring16 _VBA_PROJECT_CUR addin
  276. !:ext xla/
  277. # 4th directory entry name
  278. >>>>384 lestring16 _VBA_PROJECT_CUR addin
  279. !:ext xla
  280. #!:ext xla/
  281. >>>>256 default x worksheet or template
  282. !:ext xls/xlt
  283. #!:ext xls/xlt/
  284. #
  285. # URL: http://fileformats.archiveteam.org/wiki/OLE2
  286. >>>80 ubequad 0x0b0d020000000000 Outlook 97-2003 item
  287. #>>>80 ubequad 0x0b0d020000000000 Outlook 97-2003 Message
  288. #!:mime application/vnd.ms-outlook
  289. !:mime application/x-ms-msg
  290. !:ext msg
  291. # URL: https://wiki.fileformat.com/email/oft/
  292. >>>80 ubequad 0x46f0060000000000 Outlook 97-2003 item template
  293. #!:mime application/vnd.ms-outlook
  294. !:mime application/x-ms-oft
  295. !:ext oft
  296. #
  297. # URL: http://fileformats.archiveteam.org/wiki/PPT
  298. >>>80 ubequad 0x5148040000000000 PowerPoint 4.0 presentation
  299. !:mime application/vnd.ms-powerpoint
  300. # https://www.macdisk.com/macsigen.php
  301. !:apple ????PPT3
  302. !:ext ppt
  303. #??
  304. # URL: http://www.checkfilename.com/view-details/Microsoft-Works/RespageIndex/0/sTab/2/
  305. >>88 ubequad 0xa29a00aa004a1a72 : Microsoft
  306. # URL: http://fileformats.archiveteam.org/wiki/Microsoft_Works_Word_Processor
  307. >>>80 ubequad 0xc2dbcd28e20ace11 Works 4 document
  308. !:mime application/vnd.ms-works
  309. !:apple ????AWWP
  310. !:ext wps
  311. #
  312. # URL: http://fileformats.archiveteam.org/wiki/Microsoft_Works_Database
  313. >>>80 ubequad 0xc3dbcd28e20ace11 Works 4 database
  314. !:mime application/vnd.ms-works-db
  315. !:apple ????AWDB
  316. !:ext wdb/bdb
  317. #??
  318. >>88 ubequad 0xa40700c04fb932ba : Microsoft
  319. # URL: http://fileformats.archiveteam.org/wiki/Microsoft_Works_Word_Processor
  320. >>>80 ubequad 0xb25aa40e0a9ed111 Works 5-6 document
  321. !:mime application/vnd.ms-works
  322. !:apple ????AWWP
  323. !:ext wps
  324. #??
  325. # URL: http://fileformats.archiveteam.org/wiki/Microsoft_Publisher
  326. >>88 ubequad 0x00c0000000000046 : Microsoft
  327. >>>80 ubequad 0x0112020000000000 Publisher
  328. !:mime application/vnd.ms-publisher
  329. !:ext pub
  330. #
  331. # URL: http://fileformats.archiveteam.org/wiki/PPT
  332. #??
  333. >>88 ubequad 0xa90300aa00510ea3 : Microsoft
  334. >>>80 ubequad 0x70ae7bea3bfbcd11 PowerPoint 95 presentation
  335. !:mime application/vnd.ms-powerpoint
  336. # https://www.macdisk.com/macsigen.php
  337. !:apple ????PPT3
  338. !:ext ppt/pot
  339. #??
  340. >>88 ubequad 0x86ea00aa00b929e8 : Microsoft
  341. >>>80 ubequad 0x108d81649b4fcf11 PowerPoint 97-2003 presentation or template
  342. !:mime application/vnd.ms-powerpoint
  343. !:apple ????PPT3
  344. # /autostart/template
  345. !:ext ppt/pps/pot
  346. #
  347. # URL: https://en.wikipedia.org/wiki/Microsoft_Project
  348. #??
  349. >>88 ubequad 0xbe1100c04fb6faf1 : Microsoft
  350. >>>80 ubequad 0x3a8fb774c8c8d111 Project
  351. !:mime application/vnd.ms-project
  352. !:ext mpp
  353. #
  354. # URL: http://fileformats.archiveteam.org/wiki/SHW_(Corel)
  355. #???
  356. >>88 ubequad 0x99ae04021c007002 : WordPerfect
  357. >>>80 ubequad 0x62fe2e4099191b10 7-X3 presentation
  358. !:mime application/x-corelpresentations
  359. #!:mime application/x-shw-viewer
  360. #!:mime image/x-presentations
  361. !:ext shw
  362. #
  363. # URL: http://www.checkfilename.com/view-details/WordPerfect-Office-X3/RespageIndex/0/sTab/2/
  364. >>>80 ubequad 0x60fe2e4099191b10 9 Graphic
  365. #!:mime application/x-wpg
  366. #!:mime image/x-wordperfect-graphics
  367. !:mime image/x-wpg
  368. # https://www.macdisk.com/macsigen.php "WPC2" for Wordperfect 2 *.wpd
  369. !:apple ????WPC9
  370. !:ext wpg
  371. #
  372. # URL: http://fileformats.archiveteam.org/wiki/StarOffice_binary_formats
  373. >>88 ubequad 0x996104021c007002 : StarOffice
  374. >>>80 ubequad 0x407e5cdc5cb31b10 StarWriter 3.0 document or template
  375. # https://www.openoffice.org/framework/documentation/mimetypes/mimetypes.html
  376. !:mime application/x-starwriter
  377. !:ext sdw/vor
  378. #
  379. >>>80 ubequad 0xa03f543fa6b61b10 StarCalc 3.0 spreadsheet or template
  380. !:mime application/x-starcalc
  381. !:ext sdc/vor
  382. #
  383. >>>80 ubequad 0xe0aa10af6db31b10 StarDraw 3.0 drawing or template
  384. !:mime application/x-starimpress
  385. #!:mime application/x-stardraw
  386. # sda ??
  387. !:ext sdd/sda/vor
  388. #??
  389. >>88 ubequad 0x89cb008029e4b0b1 : StarOffice
  390. >>>80 ubequad 0x41d461633542d011 StarCalc 4.0 spreadsheet or template
  391. !:mime application/x-starcalc
  392. !:ext sdc/vor
  393. #
  394. >>>80 ubequad 0x61b8a5c6d685d111 StarCalc 5.0 spreadsheet or template
  395. !:mime application/vnd.stardivision.cal
  396. !:ext sdc/vor
  397. #
  398. >>>80 ubequad 0xc03c2d011642d011 StarImpress 4.0 presentation or template
  399. !:mime application/x-starimpress
  400. !:ext sdd/vor
  401. #??
  402. >>88 ubequad 0xb12a04021c007002 : StarOffice
  403. >>>80 ubequad 0x600459d4fd351c10 StarMath 3.0
  404. !:mime application/x-starmath
  405. !:ext smf
  406. #??
  407. >>88 ubequad 0x8e2c00001b4cc711 : StarOffice
  408. >>>80 ubequad 0xe0999cfb6d2c1c10 StarChart 3.0
  409. !:mime application/x-starchart
  410. !:ext sds
  411. #??
  412. >>88 ubequad 0xa45e00a0249d57b1 : StarOffice
  413. >>>80 ubequad 0xb0e9048b0e42d011 StarWriter 4.0 document or template
  414. !:mime application/x-starwriter
  415. !:ext sdw/vor
  416. #??
  417. >>88 ubequad 0x89ca008029e4b0b1 : StarOffice
  418. >>>80 ubequad 0xe1b7b3022542d011 StarMath 4.0
  419. !:mime application/x-starmath
  420. !:ext smf
  421. #
  422. >>>80 ubequad 0xe0b7b3022542d011 StarChart 4.0
  423. !:mime application/x-starchart
  424. !:ext sds
  425. #??
  426. >>88 ubequad 0xa53f00a0249d57b1 : StarOffice
  427. >>>80 ubequad 0x70c90a340de3d011 Master 4.0 document
  428. !:mime application/x-starwriter-global
  429. !:ext sgl
  430. #??
  431. >>88 ubequad 0x89d0008029e4b0b1 : StarOffice
  432. >>>80 ubequad 0x40e6b5ffde85d111 StarMath 5.0
  433. !:mime application/vnd.stardivision.math
  434. !:ext smf
  435. #
  436. >>>80 ubequad 0xa005892ebd85d111 StarDraw 5.0 drawing or template
  437. !:mime application/vnd.stardivision.draw
  438. !:ext sda/vor
  439. #
  440. >>>80 ubequad 0x21725c56bc85d111 StarImpress 5.0 presentation or template
  441. !:mime application/vnd.stardivision.impress
  442. # sda is used for what?
  443. !:ext sdd/vor/sda
  444. #
  445. >>>80 ubequad 0x214388bfdd85d111 StarChart 5.0
  446. !:mime application/vnd.stardivision.chart
  447. !:ext sds
  448. # ??
  449. >>88 ubequad 0xaab4006097da561a : StarOffice
  450. >>>80 ubequad 0xd1f90cc2ae85d111 StarWriter 5.0 document or template
  451. !:mime application/vnd.stardivision.writer
  452. !:ext sdw/vor
  453. #
  454. >>>80 ubequad 0xd3f90cc2ae85d111 Master 5.0 document
  455. !:mime application/vnd.stardivision.writer-global
  456. !:ext sgl
  457. #??
  458. # URL: http://fileformats.archiveteam.org/wiki/FlashPix
  459. >>88 ubequad 0x855300aa00a1f95b : Kodak
  460. >>>80 ubequad 0x0067615654c1ce11 FlashPIX Image
  461. !:mime image/vnd.fpx
  462. !:apple ????FPix
  463. !:ext fpx
  464. # remaining non null clsid
  465. >>88 default x : UNKNOWN
  466. !:mime application/x-ole-storage
  467. >>>80 ubequad !0 \b, clsid 0x%16.16llx
  468. >>>88 ubequad x \b%16.16llx