@ottoai/documents 1.0.14 → 1.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/create/index.d.ts +3 -0
  2. package/dist/create/index.js +31 -0
  3. package/dist/create/index.js.map +1 -0
  4. package/dist/create/pdf/index.d.ts +2 -0
  5. package/dist/create/pdf/index.js +29 -0
  6. package/dist/create/pdf/index.js.map +1 -0
  7. package/dist/create/pdf/united-states/constants.d.ts +6 -0
  8. package/dist/create/pdf/united-states/constants.js +10 -0
  9. package/dist/create/pdf/united-states/constants.js.map +1 -0
  10. package/dist/create/pdf/united-states/index.d.ts +2 -0
  11. package/dist/create/pdf/united-states/index.js +6 -0
  12. package/dist/create/pdf/united-states/index.js.map +1 -0
  13. package/dist/create/pdf/united-states/w9-form/index.d.ts +19 -0
  14. package/dist/create/pdf/united-states/w9-form/index.js +54 -0
  15. package/dist/create/pdf/united-states/w9-form/index.js.map +1 -0
  16. package/dist/create/pdf/united-states/w9-form/schema.json +739 -0
  17. package/dist/create/pdf/united-states/w9-form/template.pdf +0 -0
  18. package/dist/create/pdf/util/buffer.d.ts +2 -0
  19. package/dist/create/pdf/util/buffer.js +22 -0
  20. package/dist/create/pdf/util/buffer.js.map +1 -0
  21. package/dist/create/pdf/util/format.d.ts +4 -0
  22. package/dist/create/pdf/util/format.js +17 -0
  23. package/dist/create/pdf/util/format.js.map +1 -0
  24. package/dist/create/pdf/util/pdf-editor.d.ts +36 -0
  25. package/dist/create/pdf/util/pdf-editor.js +20 -0
  26. package/dist/create/pdf/util/pdf-editor.js.map +1 -0
  27. package/dist/create/zip/index.d.ts +2 -0
  28. package/dist/create/zip/index.js +29 -0
  29. package/dist/create/zip/index.js.map +1 -0
  30. package/dist/create/zip/util/index.d.ts +11 -0
  31. package/dist/create/zip/util/index.js +116 -0
  32. package/dist/create/zip/util/index.js.map +1 -0
  33. package/dist/create/zip/util/parser.d.ts +4 -0
  34. package/dist/create/zip/util/parser.js +29 -0
  35. package/dist/create/zip/util/parser.js.map +1 -0
  36. package/dist/index.d.ts +2 -2
  37. package/dist/index.js +26 -5
  38. package/dist/index.js.map +1 -1
  39. package/dist/tsconfig.tsbuildinfo +1 -1
  40. package/dist/types/document.d.ts +5 -0
  41. package/dist/types/document.js +10 -0
  42. package/dist/types/document.js.map +1 -0
  43. package/package.json +19 -25
