-
Notifications
You must be signed in to change notification settings - Fork 3
/
test_libuemf_ref30_emf.txt
7502 lines (7502 loc) · 555 KB
/
test_libuemf_ref30_emf.txt
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
U_EMR_HEADER record: 0 type:1 offset: 0 rsize: 212 crc32:337005B4
rclBounds: {0,0,14030,9920}
rclFrame: {0,0,29699,20999}
dSignature: 0x464D4520
nVersion: 0x00010000
nBytes: 166096
nRecords: 2231
nHandles: 6
sReserved: 0
nDescription: 51
offDescription: 108
Desc. A: Test EMF
Desc. B: produced by libUEMF testbed_emf program
nPalEntries: 0
szlDevice: {10205,13181}
szlMillimeters: {216,279}
cbPixelFormat: 0
offPixelFormat: 0
bOpenGL: 0
szlMicrometers: {216000,279000}
U_EMR_COMMENT record: 1 type:70 offset: 212 rsize: 28 crc32:53843E77
cbData: 14
cIdent: not (Public or Spool or EMF+)
Data: <First comment>
U_EMR_COMMENT record: 2 type:70 offset: 240 rsize: 28 crc32:9C956E57
cbData: 15
cIdent: not (Public or Spool or EMF+)
Data: <Second comment>
U_EMR_SETMAPMODE record: 3 type:17 offset: 268 rsize: 12 crc32:037B15D6
iMode: 0x00000001
U_EMR_MODIFYWORLDTRANSFORM record: 4 type:36 offset: 280 rsize: 36 crc32:4C0F0CDB
xform:{0.550498,-0.317830.0.317830,0.550498,0.000000,4459.500000}
iMode: 2
U_EMR_SETBKMODE record: 5 type:18 offset: 316 rsize: 12 crc32:74E5C726
iMode: 0x00000001
U_EMR_SETMITERLIMIT record: 6 type:58 offset: 328 rsize: 12 crc32:17D025AA
eMiterLimit: 8
U_EMR_SETPOLYFILLMODE record: 7 type:19 offset: 340 rsize: 12 crc32:FDF524A7
iMode: 0x00000002
U_EMR_CREATEBRUSHINDIRECT record: 8 type:39 offset: 352 rsize: 24 crc32:8BEEFE11
ihBrush: 1
lb: lbStyle:0x00000000 lbColor:{255,255,173} lbHatch:0x00000006
U_EMR_SELECTOBJECT record: 9 type:37 offset: 376 rsize: 12 crc32:145418AD
ihObject: 1
U_EMR_SELECTOBJECT record: 10 type:37 offset: 388 rsize: 12 crc32:DC87C451
StockObject: 0x80000007
U_EMR_RECTANGLE record: 11 type:43 offset: 400 rsize: 24 crc32:301DAA99
rclBox: {0,0,14031,9921}
U_EMR_STROKEANDFILLPATH record: 12 type:63 offset: 424 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_DELETEOBJECT record: 13 type:40 offset: 448 rsize: 12 crc32:8AFB1943
ihObject: 1
U_EMR_CREATEBRUSHINDIRECT record: 14 type:39 offset: 460 rsize: 24 crc32:9A19F234
ihBrush: 1
lb: lbStyle:0x00000000 lbColor:{196,127,255} lbHatch:0x00000006
U_EMR_SELECTOBJECT record: 15 type:37 offset: 484 rsize: 12 crc32:145418AD
ihObject: 1
U_EMR_SETPOLYFILLMODE record: 16 type:19 offset: 496 rsize: 12 crc32:FDF524A7
iMode: 0x00000002
U_EMR_EXTCREATEPEN record: 17 type:95 offset: 508 rsize: 56 crc32:6305CE59
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00012100 elpWidth:50 elpBrushStyle:0x00000000 elpColor{127,255,196} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 18 type:37 offset: 564 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_SETTEXTALIGN record: 19 type:22 offset: 576 rsize: 12 crc32:CF5F9B3C
iMode: 0x00000000
U_EMR_SELECTOBJECT record: 20 type:37 offset: 588 rsize: 12 crc32:A18F8BDB
StockObject: 0x8000000E
U_EMR_EXTCREATEFONTINDIRECTW record: 21 type:82 offset: 600 rsize: 332 crc32:3FE00FDD
ihFont: 3
Font: elfLogFont:lfHeight:-400 lfWidth:0 lfEscapement:0 lfOrientation:0 lfWeight:400 lfItalic:0x00 lfUnderline:0x00 lfStrikeOut:0x00 lfCharSet:0x00 lfOutPrecision:0x00 lfClipPrecision:0x00 lfQuality:0x00 lfPitchAndFamily:0x00 lfFaceName:Courier New elfFullName:Courier New elfStyle:Normal elfVersion:0 elfStyleSize:0 elfMatch:0 elfReserved:0 elfVendorId:00000000 elfCulture:0 elfPanose:bFamilyType:1 bSerifStyle:1 bWeight:1 bProportion:1 bContrast:1 bStrokeVariation:1 bArmStyle:1 bLetterform:1 bMidline:1 bXHeight:1
U_EMR_SELECTOBJECT record: 22 type:37 offset: 932 rsize: 12 crc32:BE5DD026
ihObject: 3
U_EMR_EXTTEXTOUTW record: 23 type:84 offset: 944 rsize: 160 crc32:CFE691F7
iGraphicsMode: 1
rclBounds: {0,0,-1,-1}
exScale: 1.000000
eyScale: 1.000000
emrtext: ptlReference:{9700,200} nChars:14 offString:76 string16:<libUEMF v0.2.2> fOptions:0x00000000 rcl{0,0,-1,-1} offDx:104 Dx:240:240:240:240:240:240:240:240:240:240:240:240:240:240:
U_EMR_SETTEXTALIGN record: 24 type:22 offset: 1104 rsize: 12 crc32:CF5F9B3C
iMode: 0x00000000
U_EMR_SELECTOBJECT record: 25 type:37 offset: 1116 rsize: 12 crc32:A18F8BDB
StockObject: 0x8000000E
U_EMR_DELETEOBJECT record: 26 type:40 offset: 1128 rsize: 12 crc32:20F2D1C8
ihObject: 3
U_EMR_EXTCREATEFONTINDIRECTW record: 27 type:82 offset: 1140 rsize: 332 crc32:3FE00FDD
ihFont: 3
Font: elfLogFont:lfHeight:-400 lfWidth:0 lfEscapement:0 lfOrientation:0 lfWeight:400 lfItalic:0x00 lfUnderline:0x00 lfStrikeOut:0x00 lfCharSet:0x00 lfOutPrecision:0x00 lfClipPrecision:0x00 lfQuality:0x00 lfPitchAndFamily:0x00 lfFaceName:Courier New elfFullName:Courier New elfStyle:Normal elfVersion:0 elfStyleSize:0 elfMatch:0 elfReserved:0 elfVendorId:00000000 elfCulture:0 elfPanose:bFamilyType:1 bSerifStyle:1 bWeight:1 bProportion:1 bContrast:1 bStrokeVariation:1 bArmStyle:1 bLetterform:1 bMidline:1 bXHeight:1
U_EMR_SELECTOBJECT record: 28 type:37 offset: 1472 rsize: 12 crc32:BE5DD026
ihObject: 3
U_EMR_EXTTEXTOUTW record: 29 type:84 offset: 1484 rsize: 148 crc32:76B7DDEA
iGraphicsMode: 1
rclBounds: {0,0,-1,-1}
exScale: 1.000000
eyScale: 1.000000
emrtext: ptlReference:{9700,500} nChars:12 offString:76 string16:<May 21, 2015> fOptions:0x00000000 rcl{0,0,-1,-1} offDx:100 Dx:240:240:240:240:240:240:240:240:240:240:240:240:
U_EMR_SETTEXTALIGN record: 30 type:22 offset: 1632 rsize: 12 crc32:CF5F9B3C
iMode: 0x00000000
U_EMR_SELECTOBJECT record: 31 type:37 offset: 1644 rsize: 12 crc32:A18F8BDB
StockObject: 0x8000000E
U_EMR_DELETEOBJECT record: 32 type:40 offset: 1656 rsize: 12 crc32:20F2D1C8
ihObject: 3
U_EMR_EXTCREATEFONTINDIRECTW record: 33 type:82 offset: 1668 rsize: 332 crc32:3FE00FDD
ihFont: 3
Font: elfLogFont:lfHeight:-400 lfWidth:0 lfEscapement:0 lfOrientation:0 lfWeight:400 lfItalic:0x00 lfUnderline:0x00 lfStrikeOut:0x00 lfCharSet:0x00 lfOutPrecision:0x00 lfClipPrecision:0x00 lfQuality:0x00 lfPitchAndFamily:0x00 lfFaceName:Courier New elfFullName:Courier New elfStyle:Normal elfVersion:0 elfStyleSize:0 elfMatch:0 elfReserved:0 elfVendorId:00000000 elfCulture:0 elfPanose:bFamilyType:1 bSerifStyle:1 bWeight:1 bProportion:1 bContrast:1 bStrokeVariation:1 bArmStyle:1 bLetterform:1 bMidline:1 bXHeight:1
U_EMR_SELECTOBJECT record: 34 type:37 offset: 2000 rsize: 12 crc32:BE5DD026
ihObject: 3
U_EMR_EXTTEXTOUTW record: 35 type:84 offset: 2012 rsize: 148 crc32:53544093
iGraphicsMode: 1
rclBounds: {0,0,-1,-1}
exScale: 1.000000
eyScale: 1.000000
emrtext: ptlReference:{9700,800} nChars:12 offString:76 string16:<EMF test: 04> fOptions:0x00000000 rcl{0,0,-1,-1} offDx:100 Dx:240:240:240:240:240:240:240:240:240:240:240:240:
U_EMR_ELLIPSE record: 36 type:42 offset: 2160 rsize: 24 crc32:AE6B9977
rclBox: {100,1300,400,1600}
U_EMR_STROKEANDFILLPATH record: 37 type:63 offset: 2184 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_RECTANGLE record: 38 type:43 offset: 2208 rsize: 24 crc32:6D06335C
rclBox: {500,1300,800,1600}
U_EMR_STROKEANDFILLPATH record: 39 type:63 offset: 2232 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 40 type:59 offset: 2256 rsize: 8 crc32:7831B8AD
U_EMR_MOVETOEX record: 41 type:27 offset: 2264 rsize: 16 crc32:63762014
ptl: {900,1300}
U_EMR_LINETO record: 42 type:54 offset: 2280 rsize: 16 crc32:0ADABCD0
ptl: {1200,1500}
U_EMR_LINETO record: 43 type:54 offset: 2296 rsize: 16 crc32:A6178AFA
ptl: {1200,1700}
U_EMR_LINETO record: 44 type:54 offset: 2312 rsize: 16 crc32:CEFADFD9
ptl: {900,1500}
U_EMR_CLOSEFIGURE record: 45 type:61 offset: 2328 rsize: 8 crc32:BE5EB12A
U_EMR_ENDPATH record: 46 type:60 offset: 2336 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 47 type:63 offset: 2344 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_ARC record: 48 type:45 offset: 2368 rsize: 40 crc32:169E10BF
rclBox: {1300,1300,1600,1600}
ptlStart: {1300,1300}
ptlEnd: {1450,1600}
U_EMR_SETARCDIRECTION record: 49 type:57 offset: 2408 rsize: 12 crc32:1D46B8D0
arcDirection: 1
U_EMR_MOVETOEX record: 50 type:27 offset: 2420 rsize: 16 crc32:93AD9492
ptl: {1800,1300}
U_EMR_ARCTO record: 51 type:55 offset: 2436 rsize: 40 crc32:0EC080F2
rclBox: {1600,1300,1900,1600}
ptlStart: {1600,1300}
ptlEnd: {1750,1600}
U_EMR_LINETO record: 52 type:54 offset: 2476 rsize: 16 crc32:C595FB85
ptl: {1750,1450}
U_EMR_CHORD record: 53 type:46 offset: 2492 rsize: 40 crc32:A78B3060
rclBox: {1900,1300,2200,1600}
ptlStart: {1900,1300}
ptlEnd: {2050,1600}
U_EMR_SETARCDIRECTION record: 54 type:57 offset: 2532 rsize: 12 crc32:0FF3173E
arcDirection: 2
U_EMR_PIE record: 55 type:47 offset: 2544 rsize: 40 crc32:ECCB7B82
rclBox: {2200,1300,2500,1600}
ptlStart: {2200,1300}
ptlEnd: {2350,1600}
U_EMR_ROUNDRECT record: 56 type:44 offset: 2584 rsize: 32 crc32:B5367396
rclBox: {2600,1300,2900,1600}
szlCorner: {100,25}
U_EMR_SELECTOBJECT record: 57 type:37 offset: 2616 rsize: 12 crc32:DC87C451
StockObject: 0x80000007
U_EMR_SELECTOBJECT record: 58 type:37 offset: 2628 rsize: 12 crc32:EB593463
StockObject: 0x80000002
U_EMR_DELETEOBJECT record: 59 type:40 offset: 2640 rsize: 12 crc32:8AFB1943
ihObject: 1
U_EMR_DELETEOBJECT record: 60 type:40 offset: 2652 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETPOLYFILLMODE record: 61 type:19 offset: 2664 rsize: 12 crc32:FDF524A7
iMode: 0x00000002
U_EMR_BEGINPATH record: 62 type:59 offset: 2676 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 63 type:3 offset: 2684 rsize: 68 crc32:5D8698B4
rclBounds: {3000,1300,3200,1600}
cptl: 5
Points: [0]:{3100,1300} [1]:{3200,1600} [2]:{3000,1400} [3]:{3200,1400} [4]:{3000,1600}
U_EMR_ENDPATH record: 64 type:60 offset: 2752 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 65 type:63 offset: 2760 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_SETPOLYFILLMODE record: 66 type:19 offset: 2784 rsize: 12 crc32:EF408B49
iMode: 0x00000001
U_EMR_BEGINPATH record: 67 type:59 offset: 2796 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 68 type:3 offset: 2804 rsize: 68 crc32:7BA15B42
rclBounds: {3300,1300,3500,1600}
cptl: 5
Points: [0]:{3400,1300} [1]:{3500,1600} [2]:{3300,1400} [3]:{3500,1400} [4]:{3300,1600}
U_EMR_ENDPATH record: 69 type:60 offset: 2872 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 70 type:63 offset: 2880 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_EXTCREATEPEN record: 71 type:95 offset: 2904 rsize: 56 crc32:AB7DE0D6
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00012100 elpWidth:10 elpBrushStyle:0x00000000 elpColor{255,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 72 type:37 offset: 2960 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_BEGINPATH record: 73 type:59 offset: 2972 rsize: 8 crc32:7831B8AD
U_EMR_POLYBEZIER record: 74 type:2 offset: 2980 rsize: 84 crc32:0665DD2D
rclBounds: {0,0,-1,-1}
cptl: 7
Points: [0]:{200,1800} [1]:{300,1900} [2]:{300,2000} [3]:{200,2100} [4]:{100,2000} [5]:{100,1900} [6]:{200,1800}
U_EMR_ENDPATH record: 75 type:60 offset: 3064 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 76 type:63 offset: 3072 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 77 type:59 offset: 3096 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 78 type:3 offset: 3104 rsize: 76 crc32:FB2AF6DB
rclBounds: {600,1800,800,2100}
cptl: 6
Points: [0]:{700,1800} [1]:{800,1900} [2]:{800,2000} [3]:{700,2100} [4]:{600,2000} [5]:{600,1900}
U_EMR_ENDPATH record: 79 type:60 offset: 3180 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 80 type:63 offset: 3188 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 81 type:59 offset: 3212 rsize: 8 crc32:7831B8AD
U_EMR_POLYLINE record: 82 type:4 offset: 3220 rsize: 76 crc32:62642800
rclBounds: {1100,1800,1300,2100}
cptl: 6
Points: [0]:{1200,1800} [1]:{1300,1900} [2]:{1300,2000} [3]:{1200,2100} [4]:{1100,2000} [5]:{1100,1900}
U_EMR_ENDPATH record: 83 type:60 offset: 3296 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 84 type:63 offset: 3304 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 85 type:59 offset: 3328 rsize: 8 crc32:7831B8AD
U_EMR_MOVETOEX record: 86 type:27 offset: 3336 rsize: 16 crc32:D6E97A37
ptl: {1600,1800}
U_EMR_POLYBEZIERTO record: 87 type:5 offset: 3352 rsize: 76 crc32:5C248E20
rclBounds: {0,0,-1,-1}
cptl: 6
Points: [0]:{1700,1800} [1]:{1800,1900} [2]:{1800,2000} [3]:{1700,2100} [4]:{1600,2000} [5]:{1600,1900}
U_EMR_ENDPATH record: 88 type:60 offset: 3428 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 89 type:63 offset: 3436 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 90 type:59 offset: 3460 rsize: 8 crc32:7831B8AD
U_EMR_MOVETOEX record: 91 type:27 offset: 3468 rsize: 16 crc32:AECC9E00
ptl: {2100,1800}
U_EMR_POLYLINETO record: 92 type:6 offset: 3484 rsize: 76 crc32:7F2E2E62
rclBounds: {0,0,-1,-1}
cptl: 6
Points: [0]:{2200,1800} [1]:{2300,1900} [2]:{2300,2000} [3]:{2200,2100} [4]:{2100,2000} [5]:{2100,1900}
U_EMR_ENDPATH record: 93 type:60 offset: 3560 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 94 type:63 offset: 3568 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_ABORTPATH record: 95 type:68 offset: 3592 rsize: 8 crc32:0D413B91
U_EMR_POLYBEZIER record: 96 type:2 offset: 3600 rsize: 84 crc32:D067E65D
rclBounds: {0,0,-1,-1}
cptl: 7
Points: [0]:{3200,1800} [1]:{3300,1900} [2]:{3300,2000} [3]:{3200,2100} [4]:{3100,2000} [5]:{3100,1900} [6]:{3200,1800}
U_EMR_STROKEANDFILLPATH record: 97 type:63 offset: 3684 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_POLYGON record: 98 type:3 offset: 3708 rsize: 76 crc32:1D280C47
rclBounds: {3600,1800,3800,2100}
cptl: 6
Points: [0]:{3700,1800} [1]:{3800,1900} [2]:{3800,2000} [3]:{3700,2100} [4]:{3600,2000} [5]:{3600,1900}
U_EMR_STROKEANDFILLPATH record: 99 type:63 offset: 3784 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_POLYLINE record: 100 type:4 offset: 3808 rsize: 76 crc32:CF74A59F
rclBounds: {4100,1800,4300,2100}
cptl: 6
Points: [0]:{4200,1800} [1]:{4300,1900} [2]:{4300,2000} [3]:{4200,2100} [4]:{4100,2000} [5]:{4100,1900}
U_EMR_STROKEANDFILLPATH record: 101 type:63 offset: 3884 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_MOVETOEX record: 102 type:27 offset: 3908 rsize: 16 crc32:71831565
ptl: {4600,1800}
U_EMR_POLYBEZIERTO record: 103 type:5 offset: 3924 rsize: 76 crc32:47CA41EC
rclBounds: {0,0,-1,-1}
cptl: 6
Points: [0]:{4700,1800} [1]:{4800,1900} [2]:{4800,2000} [3]:{4700,2100} [4]:{4600,2000} [5]:{4600,1900}
U_EMR_STROKEANDFILLPATH record: 104 type:63 offset: 4000 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_MOVETOEX record: 105 type:27 offset: 4024 rsize: 16 crc32:1EED3B9D
ptl: {5100,1800}
U_EMR_POLYLINETO record: 106 type:6 offset: 4040 rsize: 76 crc32:CBA95AC8
rclBounds: {0,0,-1,-1}
cptl: 6
Points: [0]:{5200,1800} [1]:{5300,1900} [2]:{5300,2000} [3]:{5200,2100} [4]:{5100,2000} [5]:{5100,1900}
U_EMR_STROKEANDFILLPATH record: 107 type:63 offset: 4116 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_POLYBEZIER record: 108 type:2 offset: 4140 rsize: 84 crc32:6E60671C
rclBounds: {0,0,-1,-1}
cptl: 7
Points: [0]:{6200,1800} [1]:{6300,1900} [2]:{6300,2000} [3]:{6200,2100} [4]:{6100,2000} [5]:{6100,1900} [6]:{6200,1800}
U_EMR_POLYGON record: 109 type:3 offset: 4224 rsize: 76 crc32:5CA38B7E
rclBounds: {6600,1800,6800,2100}
cptl: 6
Points: [0]:{6700,1800} [1]:{6800,1900} [2]:{6800,2000} [3]:{6700,2100} [4]:{6600,2000} [5]:{6600,1900}
U_EMR_POLYLINE record: 110 type:4 offset: 4300 rsize: 76 crc32:06529BCE
rclBounds: {7100,1800,7300,2100}
cptl: 6
Points: [0]:{7200,1800} [1]:{7300,1900} [2]:{7300,2000} [3]:{7200,2100} [4]:{7100,2000} [5]:{7100,1900}
U_EMR_MOVETOEX record: 111 type:27 offset: 4376 rsize: 16 crc32:4C5BA649
ptl: {7600,1800}
U_EMR_POLYBEZIERTO record: 112 type:5 offset: 4392 rsize: 76 crc32:A3B0E675
rclBounds: {0,0,-1,-1}
cptl: 6
Points: [0]:{7700,1800} [1]:{7800,1900} [2]:{7800,2000} [3]:{7700,2100} [4]:{7600,2000} [5]:{7600,1900}
U_EMR_MOVETOEX record: 113 type:27 offset: 4468 rsize: 16 crc32:233588B1
ptl: {8100,1800}
U_EMR_POLYLINETO record: 114 type:6 offset: 4484 rsize: 76 crc32:6BF533B0
rclBounds: {0,0,-1,-1}
cptl: 6
Points: [0]:{8200,1800} [1]:{8300,1900} [2]:{8300,2000} [3]:{8200,2100} [4]:{8100,2000} [5]:{8100,1900}
U_EMR_BEGINPATH record: 115 type:59 offset: 4560 rsize: 8 crc32:7831B8AD
U_EMR_POLYBEZIER16 record: 116 type:85 offset: 4568 rsize: 56 crc32:74D43FDC
rclBounds: {0,0,-1,-1}
cpts: 7
Points: [0]:{200,2300} [1]:{300,2400} [2]:{300,2500} [3]:{200,2600} [4]:{100,2500} [5]:{100,2400} [6]:{200,2300}
U_EMR_ENDPATH record: 117 type:60 offset: 4624 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 118 type:63 offset: 4632 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 119 type:59 offset: 4656 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON16 record: 120 type:86 offset: 4664 rsize: 52 crc32:E31C4323
rclBounds: {600,2300,800,2600}
cpts: 6
Points: [0]:{700,2300} [1]:{800,2400} [2]:{800,2500} [3]:{700,2600} [4]:{600,2500} [5]:{600,2400}
U_EMR_ENDPATH record: 121 type:60 offset: 4716 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 122 type:63 offset: 4724 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 123 type:59 offset: 4748 rsize: 8 crc32:7831B8AD
U_EMR_POLYLINE16 record: 124 type:87 offset: 4756 rsize: 52 crc32:7D3D4765
rclBounds: {1100,2300,1300,2600}
cpts: 6
Points: [0]:{1200,2300} [1]:{1300,2400} [2]:{1300,2500} [3]:{1200,2600} [4]:{1100,2500} [5]:{1100,2400}
U_EMR_ENDPATH record: 125 type:60 offset: 4808 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 126 type:63 offset: 4816 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 127 type:59 offset: 4840 rsize: 8 crc32:7831B8AD
U_EMR_MOVETOEX record: 128 type:27 offset: 4848 rsize: 16 crc32:D4B1BCFA
ptl: {1600,2300}
U_EMR_POLYBEZIERTO16 record: 129 type:88 offset: 4864 rsize: 52 crc32:23811405
rclBounds: {0,0,-1,-1}
cpts: 6
Points: [0]:{1700,2300} [1]:{1800,2400} [2]:{1800,2500} [3]:{1700,2600} [4]:{1600,2500} [5]:{1600,2400}
U_EMR_ENDPATH record: 130 type:60 offset: 4916 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 131 type:63 offset: 4924 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 132 type:59 offset: 4948 rsize: 8 crc32:7831B8AD
U_EMR_MOVETOEX record: 133 type:27 offset: 4956 rsize: 16 crc32:AC9458CD
ptl: {2100,2300}
U_EMR_POLYLINETO16 record: 134 type:89 offset: 4972 rsize: 52 crc32:E258E3F3
rclBounds: {0,0,-1,-1}
cpts: 6
Points: [0]:{2200,2300} [1]:{2300,2400} [2]:{2300,2500} [3]:{2200,2600} [4]:{2100,2500} [5]:{2100,2400}
U_EMR_ENDPATH record: 135 type:60 offset: 5024 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 136 type:63 offset: 5032 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_POLYBEZIER16 record: 137 type:85 offset: 5056 rsize: 56 crc32:BEAB7C77
rclBounds: {0,0,-1,-1}
cpts: 7
Points: [0]:{3200,2300} [1]:{3300,2400} [2]:{3300,2500} [3]:{3200,2600} [4]:{3100,2500} [5]:{3100,2400} [6]:{3200,2300}
U_EMR_STROKEANDFILLPATH record: 138 type:63 offset: 5112 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_POLYGON16 record: 139 type:86 offset: 5136 rsize: 52 crc32:ADDD9A68
rclBounds: {3600,2300,3800,2600}
cpts: 6
Points: [0]:{3700,2300} [1]:{3800,2400} [2]:{3800,2500} [3]:{3700,2600} [4]:{3600,2500} [5]:{3600,2400}
U_EMR_STROKEANDFILLPATH record: 140 type:63 offset: 5188 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_POLYLINE16 record: 141 type:87 offset: 5212 rsize: 52 crc32:ECE772C1
rclBounds: {4100,2300,4300,2600}
cpts: 6
Points: [0]:{4200,2300} [1]:{4300,2400} [2]:{4300,2500} [3]:{4200,2600} [4]:{4100,2500} [5]:{4100,2400}
U_EMR_STROKEANDFILLPATH record: 142 type:63 offset: 5264 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_MOVETOEX record: 143 type:27 offset: 5288 rsize: 16 crc32:73DBD3A8
ptl: {4600,2300}
U_EMR_POLYBEZIERTO16 record: 144 type:88 offset: 5304 rsize: 52 crc32:B87E3730
rclBounds: {0,0,-1,-1}
cpts: 6
Points: [0]:{4700,2300} [1]:{4800,2400} [2]:{4800,2500} [3]:{4700,2600} [4]:{4600,2500} [5]:{4600,2400}
U_EMR_STROKEANDFILLPATH record: 145 type:63 offset: 5356 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_MOVETOEX record: 146 type:27 offset: 5380 rsize: 16 crc32:1CB5FD50
ptl: {5100,2300}
U_EMR_POLYLINETO16 record: 147 type:89 offset: 5396 rsize: 52 crc32:EC033624
rclBounds: {0,0,-1,-1}
cpts: 6
Points: [0]:{5200,2300} [1]:{5300,2400} [2]:{5300,2500} [3]:{5200,2600} [4]:{5100,2500} [5]:{5100,2400}
U_EMR_STROKEANDFILLPATH record: 148 type:63 offset: 5448 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_POLYBEZIER16 record: 149 type:85 offset: 5472 rsize: 56 crc32:63BAAAF4
rclBounds: {0,0,-1,-1}
cpts: 7
Points: [0]:{6200,2300} [1]:{6300,2400} [2]:{6300,2500} [3]:{6200,2600} [4]:{6100,2500} [5]:{6100,2400} [6]:{6200,2300}
U_EMR_POLYGON16 record: 150 type:86 offset: 5528 rsize: 52 crc32:6EE636C7
rclBounds: {6600,2300,6800,2600}
cpts: 6
Points: [0]:{6700,2300} [1]:{6800,2400} [2]:{6800,2500} [3]:{6700,2600} [4]:{6600,2500} [5]:{6600,2400}
U_EMR_POLYLINE16 record: 151 type:87 offset: 5580 rsize: 52 crc32:F4B2FD5D
rclBounds: {7100,2300,7300,2600}
cpts: 6
Points: [0]:{7200,2300} [1]:{7300,2400} [2]:{7300,2500} [3]:{7200,2600} [4]:{7100,2500} [5]:{7100,2400}
U_EMR_MOVETOEX record: 152 type:27 offset: 5632 rsize: 16 crc32:4E036084
ptl: {7600,2300}
U_EMR_POLYBEZIERTO16 record: 153 type:88 offset: 5648 rsize: 52 crc32:6D8799B6
rclBounds: {0,0,-1,-1}
cpts: 6
Points: [0]:{7700,2300} [1]:{7800,2400} [2]:{7800,2500} [3]:{7700,2600} [4]:{7600,2500} [5]:{7600,2400}
U_EMR_MOVETOEX record: 154 type:27 offset: 5700 rsize: 16 crc32:216D4E7C
ptl: {8100,2300}
U_EMR_POLYLINETO16 record: 155 type:89 offset: 5716 rsize: 52 crc32:F202299F
rclBounds: {0,0,-1,-1}
cpts: 6
Points: [0]:{8200,2300} [1]:{8300,2400} [2]:{8300,2500} [3]:{8200,2600} [4]:{8100,2500} [5]:{8100,2400}
U_EMR_BEGINPATH record: 156 type:59 offset: 5768 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 157 type:3 offset: 5776 rsize: 124 crc32:0BD62BC5
rclBounds: {100,2700,350,2900}
cptl: 12
Points: [0]:{350,2800} [1]:{287,2750} [2]:{250,2713} [3]:{200,2700} [4]:{150,2713} [5]:{113,2750} [6]:{100,2800} [7]:{113,2850} [8]:{150,2887} [9]:{200,2900} [10]:{250,2887} [11]:{287,2850}
U_EMR_ENDPATH record: 158 type:60 offset: 5900 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 159 type:63 offset: 5908 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 160 type:59 offset: 5932 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 161 type:3 offset: 5940 rsize: 124 crc32:A2C77155
rclBounds: {393,2698,660,2902}
cptl: 12
Points: [0]:{660,2794} [1]:{595,2745} [2]:{557,2709} [3]:{504,2698} [4]:{450,2714} [5]:{409,2753} [6]:{393,2804} [7]:{405,2855} [8]:{443,2891} [9]:{496,2902} [10]:{550,2886} [11]:{591,2847}
U_EMR_ENDPATH record: 162 type:60 offset: 6064 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 163 type:63 offset: 6072 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 164 type:59 offset: 6096 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 165 type:3 offset: 6104 rsize: 124 crc32:03EC09C3
rclBounds: {698,2687,953,2913}
cptl: 12
Points: [0]:{953,2786} [1]:{893,2736} [2]:{859,2697} [3]:{809,2687} [4]:{757,2707} [5]:{716,2752} [6]:{698,2809} [7]:{707,2864} [8]:{741,2903} [9]:{791,2913} [10]:{843,2893} [11]:{884,2848}
U_EMR_ENDPATH record: 166 type:60 offset: 6228 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 167 type:63 offset: 6236 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 168 type:59 offset: 6260 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 169 type:3 offset: 6268 rsize: 124 crc32:A4257BFA
rclBounds: {1007,2673,1239,2927}
cptl: 12
Points: [0]:{1239,2800} [1]:{1181,2736} [2]:{1146,2689} [3]:{1100,2673} [4]:{1054,2689} [5]:{1019,2736} [6]:{1007,2800} [7]:{1019,2864} [8]:{1054,2911} [9]:{1100,2927} [10]:{1146,2911} [11]:{1181,2864}
U_EMR_ENDPATH record: 170 type:60 offset: 6392 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 171 type:63 offset: 6400 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 172 type:59 offset: 6424 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 173 type:3 offset: 6432 rsize: 124 crc32:8016A25A
rclBounds: {1301,2676,1549,2924}
cptl: 12
Points: [0]:{1549,2832} [1]:{1476,2757} [2]:{1431,2703} [3]:{1379,2676} [4]:{1332,2681} [5]:{1303,2719} [6]:{1301,2779} [7]:{1324,2843} [8]:{1369,2897} [9]:{1421,2924} [10]:{1468,2919} [11]:{1497,2881}
U_EMR_ENDPATH record: 174 type:60 offset: 6556 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 175 type:63 offset: 6564 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 176 type:59 offset: 6588 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 177 type:3 offset: 6596 rsize: 124 crc32:EE865BCE
rclBounds: {1571,2702,1893,2898}
cptl: 12
Points: [0]:{1893,2843} [1]:{1798,2777} [2]:{1740,2731} [3]:{1671,2704} [4]:{1611,2702} [5]:{1574,2727} [6]:{1571,2771} [7]:{1602,2823} [8]:{1660,2869} [9]:{1729,2896} [10]:{1789,2898} [11]:{1826,2873}
U_EMR_ENDPATH record: 178 type:60 offset: 6720 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 179 type:63 offset: 6728 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 180 type:59 offset: 6752 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 181 type:3 offset: 6760 rsize: 124 crc32:48E22A7C
rclBounds: {1845,2730,2232,2870}
cptl: 12
Points: [0]:{2232,2800} [1]:{2134,2765} [2]:{2077,2739} [3]:{2000,2730} [4]:{1923,2739} [5]:{1866,2765} [6]:{1845,2800} [7]:{1866,2835} [8]:{1923,2861} [9]:{2000,2870} [10]:{2077,2861} [11]:{2134,2835}
U_EMR_ENDPATH record: 182 type:60 offset: 6884 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 183 type:63 offset: 6892 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 184 type:59 offset: 6916 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 185 type:3 offset: 6924 rsize: 124 crc32:DB541FFA
rclBounds: {2158,2703,2506,2897}
cptl: 12
Points: [0]:{2506,2732} [1]:{2442,2718} [2]:{2408,2703} [3]:{2345,2714} [4]:{2270,2748} [5]:{2203,2796} [6]:{2162,2845} [7]:{2158,2882} [8]:{2192,2897} [9]:{2255,2886} [10]:{2330,2852} [11]:{2397,2804}
U_EMR_ENDPATH record: 186 type:60 offset: 7048 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 187 type:63 offset: 7056 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 188 type:59 offset: 7080 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 189 type:3 offset: 7088 rsize: 124 crc32:32D91CCE
rclBounds: {2504,2650,2718,2950}
cptl: 12
Points: [0]:{2718,2718} [1]:{2696,2682} [2]:{2687,2650} [3]:{2654,2659} [4]:{2608,2704} [5]:{2559,2777} [6]:{2521,2854} [7]:{2504,2918} [8]:{2513,2950} [9]:{2546,2941} [10]:{2592,2896} [11]:{2641,2823}
U_EMR_ENDPATH record: 190 type:60 offset: 7212 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 191 type:63 offset: 7220 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 192 type:59 offset: 7244 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 193 type:3 offset: 7252 rsize: 124 crc32:BCA9D5E9
rclBounds: {2867,2618,2950,2982}
cptl: 12
Points: [0]:{2950,2800} [1]:{2929,2709} [2]:{2917,2642} [3]:{2900,2618} [4]:{2883,2642} [5]:{2871,2709} [6]:{2867,2800} [7]:{2871,2891} [8]:{2883,2958} [9]:{2900,2982} [10]:{2917,2958} [11]:{2929,2891}
U_EMR_ENDPATH record: 194 type:60 offset: 7376 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 195 type:63 offset: 7384 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 196 type:59 offset: 7408 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 197 type:3 offset: 7416 rsize: 124 crc32:AE02C373
rclBounds: {3104,2634,3296,2966}
cptl: 12
Points: [0]:{3291,2913} [1]:{3215,2792} [2]:{3165,2709} [3]:{3125,2652} [4]:{3104,2634} [5]:{3110,2661} [6]:{3139,2725} [7]:{3185,2808} [8]:{3235,2891} [9]:{3275,2948} [10]:{3296,2966} [11]:{3290,2939}
U_EMR_ENDPATH record: 198 type:60 offset: 7540 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 199 type:63 offset: 7548 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 200 type:59 offset: 7572 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 201 type:3 offset: 7580 rsize: 124 crc32:5590A886
rclBounds: {3326,2700,3725,2930}
cptl: 12
Points: [0]:{3725,2930} [1]:{3587,2850} [2]:{3500,2800} [3]:{3413,2750} [4]:{3350,2713} [5]:{3326,2700} [6]:{3350,2713} [7]:{3413,2750} [8]:{3500,2800} [9]:{3587,2850} [10]:{3650,2887} [11]:{3674,2900}
U_EMR_ENDPATH record: 202 type:60 offset: 7704 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 203 type:63 offset: 7712 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 204 type:59 offset: 7736 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 205 type:3 offset: 7744 rsize: 124 crc32:355038C1
rclBounds: {100,3150,300,3400}
cptl: 12
Points: [0]:{200,3150} [1]:{150,3213} [2]:{113,3250} [3]:{100,3300} [4]:{113,3350} [5]:{150,3387} [6]:{200,3400} [7]:{250,3387} [8]:{287,3350} [9]:{300,3300} [10]:{287,3250} [11]:{250,3213}
U_EMR_ENDPATH record: 206 type:60 offset: 7868 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 207 type:63 offset: 7876 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 208 type:59 offset: 7900 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 209 type:3 offset: 7908 rsize: 124 crc32:9ED1AD6E
rclBounds: {398,3140,602,3407}
cptl: 12
Points: [0]:{494,3140} [1]:{445,3205} [2]:{409,3243} [3]:{398,3296} [4]:{414,3350} [5]:{453,3391} [6]:{504,3407} [7]:{555,3395} [8]:{591,3357} [9]:{602,3304} [10]:{586,3250} [11]:{547,3209}
U_EMR_ENDPATH record: 210 type:60 offset: 8032 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 211 type:63 offset: 8040 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 212 type:59 offset: 8064 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 213 type:3 offset: 8072 rsize: 124 crc32:5E623DC7
rclBounds: {687,3147,913,3402}
cptl: 12
Points: [0]:{786,3147} [1]:{736,3207} [2]:{697,3241} [3]:{687,3291} [4]:{707,3343} [5]:{752,3384} [6]:{809,3402} [7]:{864,3393} [8]:{903,3359} [9]:{913,3309} [10]:{893,3257} [11]:{848,3216}
U_EMR_ENDPATH record: 214 type:60 offset: 8196 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 215 type:63 offset: 8204 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 216 type:59 offset: 8228 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 217 type:3 offset: 8236 rsize: 124 crc32:0C921C92
rclBounds: {973,3161,1227,3393}
cptl: 12
Points: [0]:{1100,3161} [1]:{1036,3219} [2]:{989,3254} [3]:{973,3300} [4]:{989,3346} [5]:{1036,3381} [6]:{1100,3393} [7]:{1164,3381} [8]:{1211,3346} [9]:{1227,3300} [10]:{1211,3254} [11]:{1164,3219}
U_EMR_ENDPATH record: 218 type:60 offset: 8360 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 219 type:63 offset: 8368 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 220 type:59 offset: 8392 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 221 type:3 offset: 8400 rsize: 124 crc32:735C875B
rclBounds: {1276,3151,1524,3399}
cptl: 12
Points: [0]:{1432,3151} [1]:{1357,3224} [2]:{1303,3269} [3]:{1276,3321} [4]:{1281,3368} [5]:{1319,3397} [6]:{1379,3399} [7]:{1443,3376} [8]:{1497,3331} [9]:{1524,3279} [10]:{1519,3232} [11]:{1481,3203}
U_EMR_ENDPATH record: 222 type:60 offset: 8524 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 223 type:63 offset: 8532 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 224 type:59 offset: 8556 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 225 type:3 offset: 8564 rsize: 124 crc32:0136638C
rclBounds: {1602,3107,1798,3429}
cptl: 12
Points: [0]:{1743,3107} [1]:{1677,3202} [2]:{1631,3260} [3]:{1604,3329} [4]:{1602,3389} [5]:{1627,3426} [6]:{1671,3429} [7]:{1723,3398} [8]:{1769,3340} [9]:{1796,3271} [10]:{1798,3211} [11]:{1773,3174}
U_EMR_ENDPATH record: 226 type:60 offset: 8688 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 227 type:63 offset: 8696 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 228 type:59 offset: 8720 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 229 type:3 offset: 8728 rsize: 124 crc32:578575E6
rclBounds: {1930,3068,2070,3455}
cptl: 12
Points: [0]:{2000,3068} [1]:{1965,3166} [2]:{1939,3223} [3]:{1930,3300} [4]:{1939,3377} [5]:{1965,3434} [6]:{2000,3455} [7]:{2035,3434} [8]:{2061,3377} [9]:{2070,3300} [10]:{2061,3223} [11]:{2035,3166}
U_EMR_ENDPATH record: 230 type:60 offset: 8852 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 231 type:63 offset: 8860 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 232 type:59 offset: 8884 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 233 type:3 offset: 8892 rsize: 124 crc32:6BC9E84B
rclBounds: {2203,3094,2397,3442}
cptl: 12
Points: [0]:{2232,3094} [1]:{2218,3158} [2]:{2203,3192} [3]:{2214,3255} [4]:{2248,3330} [5]:{2296,3397} [6]:{2345,3438} [7]:{2382,3442} [8]:{2397,3408} [9]:{2386,3345} [10]:{2352,3270} [11]:{2304,3203}
U_EMR_ENDPATH record: 234 type:60 offset: 9016 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 235 type:63 offset: 9024 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 236 type:59 offset: 9048 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 237 type:3 offset: 9056 rsize: 124 crc32:B5558F07
rclBounds: {2450,3182,2750,3396}
cptl: 12
Points: [0]:{2518,3182} [1]:{2482,3204} [2]:{2450,3213} [3]:{2459,3246} [4]:{2504,3292} [5]:{2577,3341} [6]:{2654,3379} [7]:{2718,3396} [8]:{2750,3387} [9]:{2741,3354} [10]:{2696,3308} [11]:{2623,3259}
U_EMR_ENDPATH record: 238 type:60 offset: 9180 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 239 type:63 offset: 9188 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 240 type:59 offset: 9212 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 241 type:3 offset: 9220 rsize: 124 crc32:138238CF
rclBounds: {2718,3250,3082,3333}
cptl: 12
Points: [0]:{2900,3250} [1]:{2809,3271} [2]:{2742,3283} [3]:{2718,3300} [4]:{2742,3317} [5]:{2809,3329} [6]:{2900,3333} [7]:{2991,3329} [8]:{3058,3317} [9]:{3082,3300} [10]:{3058,3283} [11]:{2991,3271}
U_EMR_ENDPATH record: 242 type:60 offset: 9344 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 243 type:63 offset: 9352 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 244 type:59 offset: 9376 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 245 type:3 offset: 9384 rsize: 124 crc32:9C97B8E2
rclBounds: {3034,3204,3366,3396}
cptl: 12
Points: [0]:{3313,3209} [1]:{3192,3285} [2]:{3109,3335} [3]:{3052,3375} [4]:{3034,3396} [5]:{3061,3390} [6]:{3125,3361} [7]:{3208,3315} [8]:{3291,3265} [9]:{3348,3225} [10]:{3366,3204} [11]:{3339,3210}
U_EMR_ENDPATH record: 246 type:60 offset: 9508 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 247 type:63 offset: 9516 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_BEGINPATH record: 248 type:59 offset: 9540 rsize: 8 crc32:7831B8AD
U_EMR_POLYGON record: 249 type:3 offset: 9548 rsize: 124 crc32:54BAE9B3
rclBounds: {3400,3075,3630,3474}
cptl: 12
Points: [0]:{3630,3075} [1]:{3550,3213} [2]:{3500,3300} [3]:{3450,3387} [4]:{3413,3450} [5]:{3400,3474} [6]:{3413,3450} [7]:{3450,3387} [8]:{3500,3300} [9]:{3550,3213} [10]:{3587,3150} [11]:{3600,3126}
U_EMR_ENDPATH record: 250 type:60 offset: 9672 rsize: 8 crc32:72F4B1B4
U_EMR_STROKEANDFILLPATH record: 251 type:63 offset: 9680 rsize: 24 crc32:D8330C85
rclBox: {0,0,29699,20999}
U_EMR_POLYPOLYLINE record: 252 type:7 offset: 9704 rsize: 140 crc32:F074C536
rclBounds: {3900,2700,4150,2900}
nPolys: 3
cptl: 12
Counts: [0]:3 [1]:4 [2]:5
Points: [0]:{4150,2800} [1]:{4087,2750} [2]:{4050,2713} [3]:{4000,2700} [4]:{3950,2713} [5]:{3913,2750} [6]:{3900,2800} [7]:{3913,2850} [8]:{3950,2887} [9]:{4000,2900} [10]:{4050,2887} [11]:{4087,2850}
U_EMR_POLYPOLYLINE16 record: 253 type:90 offset: 9844 rsize: 92 crc32:7D9EDE21
rclBounds: {3900,3200,4150,3400}
nPolys: 3
cpts: 12
Counts: [0]:3 [1]:4 [2]:5
Points: [0]:{4150,3300} [1]:{4087,3250} [2]:{4050,3213} [3]:{4000,3200} [4]:{3950,3213} [5]:{3913,3250} [6]:{3900,3300} [7]:{3913,3350} [8]:{3950,3387} [9]:{4000,3400} [10]:{4050,3387} [11]:{4087,3350}
U_EMR_POLYPOLYGON record: 254 type:8 offset: 9936 rsize: 140 crc32:55FB8D2E
rclBounds: {4200,2700,4450,2900}
nPolys: 3
cptl: 12
Counts: [0]:3 [1]:4 [2]:5
Points: [0]:{4450,2800} [1]:{4387,2750} [2]:{4350,2713} [3]:{4300,2700} [4]:{4250,2713} [5]:{4213,2750} [6]:{4200,2800} [7]:{4213,2850} [8]:{4250,2887} [9]:{4300,2900} [10]:{4350,2887} [11]:{4387,2850}
U_EMR_POLYPOLYGON16 record: 255 type:91 offset: 10076 rsize: 92 crc32:2B81B699
rclBounds: {4200,3200,4450,3400}
nPolys: 3
cpts: 12
Counts: [0]:3 [1]:4 [2]:5
Points: [0]:{4450,3300} [1]:{4387,3250} [2]:{4350,3213} [3]:{4300,3200} [4]:{4250,3213} [5]:{4213,3250} [6]:{4200,3300} [7]:{4213,3350} [8]:{4250,3387} [9]:{4300,3400} [10]:{4350,3387} [11]:{4387,3350}
U_EMR_POLYPOLYLINE record: 256 type:7 offset: 10168 rsize: 144 crc32:9F0B5BC3
rclBounds: {4500,2700,4750,2900}
nPolys: 4
cptl: 12
Counts: [0]:3 [1]:3 [2]:3 [3]:3
Points: [0]:{4750,2800} [1]:{4687,2750} [2]:{4650,2713} [3]:{4600,2700} [4]:{4550,2713} [5]:{4513,2750} [6]:{4500,2800} [7]:{4513,2850} [8]:{4550,2887} [9]:{4600,2900} [10]:{4650,2887} [11]:{4687,2850}
U_EMR_POLYPOLYLINE16 record: 257 type:90 offset: 10312 rsize: 96 crc32:CCEC5C71
rclBounds: {4500,3200,4750,3400}
nPolys: 4
cpts: 12
Counts: [0]:3 [1]:3 [2]:3 [3]:3
Points: [0]:{4750,3300} [1]:{4687,3250} [2]:{4650,3213} [3]:{4600,3200} [4]:{4550,3213} [5]:{4513,3250} [6]:{4500,3300} [7]:{4513,3350} [8]:{4550,3387} [9]:{4600,3400} [10]:{4650,3387} [11]:{4687,3350}
U_EMR_POLYPOLYGON record: 258 type:8 offset: 10408 rsize: 144 crc32:E88E5A64
rclBounds: {4800,2700,5050,2900}
nPolys: 4
cptl: 12
Counts: [0]:3 [1]:3 [2]:3 [3]:3
Points: [0]:{5050,2800} [1]:{4987,2750} [2]:{4950,2713} [3]:{4900,2700} [4]:{4850,2713} [5]:{4813,2750} [6]:{4800,2800} [7]:{4813,2850} [8]:{4850,2887} [9]:{4900,2900} [10]:{4950,2887} [11]:{4987,2850}
U_EMR_POLYPOLYGON16 record: 259 type:91 offset: 10552 rsize: 96 crc32:E6E36912
rclBounds: {4800,3200,5050,3400}
nPolys: 4
cpts: 12
Counts: [0]:3 [1]:3 [2]:3 [3]:3
Points: [0]:{5050,3300} [1]:{4987,3250} [2]:{4950,3213} [3]:{4900,3200} [4]:{4850,3213} [5]:{4813,3250} [6]:{4800,3300} [7]:{4813,3350} [8]:{4850,3387} [9]:{4900,3400} [10]:{4950,3387} [11]:{4987,3350}
U_EMR_GRADIENTFILL record: 260 type:118 offset: 10648 rsize: 164 crc32:1C5E4684
rclBounds: {0,0,-1,-1}
nTriVert: 5
nGradObj: 4
ulMode: 1
TriVert: {{400,4200},{65535,0,0,0}} {{600,4400},{0,65535,0,0}} {{800,4600},{0,0,65535,0}} {{1000,4400},{65535,65535,0,0}} {{1000,4600},{32767,32767,32767,0}}
GradObj: {0,4} {0,1} {1,2} {2,3}
U_EMR_GRADIENTFILL record: 261 type:118 offset: 10812 rsize: 164 crc32:5CE6E8A7
rclBounds: {0,0,-1,-1}
nTriVert: 5
nGradObj: 4
ulMode: 0
TriVert: {{400,4650},{65535,0,0,0}} {{600,4850},{0,65535,0,0}} {{800,5050},{0,0,65535,0}} {{1000,4850},{65535,65535,0,0}} {{1000,5050},{32767,32767,32767,0}}
GradObj: {0,4} {0,1} {1,2} {2,3}
U_EMR_GRADIENTFILL record: 262 type:118 offset: 10976 rsize: 96 crc32:934DD8AC
rclBounds: {0,0,-1,-1}
nTriVert: 3
nGradObj: 1
ulMode: 2
TriVert: {{100,4200},{65535,0,0,0}} {{200,4400},{0,0,65535,0}} {{300,4200},{0,65535,0,0}}
GradObj: {0,1,2}
U_EMR_GRADIENTFILL record: 263 type:118 offset: 11072 rsize: 124 crc32:9C152DCF
rclBounds: {0,0,-1,-1}
nTriVert: 4
nGradObj: 2
ulMode: 2
TriVert: {{100,4650},{65535,0,0,0}} {{100,4850},{65535,0,0,0}} {{300,4850},{0,65535,0,0}} {{300,4650},{0,65535,0,0}}
GradObj: {0,1,2} {0,2,3}
U_EMR_SELECTOBJECT record: 264 type:37 offset: 11196 rsize: 12 crc32:DC87C451
StockObject: 0x80000007
U_EMR_DELETEOBJECT record: 265 type:40 offset: 11208 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_CREATEPEN record: 266 type:38 offset: 11220 rsize: 28 crc32:F3FAB1AB
ihPen: 2
lopn: lopnStyle:0x00000000 lopnWidth:{4,0} lopnColor:{255,0,255}
U_EMR_SELECTOBJECT record: 267 type:37 offset: 11248 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 268 type:4 offset: 11260 rsize: 52 crc32:EBCC3534
rclBounds: {200,3700,400,4100}
cptl: 3
Points: [0]:{200,3700} [1]:{400,3900} [2]:{200,4100}
U_EMR_SELECTOBJECT record: 269 type:37 offset: 11312 rsize: 12 crc32:DC87C451
StockObject: 0x80000007
U_EMR_DELETEOBJECT record: 270 type:40 offset: 11324 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_CREATEPEN record: 271 type:38 offset: 11336 rsize: 28 crc32:C6376C55
ihPen: 2
lopn: lopnStyle:0x00000001 lopnWidth:{5,0} lopnColor:{255,0,255}
U_EMR_SELECTOBJECT record: 272 type:37 offset: 11364 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 273 type:4 offset: 11376 rsize: 52 crc32:3CA1010E
rclBounds: {300,3700,500,4100}
cptl: 3
Points: [0]:{300,3700} [1]:{500,3900} [2]:{300,4100}
U_EMR_SELECTOBJECT record: 274 type:37 offset: 11428 rsize: 12 crc32:DC87C451
StockObject: 0x80000007
U_EMR_DELETEOBJECT record: 275 type:40 offset: 11440 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_CREATEPEN record: 276 type:38 offset: 11452 rsize: 28 crc32:98610A57
ihPen: 2
lopn: lopnStyle:0x00000002 lopnWidth:{6,0} lopnColor:{255,0,255}
U_EMR_SELECTOBJECT record: 277 type:37 offset: 11480 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 278 type:4 offset: 11492 rsize: 52 crc32:EC94EA4F
rclBounds: {400,3700,600,4100}
cptl: 3
Points: [0]:{400,3700} [1]:{600,3900} [2]:{400,4100}
U_EMR_SELECTOBJECT record: 279 type:37 offset: 11544 rsize: 12 crc32:DC87C451
StockObject: 0x80000007
U_EMR_DELETEOBJECT record: 280 type:40 offset: 11556 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_CREATEPEN record: 281 type:38 offset: 11568 rsize: 28 crc32:ADACD7A9
ihPen: 2
lopn: lopnStyle:0x00000003 lopnWidth:{7,0} lopnColor:{255,0,255}
U_EMR_SELECTOBJECT record: 282 type:37 offset: 11596 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 283 type:4 offset: 11608 rsize: 52 crc32:AA6F2713
rclBounds: {500,3700,700,4100}
cptl: 3
Points: [0]:{500,3700} [1]:{700,3900} [2]:{500,4100}
U_EMR_SELECTOBJECT record: 284 type:37 offset: 11660 rsize: 12 crc32:DC87C451
StockObject: 0x80000007
U_EMR_DELETEOBJECT record: 285 type:40 offset: 11672 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_CREATEPEN record: 286 type:38 offset: 11684 rsize: 28 crc32:22C1B0AD
ihPen: 2
lopn: lopnStyle:0x00000004 lopnWidth:{8,0} lopnColor:{255,0,255}
U_EMR_SELECTOBJECT record: 287 type:37 offset: 11712 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 288 type:4 offset: 11724 rsize: 52 crc32:DDC24B0C
rclBounds: {600,3700,800,4100}
cptl: 3
Points: [0]:{600,3700} [1]:{800,3900} [2]:{600,4100}
U_EMR_SELECTOBJECT record: 289 type:37 offset: 11776 rsize: 12 crc32:DC87C451
StockObject: 0x80000007
U_EMR_DELETEOBJECT record: 290 type:40 offset: 11788 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_EXTCREATEPEN record: 291 type:95 offset: 11800 rsize: 68 crc32:37B1E268
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00000007 elpWidth:1 elpBrushStyle:0x00000000 elpColor{0,0,255} elpHatch:0 elpNumEntries:4 elpStyleEntry:0:2 1:1 2:4 3:3
U_EMR_SELECTOBJECT record: 292 type:37 offset: 11868 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 293 type:4 offset: 11880 rsize: 52 crc32:5613FDB5
rclBounds: {700,3700,900,4100}
cptl: 3
Points: [0]:{700,3700} [1]:{900,3900} [2]:{700,4100}
U_EMR_SELECTOBJECT record: 294 type:37 offset: 11932 rsize: 12 crc32:DC87C451
StockObject: 0x80000007
U_EMR_DELETEOBJECT record: 295 type:40 offset: 11944 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_EXTCREATEPEN record: 296 type:95 offset: 11956 rsize: 68 crc32:93487471
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00012107 elpWidth:4 elpBrushStyle:0x00000000 elpColor{255,0,0} elpHatch:0 elpNumEntries:4 elpStyleEntry:0:2 1:1 2:4 3:3
U_EMR_SELECTOBJECT record: 297 type:37 offset: 12024 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 298 type:4 offset: 12036 rsize: 52 crc32:02C443BC
rclBounds: {800,3700,1000,4100}
cptl: 3
Points: [0]:{800,3700} [1]:{1000,3900} [2]:{800,4100}
U_EMR_SELECTOBJECT record: 299 type:37 offset: 12088 rsize: 12 crc32:DC87C451
StockObject: 0x80000007
U_EMR_DELETEOBJECT record: 300 type:40 offset: 12100 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 301 type:58 offset: 12112 rsize: 12 crc32:6AD86A20
eMiterLimit: 1
U_EMR_EXTCREATEPEN record: 302 type:95 offset: 12124 rsize: 56 crc32:69328539
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00010000 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 303 type:37 offset: 12180 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 304 type:4 offset: 12192 rsize: 52 crc32:9763814A
rclBounds: {520,5200,1120,5600}
cptl: 3
Points: [0]:{520,5200} [1]:{1120,5400} [2]:{520,5600}
U_EMR_DELETEOBJECT record: 305 type:40 offset: 12244 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 306 type:58 offset: 12256 rsize: 12 crc32:E5BAFD77
eMiterLimit: 5
U_EMR_EXTCREATEPEN record: 307 type:95 offset: 12268 rsize: 56 crc32:69328539
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00010000 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 308 type:37 offset: 12324 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 309 type:4 offset: 12336 rsize: 52 crc32:FF8F8D33
rclBounds: {600,5200,1200,5600}
cptl: 3
Points: [0]:{600,5200} [1]:{1200,5400} [2]:{600,5600}
U_EMR_DELETEOBJECT record: 310 type:40 offset: 12388 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 311 type:58 offset: 12400 rsize: 12 crc32:6AD86A20
eMiterLimit: 1
U_EMR_EXTCREATEPEN record: 312 type:95 offset: 12412 rsize: 56 crc32:37462E6C
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00011000 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 313 type:37 offset: 12468 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 314 type:4 offset: 12480 rsize: 52 crc32:26FE6483
rclBounds: {520,5650,1120,6050}
cptl: 3
Points: [0]:{520,5650} [1]:{1120,5850} [2]:{520,6050}
U_EMR_DELETEOBJECT record: 315 type:40 offset: 12532 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 316 type:58 offset: 12544 rsize: 12 crc32:E5BAFD77
eMiterLimit: 5
U_EMR_EXTCREATEPEN record: 317 type:95 offset: 12556 rsize: 56 crc32:37462E6C
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00011000 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 318 type:37 offset: 12612 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 319 type:4 offset: 12624 rsize: 52 crc32:4E1268FA
rclBounds: {600,5650,1200,6050}
cptl: 3
Points: [0]:{600,5650} [1]:{1200,5850} [2]:{600,6050}
U_EMR_DELETEOBJECT record: 320 type:40 offset: 12676 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 321 type:58 offset: 12688 rsize: 12 crc32:6AD86A20
eMiterLimit: 1
U_EMR_EXTCREATEPEN record: 322 type:95 offset: 12700 rsize: 56 crc32:D5DBD393
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00012000 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 323 type:37 offset: 12756 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 324 type:4 offset: 12768 rsize: 52 crc32:CC5ABC78
rclBounds: {520,6100,1120,6500}
cptl: 3
Points: [0]:{520,6100} [1]:{1120,6300} [2]:{520,6500}
U_EMR_DELETEOBJECT record: 325 type:40 offset: 12820 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 326 type:58 offset: 12832 rsize: 12 crc32:E5BAFD77
eMiterLimit: 5
U_EMR_EXTCREATEPEN record: 327 type:95 offset: 12844 rsize: 56 crc32:D5DBD393
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00012000 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 328 type:37 offset: 12900 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 329 type:4 offset: 12912 rsize: 52 crc32:A4B6B001
rclBounds: {600,6100,1200,6500}
cptl: 3
Points: [0]:{600,6100} [1]:{1200,6300} [2]:{600,6500}
U_EMR_DELETEOBJECT record: 330 type:40 offset: 12964 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 331 type:58 offset: 12976 rsize: 12 crc32:6AD86A20
eMiterLimit: 1
U_EMR_EXTCREATEPEN record: 332 type:95 offset: 12988 rsize: 56 crc32:07BE9E78
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00010100 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 333 type:37 offset: 13044 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 334 type:4 offset: 13056 rsize: 52 crc32:A3AE4232
rclBounds: {770,5200,1370,5600}
cptl: 3
Points: [0]:{770,5200} [1]:{1370,5400} [2]:{770,5600}
U_EMR_DELETEOBJECT record: 335 type:40 offset: 13108 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 336 type:58 offset: 13120 rsize: 12 crc32:E5BAFD77
eMiterLimit: 5
U_EMR_EXTCREATEPEN record: 337 type:95 offset: 13132 rsize: 56 crc32:07BE9E78
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00010100 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 338 type:37 offset: 13188 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 339 type:4 offset: 13200 rsize: 52 crc32:C58EF7CF
rclBounds: {850,5200,1450,5600}
cptl: 3
Points: [0]:{850,5200} [1]:{1450,5400} [2]:{850,5600}
U_EMR_DELETEOBJECT record: 340 type:40 offset: 13252 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 341 type:58 offset: 13264 rsize: 12 crc32:6AD86A20
eMiterLimit: 1
U_EMR_EXTCREATEPEN record: 342 type:95 offset: 13276 rsize: 56 crc32:59CA352D
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00011100 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 343 type:37 offset: 13332 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 344 type:4 offset: 13344 rsize: 52 crc32:1233A7FB
rclBounds: {770,5650,1370,6050}
cptl: 3
Points: [0]:{770,5650} [1]:{1370,5850} [2]:{770,6050}
U_EMR_DELETEOBJECT record: 345 type:40 offset: 13396 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 346 type:58 offset: 13408 rsize: 12 crc32:E5BAFD77
eMiterLimit: 5
U_EMR_EXTCREATEPEN record: 347 type:95 offset: 13420 rsize: 56 crc32:59CA352D
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00011100 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 348 type:37 offset: 13476 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 349 type:4 offset: 13488 rsize: 52 crc32:74131206
rclBounds: {850,5650,1450,6050}
cptl: 3
Points: [0]:{850,5650} [1]:{1450,5850} [2]:{850,6050}
U_EMR_DELETEOBJECT record: 350 type:40 offset: 13540 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 351 type:58 offset: 13552 rsize: 12 crc32:6AD86A20
eMiterLimit: 1
U_EMR_EXTCREATEPEN record: 352 type:95 offset: 13564 rsize: 56 crc32:BB57C8D2
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00012100 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 353 type:37 offset: 13620 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 354 type:4 offset: 13632 rsize: 52 crc32:F8977F00
rclBounds: {770,6100,1370,6500}
cptl: 3
Points: [0]:{770,6100} [1]:{1370,6300} [2]:{770,6500}
U_EMR_DELETEOBJECT record: 355 type:40 offset: 13684 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 356 type:58 offset: 13696 rsize: 12 crc32:E5BAFD77
eMiterLimit: 5
U_EMR_EXTCREATEPEN record: 357 type:95 offset: 13708 rsize: 56 crc32:BB57C8D2
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00012100 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 358 type:37 offset: 13764 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 359 type:4 offset: 13776 rsize: 52 crc32:9EB7CAFD
rclBounds: {850,6100,1450,6500}
cptl: 3
Points: [0]:{850,6100} [1]:{1450,6300} [2]:{850,6500}
U_EMR_DELETEOBJECT record: 360 type:40 offset: 13828 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 361 type:58 offset: 13840 rsize: 12 crc32:6AD86A20
eMiterLimit: 1
U_EMR_EXTCREATEPEN record: 362 type:95 offset: 13852 rsize: 56 crc32:B42AB3BB
ihPen: 2
offBmi: 0
cbBmi: 0
offBits: 0
cbBits: 0
elp: elpPenStyle:0x00010200 elpWidth:20 elpBrushStyle:0x00000000 elpColor{0,0,0} elpHatch:0 elpNumEntries:0
U_EMR_SELECTOBJECT record: 363 type:37 offset: 13908 rsize: 12 crc32:06E1B743
ihObject: 2
U_EMR_POLYLINE record: 364 type:4 offset: 13920 rsize: 52 crc32:7AFAC00F
rclBounds: {1020,5200,1620,5600}
cptl: 3
Points: [0]:{1020,5200} [1]:{1620,5400} [2]:{1020,5600}
U_EMR_DELETEOBJECT record: 365 type:40 offset: 13972 rsize: 12 crc32:984EB6AD
ihObject: 2
U_EMR_SETMITERLIMIT record: 366 type:58 offset: 13984 rsize: 12 crc32:E5BAFD77