@saltcorn/data 1.1.0-beta.2 → 1.1.0-beta.21

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 (114) hide show
  1. package/dist/base-plugin/actions.d.ts +135 -10
  2. package/dist/base-plugin/actions.d.ts.map +1 -1
  3. package/dist/base-plugin/actions.js +266 -45
  4. package/dist/base-plugin/actions.js.map +1 -1
  5. package/dist/base-plugin/index.d.ts +126 -123
  6. package/dist/base-plugin/index.d.ts.map +1 -1
  7. package/dist/base-plugin/types.d.ts.map +1 -1
  8. package/dist/base-plugin/types.js +14 -9
  9. package/dist/base-plugin/types.js.map +1 -1
  10. package/dist/base-plugin/viewtemplates/edit.d.ts +7 -4
  11. package/dist/base-plugin/viewtemplates/edit.d.ts.map +1 -1
  12. package/dist/base-plugin/viewtemplates/edit.js +72 -10
  13. package/dist/base-plugin/viewtemplates/edit.js.map +1 -1
  14. package/dist/base-plugin/viewtemplates/room.d.ts.map +1 -1
  15. package/dist/base-plugin/viewtemplates/room.js +7 -2
  16. package/dist/base-plugin/viewtemplates/room.js.map +1 -1
  17. package/dist/base-plugin/viewtemplates/show.d.ts.map +1 -1
  18. package/dist/base-plugin/viewtemplates/show.js +7 -4
  19. package/dist/base-plugin/viewtemplates/show.js.map +1 -1
  20. package/dist/base-plugin/viewtemplates/viewable_fields.d.ts.map +1 -1
  21. package/dist/base-plugin/viewtemplates/viewable_fields.js +10 -11
  22. package/dist/base-plugin/viewtemplates/viewable_fields.js.map +1 -1
  23. package/dist/db/index.js +1 -1
  24. package/dist/db/index.js.map +1 -1
  25. package/dist/db/state.d.ts +16 -0
  26. package/dist/db/state.d.ts.map +1 -1
  27. package/dist/db/state.js +55 -3
  28. package/dist/db/state.js.map +1 -1
  29. package/dist/migrations/202412051957.d.ts +3 -0
  30. package/dist/migrations/202412051957.d.ts.map +1 -0
  31. package/dist/migrations/202412051957.js +48 -0
  32. package/dist/migrations/202412051957.js.map +1 -0
  33. package/dist/migrations/202412111526.d.ts +3 -0
  34. package/dist/migrations/202412111526.d.ts.map +1 -0
  35. package/dist/migrations/202412111526.js +38 -0
  36. package/dist/migrations/202412111526.js.map +1 -0
  37. package/dist/models/config.d.ts +0 -2
  38. package/dist/models/config.d.ts.map +1 -1
  39. package/dist/models/config.js +44 -34
  40. package/dist/models/config.js.map +1 -1
  41. package/dist/models/email.d.ts +1 -1
  42. package/dist/models/expression.d.ts.map +1 -1
  43. package/dist/models/expression.js +16 -2
  44. package/dist/models/expression.js.map +1 -1
  45. package/dist/models/field.d.ts.map +1 -1
  46. package/dist/models/field.js +22 -4
  47. package/dist/models/field.js.map +1 -1
  48. package/dist/models/file.d.ts +5 -2
  49. package/dist/models/file.d.ts.map +1 -1
  50. package/dist/models/file.js +3 -3
  51. package/dist/models/file.js.map +1 -1
  52. package/dist/models/form.d.ts.map +1 -1
  53. package/dist/models/form.js +5 -1
  54. package/dist/models/form.js.map +1 -1
  55. package/dist/models/index.d.ts +2 -2
  56. package/dist/models/index.d.ts.map +1 -1
  57. package/dist/models/index.js +1 -1
  58. package/dist/models/index.js.map +1 -1
  59. package/dist/models/page.d.ts.map +1 -1
  60. package/dist/models/page.js +3 -1
  61. package/dist/models/page.js.map +1 -1
  62. package/dist/models/page_group.d.ts.map +1 -1
  63. package/dist/models/page_group.js +7 -1
  64. package/dist/models/page_group.js.map +1 -1
  65. package/dist/models/scheduler.d.ts.map +1 -1
  66. package/dist/models/scheduler.js +4 -0
  67. package/dist/models/scheduler.js.map +1 -1
  68. package/dist/models/table.d.ts +1 -0
  69. package/dist/models/table.d.ts.map +1 -1
  70. package/dist/models/table.js +34 -3
  71. package/dist/models/table.js.map +1 -1
  72. package/dist/models/trigger.d.ts +5 -1
  73. package/dist/models/trigger.d.ts.map +1 -1
  74. package/dist/models/trigger.js +38 -7
  75. package/dist/models/trigger.js.map +1 -1
  76. package/dist/models/view.js +3 -3
  77. package/dist/models/workflow_run.d.ts +77 -0
  78. package/dist/models/workflow_run.d.ts.map +1 -0
  79. package/dist/models/workflow_run.js +394 -0
  80. package/dist/models/workflow_run.js.map +1 -0
  81. package/dist/models/workflow_step.d.ts +58 -0
  82. package/dist/models/workflow_step.d.ts.map +1 -0
  83. package/dist/models/workflow_step.js +144 -0
  84. package/dist/models/workflow_step.js.map +1 -0
  85. package/dist/models/workflow_trace.d.ts +57 -0
  86. package/dist/models/workflow_trace.d.ts.map +1 -0
  87. package/dist/models/workflow_trace.js +90 -0
  88. package/dist/models/workflow_trace.js.map +1 -0
  89. package/dist/plugin-helper.d.ts +1 -0
  90. package/dist/plugin-helper.d.ts.map +1 -1
  91. package/dist/plugin-helper.js +8 -9
  92. package/dist/plugin-helper.js.map +1 -1
  93. package/dist/tests/actions.test.js +5 -2
  94. package/dist/tests/actions.test.js.map +1 -1
  95. package/dist/tests/auxtest.test.js +6 -3
  96. package/dist/tests/auxtest.test.js.map +1 -1
  97. package/dist/tests/config.test.js +2 -2
  98. package/dist/tests/config.test.js.map +1 -1
  99. package/dist/tests/field.test.js +47 -0
  100. package/dist/tests/field.test.js.map +1 -1
  101. package/dist/tests/mocks.d.ts +1 -1
  102. package/dist/tests/mocks.js +1 -1
  103. package/dist/tests/mocks.js.map +1 -1
  104. package/dist/tests/workflow.test.js +9 -0
  105. package/dist/tests/workflow.test.js.map +1 -1
  106. package/dist/tests/workflow_run.test.d.ts +2 -0
  107. package/dist/tests/workflow_run.test.d.ts.map +1 -0
  108. package/dist/tests/workflow_run.test.js +109 -0
  109. package/dist/tests/workflow_run.test.js.map +1 -0
  110. package/dist/utils.d.ts +2 -0
  111. package/dist/utils.d.ts.map +1 -1
  112. package/dist/utils.js +15 -0
  113. package/dist/utils.js.map +1 -1
  114. package/package.json +10 -9