@@ -0,0 +1,739 @@
1
+ [
2
+ {
3
+ "name": "name",
4
+ "type": "text",
5
+ "content": "",
6
+ "position": { "x": 26, "y": 41 },
7
+ "width": 150,
8
+ "height": 5,
9
+ "rotate": 0,
10
+ "alignment": "left",
11
+ "verticalAlignment": "top",
12
+ "fontSize": 11,
13
+ "lineHeight": 1,
14
+ "characterSpacing": 0,
15
+ "fontColor": "#000000",
16
+ "backgroundColor": "",
17
+ "opacity": 1,
18
+ "strikethrough": false,
19
+ "underline": false,
20
+ "required": true,
21
+ "readOnly": false,
22
+ "fontName": "Roboto"
23
+ },
24
+ {
25
+ "name": "businessName",
26
+ "type": "text",
27
+ "content": "",
28
+ "position": { "x": 26, "y": 50 },
29
+ "width": 150,
30
+ "height": 5,
31
+ "rotate": 0,
32
+ "alignment": "left",
33
+ "verticalAlignment": "top",
34
+ "fontSize": 11,
35
+ "lineHeight": 1,
36
+ "characterSpacing": 0,
37
+ "fontColor": "#000000",
38
+ "backgroundColor": "",
39
+ "opacity": 1,
40
+ "strikethrough": false,
41
+ "underline": false,
42
+ "required": false,
43
+ "readOnly": false,
44
+ "fontName": "Roboto"
45
+ },
46
+ {
47
+ "name": "address",
48
+ "type": "text",
49
+ "content": "",
50
+ "position": { "x": 26, "y": 100.7 },
51
+ "width": 100,
52
+ "height": 5,
53
+ "rotate": 0,
54
+ "alignment": "left",
55
+ "verticalAlignment": "top",
56
+ "fontSize": 11,
57
+ "lineHeight": 1,
58
+ "characterSpacing": 0,
59
+ "fontColor": "#000000",
60
+ "backgroundColor": "",
61
+ "opacity": 1,
62
+ "strikethrough": false,
63
+ "underline": false,
64
+ "required": true,
65
+ "readOnly": false,
66
+ "fontName": "Roboto"
67
+ },
68
+ {
69
+ "name": "city_state_zip",
70
+ "type": "text",
71
+ "content": "",
72
+ "position": { "x": 26, "y": 109 },
73
+ "width": 100,
74
+ "height": 5,
75
+ "rotate": 0,
76
+ "alignment": "left",
77
+ "verticalAlignment": "top",
78
+ "fontSize": 11,
79
+ "lineHeight": 1,
80
+ "characterSpacing": 0,
81
+ "fontColor": "#000000",
82
+ "backgroundColor": "",
83
+ "opacity": 1,
84
+ "strikethrough": false,
85
+ "underline": false,
86
+ "required": true,
87
+ "readOnly": false,
88
+ "fontName": "Roboto"
89
+ },
90
+ {
91
+ "name": "account_number",
92
+ "type": "text",
93
+ "content": "",
94
+ "position": { "x": 26, "y": 117.5 },
95
+ "width": 100,
96
+ "height": 5,
97
+ "rotate": 0,
98
+ "alignment": "left",
99
+ "verticalAlignment": "top",
100
+ "fontSize": 11,
101
+ "lineHeight": 1,
102
+ "characterSpacing": 0,
103
+ "fontColor": "#000000",
104
+ "backgroundColor": "",
105
+ "opacity": 1,
106
+ "strikethrough": false,
107
+ "underline": false,
108
+ "required": false,
109
+ "readOnly": false,
110
+ "fontName": "Roboto"
111
+ },
112
+ {
113
+ "name": "date",
114
+ "type": "text",
115
+ "content": "",
116
+ "position": { "x": 144, "y": 204 },
117
+ "width": 55,
118
+ "height": 7,
119
+ "rotate": 0,
120
+ "alignment": "left",
121
+ "verticalAlignment": "top",
122
+ "fontSize": 11,
123
+ "lineHeight": 1,
124
+ "characterSpacing": 0,
125
+ "fontColor": "#000000",
126
+ "backgroundColor": "",
127
+ "opacity": 1,
128
+ "strikethrough": false,
129
+ "underline": false,
130
+ "required": true,
131
+ "readOnly": false,
132
+ "fontName": "Roboto"
133
+ },
134
+ {
135
+ "name": "signature",
136
+ "type": "image",
137
+ "position": { "x": 44, "y": 202 },
138
+ "width": 60,
139
+ "height": 12,
140
+ "rotate": 0,
141
+ "opacity": 1,
142
+ "required": true,
143
+ "readOnly": false
144
+ },
145
+ {
146
+ "name": "ftc_solo",
147
+ "type": "image",
148
+ "position": { "x": 25.7, "y": 63.6 },
149
+ "required": false,
150
+ "width": 3,
151
+ "height": 3,
152
+ "rotate": 0,
153
+ "opacity": 1,
154
+ "readOnly": false
155
+ },
156
+ {
157
+ "name": "ftc_c_corporation",
158
+ "type": "image",
159
+ "position": { "x": 63.5, "y": 63.6 },
160
+ "required": false,
161
+ "width": 3,
162
+ "height": 3,
163
+ "rotate": 0,
164
+ "opacity": 1,
165
+ "readOnly": false
166
+ },
167
+ {
168
+ "name": "ftc_s_corporation",
169
+ "type": "image",
170
+ "position": { "x": 88.8, "y": 63.6 },
171
+ "required": false,
172
+ "width": 3,
173
+ "height": 3,
174
+ "rotate": 0,
175
+ "opacity": 1,
176
+ "readOnly": false
177
+ },
178
+ {
179
+ "name": "ftc_partnership",
180
+ "type": "image",
181
+ "position": { "x": 114, "y": 63.6 },
182
+ "required": false,
183
+ "width": 3,
184
+ "height": 3,
185
+ "rotate": 0,
186
+ "opacity": 1,
187
+ "readOnly": false
188
+ },
189
+ {
190
+ "name": "ftc_trust",
191
+ "type": "image",
192
+ "position": { "x": 137, "y": 63.6 },
193
+ "required": false,
194
+ "width": 3,
195
+ "height": 3,
196
+ "rotate": 0,
197
+ "opacity": 1,
198
+ "readOnly": false
199
+ },
200
+ {
201
+ "name": "ftc_llc",
202
+ "type": "image",
203
+ "position": { "x": 25.7, "y": 68 },
204
+ "required": false,
205
+ "width": 3,
206
+ "height": 3,
207
+ "rotate": 0,
208
+ "opacity": 1,
209
+ "readOnly": false
210
+ },
211
+ {
212
+ "name": "ftc_other",
213
+ "type": "image",
214
+ "position": { "x": 25.7, "y": 81 },
215
+ "required": false,
216
+ "width": 3,
217
+ "height": 3,
218
+ "rotate": 0,
219
+ "opacity": 1,
220
+ "readOnly": false
221
+ },
222
+ {
223
+ "name": "ftc_llc_category",
224
+ "type": "text",
225
+ "content": "",
226
+ "position": { "x": 145.8, "y": 67.4 },
227
+ "width": 12.68,
228
+ "height": 4.99,
229
+ "rotate": 0,
230
+ "alignment": "left",
231
+ "verticalAlignment": "top",
232
+ "fontSize": 11,
233
+ "lineHeight": 1,
234
+ "characterSpacing": 0,
235
+ "fontColor": "#000000",
236
+ "backgroundColor": "",
237
+ "opacity": 1,
238
+ "strikethrough": false,
239
+ "underline": false,
240
+ "required": false,
241
+ "readOnly": false,
242
+ "fontName": "Roboto"
243
+ },
244
+ {
245
+ "name": "ftc_other_tc",
246
+ "type": "text",
247
+ "content": "",
248
+ "position": { "x": 58.43, "y": 80.04 },
249
+ "width": 94.44,
250
+ "height": 4.2,
251
+ "rotate": 0,
252
+ "alignment": "left",
253
+ "verticalAlignment": "top",
254
+ "fontSize": 11,
255
+ "lineHeight": 1,
256
+ "characterSpacing": 0,
257
+ "fontColor": "#000000",
258
+ "backgroundColor": "",
259
+ "opacity": 1,
260
+ "strikethrough": false,
261
+ "underline": false,
262
+ "required": false,
263
+ "readOnly": false,
264
+ "fontName": "Roboto"
265
+ },
266
+ {
267
+ "name": "ftc_is_foreign_partners",
268
+ "type": "image",
269
+ "position": { "x": 155, "y": 92.6 },
270
+ "required": false,
271
+ "width": 3,
272
+ "height": 3,
273
+ "rotate": 0,
274
+ "opacity": 1,
275
+ "readOnly": false
276
+ },
277
+ {
278
+ "name": "exempt_payee_code",
279
+ "type": "text",
280
+ "content": "",
281
+ "position": { "x": 191.78, "y": 67.35 },
282
+ "width": 11.36,
283
+ "height": 4.99,
284
+ "rotate": 0,
285
+ "alignment": "left",
286
+ "verticalAlignment": "top",
287
+ "fontSize": 11,
288
+ "lineHeight": 1,
289
+ "characterSpacing": 0,
290
+ "fontColor": "#000000",
291
+ "backgroundColor": "",
292
+ "opacity": 1,
293
+ "strikethrough": false,
294
+ "underline": false,
295
+ "required": false,
296
+ "readOnly": false,
297
+ "fontName": "Roboto"
298
+ },
299
+ {
300
+ "name": "exempt_fatcha_code",
301
+ "type": "text",
302
+ "content": "",
303
+ "position": { "x": 176.12, "y": 79.73 },
304
+ "width": 26.44,
305
+ "height": 4.99,
306
+ "rotate": 0,
307
+ "alignment": "left",
308
+ "verticalAlignment": "top",
309
+ "fontSize": 11,
310
+ "lineHeight": 1,
311
+ "characterSpacing": 0,
312
+ "fontColor": "#000000",
313
+ "backgroundColor": "",
314
+ "opacity": 1,
315
+ "strikethrough": false,
316
+ "underline": false,
317
+ "required": false,
318
+ "readOnly": false,
319
+ "fontName": "Roboto"
320
+ },
321
+ {
322
+ "name": "requester_details",
323
+ "type": "text",
324
+ "content": "",
325
+ "position": { "x": 138.66, "y": 101.27 },
326
+ "width": 63.48,
327
+ "height": 12.67,
328
+ "rotate": 0,
329
+ "alignment": "left",
330
+ "verticalAlignment": "middle",
331
+ "fontSize": 11,
332
+ "lineHeight": 1,
333
+ "characterSpacing": 0,
334
+ "fontColor": "#000000",
335
+ "backgroundColor": "",
336
+ "opacity": 1,
337
+ "strikethrough": false,
338
+ "underline": false,
339
+ "required": false,
340
+ "readOnly": false,
341
+ "fontName": "Roboto"
342
+ },
343
+ {
344
+ "name": "ssn_1",
345
+ "type": "text",
346
+ "content": "",
347
+ "position": { "x": 147.28, "y": 131.33 },
348
+ "width": 5.01,
349
+ "height": 8.69,
350
+ "rotate": 0,
351
+ "alignment": "center",
352
+ "verticalAlignment": "middle",
353
+ "fontSize": 11,
354
+ "lineHeight": 1,
355
+ "characterSpacing": 0,
356
+ "fontColor": "#000000",
357
+ "backgroundColor": "",
358
+ "opacity": 1,
359
+ "strikethrough": false,
360
+ "underline": false,
361
+ "required": false,
362
+ "readOnly": false,
363
+ "fontName": "Roboto"
364
+ },
365
+ {
366
+ "name": "ssn_2",
367
+ "type": "text",
368
+ "content": "",
369
+ "position": { "x": 152.52, "y": 131.33 },
370
+ "width": 5.01,
371
+ "height": 8.69,
372
+ "rotate": 0,
373
+ "alignment": "center",
374
+ "verticalAlignment": "middle",
375
+ "fontSize": 11,
376
+ "lineHeight": 1,
377
+ "characterSpacing": 0,
378
+ "fontColor": "#000000",
379
+ "backgroundColor": "",
380
+ "opacity": 1,
381
+ "strikethrough": false,
382
+ "underline": false,
383
+ "required": false,
384
+ "readOnly": false,
385
+ "fontName": "Roboto"
386
+ },
387
+ {
388
+ "name": "ssn_3",
389
+ "type": "text",
390
+ "content": "",
391
+ "position": { "x": 157.76, "y": 131.33 },
392
+ "width": 5.01,
393
+ "height": 8.69,
394
+ "rotate": 0,
395
+ "alignment": "center",
396
+ "verticalAlignment": "middle",
397
+ "fontSize": 11,
398
+ "lineHeight": 1,
399
+ "characterSpacing": 0,
400
+ "fontColor": "#000000",
401
+ "backgroundColor": "",
402
+ "opacity": 1,
403
+ "strikethrough": false,
404
+ "underline": false,
405
+ "required": false,
406
+ "readOnly": false,
407
+ "fontName": "Roboto"
408
+ },
409
+ {
410
+ "name": "ssn_4",
411
+ "type": "text",
412
+ "content": "",
413
+ "position": { "x": 167.59, "y": 131.33 },
414
+ "width": 5.01,
415
+ "height": 8.69,
416
+ "rotate": 0,
417
+ "alignment": "center",
418
+ "verticalAlignment": "middle",
419
+ "fontSize": 11,
420
+ "lineHeight": 1,
421
+ "characterSpacing": 0,
422
+ "fontColor": "#000000",
423
+ "backgroundColor": "",
424
+ "opacity": 1,
425
+ "strikethrough": false,
426
+ "underline": false,
427
+ "required": false,
428
+ "readOnly": false,
429
+ "fontName": "Roboto"
430
+ },
431
+ {
432
+ "name": "ssn_5",
433
+ "type": "text",
434
+ "content": "",
435
+ "position": { "x": 172.83, "y": 131.33 },
436
+ "width": 5.01,
437
+ "height": 8.69,
438
+ "rotate": 0,
439
+ "alignment": "center",
440
+ "verticalAlignment": "middle",
441
+ "fontSize": 11,
442
+ "lineHeight": 1,
443
+ "characterSpacing": 0,
444
+ "fontColor": "#000000",
445
+ "backgroundColor": "",
446
+ "opacity": 1,
447
+ "strikethrough": false,
448
+ "underline": false,
449
+ "required": false,
450
+ "readOnly": false,
451
+ "fontName": "Roboto"
452
+ },
453
+ {
454
+ "name": "ssn_6",
455
+ "type": "text",
456
+ "content": "",
457
+ "position": { "x": 182.82, "y": 131.33 },
458
+ "width": 5.01,
459
+ "height": 8.69,
460
+ "rotate": 0,
461
+ "alignment": "center",
462
+ "verticalAlignment": "middle",
463
+ "fontSize": 11,
464
+ "lineHeight": 1,
465
+ "characterSpacing": 0,
466
+ "fontColor": "#000000",
467
+ "backgroundColor": "",
468
+ "opacity": 1,
469
+ "strikethrough": false,
470
+ "underline": false,
471
+ "required": false,
472
+ "readOnly": false,
473
+ "fontName": "Roboto"
474
+ },
475
+ {
476
+ "name": "ssn_7",
477
+ "type": "text",
478
+ "content": "",
479
+ "position": { "x": 188.32, "y": 131.33 },
480
+ "width": 5.01,
481
+ "height": 8.69,
482
+ "rotate": 0,
483
+ "alignment": "center",
484
+ "verticalAlignment": "middle",
485
+ "fontSize": 11,
486
+ "lineHeight": 1,
487
+ "characterSpacing": 0,
488
+ "fontColor": "#000000",
489
+ "backgroundColor": "",
490
+ "opacity": 1,
491
+ "strikethrough": false,
492
+ "underline": false,
493
+ "required": false,
494
+ "readOnly": false,
495
+ "fontName": "Roboto"
496
+ },
497
+ {
498
+ "name": "ssn_8",
499
+ "type": "text",
500
+ "content": "",
501
+ "position": { "x": 192.9, "y": 131.33 },
502
+ "width": 5.01,
503
+ "height": 8.69,
504
+ "rotate": 0,
505
+ "alignment": "center",
506
+ "verticalAlignment": "middle",
507
+ "fontSize": 11,
508
+ "lineHeight": 1,
509
+ "characterSpacing": 0,
510
+ "fontColor": "#000000",
511
+ "backgroundColor": "",
512
+ "opacity": 1,
513
+ "strikethrough": false,
514
+ "underline": false,
515
+ "required": false,
516
+ "readOnly": false,
517
+ "fontName": "Roboto"
518
+ },
519
+ {
520
+ "name": "ssn_9",
521
+ "type": "text",
522
+ "content": "",
523
+ "position": { "x": 198.14, "y": 131.33 },
524
+ "width": 5.01,
525
+ "height": 8.69,
526
+ "rotate": 0,
527
+ "alignment": "center",
528
+ "verticalAlignment": "middle",
529
+ "fontSize": 11,
530
+ "lineHeight": 1,
531
+ "characterSpacing": 0,
532
+ "fontColor": "#000000",
533
+ "backgroundColor": "",
534
+ "opacity": 1,
535
+ "strikethrough": false,
536
+ "underline": false,
537
+ "required": false,
538
+ "readOnly": false,
539
+ "fontName": "Roboto"
540
+ },
541
+ {
542
+ "name": "ein_1",
543
+ "type": "text",
544
+ "content": "",
545
+ "position": { "x": 147.43, "y": 148.2 },
546
+ "width": 5.01,
547
+ "height": 8.69,
548
+ "rotate": 0,
549
+ "alignment": "center",
550
+ "verticalAlignment": "middle",
551
+ "fontSize": 11,
552
+ "lineHeight": 1,
553
+ "characterSpacing": 0,
554
+ "fontColor": "#000000",
555
+ "backgroundColor": "",
556
+ "opacity": 1,
557
+ "strikethrough": false,
558
+ "underline": false,
559
+ "required": false,
560
+ "readOnly": false,
561
+ "fontName": "Roboto"
562
+ },
563
+ {
564
+ "name": "ein_2",
565
+ "type": "text",
566
+ "content": "",
567
+ "position": { "x": 152.67, "y": 148.2 },
568
+ "width": 5.01,
569
+ "height": 8.69,
570
+ "rotate": 0,
571
+ "alignment": "center",
572
+ "verticalAlignment": "middle",
573
+ "fontSize": 11,
574
+ "lineHeight": 1,
575
+ "characterSpacing": 0,
576
+ "fontColor": "#000000",
577
+ "backgroundColor": "",
578
+ "opacity": 1,
579
+ "strikethrough": false,
580
+ "underline": false,
581
+ "required": false,
582
+ "readOnly": false,
583
+ "fontName": "Roboto"
584
+ },
585
+ {
586
+ "name": "ein_3",
587
+ "type": "text",
588
+ "content": "",
589
+ "position": { "x": 162.4, "y": 147.95 },
590
+ "width": 5.01,
591
+ "height": 8.69,
592
+ "rotate": 0,
593
+ "alignment": "center",
594
+ "verticalAlignment": "middle",
595
+ "fontSize": 11,
596
+ "lineHeight": 1,
597
+ "characterSpacing": 0,
598
+ "fontColor": "#000000",
599
+ "backgroundColor": "",
600
+ "opacity": 1,
601
+ "strikethrough": false,
602
+ "underline": false,
603
+ "required": false,
604
+ "readOnly": false,
605
+ "fontName": "Roboto"
606
+ },
607
+ {
608
+ "name": "ein_4",
609
+ "type": "text",
610
+ "content": "",
611
+ "position": { "x": 167.9, "y": 147.95 },
612
+ "width": 5.01,
613
+ "height": 8.69,
614
+ "rotate": 0,
615
+ "alignment": "center",
616
+ "verticalAlignment": "middle",
617
+ "fontSize": 11,
618
+ "lineHeight": 1,
619
+ "characterSpacing": 0,
620
+ "fontColor": "#000000",
621
+ "backgroundColor": "",
622
+ "opacity": 1,
623
+ "strikethrough": false,
624
+ "underline": false,
625
+ "required": false,
626
+ "readOnly": false,
627
+ "fontName": "Roboto"
628
+ },
629
+ {
630
+ "name": "ein_5",
631
+ "type": "text",
632
+ "content": "",
633
+ "position": { "x": 172.48, "y": 147.95 },
634
+ "width": 5.01,
635
+ "height": 8.69,
636
+ "rotate": 0,
637
+ "alignment": "center",
638
+ "verticalAlignment": "middle",
639
+ "fontSize": 11,
640
+ "lineHeight": 1,
641
+ "characterSpacing": 0,
642
+ "fontColor": "#000000",
643
+ "backgroundColor": "",
644
+ "opacity": 1,
645
+ "strikethrough": false,
646
+ "underline": false,
647
+ "required": false,
648
+ "readOnly": false,
649
+ "fontName": "Roboto"
650
+ },
651
+ {
652
+ "name": "ein_6",
653
+ "type": "text",
654
+ "content": "",
655
+ "position": { "x": 177.72, "y": 147.95 },
656
+ "width": 5.01,
657
+ "height": 8.69,
658
+ "rotate": 0,
659
+ "alignment": "center",
660
+ "verticalAlignment": "middle",
661
+ "fontSize": 11,
662
+ "lineHeight": 1,
663
+ "characterSpacing": 0,
664
+ "fontColor": "#000000",
665
+ "backgroundColor": "",
666
+ "opacity": 1,
667
+ "strikethrough": false,
668
+ "underline": false,
669
+ "required": false,
670
+ "readOnly": false,
671
+ "fontName": "Roboto"
672
+ },
673
+ {
674
+ "name": "ein_7",
675
+ "type": "text",
676
+ "content": "",
677
+ "position": { "x": 182.68, "y": 147.94 },
678
+ "width": 5.01,
679
+ "height": 8.69,
680
+ "rotate": 0,
681
+ "alignment": "center",
682
+ "verticalAlignment": "middle",
683
+ "fontSize": 11,
684
+ "lineHeight": 1,
685
+ "characterSpacing": 0,
686
+ "fontColor": "#000000",
687
+ "backgroundColor": "",
688
+ "opacity": 1,
689
+ "strikethrough": false,
690
+ "underline": false,
691
+ "required": false,
692
+ "readOnly": false,
693
+ "fontName": "Roboto"
694
+ },
695
+ {
696
+ "name": "ein_8",
697
+ "type": "text",
698
+ "content": "",
699
+ "position": { "x": 187.92, "y": 147.94 },
700
+ "width": 5.01,
701
+ "height": 8.69,
702
+ "rotate": 0,
703
+ "alignment": "center",
704
+ "verticalAlignment": "middle",
705
+ "fontSize": 11,
706
+ "lineHeight": 1,
707
+ "characterSpacing": 0,
708
+ "fontColor": "#000000",
709
+ "backgroundColor": "",
710
+ "opacity": 1,
711
+ "strikethrough": false,
712
+ "underline": false,
713
+ "required": false,
714
+ "readOnly": false,
715
+ "fontName": "Roboto"
716
+ },
717
+ {
718
+ "name": "ein_9",
719
+ "type": "text",
720
+ "content": "",
721
+ "position": { "x": 193.16, "y": 147.94 },
722
+ "width": 5.01,
723
+ "height": 8.69,
724
+ "rotate": 0,
725
+ "alignment": "center",
726
+ "verticalAlignment": "middle",
727
+ "fontSize": 11,
728
+ "lineHeight": 1,
729
+ "characterSpacing": 0,
730
+ "fontColor": "#000000",
731
+ "backgroundColor": "",
732
+ "opacity": 1,
733
+ "strikethrough": false,
734
+ "underline": false,
735
+ "required": false,
736
+ "readOnly": false,
737
+ "fontName": "Roboto"
738
+ }
739
+ ]