You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

chunks_parse_cmds.tbl 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964
  1. # This program is free software; you can redistribute it and/or modify
  2. # it under the terms of the GNU General Public License as published by
  3. # the Free Software Foundation; version 3 of the License.
  4. #
  5. # This program is distributed in the hope that it will be useful,
  6. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  8. # GNU General Public License for more details.
  9. #
  10. #
  11. # version 0.0.26
  12. #
  13. # Need to extend with 'format' field for conversion length (inch->mm), angles(rad->degree) and enums (e.g.
  14. # for aligns -- left/right/justify etc.
  15. #
  16. # The Format description for .tbl file.
  17. # Lines start with # are comments.
  18. # Every list of commands starts with 'start ch_type'
  19. # and ends with 'end'.
  20. # In between start and end are space-separeted lines
  21. # with 'type', 'offset', 'name' values.
  22. # Atm I use 'atoi', so only decimal value is allowed for ch_type, type and offset.
  23. # The possible values for 'type' are:
  24. # 0..7 - flag at bit 0..7 at offset 'offset'
  25. # 8 - 1 byte value
  26. # 9 - 8 bytes IEEE-754 fraction
  27. # 10(a) - name of chunk (we must start with a name atm, because with parse for printing)
  28. # 11(b) - offset to start of blocks
  29. # 12(c) - text block
  30. # 13(d) - some "name" from the list
  31. # 14(e) - one byte "function" from the list
  32. # 15(f) - some "function" from the list
  33. # 16 - string, next byte is length terminating '0' wasn't added to length
  34. # 17 - 'ForeignData'
  35. # 18 - Dump it to file as-is
  36. # 25 - 2 bytes LE
  37. # 26 - 4 bytes LE
  38. # 27 - Tabs? [experimental]
  39. # 21 - offset to start of blocks in version 11
  40. # 28 - extension for image files [experimental]
  41. # 29 - num of parts and type for OLE [experimental]
  42. # Quick workaround for losing of 1st table
  43. start 10
  44. end
  45. start 12
  46. 17 0 ForeignData
  47. end
  48. start 13
  49. 10 0 OLE_Info
  50. 29 0 0
  51. 18 0 0
  52. end
  53. start 14
  54. 10 0 Text
  55. 12 27 0
  56. 18 0 0
  57. end
  58. start 16
  59. 10 0 Data1
  60. 12 0 0
  61. end
  62. start 17
  63. 10 0 Data2
  64. 12 0 0
  65. end
  66. start 18
  67. 10 0 Data3
  68. 12 0 0
  69. end
  70. start 21
  71. 10 0 Stream15
  72. 9 53 Center X
  73. 9 61 Center Y
  74. 18 0 0
  75. end
  76. start 24
  77. 10 0 Stream18
  78. 18 0 0
  79. end
  80. start 25
  81. 10 0 FaceName
  82. 16 24 0
  83. end
  84. start 26
  85. 10 0 Stream1a
  86. 18 0 0
  87. end
  88. start 31
  89. 17 0 OLEData
  90. end
  91. start 40
  92. 10 0 Unknown 0x28
  93. 9 39 Unknown1
  94. 9 47 Unknown2
  95. 18 0 0
  96. end
  97. start 44
  98. 10 0 Unknown 0x2c
  99. 18 0 0
  100. end
  101. #seems to be text string
  102. start 45
  103. 10 0 Unknown 0x2d
  104. 12 0 0
  105. end
  106. start 49
  107. 10 0 Stream31
  108. 18 0 0
  109. end
  110. start 66
  111. 10 0 Unknown 0x42
  112. 18 0 0
  113. end
  114. start 70
  115. 10 0 PageSheet
  116. 18 0 0
  117. end
  118. start 71
  119. 10 0 Shape ID Type="Group"
  120. 18 0 0
  121. end
  122. start 72
  123. 10 0 Shape ID Type="Shape"
  124. 26 53 LineStyle
  125. 26 61 FillStyle
  126. 26 69 TextStyle
  127. 18 0 0
  128. end
  129. start 74
  130. 10 0 StyleSheet
  131. 26 53 LineStyle
  132. 26 61 FillStyle
  133. 26 69 TextStyle
  134. 18 0 0
  135. end
  136. start 77
  137. 10 0 Shape ID Type="Guide"
  138. 18 0 0
  139. end
  140. start 78
  141. 10 0 Shape ID Type="Foreign"
  142. 18 0 0
  143. end
  144. start 79
  145. 10 0 DocumentSheet
  146. 26 53 LineStyle
  147. 26 61 FillStyle
  148. 26 69 TextStyle
  149. 18 0 0
  150. end
  151. start 100
  152. 10 0 Unknown 0x64
  153. 18 0 0
  154. end
  155. start 101
  156. 10 0 Unknown 0x65
  157. 18 0 0
  158. end
  159. start 102
  160. 10 0 Unknown 0x66
  161. 18 0 0
  162. end
  163. start 103
  164. 10 0 Unknown 0x67
  165. 18 0 0
  166. end
  167. start 104
  168. 10 0 Unknown 0x68
  169. 18 0 0
  170. end
  171. start 105
  172. 10 0 Unknown 0x69
  173. 18 0 0
  174. end
  175. start 106
  176. 10 0 Unknown 0x6a
  177. 18 0 0
  178. end
  179. start 107
  180. 10 0 Unknown 0x6b
  181. 18 0 0
  182. end
  183. start 108
  184. 10 0 Unknown 0x6c
  185. 18 0 0
  186. end
  187. start 109
  188. 10 0 Unknown 0x6d
  189. 18 0 0
  190. end
  191. start 110
  192. 10 0 Unknown 0x6e
  193. 18 0 0
  194. end
  195. start 111
  196. 10 0 Unknown 0x6f
  197. 18 0 0
  198. end
  199. start 112
  200. 10 0 Unknown 0x70
  201. 18 0 0
  202. end
  203. start 113
  204. 10 0 Unknown 0x71
  205. 18 0 0
  206. end
  207. start 114
  208. 10 0 Unknown 0x72
  209. 18 0 0
  210. end
  211. start 115
  212. 10 0 Unknown 0x73
  213. 18 0 0
  214. end
  215. start 116
  216. 10 0 Unknown 0x74
  217. 18 0 0
  218. end
  219. start 117
  220. 10 0 Unknown 0x75
  221. 18 0 0
  222. end
  223. start 118
  224. 10 0 Unknown 0x76
  225. 18 0 0
  226. end
  227. start 130
  228. 10 0 Unknown 0x82
  229. 18 0 0
  230. end
  231. start 131
  232. 10 0 Unknown 0x83
  233. 18 0 0
  234. end
  235. start 132
  236. 10 0 Event
  237. 8 20 TheText
  238. 11 36 BlockStarts
  239. 21 36 BlockStarts
  240. 18 0 0
  241. end
  242. start 133
  243. 10 0 Line
  244. 31 19 LineWeight
  245. 8 28 LineColor
  246. 8 33 LinePattern
  247. 9 35 Rounding
  248. 8 43 EndArrowSize
  249. 8 44 BeginArrow
  250. 8 45 EndArrow
  251. 8 47 BeginArrowSize
  252. 1 50 Color
  253. 2 50 Pattern
  254. 3 50 RoundingCap
  255. 4 50 LineEndEnd
  256. 5 50 LineEndBegin
  257. 6 50 EndSize
  258. 7 50 SqueareCap
  259. 0 51 BeginSize
  260. 11 54 BlockStarts
  261. 21 54 BlockStarts
  262. 18 0 0
  263. end
  264. start 134
  265. 10 0 Fill
  266. 8 19 FillForegnd
  267. 30 25 FillBkgnd
  268. 8 29 FillPattern
  269. 30 31 ShdwForegnd
  270. 8 35 ShdwBkgnd
  271. 8 40 ShdwPattern
  272. 31 42 ShapeShdwOffsetX
  273. 31 51 ShapeShdwOffsetY
  274. 9 69 ShapeShdwScaleFactor
  275. 11 44 BlockStarts
  276. 21 80 BlockStarts
  277. 18 0 0
  278. end
  279. start 135
  280. 10 0 TextBlock
  281. 31 19 LeftMargin
  282. 31 28 RightMargin
  283. 31 37 TopMargin
  284. 31 46 BottomMargin
  285. 8 55 VerticalAlign
  286. 30 56 TextBkgnd
  287. 9 62 DefaultTabStop
  288. 8 82 TextDirection
  289. 11 90 BlockStarts
  290. 21 111 BlockStarts
  291. 18 0 0
  292. end
  293. start 136
  294. 10 0 Tabs
  295. 11 26 BlocksStart
  296. 21 26 BlocksStart
  297. 18 0 0
  298. end
  299. start 137
  300. 10 0 Geometry
  301. 0 20 NoFill
  302. 1 20 NoLine
  303. 2 20 NoShow
  304. 3 20 NoSnap
  305. 21 22 BlocksStart
  306. 18 0 0
  307. end
  308. start 138
  309. 10 0 MoveTo
  310. 9 20 X
  311. 9 29 Y
  312. 11 39 BlocksStart
  313. 21 39 BlocksStart
  314. end
  315. start 139
  316. 10 0 LineTo
  317. 9 20 X
  318. 9 29 Y
  319. 11 39 BlocksStart
  320. 21 39 BlocksStart
  321. end
  322. start 140
  323. 10 0 ArcTo
  324. 9 20 X
  325. 9 29 Y
  326. 9 38 A
  327. 11 48 BlocksStart
  328. 18 0 0
  329. end
  330. start 141
  331. 10 0 InfiniteLine
  332. 9 20 X
  333. 9 29 Y
  334. 9 37 A
  335. 9 45 B
  336. 11 57 BlocksStart
  337. 18 0 0
  338. end
  339. start 143
  340. 10 0 Ellipse
  341. 9 20 X
  342. 9 29 Y
  343. 9 38 A
  344. 9 47 B
  345. 9 56 C
  346. 9 65 D
  347. 11 75 BlocksStart
  348. 18 0 0
  349. end
  350. start 144
  351. 10 0 EllipticalArcTo
  352. 31 19 X
  353. 31 28 Y
  354. 31 37 A
  355. 31 46 B
  356. 31 55 C
  357. 31 64 D
  358. 11 75 BlocksStart
  359. 18 0 0
  360. end
  361. start 146
  362. 10 0 PageProps
  363. 9 20 PageWidth
  364. 9 29 PageHeight
  365. 9 38 ShdwOffsetX
  366. 9 47 ShdwOffsetY
  367. 9 56 PageScale
  368. 9 65 DrawingScale
  369. 8 73 DrawingSizeType
  370. 8 74 DrawingScaleType
  371. 0 93 InhibitSnap
  372. 11 150 BlockStarts
  373. 18 0 0
  374. end
  375. start 147
  376. 10 0 StyleProp
  377. 8 19 EnableLineProps
  378. 8 20 EnableFillProps
  379. 8 21 EnableTextProps
  380. 8 22 HideForApply
  381. 11 26 BlocksStart
  382. 21 26 BlocksStart
  383. 18 0 0
  384. end
  385. start 148
  386. 10 0 Char
  387. 25 23 FontNum
  388. 30 26 Color
  389. 8 29 Transparency*255/100%
  390. 0 30 Bold
  391. 1 30 Italic
  392. 2 30 Underline
  393. 3 30 Smallcaps
  394. 0 31 AllCaps
  395. 1 31 InitCaps
  396. 0 32 Subscript
  397. 1 32 Superscipt
  398. 25 33 Scale*100 %
  399. 8 35 LangCode
  400. 31 36 Size
  401. 25 46 Spacing pt*200
  402. 25 56 AsianFont
  403. 25 58 ComplexScriptFont
  404. 8 60 LocalizeFont
  405. 25 88 LangID
  406. 11 54 BlocksStart
  407. 21 107 BlocksStart
  408. 18 0 0
  409. end
  410. start 149
  411. 10 0 Para
  412. 31 23 IndFirst
  413. 31 32 IndLeft
  414. 31 41 IndRight
  415. 31 50 SpLine
  416. 31 59 SpBefore
  417. 31 68 SpAfter
  418. 8 77 HorizAlign
  419. 8 78 Bullet
  420. 11 92 BlockStarts
  421. 21 142 BlockStarts
  422. 18 0 0
  423. end
  424. start 150
  425. 10 0 Tabs
  426. 27 0 TabsID
  427. 11 48 BlockStarts
  428. 18 0 0
  429. end
  430. start 151
  431. 10 0 Tabs
  432. 27 0 TabsID
  433. 11 139 BlockStarts
  434. 18 0 0
  435. end
  436. start 181
  437. 10 0 Tabs
  438. 27 0 TabsID
  439. 11 708 BlockStarts
  440. 18 0 0
  441. end
  442. start 152
  443. 10 0 Foreign
  444. 9 20 IndFirst
  445. 9 29 IndLeft
  446. 9 38 IndRight
  447. 9 47 SpLine
  448. 28 68 Ext
  449. 18 0 0
  450. end
  451. start 153
  452. 10 0 Connection
  453. 31 19 Width
  454. 31 28 Height
  455. 31 37 DirX/A
  456. 31 46 DirY/B
  457. 8 55 Type/C
  458. 11 67 BlockStarts
  459. 21 67 BlockStarts
  460. 18 0 0
  461. end
  462. start 155
  463. 10 0 XForm
  464. 9 20 PinX
  465. 9 29 PinY
  466. 9 38 Width
  467. 9 47 Height
  468. 9 56 LocPinX
  469. 9 65 LocPinY
  470. 9 74 Angle
  471. 8 82 FlipX
  472. 8 83 FlipY
  473. 8 84 ResizeMode
  474. 11 88 BlockStarts
  475. 21 88 BlockStarts
  476. 18 0 0
  477. end
  478. start 156
  479. 10 0 TextXForm
  480. 9 20 TxtPinX
  481. 9 29 TxtPinY
  482. 31 37 TxtWidth
  483. 9 47 TxtHeight
  484. 9 56 TxtLocPinX
  485. 9 65 TxtLocPinY
  486. 9 74 TxtAngle
  487. 11 88 BlockStarts
  488. 21 88 BlockStarts
  489. 18 0 0
  490. end
  491. start 157
  492. 10 0 XForm1D
  493. 9 20 BeginX
  494. 9 29 BeginY
  495. 9 38 EndX
  496. 9 47 EndY
  497. 11 57 BlockStarts
  498. 21 57 BlockStarts
  499. end
  500. start 158
  501. 10 0 Scratch
  502. 9 20 X
  503. 9 29 Y
  504. 9 38 A
  505. 9 47 B
  506. 9 56 C
  507. 9 65 D
  508. 11 75 BlockStarts
  509. 18 0 0
  510. end
  511. start 159
  512. 10 0 Alignment
  513. 9 20 AlignLeft
  514. 9 29 AlignCenter
  515. 9 38 AlignRight
  516. 9 47 AlignTop
  517. 9 56 AlignMiddle
  518. 9 65 AlignBottom
  519. 11 75 BlockStarts
  520. 21 79 BlockStarts
  521. 18 0 0
  522. end
  523. start 160
  524. 10 0 Protection
  525. 8 19 LockWidth
  526. 8 20 LockHeight
  527. 8 21 LockMoveX
  528. 8 22 LockMoveY
  529. 8 23 LockAspect
  530. 8 24 LockDelete
  531. 8 25 LockBegin
  532. 8 26 LockEnd
  533. 8 27 LockRotate
  534. 8 28 LockCrop
  535. 8 29 LockVtxEdit
  536. 8 30 LockTextEdit
  537. 8 31 LockFormat
  538. 8 32 LockGroup
  539. 8 33 LockCalcWH
  540. 8 34 LockSelect
  541. 8 35 LockCustProp
  542. 11 43 BlockStarts
  543. 21 43 BlockStarts
  544. 18 0 0
  545. end
  546. start 161
  547. 10 0 TextFields
  548. 18 0 0
  549. end
  550. start 162
  551. 10 0 Control
  552. 9 20 X
  553. 9 29 Y
  554. 9 38 XDyn
  555. 9 47 YDyn
  556. 8 55 XCon
  557. 8 56 YCon
  558. 0 57 CanGlue
  559. 11 60 BlockStarts
  560. 21 60 BlockStarts
  561. 18 0 0
  562. end
  563. start 163
  564. 10 0 Help
  565. 11 49 BlockStarts
  566. 21 49 BlockStarts
  567. 18 0 0
  568. end
  569. start 164
  570. 10 0 Misc
  571. 0 19 NoObjHandles
  572. 1 19 NonPrinting
  573. 2 19 NoCtlHandles
  574. 3 19 NoAlignBox
  575. 4 19 UpdateAlignBox
  576. 5 19 HideText
  577. 8 20 DynFeedback
  578. 8 21 GlueType
  579. 8 22 WalkPreference
  580. 25 25 ObjType
  581. 0 35 IsDropSource
  582. 1 35 NoLiveDynamics
  583. 25 37 LangID
  584. 11 42 BlockStarts
  585. 21 64 BlockStarts
  586. 18 0 0
  587. end
  588. start 165
  589. 10 0 SplineStart
  590. 9 20 X
  591. 9 29 Y
  592. 9 37 A
  593. 9 45 B
  594. 9 53 C
  595. 8 61 D
  596. 11 65 BlockStarts
  597. 18 0 0
  598. end
  599. start 166
  600. 10 0 SplineKnot
  601. 9 20 X
  602. 9 29 Y
  603. 9 37 A
  604. 11 47 BlockStarts
  605. 18 0 0
  606. end
  607. start 167
  608. 10 0 LayerMem
  609. 11 25 BlockStarts
  610. 21 25 BlockStarts
  611. 18 0 0
  612. end
  613. # Transparency 255 - 100%
  614. start 168
  615. 10 0 Layer
  616. 30 27 Color
  617. 8 31 Transparency
  618. 8 33 Visible
  619. 8 34 Print
  620. 8 35 Active
  621. 8 36 Lock
  622. 8 37 Snap
  623. 8 38 Glue
  624. 11 52 BlockStarts
  625. 21 52 BlockStarts
  626. 18 0 0
  627. end
  628. start 169
  629. 10 0 Act
  630. 8 40 Checked
  631. 8 41 Disabled
  632. 0 42 ReadOnly
  633. 1 42 Invisible
  634. 2 42 BeginGroup
  635. 11 47 BlockStarts
  636. 21 76 BlockStarts
  637. 18 0 0
  638. end
  639. start 170
  640. 10 0 Control
  641. 9 20 X
  642. 9 29 Y
  643. 9 38 XDyn
  644. 9 47 YDyn
  645. 8 55 XBehavior
  646. 8 56 YBehavior
  647. 0 57 CanGlue
  648. 11 66 BlockStarts
  649. 21 66 BlockStarts
  650. 18 0 0
  651. end
  652. start 180
  653. 10 0 User-defined Cells
  654. 9 20 Value
  655. 11 34 BlockStarts
  656. 21 34 BlockStarts
  657. 18 0 0
  658. end
  659. start 182
  660. 10 0 CustomProps
  661. 9 20 Value
  662. 8 44 Type
  663. 0 46 Invisible
  664. 1 46 Ask
  665. 11 55 BlockStarts
  666. 18 0 0
  667. end
  668. start 183
  669. 10 0 RulerGrid
  670. 8 19 XRulerDensity
  671. 8 20 XRulerDensity
  672. 31 21 Unknown1
  673. 31 30 Unknown2
  674. 31 39 XRulerOrigin
  675. 31 48 YRulerOrigin
  676. 8 57 XGridDensity
  677. 8 58 YGridDensity
  678. 31 59 XGridSpacing
  679. 31 68 YGridSpacing
  680. 31 77 XGridOrigin
  681. 31 86 YGridOrigin
  682. 11 98 BlockStarts
  683. 21 98 BlockStarts
  684. 18 0 0
  685. end
  686. start 185
  687. 10 0 Connection
  688. 31 19 Width
  689. 31 28 Height
  690. 31 37 DirX/A
  691. 31 46 DirY/B
  692. 8 55 Type/C
  693. 11 67 BlockStarts
  694. 21 67 BlockStarts
  695. 18 0 0
  696. end
  697. start 186
  698. 10 0 ConnectionPoints
  699. 9 20 Width
  700. 9 29 Height
  701. 11 79 BlockStarts
  702. 18 0 0
  703. end
  704. start 188
  705. 10 0 DocProps
  706. 25 24 DocLangID
  707. 18 0 0
  708. end
  709. start 189
  710. 10 0 Image
  711. 9 19 Gamma
  712. 25 27 Contrast*100 (%)
  713. 25 29 Brightness*100 (%)
  714. 25 31 Sharpen*100 (%)
  715. 25 33 Blur*100 (%)
  716. 25 35 Denoise*100 (%)
  717. 25 37 Transparency*100 (%)
  718. 11 64 BlockStarts
  719. 21 64 BlockStarts
  720. 18 0 0
  721. end
  722. start 190
  723. 10 0 Group
  724. 8 19 SelectMode
  725. 8 20 DisplayMode
  726. 0 21 IsDropTarget
  727. 1 21 IsSnapTarget
  728. 2 21 IsTextEditTarget
  729. 3 21 DontMoveChildren
  730. 11 44 BlocksStart
  731. 21 44 BlocksStart
  732. end
  733. start 191
  734. 10 0 Layout
  735. 0 19 ShapePermeableX
  736. 1 19 ShapePermeableY
  737. 2 19 ShapePermeablePlace
  738. 8 20 ShapeFixedCode
  739. 8 21 ShapePlowCode
  740. 8 22 ShapeRouteStyle
  741. 8 24 ConFixedCode
  742. 8 25 ConLineJumpCode
  743. 8 26 ConLineJumpStyle
  744. 8 28 ConLineJumpDirX
  745. 8 29 ConLineJumpDirY
  746. 11 57 BlockStarts
  747. 21 57 BlockStarts
  748. 18 0 0
  749. end
  750. start 192
  751. 10 0 PageLayout
  752. 0 19 ResizePage
  753. 1 19 EnableGrid
  754. 2 19 DynamicOff
  755. 3 19 CtrlAsInput
  756. 8 20 PlaceStyle
  757. 8 21 RouteStyle
  758. 8 22 PlaceDepth
  759. 8 23 PlowCode
  760. 8 24 LineJumpCode
  761. 8 25 LineJumpStyle
  762. 8 26 PageLineJumpDirX
  763. 8 27 PageLineJumpDirY
  764. 9 29 LineToNodeX
  765. 9 38 LineToNodeY
  766. 9 47 BlockSizeX
  767. 9 56 BlockSizeY
  768. 9 65 AvenueSizeX
  769. 9 74 AvenueSizeY
  770. 9 83 LineToLineX
  771. 9 92 LineToLineY
  772. 9 100 LineJumpFactorX
  773. 9 108 LineJumpFactorY
  774. 8 116 LineAdjustFrom
  775. 8 117 LineAdjustTo
  776. 11 163 Blocks start
  777. 21 163 Blocks start
  778. end
  779. start 193
  780. 10 0 Unknown 0xc1
  781. 9 20 Unknown1
  782. 9 29 Unknown2
  783. 18 0 0
  784. end
  785. start 195
  786. 10 0 NURBSTo
  787. 9 20 X
  788. 9 29 Y
  789. 9 37 A
  790. 9 45 B
  791. 9 53 C
  792. 9 61 D
  793. 11 80 BlocksStart
  794. 21 80 BlocksStart
  795. 18 0 0
  796. end
  797. start 196
  798. 10 0 Hyperlink
  799. 0 39 NewWindow
  800. 2 39 Default
  801. 11 65 BlocksStart
  802. 18 0 0
  803. end
  804. start 197
  805. 10 0 Reviewer
  806. 8 28 ColorRed
  807. 8 29 ColorGreen
  808. 8 30 ColorBlue
  809. 26 31 ReviewerID
  810. 26 35 CurrentIndex
  811. 11 57 BlocksStart
  812. 21 57 BlocksStart
  813. 18 0 0
  814. end
  815. start 198
  816. 10 0 Unknown 0xc6
  817. 18 0 0
  818. end
  819. start 199
  820. 10 0 Unknown 0xc7
  821. 18 0 0
  822. end
  823. start 200
  824. 10 0 PrintProps
  825. 31 19 PageLeftMargin
  826. 31 28 PageRightMargin
  827. 31 37 PageTopMargin
  828. 31 46 PageBottomMargin
  829. 9 55 ScaleX
  830. 9 63 ScaleY
  831. 25 71 PagesX
  832. 25 73 PagesY
  833. 8 76 PrintPageOrientation
  834. 25 77 PaperKind
  835. 25 79 PaperSource
  836. 11 91 BlocksStart
  837. 21 91 BlocksStart
  838. 18 0 0
  839. end
  840. start 201
  841. 10 0 Unknown 0xc9
  842. 18 0 0
  843. end
  844. start 209
  845. 10 0 NURBSTo E-cell
  846. 9 35 1st fr of NURBSTo
  847. 9 43 3 bytes are here, need to map
  848. 9 51 2nd fr
  849. 9 59 3rd fr
  850. 9 67 4th byte
  851. 9 75 5th byte
  852. 9 83 4th fr
  853. 9 91 5th fr
  854. 9 99 6th byte
  855. 9 107 7th byte
  856. 9 115 6th fr
  857. 9 123 7th fr
  858. 9 131 8th byte
  859. 9 139 9th byte
  860. 18 0 0
  861. end