@@ -22,6 +22,7 @@ declare function run_code({ row, table, channel, configuration: { code, run_wher
22
22
  export namespace blocks {
23
23
  export const disableInBuilder: boolean;
24
24
  export const disableInList: boolean;
25
+ export const disableInWorkflow: boolean;
25
26
  export const description: string;
26
27
  export const configFields: {
27
28
  name: string;
@@ -73,21 +74,54 @@ export namespace emit_event {
73
74
  export namespace webhook {
74
75
  const description_2: string;
75
76
  export { description_2 as description };
76
- const configFields_2: ({
77
+ export function configFields_2({ table, mode }: {
78
+ table: any;
79
+ mode: any;
80
+ }): Promise<({
77
81
  name: string;
78
82
  label: string;
79
83
  type: string;
80
84
  sublabel: string;
85
+ required?: undefined;
86
+ attributes?: undefined;
81
87
  fieldview?: undefined;
88
+ showIf?: undefined;
89
+ } | {
90
+ name: string;
91
+ label: string;
92
+ type: string;
93
+ required: boolean;
94
+ attributes: {
95
+ options: string;
96
+ };
97
+ sublabel?: undefined;
98
+ fieldview?: undefined;
99
+ showIf?: undefined;
82
100
  } | {
83
101
  name: string;
84
102
  label: string;
85
103
  sublabel: string;
86
104
  type: string;
87
105
  fieldview: string;
88
- })[];
106
+ showIf: {
107
+ method: string[];
108
+ };
109
+ required?: undefined;
110
+ attributes?: undefined;
111
+ } | {
112
+ name: string;
113
+ label: string;
114
+ type: string;
115
+ attributes: {
116
+ options: any;
117
+ };
118
+ sublabel?: undefined;
119
+ required?: undefined;
120
+ fieldview?: undefined;
121
+ showIf?: undefined;
122
+ })[]>;
89
123
  export { configFields_2 as configFields };
90
- export function run_1({ row, user, configuration: { url, body } }: {
124
+ export function run_1({ row, user, table, configuration: { url, body, authorization, response_field, response_var, method, }, }: {
91
125
  url: string;
92
126
  body: object;
93
127
  }): Promise<object>;
@@ -117,9 +151,31 @@ export namespace find_or_create_dm_room {
117
151
  export namespace send_email {
118
152
  const description_4: string;
119
153
  export { description_4 as description };
120
- export function configFields_4({ table }: {
154
+ export function configFields_4({ table, mode }: {
121
155
  table: any;
156
+ mode: any;
122
157
  }): Promise<({
158
+ name: string;
159
+ label: string;
160
+ sublabel: string;
161
+ type: string;
162
+ required?: undefined;
163
+ fieldview?: undefined;
164
+ } | {
165
+ name: string;
166
+ label: string;
167
+ sublabel: string;
168
+ type: string;
169
+ required: boolean;
170
+ fieldview?: undefined;
171
+ } | {
172
+ name: string;
173
+ label: string;
174
+ type: string;
175
+ fieldview: string;
176
+ required: boolean;
177
+ sublabel?: undefined;
178
+ })[] | ({
123
179
  name: string;
124
180
  label: string;
125
181
  type: string;
@@ -284,7 +340,7 @@ export namespace send_email {
284
340
  })[]>;
285
341
  export { configFields_4 as configFields };
286
342
  export const requireRow: boolean;
287
- export function run_3({ row, table, configuration: { body_type, body_field, viewname, subject, subject_formula, to_email, to_email_field, to_email_fixed, cc_email, only_if, attachment_path, disable_notify, confirm_field, }, user, }: {
343
+ export function run_3({ row, table, configuration: { body_type, body_field, viewname, subject, subject_formula, to_email, to_email_field, to_email_fixed, cc_email, only_if, attachment_path, disable_notify, confirm_field, body, }, user, mode, }: {
288
344
  row: object;
289
345
  table: object;
290
346
  configuration: object;
@@ -307,6 +363,8 @@ export namespace insert_joined_row {
307
363
  options: any;
308
364
  }[]>;
309
365
  export { configFields_5 as configFields };
366
+ const disableInWorkflow_1: boolean;
367
+ export { disableInWorkflow_1 as disableInWorkflow };
310
368
  const requireRow_1: boolean;
311
369
  export { requireRow_1 as requireRow };
312
370
  export function run_4({ row, table, configuration: { joined_table }, user }: {
@@ -324,6 +382,8 @@ export namespace duplicate_row {
324
382
  export { description_6 as description };
325
383
  export function configFields_6(): never[];
326
384
  export { configFields_6 as configFields };
385
+ const disableInWorkflow_2: boolean;
386
+ export { disableInWorkflow_2 as disableInWorkflow };
327
387
  const requireRow_2: boolean;
328
388
  export { requireRow_2 as requireRow };
329
389
  export function run_5({ row, table, user }: {
@@ -383,8 +443,8 @@ export namespace recalculate_stored_fields {
383
443
  export namespace insert_any_row {
384
444
  const description_8: string;
385
445
  export { description_8 as description };
386
- export function configFields_8({ table }: {
387
- table: any;
446
+ export function configFields_8({ mode }: {
447
+ mode: any;
388
448
  }): Promise<({
389
449
  name: string;
390
450
  label: string;
@@ -401,6 +461,14 @@ export namespace insert_any_row {
401
461
  fieldview: string;
402
462
  input_type?: undefined;
403
463
  options?: undefined;
464
+ } | {
465
+ name: string;
466
+ label: string;
467
+ sublabel: string;
468
+ type: string;
469
+ input_type?: undefined;
470
+ options?: undefined;
471
+ fieldview?: undefined;
404
472
  })[]>;
405
473
  export { configFields_8 as configFields };
406
474
  export function run_7({ row, table, configuration, user, referrer, ...rest }: {
@@ -428,9 +496,11 @@ export namespace modify_row {
428
496
  attributes: {
429
497
  mode: string;
430
498
  options?: undefined;
499
+ showIf?: undefined;
431
500
  };
432
501
  type?: undefined;
433
502
  required?: undefined;
503
+ showIf?: undefined;
434
504
  } | {
435
505
  name: string;
436
506
  label: string;
@@ -439,20 +509,50 @@ export namespace modify_row {
439
509
  attributes: {
440
510
  options: string[];
441
511
  mode?: undefined;
512
+ showIf?: undefined;
513
+ };
514
+ sublabel?: undefined;
515
+ input_type?: undefined;
516
+ showIf?: undefined;
517
+ } | {
518
+ name: string;
519
+ label: string;
520
+ type: string;
521
+ required: boolean;
522
+ attributes: {
523
+ options: string[];
524
+ showIf: {
525
+ where: string;
526
+ };
527
+ mode?: undefined;
528
+ };
529
+ sublabel?: undefined;
530
+ input_type?: undefined;
531
+ showIf?: undefined;
532
+ } | {
533
+ name: string;
534
+ label: string;
535
+ type: string;
536
+ required: boolean;
537
+ showIf: {
538
+ where: string;
442
539
  };
443
540
  sublabel?: undefined;
444
541
  input_type?: undefined;
542
+ attributes?: undefined;
445
543
  })[]>;
446
544
  export { configFields_9 as configFields };
447
545
  const requireRow_3: boolean;
448
546
  export { requireRow_3 as requireRow };
449
- export function run_8({ row, table, configuration: { row_expr, where }, user, ...rest }: {
547
+ export function run_8({ row, table, configuration: { row_expr, where, select_table, query }, user, ...rest }: {
450
548
  [x: string]: any;
451
549
  row: any;
452
550
  table: any;
453
551
  configuration: {
454
552
  row_expr: any;
455
553
  where: any;
554
+ select_table: any;
555
+ query: any;
456
556
  };
457
557
  user: any;
458
558
  }): Promise<any>;
@@ -576,6 +676,8 @@ export namespace navigate {
576
676
  export namespace step_control_flow {
577
677
  const description_12: string;
578
678
  export { description_12 as description };
679
+ const disableInWorkflow_3: boolean;
680
+ export { disableInWorkflow_3 as disableInWorkflow };
579
681
  const configFields_12: ({
580
682
  name: string;
581
683
  label: string;
@@ -713,6 +815,7 @@ export namespace run_js_code {
713
815
  input_type: string;
714
816
  attributes: {
715
817
  mode: string;
818
+ secondColHoriz?: undefined;
716
819
  };
717
820
  class: string;
718
821
  validator(s: any): any;
@@ -730,8 +833,11 @@ export namespace run_js_code {
730
833
  showIf: {
731
834
  run_where: string;
732
835
  };
836
+ attributes: {
837
+ secondColHoriz: boolean;
838
+ mode?: undefined;
839
+ };
733
840
  name?: undefined;
734
- attributes?: undefined;
735
841
  class?: undefined;
736
842
  options?: undefined;
737
843
  } | {
@@ -753,9 +859,26 @@ export namespace run_js_code {
753
859
  export namespace run_js_code_in_field {
754
860
  const description_16: string;
755
861
  export { description_16 as description };
756
- export function configFields_16({ table }: {
862
+ export function configFields_16({ table, mode }: {
757
863
  table: any;
864
+ mode: any;
758
865
  }): Promise<({
866
+ name: string;
867
+ label: string;
868
+ sublabel: string;
869
+ type: string;
870
+ required: boolean;
871
+ input_type?: undefined;
872
+ options?: undefined;
873
+ } | {
874
+ name: string;
875
+ label: string;
876
+ input_type: string;
877
+ options: string[];
878
+ sublabel?: undefined;
879
+ type?: undefined;
880
+ required?: undefined;
881
+ })[] | ({
759
882
  name: string;
760
883
  label: string;
761
884
  sublabel: string;
@@ -789,6 +912,8 @@ export namespace duplicate_row_prefill_edit {
789
912
  table: any;
790
913
  }): Promise<any[]>;
791
914
  export { configFields_17 as configFields };
915
+ const disableInWorkflow_4: boolean;
916
+ export { disableInWorkflow_4 as disableInWorkflow };
792
917
  const requireRow_6: boolean;
793
918
  export { requireRow_6 as requireRow };
794
919
  export function run_15({ row, table, configuration: { viewname, ...flds }, user }: {
@@ -1 +1 @@
1
- {"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../../base-plugin/actions.js"],"names":[],"mappings":"AA4EA;;;;;;;;;GASG;AACH;;;;;;;;;;iBAyFC;;;;;;;;;;;;;;;IAwCiB;;;;;;;;;;;;;;;;;;;;;;;;;;;SAqBb;;IAQI;;;;sBAWJ;;;;;;;;;;;;;;;;;;;;;IAgCI;;;wBAQJ;;;;;;IAca;;;;;;SAeb;;IAUI;;;;;wBA0CJ;;;;;;;;IAgBa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA+Ib;;;IAUI;;;;;wBA2IJ;;;;;;;;IAgBa;;;;;;;;SAYb;;;;IAUI;;;;;wBAsBJ;;;;;;;;IAca,0CAAQ;;;;IASjB;;;;wBAKJ;;;;;;;;IAiBa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAwBb;;IAMI;;sBAwBJ;;;;;;;;IAgBa;;;;;;;;;;;;;;;;;;UAmBb;;IAUI;;;;;;kCAiBJ;;;;;;;;IAea;;;;;;;;;;;;;;;;;;;;;;;;;UA6Bb;;;;IAEI;;;;;;;;;qBAkBJ;;;;;;;;IAWa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA2Bb;;IACI;;;;;;;;;;sBAsBJ;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAyCI;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAoBJ;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4BI;;;;;;;;;;;;;;;;;;;mBAYJ;;;;;;;;;;;;;;;;;;;;IA8BI;;;;;;;;;;;;;;;OA+BJ;;;;;;;;;;;;;;;;;;;;;;;;IA4BI;;;;;;;;;;;;;;;;;;;;OAYJ;;;;;;;;;;;IAmBa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA+Eb;;;;;;;;;IAea;;;;;;;;;;;;;;;;;;;;;;UAkCb;;;;;;;;;;IAqCa;;uBAsBb;;;;IAEI;;;;;;;;;;OAUJ;;;;;;;;IAUa;;;;;;;;;;;;SAcb;;IACI;;;;;;;;;OAgBJ;;;;;;;;IAgBa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAyDb;;IASI;;;;;kCAmFJ;;;;;;;;IAKa;;;;;;;;;;;;;;;;;;;;;;;;;;UAyBb;;IACI;;;;;;;;;;OAkBJ;;;;;;;;;;;;;;;IAaI;;;;;;OAMJ;;;;;;;;IAKa;;;;;;;;;;SAsBb;;IAQI;;;;sBA8BJ;;;;;;;;IAOa;;;;;;;;;;;;;;;;;;;;UA2Cb;;IACI;;;;;;;;sBAeJ;;;;;;;;IAMa,2CAAQ;;IACjB;;;;;;;;OAKJ"}
1
+ {"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../../base-plugin/actions.js"],"names":[],"mappings":"AA4EA;;;;;;;;;GASG;AACH;;;;;;;;;;iBAyFC;;;;;;;;;;;;;;;;IAyCiB;;;;;;;;;;;;;;;;;;;;;;;;;;;SAqBb;;IAQI;;;;sBAWJ;;;;;;;IAWa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA0Db;;IAOI;;;wBA0DJ;;;;;;IAca;;;;;;SAeb;;IAUI;;;;;wBA0CJ;;;;;;;;IAgBa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA8Lb;;;IAUI;;;;;wBA8JJ;;;;;;;;IAgBa;;;;;;;;SAYb;;;;;;IAWI;;;;;wBAsBJ;;;;;;;;IAca,0CAAQ;;;;;;IAUjB;;;;wBAKJ;;;;;;;;IAiBa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAwBb;;IAMI;;sBAwBJ;;;;;;;;IAgBa;;;;;;;;;;;;;;;;;;;;;;;;;;UA8Bb;;IAUI;;;;;;kCAoBJ;;;;;;;;IAUa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAuDb;;;;IAEI;;;;;;;;;;;qBA0CJ;;;;;;;;IAWa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA+Bb;;IACI;;;;;;;;;;sBAsBJ;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAyCI;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAwBJ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA6BI;;;;;;;;;;;;;;;;;;;mBAYJ;;;;;;;;;;;;;;;;;;;;IA8BI;;;;;;;;;;;;;;;OA+BJ;;;;;;;;;;;;;;;;;;;;;;;;IA4BI;;;;;;;;;;;;;;;;;;;;OAYJ;;;;;;;;;;;IAmBa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAiFb;;;;;;;;;IAea;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAmDb;;;;;;;;;;IAsCa;;uBAsBb;;;;;;IAGI;;;;;;;;;;OAUJ;;;;;;;;IAUa;;;;;;;;;;;;SAcb;;IACI;;;;;;;;;OAgBJ;;;;;;;;IAgBa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA6Db;;IASI;;;;;kCAmFJ;;;;;;;;IAKa;;;;;;;;;;;;;;;;;;;;;;;;;;UAyBb;;IACI;;;;;;;;;;OAkBJ;;;;;;;;;;;;;;;IAaI;;;;;;OAMJ;;;;;;;;IAKa;;;;;;;;;;SAsBb;;IAQI;;;;sBA8BJ;;;;;;;;IAOa;;;;;;;;;;;;;;;;;;;;UA2Cb;;IACI;;;;;;;;sBAeJ;;;;;;;;IAMa,2CAAQ;;IACjB;;;;;;;;OAKJ"}