shortcuts-playground 1.2.1

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 (68) hide show
  1. package/README.md +54 -0
  2. package/agents/shortcut-builder.md +172 -0
  3. package/agents/shortcut-remixer.md +239 -0
  4. package/commands/build-shortcut.md +32 -0
  5. package/commands/remix-shortcut.md +34 -0
  6. package/opencode.json +30 -0
  7. package/package.json +47 -0
  8. package/plugin/validator.ts +179 -0
  9. package/skills/shortcuts-playground/ACTIONS.md +713 -0
  10. package/skills/shortcuts-playground/APPINTENTS.md +2760 -0
  11. package/skills/shortcuts-playground/AUTOMATION_TRIGGERS.md +133 -0
  12. package/skills/shortcuts-playground/BEST_PRACTICES.md +357 -0
  13. package/skills/shortcuts-playground/CHANGELOG.md +585 -0
  14. package/skills/shortcuts-playground/CONTROL_FLOW.md +777 -0
  15. package/skills/shortcuts-playground/DATE_TIME.md +75 -0
  16. package/skills/shortcuts-playground/EXAMPLES.md +738 -0
  17. package/skills/shortcuts-playground/FILTERS.md +697 -0
  18. package/skills/shortcuts-playground/HEALTHKIT.md +317 -0
  19. package/skills/shortcuts-playground/ICONS_AND_COLORS.md +89 -0
  20. package/skills/shortcuts-playground/JAVASCRIPT_WEBPAGE.md +51 -0
  21. package/skills/shortcuts-playground/PARAMETER_TYPES.md +1117 -0
  22. package/skills/shortcuts-playground/PLIST_FORMAT.md +296 -0
  23. package/skills/shortcuts-playground/README.md +77 -0
  24. package/skills/shortcuts-playground/SKILL.md +459 -0
  25. package/skills/shortcuts-playground/THIRD_PARTY_ACTIONS.md +77 -0
  26. package/skills/shortcuts-playground/TOOLKIT_SNAPSHOT.md +62 -0
  27. package/skills/shortcuts-playground/URL_SCHEMES.md +59 -0
  28. package/skills/shortcuts-playground/VARIABLES.md +569 -0
  29. package/skills/shortcuts-playground/assets/shortcuts-small.svg +14 -0
  30. package/skills/shortcuts-playground/assets/shortcuts.png +0 -0
  31. package/skills/shortcuts-playground/data/healthkit-ios26.2-reference.json +2603 -0
  32. package/skills/shortcuts-playground/data/macos27-shortpy-grounding.json +4085 -0
  33. package/skills/shortcuts-playground/data/macos27-workflow-trigger-samples.json +1 -0
  34. package/skills/shortcuts-playground/data/shortcuts-glyph-synonyms.json +5102 -0
  35. package/skills/shortcuts-playground/data/shortcuts-icon-colors.json +107 -0
  36. package/skills/shortcuts-playground/data/shortcuts-official-glyph-mapping.json +509 -0
  37. package/skills/shortcuts-playground/data/toolkit-v63-tool-ids.json +1806 -0
  38. package/skills/shortcuts-playground/data/toolkit-v78-first-party-enum-cases.json +1 -0
  39. package/skills/shortcuts-playground/data/toolkit-v78-first-party-parameter-keys.json +1 -0
  40. package/skills/shortcuts-playground/data/toolkit-v78-ios27-tool-ids.json +1222 -0
  41. package/skills/shortcuts-playground/data/toolkit-v78-tool-ids.json +2745 -0
  42. package/skills/shortcuts-playground/data/toolkit-v78-trigger-parameter-keys.json +1051 -0
  43. package/skills/shortcuts-playground/golden-shortcuts/index.jsonl +19 -0
  44. package/skills/shortcuts-playground/golden-shortcuts/xml/1be4dde95b794253bf82438e201b33e7.xml +174 -0
  45. package/skills/shortcuts-playground/golden-shortcuts/xml/2e0fb675e45948aaacee7e534f910492.xml +1016 -0
  46. package/skills/shortcuts-playground/golden-shortcuts/xml/332c12a0060043b388b22b806be7ab58.xml +1924 -0
  47. package/skills/shortcuts-playground/golden-shortcuts/xml/3dd4ee24e43f464f92adaa70a0311eaa.xml +1177 -0
  48. package/skills/shortcuts-playground/golden-shortcuts/xml/4d102301c6e646faa7a8a221f4f4ec98.xml +321 -0
  49. package/skills/shortcuts-playground/golden-shortcuts/xml/51cc4e26d1044893a0c3f2f3630cf2d2.xml +1933 -0
  50. package/skills/shortcuts-playground/golden-shortcuts/xml/623e7f1ca5f948e2bd53811fec63e544.xml +136 -0
  51. package/skills/shortcuts-playground/golden-shortcuts/xml/6a18b76843ac45c384ac3400f3740997.xml +1791 -0
  52. package/skills/shortcuts-playground/golden-shortcuts/xml/71f0cacb0f604b399b76c5dcb7286e7c.xml +2228 -0
  53. package/skills/shortcuts-playground/golden-shortcuts/xml/807525ed9f974829bc8494defac923a8.xml +259 -0
  54. package/skills/shortcuts-playground/golden-shortcuts/xml/8ab0d39826ab4249be58672763caa3ba.xml +420 -0
  55. package/skills/shortcuts-playground/golden-shortcuts/xml/91c45fd3fd3b427897d9ba485efb1227.xml +800 -0
  56. package/skills/shortcuts-playground/golden-shortcuts/xml/97be626bb25c41709d175646a7f6d8f2.xml +424 -0
  57. package/skills/shortcuts-playground/golden-shortcuts/xml/ae59e10d409348f9bd33894f03f9beb4.xml +568 -0
  58. package/skills/shortcuts-playground/golden-shortcuts/xml/afa83b6be811483b9c32189c41eb9312.xml +391 -0
  59. package/skills/shortcuts-playground/golden-shortcuts/xml/cfdb083b857e4ac189629fa386d27cdc.xml +193 -0
  60. package/skills/shortcuts-playground/golden-shortcuts/xml/e01cebe192d64b2fbca80204d03d92ab.xml +111 -0
  61. package/skills/shortcuts-playground/golden-shortcuts/xml/ef669bcf8bad489d9ef4b88bfaf5772f.xml +780 -0
  62. package/skills/shortcuts-playground/golden-shortcuts/xml/f44f5caf5e3e48d4817e73af450c4404.xml +570 -0
  63. package/skills/shortcuts-playground/scripts/generate_healthkit_reference.py +394 -0
  64. package/skills/shortcuts-playground/scripts/lookup_action_grounding.py +1164 -0
  65. package/skills/shortcuts-playground/scripts/select_shortcut_icon_color.py +597 -0
  66. package/skills/shortcuts-playground/scripts/test_random_mixed_shortcuts.py +1067 -0
  67. package/skills/shortcuts-playground/scripts/test_wiring_regressions.py +2247 -0
  68. package/skills/shortcuts-playground/scripts/validate_shortcut.py +4526 -0
@@ -0,0 +1,1924 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>WFWorkflowActions</key>
6
+ <array>
7
+ <dict>
8
+ <key>WFWorkflowActionIdentifier</key>
9
+ <string>is.workflow.actions.comment</string>
10
+ <key>WFWorkflowActionParameters</key>
11
+ <dict>
12
+ <key>WFCommentActionText</key>
13
+ <string>Clip any kind of text contained in the system clipboard to a Clipboard.txt file stored in iCloud Drive. This shortcut is designed to allow you to keep a record of previously copied bits of text and easily sync them across devices. The shortcut can be executed from the widget, and it also supports rich text and URLs.</string>
14
+ </dict>
15
+ </dict>
16
+ <dict>
17
+ <key>WFWorkflowActionIdentifier</key>
18
+ <string>is.workflow.actions.comment</string>
19
+ <key>WFWorkflowActionParameters</key>
20
+ <dict>
21
+ <key>WFCommentActionText</key>
22
+ <string>Created for a Shortcuts reference archive.
23
+
24
+ https://www.macstories.net/shortcuts</string>
25
+ </dict>
26
+ </dict>
27
+ <dict>
28
+ <key>WFWorkflowActionIdentifier</key>
29
+ <string>is.workflow.actions.count</string>
30
+ <key>WFWorkflowActionParameters</key>
31
+ <dict>
32
+ <key>UUID</key>
33
+ <string>E5571204-4FD3-492F-8992-3E1F6352CE1D</string>
34
+ <key>WFCountType</key>
35
+ <string>Items</string>
36
+ </dict>
37
+ </dict>
38
+ <dict>
39
+ <key>WFWorkflowActionIdentifier</key>
40
+ <string>is.workflow.actions.conditional</string>
41
+ <key>WFWorkflowActionParameters</key>
42
+ <dict>
43
+ <key>GroupingIdentifier</key>
44
+ <string>99C16E4C-486A-4232-A8DB-3E8F99177E5D</string>
45
+ <key>WFCondition</key>
46
+ <string>Equals</string>
47
+ <key>WFConditionalActionString</key>
48
+ <string>0</string>
49
+ <key>WFControlFlowMode</key>
50
+ <integer>0</integer>
51
+ </dict>
52
+ </dict>
53
+ <dict>
54
+ <key>WFWorkflowActionIdentifier</key>
55
+ <string>is.workflow.actions.comment</string>
56
+ <key>WFWorkflowActionParameters</key>
57
+ <dict>
58
+ <key>WFCommentActionText</key>
59
+ <string>If the input is empty, the workflow wasn't run as action extension, so the contents of the clipboard are fetched instead.</string>
60
+ </dict>
61
+ </dict>
62
+ <dict>
63
+ <key>WFWorkflowActionIdentifier</key>
64
+ <string>is.workflow.actions.getclipboard</string>
65
+ <key>WFWorkflowActionParameters</key>
66
+ <dict>
67
+ <key>UUID</key>
68
+ <string>3C80EF39-979A-424D-B985-828F1C3301C4</string>
69
+ </dict>
70
+ </dict>
71
+ <dict>
72
+ <key>WFWorkflowActionIdentifier</key>
73
+ <string>is.workflow.actions.alert</string>
74
+ <key>WFWorkflowActionParameters</key>
75
+ <dict>
76
+ <key>WFAlertActionMessage</key>
77
+ <dict>
78
+ <key>Value</key>
79
+ <dict>
80
+ <key>attachmentsByRange</key>
81
+ <dict>
82
+ <key>{0, 1}</key>
83
+ <dict>
84
+ <key>OutputName</key>
85
+ <string>Clipboard</string>
86
+ <key>OutputUUID</key>
87
+ <string>3C80EF39-979A-424D-B985-828F1C3301C4</string>
88
+ <key>Type</key>
89
+ <string>ActionOutput</string>
90
+ </dict>
91
+ </dict>
92
+ <key>string</key>
93
+ <string></string>
94
+ </dict>
95
+ <key>WFSerializationType</key>
96
+ <string>WFTextTokenString</string>
97
+ </dict>
98
+ <key>WFAlertActionTitle</key>
99
+ <string>Saving Clipboard</string>
100
+ </dict>
101
+ </dict>
102
+ <dict>
103
+ <key>WFWorkflowActionIdentifier</key>
104
+ <string>is.workflow.actions.conditional</string>
105
+ <key>WFWorkflowActionParameters</key>
106
+ <dict>
107
+ <key>GroupingIdentifier</key>
108
+ <string>99C16E4C-486A-4232-A8DB-3E8F99177E5D</string>
109
+ <key>WFControlFlowMode</key>
110
+ <integer>1</integer>
111
+ </dict>
112
+ </dict>
113
+ <dict>
114
+ <key>WFWorkflowActionIdentifier</key>
115
+ <string>is.workflow.actions.getvariable</string>
116
+ <key>WFWorkflowActionParameters</key>
117
+ <dict>
118
+ <key>WFVariable</key>
119
+ <dict>
120
+ <key>Value</key>
121
+ <dict>
122
+ <key>Type</key>
123
+ <string>ExtensionInput</string>
124
+ </dict>
125
+ <key>WFSerializationType</key>
126
+ <string>WFTextTokenAttachment</string>
127
+ </dict>
128
+ </dict>
129
+ </dict>
130
+ <dict>
131
+ <key>WFWorkflowActionIdentifier</key>
132
+ <string>is.workflow.actions.conditional</string>
133
+ <key>WFWorkflowActionParameters</key>
134
+ <dict>
135
+ <key>GroupingIdentifier</key>
136
+ <string>99C16E4C-486A-4232-A8DB-3E8F99177E5D</string>
137
+ <key>UUID</key>
138
+ <string>C1F533FE-2E3D-4D04-8D5E-E5B9C983A49C</string>
139
+ <key>WFControlFlowMode</key>
140
+ <integer>2</integer>
141
+ </dict>
142
+ </dict>
143
+ <dict>
144
+ <key>WFWorkflowActionIdentifier</key>
145
+ <string>is.workflow.actions.setvariable</string>
146
+ <key>WFWorkflowActionParameters</key>
147
+ <dict>
148
+ <key>WFVariableName</key>
149
+ <string>Process Input</string>
150
+ </dict>
151
+ </dict>
152
+ <dict>
153
+ <key>WFWorkflowActionIdentifier</key>
154
+ <string>is.workflow.actions.getitemtype</string>
155
+ <key>WFWorkflowActionParameters</key>
156
+ <dict>
157
+ <key>UUID</key>
158
+ <string>52ADBC47-B99E-4E88-9928-5CB1C7ACFBC6</string>
159
+ </dict>
160
+ </dict>
161
+ <dict>
162
+ <key>WFWorkflowActionIdentifier</key>
163
+ <string>is.workflow.actions.number</string>
164
+ <key>WFWorkflowActionParameters</key>
165
+ <dict>
166
+ <key>UUID</key>
167
+ <string>AF3461D1-0A20-465B-81D1-AA36D3FB666E</string>
168
+ <key>WFNumberActionNumber</key>
169
+ <real>10</real>
170
+ </dict>
171
+ </dict>
172
+ <dict>
173
+ <key>WFWorkflowActionIdentifier</key>
174
+ <string>is.workflow.actions.comment</string>
175
+ <key>WFWorkflowActionParameters</key>
176
+ <dict>
177
+ <key>WFCommentActionText</key>
178
+ <string>Set the number of lines to keep in the Clipboard.txt file.</string>
179
+ </dict>
180
+ </dict>
181
+ <dict>
182
+ <key>WFWorkflowActionIdentifier</key>
183
+ <string>is.workflow.actions.documentpicker.open</string>
184
+ <key>WFWorkflowActionParameters</key>
185
+ <dict>
186
+ <key>UUID</key>
187
+ <string>F0516081-B0B6-4742-BB38-AA78331A2B2F</string>
188
+ <key>WFFileErrorIfNotFound</key>
189
+ <false/>
190
+ <key>WFGetFilePath</key>
191
+ <string>Clipboard.txt</string>
192
+ <key>WFShowFilePicker</key>
193
+ <false/>
194
+ </dict>
195
+ </dict>
196
+ <dict>
197
+ <key>WFWorkflowActionIdentifier</key>
198
+ <string>is.workflow.actions.count</string>
199
+ <key>WFWorkflowActionParameters</key>
200
+ <dict>
201
+ <key>UUID</key>
202
+ <string>D10ACCA6-41A4-4F80-B5AD-AE7FAA03DD96</string>
203
+ <key>WFCountType</key>
204
+ <string>Items</string>
205
+ </dict>
206
+ </dict>
207
+ <dict>
208
+ <key>WFWorkflowActionIdentifier</key>
209
+ <string>is.workflow.actions.conditional</string>
210
+ <key>WFWorkflowActionParameters</key>
211
+ <dict>
212
+ <key>GroupingIdentifier</key>
213
+ <string>5FFEEA66-30BC-415A-A0D0-00F76563477B</string>
214
+ <key>WFCondition</key>
215
+ <string>Equals</string>
216
+ <key>WFConditionalActionString</key>
217
+ <string>0</string>
218
+ <key>WFControlFlowMode</key>
219
+ <integer>0</integer>
220
+ </dict>
221
+ </dict>
222
+ <dict>
223
+ <key>WFWorkflowActionIdentifier</key>
224
+ <string>is.workflow.actions.comment</string>
225
+ <key>WFWorkflowActionParameters</key>
226
+ <dict>
227
+ <key>WFCommentActionText</key>
228
+ <string>If Clipboard.txt doesn't exist in iCloud Drive, create it as an empty file.</string>
229
+ </dict>
230
+ </dict>
231
+ <dict>
232
+ <key>WFWorkflowActionIdentifier</key>
233
+ <string>is.workflow.actions.gettext</string>
234
+ <key>WFWorkflowActionParameters</key>
235
+ <dict>
236
+ <key>UUID</key>
237
+ <string>B7992DDF-3C0F-4AE0-B6BB-EFBEEE439068</string>
238
+ </dict>
239
+ </dict>
240
+ <dict>
241
+ <key>WFWorkflowActionIdentifier</key>
242
+ <string>is.workflow.actions.setitemname</string>
243
+ <key>WFWorkflowActionParameters</key>
244
+ <dict>
245
+ <key>UUID</key>
246
+ <string>80ECDE6E-9948-43F9-86D3-BBA989EBD08C</string>
247
+ <key>WFName</key>
248
+ <string>Clipboard.txt</string>
249
+ </dict>
250
+ </dict>
251
+ <dict>
252
+ <key>WFWorkflowActionIdentifier</key>
253
+ <string>is.workflow.actions.documentpicker.save</string>
254
+ <key>WFWorkflowActionParameters</key>
255
+ <dict>
256
+ <key>WFAskWhereToSave</key>
257
+ <false/>
258
+ <key>WFSaveFileOverwrite</key>
259
+ <true/>
260
+ </dict>
261
+ </dict>
262
+ <dict>
263
+ <key>WFWorkflowActionIdentifier</key>
264
+ <string>is.workflow.actions.conditional</string>
265
+ <key>WFWorkflowActionParameters</key>
266
+ <dict>
267
+ <key>GroupingIdentifier</key>
268
+ <string>5FFEEA66-30BC-415A-A0D0-00F76563477B</string>
269
+ <key>WFControlFlowMode</key>
270
+ <integer>1</integer>
271
+ </dict>
272
+ </dict>
273
+ <dict>
274
+ <key>WFWorkflowActionIdentifier</key>
275
+ <string>is.workflow.actions.nothing</string>
276
+ <key>WFWorkflowActionParameters</key>
277
+ <dict/>
278
+ </dict>
279
+ <dict>
280
+ <key>WFWorkflowActionIdentifier</key>
281
+ <string>is.workflow.actions.conditional</string>
282
+ <key>WFWorkflowActionParameters</key>
283
+ <dict>
284
+ <key>GroupingIdentifier</key>
285
+ <string>5FFEEA66-30BC-415A-A0D0-00F76563477B</string>
286
+ <key>UUID</key>
287
+ <string>94ACD12F-2D3E-44FD-9F2C-22CB2532C876</string>
288
+ <key>WFControlFlowMode</key>
289
+ <integer>2</integer>
290
+ </dict>
291
+ </dict>
292
+ <dict>
293
+ <key>WFWorkflowActionIdentifier</key>
294
+ <string>is.workflow.actions.comment</string>
295
+ <key>WFWorkflowActionParameters</key>
296
+ <dict>
297
+ <key>WFCommentActionText</key>
298
+ <string>Begin checking for common content types captured by the action extension.</string>
299
+ </dict>
300
+ </dict>
301
+ <dict>
302
+ <key>WFWorkflowActionIdentifier</key>
303
+ <string>is.workflow.actions.getvariable</string>
304
+ <key>WFWorkflowActionParameters</key>
305
+ <dict>
306
+ <key>WFVariable</key>
307
+ <dict>
308
+ <key>Value</key>
309
+ <dict>
310
+ <key>OutputName</key>
311
+ <string>Type</string>
312
+ <key>OutputUUID</key>
313
+ <string>52ADBC47-B99E-4E88-9928-5CB1C7ACFBC6</string>
314
+ <key>Type</key>
315
+ <string>ActionOutput</string>
316
+ </dict>
317
+ <key>WFSerializationType</key>
318
+ <string>WFTextTokenAttachment</string>
319
+ </dict>
320
+ </dict>
321
+ </dict>
322
+ <dict>
323
+ <key>WFWorkflowActionIdentifier</key>
324
+ <string>is.workflow.actions.conditional</string>
325
+ <key>WFWorkflowActionParameters</key>
326
+ <dict>
327
+ <key>GroupingIdentifier</key>
328
+ <string>957FA95B-CD21-408D-A0C7-80AE3C8503BE</string>
329
+ <key>WFConditionalActionString</key>
330
+ <string>Safari</string>
331
+ <key>WFControlFlowMode</key>
332
+ <integer>0</integer>
333
+ </dict>
334
+ </dict>
335
+ <dict>
336
+ <key>WFWorkflowActionIdentifier</key>
337
+ <string>is.workflow.actions.gettext</string>
338
+ <key>WFWorkflowActionParameters</key>
339
+ <dict>
340
+ <key>UUID</key>
341
+ <string>04D53F45-8444-4030-8004-22404C76A5C6</string>
342
+ <key>WFTextActionText</key>
343
+ <dict>
344
+ <key>Value</key>
345
+ <dict>
346
+ <key>attachmentsByRange</key>
347
+ <dict>
348
+ <key>{0, 1}</key>
349
+ <dict>
350
+ <key>Aggrandizements</key>
351
+ <array>
352
+ <dict>
353
+ <key>CoercionItemClass</key>
354
+ <string>WFSafariWebPageContentItem</string>
355
+ <key>Type</key>
356
+ <string>WFCoercionVariableAggrandizement</string>
357
+ </dict>
358
+ <dict>
359
+ <key>PropertyName</key>
360
+ <string>Name</string>
361
+ <key>PropertyUserInfo</key>
362
+ <string>WFItemName</string>
363
+ <key>Type</key>
364
+ <string>WFPropertyVariableAggrandizement</string>
365
+ </dict>
366
+ </array>
367
+ <key>Type</key>
368
+ <string>Variable</string>
369
+ <key>VariableName</key>
370
+ <string>Process Input</string>
371
+ </dict>
372
+ <key>{2, 1}</key>
373
+ <dict>
374
+ <key>Aggrandizements</key>
375
+ <array>
376
+ <dict>
377
+ <key>CoercionItemClass</key>
378
+ <string>WFSafariWebPageContentItem</string>
379
+ <key>Type</key>
380
+ <string>WFCoercionVariableAggrandizement</string>
381
+ </dict>
382
+ <dict>
383
+ <key>PropertyName</key>
384
+ <string>Page URL</string>
385
+ <key>Type</key>
386
+ <string>WFPropertyVariableAggrandizement</string>
387
+ </dict>
388
+ </array>
389
+ <key>Type</key>
390
+ <string>Variable</string>
391
+ <key>VariableName</key>
392
+ <string>Process Input</string>
393
+ </dict>
394
+ </dict>
395
+ <key>string</key>
396
+ <string> </string>
397
+ </dict>
398
+ <key>WFSerializationType</key>
399
+ <string>WFTextTokenString</string>
400
+ </dict>
401
+ </dict>
402
+ </dict>
403
+ <dict>
404
+ <key>WFWorkflowActionIdentifier</key>
405
+ <string>is.workflow.actions.conditional</string>
406
+ <key>WFWorkflowActionParameters</key>
407
+ <dict>
408
+ <key>GroupingIdentifier</key>
409
+ <string>957FA95B-CD21-408D-A0C7-80AE3C8503BE</string>
410
+ <key>WFControlFlowMode</key>
411
+ <integer>1</integer>
412
+ </dict>
413
+ </dict>
414
+ <dict>
415
+ <key>WFWorkflowActionIdentifier</key>
416
+ <string>is.workflow.actions.conditional</string>
417
+ <key>WFWorkflowActionParameters</key>
418
+ <dict>
419
+ <key>GroupingIdentifier</key>
420
+ <string>D3AEF25B-6C34-492D-AEF9-6A8313FA0887</string>
421
+ <key>WFConditionalActionString</key>
422
+ <string>vCard</string>
423
+ <key>WFControlFlowMode</key>
424
+ <integer>0</integer>
425
+ </dict>
426
+ </dict>
427
+ <dict>
428
+ <key>WFWorkflowActionIdentifier</key>
429
+ <string>is.workflow.actions.gettext</string>
430
+ <key>WFWorkflowActionParameters</key>
431
+ <dict>
432
+ <key>UUID</key>
433
+ <string>9A24103D-5F91-4D6E-AEFC-0290E7E28E3C</string>
434
+ <key>WFTextActionText</key>
435
+ <dict>
436
+ <key>Value</key>
437
+ <dict>
438
+ <key>attachmentsByRange</key>
439
+ <dict>
440
+ <key>{0, 1}</key>
441
+ <dict>
442
+ <key>Aggrandizements</key>
443
+ <array>
444
+ <dict>
445
+ <key>CoercionItemClass</key>
446
+ <string>WFLocationContentItem</string>
447
+ <key>Type</key>
448
+ <string>WFCoercionVariableAggrandizement</string>
449
+ </dict>
450
+ </array>
451
+ <key>Type</key>
452
+ <string>Variable</string>
453
+ <key>VariableName</key>
454
+ <string>Process Input</string>
455
+ </dict>
456
+ <key>{2, 1}</key>
457
+ <dict>
458
+ <key>Aggrandizements</key>
459
+ <array>
460
+ <dict>
461
+ <key>CoercionItemClass</key>
462
+ <string>WFLocationContentItem</string>
463
+ <key>Type</key>
464
+ <string>WFCoercionVariableAggrandizement</string>
465
+ </dict>
466
+ <dict>
467
+ <key>PropertyName</key>
468
+ <string>URL</string>
469
+ <key>Type</key>
470
+ <string>WFPropertyVariableAggrandizement</string>
471
+ </dict>
472
+ </array>
473
+ <key>Type</key>
474
+ <string>Variable</string>
475
+ <key>VariableName</key>
476
+ <string>Process Input</string>
477
+ </dict>
478
+ </dict>
479
+ <key>string</key>
480
+ <string> </string>
481
+ </dict>
482
+ <key>WFSerializationType</key>
483
+ <string>WFTextTokenString</string>
484
+ </dict>
485
+ </dict>
486
+ </dict>
487
+ <dict>
488
+ <key>WFWorkflowActionIdentifier</key>
489
+ <string>is.workflow.actions.conditional</string>
490
+ <key>WFWorkflowActionParameters</key>
491
+ <dict>
492
+ <key>GroupingIdentifier</key>
493
+ <string>D3AEF25B-6C34-492D-AEF9-6A8313FA0887</string>
494
+ <key>WFControlFlowMode</key>
495
+ <integer>1</integer>
496
+ </dict>
497
+ </dict>
498
+ <dict>
499
+ <key>WFWorkflowActionIdentifier</key>
500
+ <string>is.workflow.actions.conditional</string>
501
+ <key>WFWorkflowActionParameters</key>
502
+ <dict>
503
+ <key>GroupingIdentifier</key>
504
+ <string>F6872E14-32BD-421D-8072-8A40F059C016</string>
505
+ <key>WFCondition</key>
506
+ <string>Equals</string>
507
+ <key>WFConditionalActionString</key>
508
+ <string>URL</string>
509
+ <key>WFControlFlowMode</key>
510
+ <integer>0</integer>
511
+ </dict>
512
+ </dict>
513
+ <dict>
514
+ <key>WFWorkflowActionIdentifier</key>
515
+ <string>is.workflow.actions.getvariable</string>
516
+ <key>WFWorkflowActionParameters</key>
517
+ <dict>
518
+ <key>WFVariable</key>
519
+ <dict>
520
+ <key>Value</key>
521
+ <dict>
522
+ <key>Type</key>
523
+ <string>Variable</string>
524
+ <key>VariableName</key>
525
+ <string>Process Input</string>
526
+ </dict>
527
+ <key>WFSerializationType</key>
528
+ <string>WFTextTokenAttachment</string>
529
+ </dict>
530
+ </dict>
531
+ </dict>
532
+ <dict>
533
+ <key>WFWorkflowActionIdentifier</key>
534
+ <string>is.workflow.actions.detect.link</string>
535
+ <key>WFWorkflowActionParameters</key>
536
+ <dict>
537
+ <key>UUID</key>
538
+ <string>AA8435E8-5686-4F3F-B6FC-C19C8F381CEB</string>
539
+ </dict>
540
+ </dict>
541
+ <dict>
542
+ <key>WFWorkflowActionIdentifier</key>
543
+ <string>is.workflow.actions.count</string>
544
+ <key>WFWorkflowActionParameters</key>
545
+ <dict>
546
+ <key>UUID</key>
547
+ <string>783DAED4-35A9-43A4-9700-0405392429B9</string>
548
+ <key>WFCountType</key>
549
+ <string>Items</string>
550
+ </dict>
551
+ </dict>
552
+ <dict>
553
+ <key>WFWorkflowActionIdentifier</key>
554
+ <string>is.workflow.actions.conditional</string>
555
+ <key>WFWorkflowActionParameters</key>
556
+ <dict>
557
+ <key>GroupingIdentifier</key>
558
+ <string>5C325CB9-C1B5-4FC8-9360-2E8C77320C44</string>
559
+ <key>WFCondition</key>
560
+ <string>Is Greater Than</string>
561
+ <key>WFControlFlowMode</key>
562
+ <integer>0</integer>
563
+ <key>WFNumberValue</key>
564
+ <real>1</real>
565
+ </dict>
566
+ </dict>
567
+ <dict>
568
+ <key>WFWorkflowActionIdentifier</key>
569
+ <string>is.workflow.actions.getvariable</string>
570
+ <key>WFWorkflowActionParameters</key>
571
+ <dict>
572
+ <key>WFVariable</key>
573
+ <dict>
574
+ <key>Value</key>
575
+ <dict>
576
+ <key>OutputName</key>
577
+ <string>URLs</string>
578
+ <key>OutputUUID</key>
579
+ <string>AA8435E8-5686-4F3F-B6FC-C19C8F381CEB</string>
580
+ <key>Type</key>
581
+ <string>ActionOutput</string>
582
+ </dict>
583
+ <key>WFSerializationType</key>
584
+ <string>WFTextTokenAttachment</string>
585
+ </dict>
586
+ </dict>
587
+ </dict>
588
+ <dict>
589
+ <key>WFWorkflowActionIdentifier</key>
590
+ <string>is.workflow.actions.choosefromlist</string>
591
+ <key>WFWorkflowActionParameters</key>
592
+ <dict>
593
+ <key>UUID</key>
594
+ <string>26B21818-5259-4221-AD7B-94E2E9CDFDCB</string>
595
+ <key>WFChooseFromListActionPrompt</key>
596
+ <string>Pick Only 1 URL</string>
597
+ </dict>
598
+ </dict>
599
+ <dict>
600
+ <key>WFWorkflowActionIdentifier</key>
601
+ <string>is.workflow.actions.conditional</string>
602
+ <key>WFWorkflowActionParameters</key>
603
+ <dict>
604
+ <key>GroupingIdentifier</key>
605
+ <string>5C325CB9-C1B5-4FC8-9360-2E8C77320C44</string>
606
+ <key>WFControlFlowMode</key>
607
+ <integer>1</integer>
608
+ </dict>
609
+ </dict>
610
+ <dict>
611
+ <key>WFWorkflowActionIdentifier</key>
612
+ <string>is.workflow.actions.getvariable</string>
613
+ <key>WFWorkflowActionParameters</key>
614
+ <dict>
615
+ <key>WFVariable</key>
616
+ <dict>
617
+ <key>Value</key>
618
+ <dict>
619
+ <key>OutputName</key>
620
+ <string>URLs</string>
621
+ <key>OutputUUID</key>
622
+ <string>AA8435E8-5686-4F3F-B6FC-C19C8F381CEB</string>
623
+ <key>Type</key>
624
+ <string>ActionOutput</string>
625
+ </dict>
626
+ <key>WFSerializationType</key>
627
+ <string>WFTextTokenAttachment</string>
628
+ </dict>
629
+ </dict>
630
+ </dict>
631
+ <dict>
632
+ <key>WFWorkflowActionIdentifier</key>
633
+ <string>is.workflow.actions.getitemfromlist</string>
634
+ <key>WFWorkflowActionParameters</key>
635
+ <dict>
636
+ <key>UUID</key>
637
+ <string>8CC32082-0100-4162-95B7-D72BFEE9A63D</string>
638
+ </dict>
639
+ </dict>
640
+ <dict>
641
+ <key>WFWorkflowActionIdentifier</key>
642
+ <string>is.workflow.actions.conditional</string>
643
+ <key>WFWorkflowActionParameters</key>
644
+ <dict>
645
+ <key>GroupingIdentifier</key>
646
+ <string>5C325CB9-C1B5-4FC8-9360-2E8C77320C44</string>
647
+ <key>UUID</key>
648
+ <string>EC20242A-3BB3-439C-97DF-42DB87EC0C4D</string>
649
+ <key>WFControlFlowMode</key>
650
+ <integer>2</integer>
651
+ </dict>
652
+ </dict>
653
+ <dict>
654
+ <key>WFWorkflowActionIdentifier</key>
655
+ <string>is.workflow.actions.conditional</string>
656
+ <key>WFWorkflowActionParameters</key>
657
+ <dict>
658
+ <key>GroupingIdentifier</key>
659
+ <string>19010A50-BD75-4D4F-9B56-7EAEF6595F43</string>
660
+ <key>WFConditionalActionString</key>
661
+ <string>itun.es</string>
662
+ <key>WFControlFlowMode</key>
663
+ <integer>0</integer>
664
+ </dict>
665
+ </dict>
666
+ <dict>
667
+ <key>WFWorkflowActionIdentifier</key>
668
+ <string>is.workflow.actions.url.expand</string>
669
+ <key>WFWorkflowActionParameters</key>
670
+ <dict>
671
+ <key>UUID</key>
672
+ <string>A4F730F6-C53E-4B8E-9D6A-28C9DC70F197</string>
673
+ </dict>
674
+ </dict>
675
+ <dict>
676
+ <key>WFWorkflowActionIdentifier</key>
677
+ <string>is.workflow.actions.gettext</string>
678
+ <key>WFWorkflowActionParameters</key>
679
+ <dict>
680
+ <key>UUID</key>
681
+ <string>BA358D8A-E308-4665-B10D-A0F5EDED5E6E</string>
682
+ <key>WFTextActionText</key>
683
+ <dict>
684
+ <key>Value</key>
685
+ <dict>
686
+ <key>attachmentsByRange</key>
687
+ <dict>
688
+ <key>{0, 1}</key>
689
+ <dict>
690
+ <key>Aggrandizements</key>
691
+ <array>
692
+ <dict>
693
+ <key>CoercionItemClass</key>
694
+ <string>WFiTunesProductContentItem</string>
695
+ <key>Type</key>
696
+ <string>WFCoercionVariableAggrandizement</string>
697
+ </dict>
698
+ <dict>
699
+ <key>PropertyName</key>
700
+ <string>Name</string>
701
+ <key>PropertyUserInfo</key>
702
+ <string>WFItemName</string>
703
+ <key>Type</key>
704
+ <string>WFPropertyVariableAggrandizement</string>
705
+ </dict>
706
+ </array>
707
+ <key>OutputName</key>
708
+ <string>Expanded URL</string>
709
+ <key>OutputUUID</key>
710
+ <string>A4F730F6-C53E-4B8E-9D6A-28C9DC70F197</string>
711
+ <key>Type</key>
712
+ <string>ActionOutput</string>
713
+ </dict>
714
+ <key>{2, 1}</key>
715
+ <dict>
716
+ <key>Aggrandizements</key>
717
+ <array>
718
+ <dict>
719
+ <key>CoercionItemClass</key>
720
+ <string>WFiTunesProductContentItem</string>
721
+ <key>Type</key>
722
+ <string>WFCoercionVariableAggrandizement</string>
723
+ </dict>
724
+ <dict>
725
+ <key>PropertyName</key>
726
+ <string>Store URL</string>
727
+ <key>Type</key>
728
+ <string>WFPropertyVariableAggrandizement</string>
729
+ </dict>
730
+ </array>
731
+ <key>OutputName</key>
732
+ <string>Expanded URL</string>
733
+ <key>OutputUUID</key>
734
+ <string>A4F730F6-C53E-4B8E-9D6A-28C9DC70F197</string>
735
+ <key>Type</key>
736
+ <string>ActionOutput</string>
737
+ </dict>
738
+ </dict>
739
+ <key>string</key>
740
+ <string> </string>
741
+ </dict>
742
+ <key>WFSerializationType</key>
743
+ <string>WFTextTokenString</string>
744
+ </dict>
745
+ </dict>
746
+ </dict>
747
+ <dict>
748
+ <key>WFWorkflowActionIdentifier</key>
749
+ <string>is.workflow.actions.conditional</string>
750
+ <key>WFWorkflowActionParameters</key>
751
+ <dict>
752
+ <key>GroupingIdentifier</key>
753
+ <string>19010A50-BD75-4D4F-9B56-7EAEF6595F43</string>
754
+ <key>WFControlFlowMode</key>
755
+ <integer>1</integer>
756
+ </dict>
757
+ </dict>
758
+ <dict>
759
+ <key>WFWorkflowActionIdentifier</key>
760
+ <string>is.workflow.actions.conditional</string>
761
+ <key>WFWorkflowActionParameters</key>
762
+ <dict>
763
+ <key>GroupingIdentifier</key>
764
+ <string>C0011027-8730-466C-B4DE-21B00E06F194</string>
765
+ <key>WFConditionalActionString</key>
766
+ <string>appsto.re</string>
767
+ <key>WFControlFlowMode</key>
768
+ <integer>0</integer>
769
+ </dict>
770
+ </dict>
771
+ <dict>
772
+ <key>WFWorkflowActionIdentifier</key>
773
+ <string>is.workflow.actions.url.expand</string>
774
+ <key>WFWorkflowActionParameters</key>
775
+ <dict>
776
+ <key>UUID</key>
777
+ <string>A8099BC2-665B-47DE-BF4B-9CC787D32C44</string>
778
+ </dict>
779
+ </dict>
780
+ <dict>
781
+ <key>WFWorkflowActionIdentifier</key>
782
+ <string>is.workflow.actions.gettext</string>
783
+ <key>WFWorkflowActionParameters</key>
784
+ <dict>
785
+ <key>UUID</key>
786
+ <string>374C4CC8-088D-4BDA-997D-2052020B91CB</string>
787
+ <key>WFTextActionText</key>
788
+ <dict>
789
+ <key>Value</key>
790
+ <dict>
791
+ <key>attachmentsByRange</key>
792
+ <dict>
793
+ <key>{0, 1}</key>
794
+ <dict>
795
+ <key>Aggrandizements</key>
796
+ <array>
797
+ <dict>
798
+ <key>CoercionItemClass</key>
799
+ <string>WFAppStoreAppContentItem</string>
800
+ <key>Type</key>
801
+ <string>WFCoercionVariableAggrandizement</string>
802
+ </dict>
803
+ <dict>
804
+ <key>PropertyName</key>
805
+ <string>Name</string>
806
+ <key>PropertyUserInfo</key>
807
+ <string>WFItemName</string>
808
+ <key>Type</key>
809
+ <string>WFPropertyVariableAggrandizement</string>
810
+ </dict>
811
+ </array>
812
+ <key>OutputName</key>
813
+ <string>Expanded URL</string>
814
+ <key>OutputUUID</key>
815
+ <string>A8099BC2-665B-47DE-BF4B-9CC787D32C44</string>
816
+ <key>Type</key>
817
+ <string>ActionOutput</string>
818
+ </dict>
819
+ <key>{2, 1}</key>
820
+ <dict>
821
+ <key>Aggrandizements</key>
822
+ <array>
823
+ <dict>
824
+ <key>CoercionItemClass</key>
825
+ <string>WFAppStoreAppContentItem</string>
826
+ <key>Type</key>
827
+ <string>WFCoercionVariableAggrandizement</string>
828
+ </dict>
829
+ <dict>
830
+ <key>PropertyName</key>
831
+ <string>Store URL</string>
832
+ <key>Type</key>
833
+ <string>WFPropertyVariableAggrandizement</string>
834
+ </dict>
835
+ </array>
836
+ <key>OutputName</key>
837
+ <string>Expanded URL</string>
838
+ <key>OutputUUID</key>
839
+ <string>A8099BC2-665B-47DE-BF4B-9CC787D32C44</string>
840
+ <key>Type</key>
841
+ <string>ActionOutput</string>
842
+ </dict>
843
+ </dict>
844
+ <key>string</key>
845
+ <string> </string>
846
+ </dict>
847
+ <key>WFSerializationType</key>
848
+ <string>WFTextTokenString</string>
849
+ </dict>
850
+ </dict>
851
+ </dict>
852
+ <dict>
853
+ <key>WFWorkflowActionIdentifier</key>
854
+ <string>is.workflow.actions.conditional</string>
855
+ <key>WFWorkflowActionParameters</key>
856
+ <dict>
857
+ <key>GroupingIdentifier</key>
858
+ <string>C0011027-8730-466C-B4DE-21B00E06F194</string>
859
+ <key>WFControlFlowMode</key>
860
+ <integer>1</integer>
861
+ </dict>
862
+ </dict>
863
+ <dict>
864
+ <key>WFWorkflowActionIdentifier</key>
865
+ <string>is.workflow.actions.getvariable</string>
866
+ <key>WFWorkflowActionParameters</key>
867
+ <dict>
868
+ <key>WFVariable</key>
869
+ <dict>
870
+ <key>Value</key>
871
+ <dict>
872
+ <key>Type</key>
873
+ <string>Variable</string>
874
+ <key>VariableName</key>
875
+ <string>Process Input</string>
876
+ </dict>
877
+ <key>WFSerializationType</key>
878
+ <string>WFTextTokenAttachment</string>
879
+ </dict>
880
+ </dict>
881
+ </dict>
882
+ <dict>
883
+ <key>WFWorkflowActionIdentifier</key>
884
+ <string>is.workflow.actions.detect.link</string>
885
+ <key>WFWorkflowActionParameters</key>
886
+ <dict>
887
+ <key>UUID</key>
888
+ <string>F573118B-1B92-4335-9EB5-ACD0BCB98804</string>
889
+ </dict>
890
+ </dict>
891
+ <dict>
892
+ <key>WFWorkflowActionIdentifier</key>
893
+ <string>is.workflow.actions.count</string>
894
+ <key>WFWorkflowActionParameters</key>
895
+ <dict>
896
+ <key>UUID</key>
897
+ <string>97BFC240-D77D-4849-BA44-F0EF17F91AEC</string>
898
+ <key>WFCountType</key>
899
+ <string>Items</string>
900
+ </dict>
901
+ </dict>
902
+ <dict>
903
+ <key>WFWorkflowActionIdentifier</key>
904
+ <string>is.workflow.actions.conditional</string>
905
+ <key>WFWorkflowActionParameters</key>
906
+ <dict>
907
+ <key>GroupingIdentifier</key>
908
+ <string>2A2778F6-A48D-4277-A522-5C7398474209</string>
909
+ <key>WFCondition</key>
910
+ <string>Is Greater Than</string>
911
+ <key>WFControlFlowMode</key>
912
+ <integer>0</integer>
913
+ <key>WFNumberValue</key>
914
+ <real>0.0</real>
915
+ </dict>
916
+ </dict>
917
+ <dict>
918
+ <key>WFWorkflowActionIdentifier</key>
919
+ <string>is.workflow.actions.getvariable</string>
920
+ <key>WFWorkflowActionParameters</key>
921
+ <dict>
922
+ <key>WFVariable</key>
923
+ <dict>
924
+ <key>Value</key>
925
+ <dict>
926
+ <key>OutputName</key>
927
+ <string>URLs</string>
928
+ <key>OutputUUID</key>
929
+ <string>F573118B-1B92-4335-9EB5-ACD0BCB98804</string>
930
+ <key>Type</key>
931
+ <string>ActionOutput</string>
932
+ </dict>
933
+ <key>WFSerializationType</key>
934
+ <string>WFTextTokenAttachment</string>
935
+ </dict>
936
+ </dict>
937
+ </dict>
938
+ <dict>
939
+ <key>WFWorkflowActionIdentifier</key>
940
+ <string>is.workflow.actions.url.expand</string>
941
+ <key>WFWorkflowActionParameters</key>
942
+ <dict>
943
+ <key>UUID</key>
944
+ <string>5299D89D-04A7-4C60-B9D4-E764F8D63ACB</string>
945
+ </dict>
946
+ </dict>
947
+ <dict>
948
+ <key>WFWorkflowActionIdentifier</key>
949
+ <string>is.workflow.actions.getitemname</string>
950
+ <key>WFWorkflowActionParameters</key>
951
+ <dict>
952
+ <key>UUID</key>
953
+ <string>778AEB4E-5042-4F5D-BCB1-F383468FBDA1</string>
954
+ </dict>
955
+ </dict>
956
+ <dict>
957
+ <key>WFWorkflowActionIdentifier</key>
958
+ <string>is.workflow.actions.gettext</string>
959
+ <key>WFWorkflowActionParameters</key>
960
+ <dict>
961
+ <key>UUID</key>
962
+ <string>F20C2D83-A931-46FF-8F69-92CC6D5A02E3</string>
963
+ <key>WFTextActionText</key>
964
+ <dict>
965
+ <key>Value</key>
966
+ <dict>
967
+ <key>attachmentsByRange</key>
968
+ <dict>
969
+ <key>{0, 1}</key>
970
+ <dict>
971
+ <key>OutputName</key>
972
+ <string>Name</string>
973
+ <key>OutputUUID</key>
974
+ <string>778AEB4E-5042-4F5D-BCB1-F383468FBDA1</string>
975
+ <key>Type</key>
976
+ <string>ActionOutput</string>
977
+ </dict>
978
+ <key>{2, 1}</key>
979
+ <dict>
980
+ <key>OutputName</key>
981
+ <string>Expanded URL</string>
982
+ <key>OutputUUID</key>
983
+ <string>5299D89D-04A7-4C60-B9D4-E764F8D63ACB</string>
984
+ <key>Type</key>
985
+ <string>ActionOutput</string>
986
+ </dict>
987
+ </dict>
988
+ <key>string</key>
989
+ <string> </string>
990
+ </dict>
991
+ <key>WFSerializationType</key>
992
+ <string>WFTextTokenString</string>
993
+ </dict>
994
+ </dict>
995
+ </dict>
996
+ <dict>
997
+ <key>WFWorkflowActionIdentifier</key>
998
+ <string>is.workflow.actions.conditional</string>
999
+ <key>WFWorkflowActionParameters</key>
1000
+ <dict>
1001
+ <key>GroupingIdentifier</key>
1002
+ <string>2A2778F6-A48D-4277-A522-5C7398474209</string>
1003
+ <key>WFControlFlowMode</key>
1004
+ <integer>1</integer>
1005
+ </dict>
1006
+ </dict>
1007
+ <dict>
1008
+ <key>WFWorkflowActionIdentifier</key>
1009
+ <string>is.workflow.actions.conditional</string>
1010
+ <key>WFWorkflowActionParameters</key>
1011
+ <dict>
1012
+ <key>GroupingIdentifier</key>
1013
+ <string>2A2778F6-A48D-4277-A522-5C7398474209</string>
1014
+ <key>WFControlFlowMode</key>
1015
+ <integer>2</integer>
1016
+ </dict>
1017
+ </dict>
1018
+ <dict>
1019
+ <key>WFWorkflowActionIdentifier</key>
1020
+ <string>is.workflow.actions.conditional</string>
1021
+ <key>WFWorkflowActionParameters</key>
1022
+ <dict>
1023
+ <key>GroupingIdentifier</key>
1024
+ <string>C0011027-8730-466C-B4DE-21B00E06F194</string>
1025
+ <key>WFControlFlowMode</key>
1026
+ <integer>2</integer>
1027
+ </dict>
1028
+ </dict>
1029
+ <dict>
1030
+ <key>WFWorkflowActionIdentifier</key>
1031
+ <string>is.workflow.actions.conditional</string>
1032
+ <key>WFWorkflowActionParameters</key>
1033
+ <dict>
1034
+ <key>GroupingIdentifier</key>
1035
+ <string>19010A50-BD75-4D4F-9B56-7EAEF6595F43</string>
1036
+ <key>UUID</key>
1037
+ <string>7A92C8C5-F9B0-4352-BF54-2CAF0D743E26</string>
1038
+ <key>WFControlFlowMode</key>
1039
+ <integer>2</integer>
1040
+ </dict>
1041
+ </dict>
1042
+ <dict>
1043
+ <key>WFWorkflowActionIdentifier</key>
1044
+ <string>is.workflow.actions.conditional</string>
1045
+ <key>WFWorkflowActionParameters</key>
1046
+ <dict>
1047
+ <key>GroupingIdentifier</key>
1048
+ <string>F6872E14-32BD-421D-8072-8A40F059C016</string>
1049
+ <key>WFControlFlowMode</key>
1050
+ <integer>1</integer>
1051
+ </dict>
1052
+ </dict>
1053
+ <dict>
1054
+ <key>WFWorkflowActionIdentifier</key>
1055
+ <string>is.workflow.actions.conditional</string>
1056
+ <key>WFWorkflowActionParameters</key>
1057
+ <dict>
1058
+ <key>GroupingIdentifier</key>
1059
+ <string>66517286-3B71-4AC8-A056-D8132467D713</string>
1060
+ <key>WFConditionalActionString</key>
1061
+ <string>Rich</string>
1062
+ <key>WFControlFlowMode</key>
1063
+ <integer>0</integer>
1064
+ </dict>
1065
+ </dict>
1066
+ <dict>
1067
+ <key>WFWorkflowActionIdentifier</key>
1068
+ <string>is.workflow.actions.getvariable</string>
1069
+ <key>WFWorkflowActionParameters</key>
1070
+ <dict>
1071
+ <key>WFVariable</key>
1072
+ <dict>
1073
+ <key>Value</key>
1074
+ <dict>
1075
+ <key>Type</key>
1076
+ <string>Variable</string>
1077
+ <key>VariableName</key>
1078
+ <string>Process Input</string>
1079
+ </dict>
1080
+ <key>WFSerializationType</key>
1081
+ <string>WFTextTokenAttachment</string>
1082
+ </dict>
1083
+ </dict>
1084
+ </dict>
1085
+ <dict>
1086
+ <key>WFWorkflowActionIdentifier</key>
1087
+ <string>is.workflow.actions.getmarkdownfromrichtext</string>
1088
+ <key>WFWorkflowActionParameters</key>
1089
+ <dict>
1090
+ <key>UUID</key>
1091
+ <string>CBBFF701-63BF-44BC-977E-79A2845E61C1</string>
1092
+ </dict>
1093
+ </dict>
1094
+ <dict>
1095
+ <key>WFWorkflowActionIdentifier</key>
1096
+ <string>is.workflow.actions.text.split</string>
1097
+ <key>WFWorkflowActionParameters</key>
1098
+ <dict>
1099
+ <key>UUID</key>
1100
+ <string>F137F325-9269-4D1C-9122-9D4CE2E9237E</string>
1101
+ </dict>
1102
+ </dict>
1103
+ <dict>
1104
+ <key>WFWorkflowActionIdentifier</key>
1105
+ <string>is.workflow.actions.text.combine</string>
1106
+ <key>WFWorkflowActionParameters</key>
1107
+ <dict>
1108
+ <key>UUID</key>
1109
+ <string>E7746212-B19A-4F29-A90D-B9C3E4390ED8</string>
1110
+ <key>WFTextCustomSeparator</key>
1111
+ <string>--\n--</string>
1112
+ <key>WFTextSeparator</key>
1113
+ <string>Custom</string>
1114
+ </dict>
1115
+ </dict>
1116
+ <dict>
1117
+ <key>WFWorkflowActionIdentifier</key>
1118
+ <string>is.workflow.actions.conditional</string>
1119
+ <key>WFWorkflowActionParameters</key>
1120
+ <dict>
1121
+ <key>GroupingIdentifier</key>
1122
+ <string>66517286-3B71-4AC8-A056-D8132467D713</string>
1123
+ <key>WFControlFlowMode</key>
1124
+ <integer>1</integer>
1125
+ </dict>
1126
+ </dict>
1127
+ <dict>
1128
+ <key>WFWorkflowActionIdentifier</key>
1129
+ <string>is.workflow.actions.conditional</string>
1130
+ <key>WFWorkflowActionParameters</key>
1131
+ <dict>
1132
+ <key>GroupingIdentifier</key>
1133
+ <string>D164ADE2-C58F-4553-B65F-3FF24DC52B96</string>
1134
+ <key>WFCondition</key>
1135
+ <string>Equals</string>
1136
+ <key>WFConditionalActionString</key>
1137
+ <string>Text</string>
1138
+ <key>WFControlFlowMode</key>
1139
+ <integer>0</integer>
1140
+ </dict>
1141
+ </dict>
1142
+ <dict>
1143
+ <key>WFWorkflowActionIdentifier</key>
1144
+ <string>is.workflow.actions.getvariable</string>
1145
+ <key>WFWorkflowActionParameters</key>
1146
+ <dict>
1147
+ <key>WFVariable</key>
1148
+ <dict>
1149
+ <key>Value</key>
1150
+ <dict>
1151
+ <key>Type</key>
1152
+ <string>Variable</string>
1153
+ <key>VariableName</key>
1154
+ <string>Process Input</string>
1155
+ </dict>
1156
+ <key>WFSerializationType</key>
1157
+ <string>WFTextTokenAttachment</string>
1158
+ </dict>
1159
+ </dict>
1160
+ </dict>
1161
+ <dict>
1162
+ <key>WFWorkflowActionIdentifier</key>
1163
+ <string>is.workflow.actions.detect.link</string>
1164
+ <key>WFWorkflowActionParameters</key>
1165
+ <dict>
1166
+ <key>UUID</key>
1167
+ <string>C471FCB0-487E-40E0-BD28-07FAA4B9BDB2</string>
1168
+ </dict>
1169
+ </dict>
1170
+ <dict>
1171
+ <key>WFWorkflowActionIdentifier</key>
1172
+ <string>is.workflow.actions.count</string>
1173
+ <key>WFWorkflowActionParameters</key>
1174
+ <dict>
1175
+ <key>UUID</key>
1176
+ <string>35DD2621-5184-4AF2-9B1C-D7CC00447881</string>
1177
+ <key>WFCountType</key>
1178
+ <string>Items</string>
1179
+ </dict>
1180
+ </dict>
1181
+ <dict>
1182
+ <key>WFWorkflowActionIdentifier</key>
1183
+ <string>is.workflow.actions.conditional</string>
1184
+ <key>WFWorkflowActionParameters</key>
1185
+ <dict>
1186
+ <key>GroupingIdentifier</key>
1187
+ <string>229285D3-36EF-4A23-8892-78D2E6D84E10</string>
1188
+ <key>WFCondition</key>
1189
+ <string>Is Greater Than</string>
1190
+ <key>WFControlFlowMode</key>
1191
+ <integer>0</integer>
1192
+ <key>WFNumberValue</key>
1193
+ <real>0.0</real>
1194
+ </dict>
1195
+ </dict>
1196
+ <dict>
1197
+ <key>WFWorkflowActionIdentifier</key>
1198
+ <string>is.workflow.actions.choosefrommenu</string>
1199
+ <key>WFWorkflowActionParameters</key>
1200
+ <dict>
1201
+ <key>GroupingIdentifier</key>
1202
+ <string>DD9A4ABC-45AA-4459-ACD7-D0139C54BF52</string>
1203
+ <key>WFControlFlowMode</key>
1204
+ <integer>0</integer>
1205
+ <key>WFMenuItems</key>
1206
+ <array>
1207
+ <string>Save Entire Text</string>
1208
+ <string>Only Extract Link</string>
1209
+ </array>
1210
+ <key>WFMenuPrompt</key>
1211
+ <string>Save Text or Extract Link?</string>
1212
+ </dict>
1213
+ </dict>
1214
+ <dict>
1215
+ <key>WFWorkflowActionIdentifier</key>
1216
+ <string>is.workflow.actions.choosefrommenu</string>
1217
+ <key>WFWorkflowActionParameters</key>
1218
+ <dict>
1219
+ <key>GroupingIdentifier</key>
1220
+ <string>DD9A4ABC-45AA-4459-ACD7-D0139C54BF52</string>
1221
+ <key>WFControlFlowMode</key>
1222
+ <integer>1</integer>
1223
+ <key>WFMenuItemTitle</key>
1224
+ <string>Save Entire Text</string>
1225
+ </dict>
1226
+ </dict>
1227
+ <dict>
1228
+ <key>WFWorkflowActionIdentifier</key>
1229
+ <string>is.workflow.actions.getvariable</string>
1230
+ <key>WFWorkflowActionParameters</key>
1231
+ <dict>
1232
+ <key>WFVariable</key>
1233
+ <dict>
1234
+ <key>Value</key>
1235
+ <dict>
1236
+ <key>Type</key>
1237
+ <string>Variable</string>
1238
+ <key>VariableName</key>
1239
+ <string>Process Input</string>
1240
+ </dict>
1241
+ <key>WFSerializationType</key>
1242
+ <string>WFTextTokenAttachment</string>
1243
+ </dict>
1244
+ </dict>
1245
+ </dict>
1246
+ <dict>
1247
+ <key>WFWorkflowActionIdentifier</key>
1248
+ <string>is.workflow.actions.detect.text</string>
1249
+ <key>WFWorkflowActionParameters</key>
1250
+ <dict>
1251
+ <key>UUID</key>
1252
+ <string>0EEC73A9-6210-4C2B-9507-A3299AF884DB</string>
1253
+ </dict>
1254
+ </dict>
1255
+ <dict>
1256
+ <key>WFWorkflowActionIdentifier</key>
1257
+ <string>is.workflow.actions.text.split</string>
1258
+ <key>WFWorkflowActionParameters</key>
1259
+ <dict>
1260
+ <key>UUID</key>
1261
+ <string>076DAC60-DD42-44B3-8219-667B6B068573</string>
1262
+ </dict>
1263
+ </dict>
1264
+ <dict>
1265
+ <key>WFWorkflowActionIdentifier</key>
1266
+ <string>is.workflow.actions.text.combine</string>
1267
+ <key>WFWorkflowActionParameters</key>
1268
+ <dict>
1269
+ <key>UUID</key>
1270
+ <string>CF318F00-BA02-4EA6-8313-257DAF16D505</string>
1271
+ <key>WFTextCustomSeparator</key>
1272
+ <string>--\n--</string>
1273
+ <key>WFTextSeparator</key>
1274
+ <string>Custom</string>
1275
+ </dict>
1276
+ </dict>
1277
+ <dict>
1278
+ <key>WFWorkflowActionIdentifier</key>
1279
+ <string>is.workflow.actions.choosefrommenu</string>
1280
+ <key>WFWorkflowActionParameters</key>
1281
+ <dict>
1282
+ <key>GroupingIdentifier</key>
1283
+ <string>DD9A4ABC-45AA-4459-ACD7-D0139C54BF52</string>
1284
+ <key>WFControlFlowMode</key>
1285
+ <integer>1</integer>
1286
+ <key>WFMenuItemTitle</key>
1287
+ <string>Only Extract Link</string>
1288
+ </dict>
1289
+ </dict>
1290
+ <dict>
1291
+ <key>WFWorkflowActionIdentifier</key>
1292
+ <string>is.workflow.actions.getvariable</string>
1293
+ <key>WFWorkflowActionParameters</key>
1294
+ <dict>
1295
+ <key>WFVariable</key>
1296
+ <dict>
1297
+ <key>Value</key>
1298
+ <dict>
1299
+ <key>OutputName</key>
1300
+ <string>URLs</string>
1301
+ <key>OutputUUID</key>
1302
+ <string>C471FCB0-487E-40E0-BD28-07FAA4B9BDB2</string>
1303
+ <key>Type</key>
1304
+ <string>ActionOutput</string>
1305
+ </dict>
1306
+ <key>WFSerializationType</key>
1307
+ <string>WFTextTokenAttachment</string>
1308
+ </dict>
1309
+ </dict>
1310
+ </dict>
1311
+ <dict>
1312
+ <key>WFWorkflowActionIdentifier</key>
1313
+ <string>is.workflow.actions.choosefromlist</string>
1314
+ <key>WFWorkflowActionParameters</key>
1315
+ <dict>
1316
+ <key>WFChooseFromListActionPrompt</key>
1317
+ <string>Choose a Link</string>
1318
+ </dict>
1319
+ </dict>
1320
+ <dict>
1321
+ <key>WFWorkflowActionIdentifier</key>
1322
+ <string>is.workflow.actions.url.expand</string>
1323
+ <key>WFWorkflowActionParameters</key>
1324
+ <dict>
1325
+ <key>UUID</key>
1326
+ <string>566B07BE-861D-45E9-856F-B0B1B91414DF</string>
1327
+ </dict>
1328
+ </dict>
1329
+ <dict>
1330
+ <key>WFWorkflowActionIdentifier</key>
1331
+ <string>is.workflow.actions.getitemname</string>
1332
+ <key>WFWorkflowActionParameters</key>
1333
+ <dict>
1334
+ <key>UUID</key>
1335
+ <string>CB97B21C-8598-4E49-824A-2FED22161EAF</string>
1336
+ </dict>
1337
+ </dict>
1338
+ <dict>
1339
+ <key>WFWorkflowActionIdentifier</key>
1340
+ <string>is.workflow.actions.gettext</string>
1341
+ <key>WFWorkflowActionParameters</key>
1342
+ <dict>
1343
+ <key>UUID</key>
1344
+ <string>E9EC650B-55C2-4B5E-9D5D-5C2613166669</string>
1345
+ <key>WFTextActionText</key>
1346
+ <dict>
1347
+ <key>Value</key>
1348
+ <dict>
1349
+ <key>attachmentsByRange</key>
1350
+ <dict>
1351
+ <key>{0, 1}</key>
1352
+ <dict>
1353
+ <key>OutputName</key>
1354
+ <string>Name</string>
1355
+ <key>OutputUUID</key>
1356
+ <string>CB97B21C-8598-4E49-824A-2FED22161EAF</string>
1357
+ <key>Type</key>
1358
+ <string>ActionOutput</string>
1359
+ </dict>
1360
+ <key>{2, 1}</key>
1361
+ <dict>
1362
+ <key>OutputName</key>
1363
+ <string>Expanded URL</string>
1364
+ <key>OutputUUID</key>
1365
+ <string>566B07BE-861D-45E9-856F-B0B1B91414DF</string>
1366
+ <key>Type</key>
1367
+ <string>ActionOutput</string>
1368
+ </dict>
1369
+ </dict>
1370
+ <key>string</key>
1371
+ <string> </string>
1372
+ </dict>
1373
+ <key>WFSerializationType</key>
1374
+ <string>WFTextTokenString</string>
1375
+ </dict>
1376
+ </dict>
1377
+ </dict>
1378
+ <dict>
1379
+ <key>WFWorkflowActionIdentifier</key>
1380
+ <string>is.workflow.actions.choosefrommenu</string>
1381
+ <key>WFWorkflowActionParameters</key>
1382
+ <dict>
1383
+ <key>GroupingIdentifier</key>
1384
+ <string>DD9A4ABC-45AA-4459-ACD7-D0139C54BF52</string>
1385
+ <key>UUID</key>
1386
+ <string>7DC2A0EF-D871-4923-83F9-49472DD61693</string>
1387
+ <key>WFControlFlowMode</key>
1388
+ <integer>2</integer>
1389
+ </dict>
1390
+ </dict>
1391
+ <dict>
1392
+ <key>WFWorkflowActionIdentifier</key>
1393
+ <string>is.workflow.actions.conditional</string>
1394
+ <key>WFWorkflowActionParameters</key>
1395
+ <dict>
1396
+ <key>GroupingIdentifier</key>
1397
+ <string>229285D3-36EF-4A23-8892-78D2E6D84E10</string>
1398
+ <key>WFControlFlowMode</key>
1399
+ <integer>1</integer>
1400
+ </dict>
1401
+ </dict>
1402
+ <dict>
1403
+ <key>WFWorkflowActionIdentifier</key>
1404
+ <string>is.workflow.actions.getvariable</string>
1405
+ <key>WFWorkflowActionParameters</key>
1406
+ <dict>
1407
+ <key>WFVariable</key>
1408
+ <dict>
1409
+ <key>Value</key>
1410
+ <dict>
1411
+ <key>Type</key>
1412
+ <string>Variable</string>
1413
+ <key>VariableName</key>
1414
+ <string>Process Input</string>
1415
+ </dict>
1416
+ <key>WFSerializationType</key>
1417
+ <string>WFTextTokenAttachment</string>
1418
+ </dict>
1419
+ </dict>
1420
+ </dict>
1421
+ <dict>
1422
+ <key>WFWorkflowActionIdentifier</key>
1423
+ <string>is.workflow.actions.detect.text</string>
1424
+ <key>WFWorkflowActionParameters</key>
1425
+ <dict>
1426
+ <key>UUID</key>
1427
+ <string>694B7C29-EE43-4499-A03F-9E19085F6774</string>
1428
+ </dict>
1429
+ </dict>
1430
+ <dict>
1431
+ <key>WFWorkflowActionIdentifier</key>
1432
+ <string>is.workflow.actions.text.split</string>
1433
+ <key>WFWorkflowActionParameters</key>
1434
+ <dict>
1435
+ <key>UUID</key>
1436
+ <string>630DF5AA-97D2-4952-BC99-04B676E15E96</string>
1437
+ </dict>
1438
+ </dict>
1439
+ <dict>
1440
+ <key>WFWorkflowActionIdentifier</key>
1441
+ <string>is.workflow.actions.text.combine</string>
1442
+ <key>WFWorkflowActionParameters</key>
1443
+ <dict>
1444
+ <key>WFTextCustomSeparator</key>
1445
+ <string>--\n--</string>
1446
+ <key>WFTextSeparator</key>
1447
+ <string>Custom</string>
1448
+ </dict>
1449
+ </dict>
1450
+ <dict>
1451
+ <key>WFWorkflowActionIdentifier</key>
1452
+ <string>is.workflow.actions.conditional</string>
1453
+ <key>WFWorkflowActionParameters</key>
1454
+ <dict>
1455
+ <key>GroupingIdentifier</key>
1456
+ <string>229285D3-36EF-4A23-8892-78D2E6D84E10</string>
1457
+ <key>WFControlFlowMode</key>
1458
+ <integer>2</integer>
1459
+ </dict>
1460
+ </dict>
1461
+ <dict>
1462
+ <key>WFWorkflowActionIdentifier</key>
1463
+ <string>is.workflow.actions.conditional</string>
1464
+ <key>WFWorkflowActionParameters</key>
1465
+ <dict>
1466
+ <key>GroupingIdentifier</key>
1467
+ <string>D164ADE2-C58F-4553-B65F-3FF24DC52B96</string>
1468
+ <key>WFControlFlowMode</key>
1469
+ <integer>1</integer>
1470
+ </dict>
1471
+ </dict>
1472
+ <dict>
1473
+ <key>WFWorkflowActionIdentifier</key>
1474
+ <string>is.workflow.actions.conditional</string>
1475
+ <key>WFWorkflowActionParameters</key>
1476
+ <dict>
1477
+ <key>GroupingIdentifier</key>
1478
+ <string>D164ADE2-C58F-4553-B65F-3FF24DC52B96</string>
1479
+ <key>WFControlFlowMode</key>
1480
+ <integer>2</integer>
1481
+ </dict>
1482
+ </dict>
1483
+ <dict>
1484
+ <key>WFWorkflowActionIdentifier</key>
1485
+ <string>is.workflow.actions.conditional</string>
1486
+ <key>WFWorkflowActionParameters</key>
1487
+ <dict>
1488
+ <key>GroupingIdentifier</key>
1489
+ <string>66517286-3B71-4AC8-A056-D8132467D713</string>
1490
+ <key>WFControlFlowMode</key>
1491
+ <integer>2</integer>
1492
+ </dict>
1493
+ </dict>
1494
+ <dict>
1495
+ <key>WFWorkflowActionIdentifier</key>
1496
+ <string>is.workflow.actions.conditional</string>
1497
+ <key>WFWorkflowActionParameters</key>
1498
+ <dict>
1499
+ <key>GroupingIdentifier</key>
1500
+ <string>F6872E14-32BD-421D-8072-8A40F059C016</string>
1501
+ <key>WFControlFlowMode</key>
1502
+ <integer>2</integer>
1503
+ </dict>
1504
+ </dict>
1505
+ <dict>
1506
+ <key>WFWorkflowActionIdentifier</key>
1507
+ <string>is.workflow.actions.conditional</string>
1508
+ <key>WFWorkflowActionParameters</key>
1509
+ <dict>
1510
+ <key>GroupingIdentifier</key>
1511
+ <string>D3AEF25B-6C34-492D-AEF9-6A8313FA0887</string>
1512
+ <key>WFControlFlowMode</key>
1513
+ <integer>2</integer>
1514
+ </dict>
1515
+ </dict>
1516
+ <dict>
1517
+ <key>WFWorkflowActionIdentifier</key>
1518
+ <string>is.workflow.actions.conditional</string>
1519
+ <key>WFWorkflowActionParameters</key>
1520
+ <dict>
1521
+ <key>GroupingIdentifier</key>
1522
+ <string>957FA95B-CD21-408D-A0C7-80AE3C8503BE</string>
1523
+ <key>UUID</key>
1524
+ <string>937E42F6-D484-4E0B-9AFF-DFDCD6F14BFD</string>
1525
+ <key>WFControlFlowMode</key>
1526
+ <integer>2</integer>
1527
+ </dict>
1528
+ </dict>
1529
+ <dict>
1530
+ <key>WFWorkflowActionIdentifier</key>
1531
+ <string>is.workflow.actions.setvariable</string>
1532
+ <key>WFWorkflowActionParameters</key>
1533
+ <dict>
1534
+ <key>WFVariableName</key>
1535
+ <string>New Item</string>
1536
+ </dict>
1537
+ </dict>
1538
+ <dict>
1539
+ <key>WFWorkflowActionIdentifier</key>
1540
+ <string>is.workflow.actions.documentpicker.open</string>
1541
+ <key>WFWorkflowActionParameters</key>
1542
+ <dict>
1543
+ <key>UUID</key>
1544
+ <string>67CF876F-4F25-45AC-95F6-DF9DF45F1A75</string>
1545
+ <key>WFFileErrorIfNotFound</key>
1546
+ <true/>
1547
+ <key>WFGetFilePath</key>
1548
+ <string>Clipboard.txt</string>
1549
+ <key>WFShowFilePicker</key>
1550
+ <false/>
1551
+ </dict>
1552
+ </dict>
1553
+ <dict>
1554
+ <key>WFWorkflowActionIdentifier</key>
1555
+ <string>is.workflow.actions.count</string>
1556
+ <key>WFWorkflowActionParameters</key>
1557
+ <dict>
1558
+ <key>UUID</key>
1559
+ <string>5B09CF5A-4C60-47AF-9CF9-7E20C429CF63</string>
1560
+ <key>WFCountType</key>
1561
+ <string>Lines</string>
1562
+ </dict>
1563
+ </dict>
1564
+ <dict>
1565
+ <key>WFWorkflowActionIdentifier</key>
1566
+ <string>is.workflow.actions.conditional</string>
1567
+ <key>WFWorkflowActionParameters</key>
1568
+ <dict>
1569
+ <key>GroupingIdentifier</key>
1570
+ <string>7A17D8A1-099D-4CA3-8032-E808F7713748</string>
1571
+ <key>WFCondition</key>
1572
+ <string>Equals</string>
1573
+ <key>WFConditionalActionString</key>
1574
+ <dict>
1575
+ <key>Value</key>
1576
+ <dict>
1577
+ <key>attachmentsByRange</key>
1578
+ <dict>
1579
+ <key>{0, 1}</key>
1580
+ <dict>
1581
+ <key>OutputName</key>
1582
+ <string>Number</string>
1583
+ <key>OutputUUID</key>
1584
+ <string>AF3461D1-0A20-465B-81D1-AA36D3FB666E</string>
1585
+ <key>Type</key>
1586
+ <string>ActionOutput</string>
1587
+ </dict>
1588
+ </dict>
1589
+ <key>string</key>
1590
+ <string></string>
1591
+ </dict>
1592
+ <key>WFSerializationType</key>
1593
+ <string>WFTextTokenString</string>
1594
+ </dict>
1595
+ <key>WFControlFlowMode</key>
1596
+ <integer>0</integer>
1597
+ <key>WFNumberValue</key>
1598
+ <real>2</real>
1599
+ </dict>
1600
+ </dict>
1601
+ <dict>
1602
+ <key>WFWorkflowActionIdentifier</key>
1603
+ <string>is.workflow.actions.number</string>
1604
+ <key>WFWorkflowActionParameters</key>
1605
+ <dict>
1606
+ <key>WFNumberActionNumber</key>
1607
+ <dict>
1608
+ <key>Value</key>
1609
+ <dict>
1610
+ <key>OutputName</key>
1611
+ <string>Number</string>
1612
+ <key>OutputUUID</key>
1613
+ <string>AF3461D1-0A20-465B-81D1-AA36D3FB666E</string>
1614
+ <key>Type</key>
1615
+ <string>ActionOutput</string>
1616
+ </dict>
1617
+ <key>WFSerializationType</key>
1618
+ <string>WFTextTokenAttachment</string>
1619
+ </dict>
1620
+ </dict>
1621
+ </dict>
1622
+ <dict>
1623
+ <key>WFWorkflowActionIdentifier</key>
1624
+ <string>is.workflow.actions.math</string>
1625
+ <key>WFWorkflowActionParameters</key>
1626
+ <dict>
1627
+ <key>UUID</key>
1628
+ <string>16B28731-7D52-48F3-87DF-2A1668C4D20E</string>
1629
+ <key>WFMathOperand</key>
1630
+ <real>1</real>
1631
+ <key>WFMathOperation</key>
1632
+ <string>-</string>
1633
+ </dict>
1634
+ </dict>
1635
+ <dict>
1636
+ <key>WFWorkflowActionIdentifier</key>
1637
+ <string>is.workflow.actions.repeat.count</string>
1638
+ <key>WFWorkflowActionParameters</key>
1639
+ <dict>
1640
+ <key>GroupingIdentifier</key>
1641
+ <string>5181B878-D084-4F31-BC88-76CDBB3F2869</string>
1642
+ <key>WFControlFlowMode</key>
1643
+ <integer>0</integer>
1644
+ <key>WFRepeatCount</key>
1645
+ <dict>
1646
+ <key>Value</key>
1647
+ <dict>
1648
+ <key>OutputName</key>
1649
+ <string>Calculate</string>
1650
+ <key>OutputUUID</key>
1651
+ <string>16B28731-7D52-48F3-87DF-2A1668C4D20E</string>
1652
+ <key>Type</key>
1653
+ <string>ActionOutput</string>
1654
+ </dict>
1655
+ <key>WFSerializationType</key>
1656
+ <string>WFTextTokenAttachment</string>
1657
+ </dict>
1658
+ </dict>
1659
+ </dict>
1660
+ <dict>
1661
+ <key>WFWorkflowActionIdentifier</key>
1662
+ <string>is.workflow.actions.getvariable</string>
1663
+ <key>WFWorkflowActionParameters</key>
1664
+ <dict>
1665
+ <key>WFVariable</key>
1666
+ <dict>
1667
+ <key>Value</key>
1668
+ <dict>
1669
+ <key>OutputName</key>
1670
+ <string>File</string>
1671
+ <key>OutputUUID</key>
1672
+ <string>67CF876F-4F25-45AC-95F6-DF9DF45F1A75</string>
1673
+ <key>Type</key>
1674
+ <string>ActionOutput</string>
1675
+ </dict>
1676
+ <key>WFSerializationType</key>
1677
+ <string>WFTextTokenAttachment</string>
1678
+ </dict>
1679
+ </dict>
1680
+ </dict>
1681
+ <dict>
1682
+ <key>WFWorkflowActionIdentifier</key>
1683
+ <string>is.workflow.actions.text.split</string>
1684
+ <key>WFWorkflowActionParameters</key>
1685
+ <dict>
1686
+ <key>UUID</key>
1687
+ <string>326966D4-381F-4953-9996-82D16345D082</string>
1688
+ </dict>
1689
+ </dict>
1690
+ <dict>
1691
+ <key>WFWorkflowActionIdentifier</key>
1692
+ <string>is.workflow.actions.getitemfromlist</string>
1693
+ <key>WFWorkflowActionParameters</key>
1694
+ <dict>
1695
+ <key>UUID</key>
1696
+ <string>E04F38E0-8020-468E-9A93-22E452544AFA</string>
1697
+ <key>WFItemIndex</key>
1698
+ <dict>
1699
+ <key>Value</key>
1700
+ <dict>
1701
+ <key>Type</key>
1702
+ <string>Variable</string>
1703
+ <key>VariableName</key>
1704
+ <string>Repeat Index</string>
1705
+ </dict>
1706
+ <key>WFSerializationType</key>
1707
+ <string>WFTextTokenAttachment</string>
1708
+ </dict>
1709
+ <key>WFItemSpecifier</key>
1710
+ <string>Item At Index</string>
1711
+ </dict>
1712
+ </dict>
1713
+ <dict>
1714
+ <key>WFWorkflowActionIdentifier</key>
1715
+ <string>is.workflow.actions.appendvariable</string>
1716
+ <key>WFWorkflowActionParameters</key>
1717
+ <dict>
1718
+ <key>WFVariableName</key>
1719
+ <string>Processed</string>
1720
+ </dict>
1721
+ </dict>
1722
+ <dict>
1723
+ <key>WFWorkflowActionIdentifier</key>
1724
+ <string>is.workflow.actions.repeat.count</string>
1725
+ <key>WFWorkflowActionParameters</key>
1726
+ <dict>
1727
+ <key>GroupingIdentifier</key>
1728
+ <string>5181B878-D084-4F31-BC88-76CDBB3F2869</string>
1729
+ <key>UUID</key>
1730
+ <string>6B5876CB-A343-45E1-AB06-E9B72A39E099</string>
1731
+ <key>WFControlFlowMode</key>
1732
+ <integer>2</integer>
1733
+ </dict>
1734
+ </dict>
1735
+ <dict>
1736
+ <key>WFWorkflowActionIdentifier</key>
1737
+ <string>is.workflow.actions.gettext</string>
1738
+ <key>WFWorkflowActionParameters</key>
1739
+ <dict>
1740
+ <key>UUID</key>
1741
+ <string>D537E79F-65B9-4ED5-86FF-C20A2ED5B1D4</string>
1742
+ <key>WFTextActionText</key>
1743
+ <dict>
1744
+ <key>Value</key>
1745
+ <dict>
1746
+ <key>attachmentsByRange</key>
1747
+ <dict>
1748
+ <key>{0, 1}</key>
1749
+ <dict>
1750
+ <key>Type</key>
1751
+ <string>Variable</string>
1752
+ <key>VariableName</key>
1753
+ <string>New Item</string>
1754
+ </dict>
1755
+ <key>{2, 1}</key>
1756
+ <dict>
1757
+ <key>Type</key>
1758
+ <string>Variable</string>
1759
+ <key>VariableName</key>
1760
+ <string>Processed</string>
1761
+ </dict>
1762
+ </dict>
1763
+ <key>string</key>
1764
+ <string>
1765
+ </string>
1766
+ </dict>
1767
+ <key>WFSerializationType</key>
1768
+ <string>WFTextTokenString</string>
1769
+ </dict>
1770
+ </dict>
1771
+ </dict>
1772
+ <dict>
1773
+ <key>WFWorkflowActionIdentifier</key>
1774
+ <string>is.workflow.actions.conditional</string>
1775
+ <key>WFWorkflowActionParameters</key>
1776
+ <dict>
1777
+ <key>GroupingIdentifier</key>
1778
+ <string>7A17D8A1-099D-4CA3-8032-E808F7713748</string>
1779
+ <key>WFControlFlowMode</key>
1780
+ <integer>1</integer>
1781
+ </dict>
1782
+ </dict>
1783
+ <dict>
1784
+ <key>WFWorkflowActionIdentifier</key>
1785
+ <string>is.workflow.actions.gettext</string>
1786
+ <key>WFWorkflowActionParameters</key>
1787
+ <dict>
1788
+ <key>WFTextActionText</key>
1789
+ <dict>
1790
+ <key>Value</key>
1791
+ <dict>
1792
+ <key>attachmentsByRange</key>
1793
+ <dict>
1794
+ <key>{0, 1}</key>
1795
+ <dict>
1796
+ <key>Type</key>
1797
+ <string>Variable</string>
1798
+ <key>VariableName</key>
1799
+ <string>New Item</string>
1800
+ </dict>
1801
+ <key>{2, 1}</key>
1802
+ <dict>
1803
+ <key>Aggrandizements</key>
1804
+ <array>
1805
+ <dict>
1806
+ <key>CoercionItemClass</key>
1807
+ <string>WFStringContentItem</string>
1808
+ <key>Type</key>
1809
+ <string>WFCoercionVariableAggrandizement</string>
1810
+ </dict>
1811
+ </array>
1812
+ <key>OutputName</key>
1813
+ <string>File</string>
1814
+ <key>OutputUUID</key>
1815
+ <string>67CF876F-4F25-45AC-95F6-DF9DF45F1A75</string>
1816
+ <key>Type</key>
1817
+ <string>ActionOutput</string>
1818
+ </dict>
1819
+ </dict>
1820
+ <key>string</key>
1821
+ <string>
1822
+ </string>
1823
+ </dict>
1824
+ <key>WFSerializationType</key>
1825
+ <string>WFTextTokenString</string>
1826
+ </dict>
1827
+ </dict>
1828
+ </dict>
1829
+ <dict>
1830
+ <key>WFWorkflowActionIdentifier</key>
1831
+ <string>is.workflow.actions.conditional</string>
1832
+ <key>WFWorkflowActionParameters</key>
1833
+ <dict>
1834
+ <key>GroupingIdentifier</key>
1835
+ <string>7A17D8A1-099D-4CA3-8032-E808F7713748</string>
1836
+ <key>UUID</key>
1837
+ <string>0756EDFA-F624-4570-B5D5-09AD42D27417</string>
1838
+ <key>WFControlFlowMode</key>
1839
+ <integer>2</integer>
1840
+ </dict>
1841
+ </dict>
1842
+ <dict>
1843
+ <key>WFWorkflowActionIdentifier</key>
1844
+ <string>is.workflow.actions.setitemname</string>
1845
+ <key>WFWorkflowActionParameters</key>
1846
+ <dict>
1847
+ <key>UUID</key>
1848
+ <string>AA2C6A97-D383-4877-B9F9-2401BCF268D8</string>
1849
+ <key>WFName</key>
1850
+ <string>Clipboard.txt</string>
1851
+ </dict>
1852
+ </dict>
1853
+ <dict>
1854
+ <key>WFWorkflowActionIdentifier</key>
1855
+ <string>is.workflow.actions.documentpicker.save</string>
1856
+ <key>WFWorkflowActionParameters</key>
1857
+ <dict>
1858
+ <key>WFAskWhereToSave</key>
1859
+ <false/>
1860
+ <key>WFFileDestinationPath</key>
1861
+ <string></string>
1862
+ <key>WFSaveFileOverwrite</key>
1863
+ <true/>
1864
+ </dict>
1865
+ </dict>
1866
+ </array>
1867
+ <key>WFWorkflowClientRelease</key>
1868
+ <string>2.1.1</string>
1869
+ <key>WFWorkflowClientVersion</key>
1870
+ <string>736</string>
1871
+ <key>WFWorkflowIcon</key>
1872
+ <dict>
1873
+ <key>WFWorkflowIconGlyphNumber</key>
1874
+ <integer>59711</integer>
1875
+ <key>WFWorkflowIconImageData</key>
1876
+ <data>
1877
+ </data>
1878
+ <key>WFWorkflowIconStartColor</key>
1879
+ <integer>463140863</integer>
1880
+ </dict>
1881
+ <key>WFWorkflowImportQuestions</key>
1882
+ <array>
1883
+ <dict>
1884
+ <key>ActionIndex</key>
1885
+ <integer>12</integer>
1886
+ <key>Category</key>
1887
+ <string>Parameter</string>
1888
+ <key>DefaultValue</key>
1889
+ <real>10</real>
1890
+ <key>ParameterKey</key>
1891
+ <string>WFNumberActionNumber</string>
1892
+ <key>Text</key>
1893
+ <string>How many items to keep in your iCloud Drive clipboard history?</string>
1894
+ </dict>
1895
+ </array>
1896
+ <key>WFWorkflowInputContentItemClasses</key>
1897
+ <array>
1898
+ <string>WFAppStoreAppContentItem</string>
1899
+ <string>WFArticleContentItem</string>
1900
+ <string>WFContactContentItem</string>
1901
+ <string>WFDateContentItem</string>
1902
+ <string>WFEmailAddressContentItem</string>
1903
+ <string>WFGenericFileContentItem</string>
1904
+ <string>WFImageContentItem</string>
1905
+ <string>WFiTunesProductContentItem</string>
1906
+ <string>WFLocationContentItem</string>
1907
+ <string>WFDCMapsLinkContentItem</string>
1908
+ <string>WFAVAssetContentItem</string>
1909
+ <string>WFPDFContentItem</string>
1910
+ <string>WFPhoneNumberContentItem</string>
1911
+ <string>WFRichTextContentItem</string>
1912
+ <string>WFSafariWebPageContentItem</string>
1913
+ <string>WFStringContentItem</string>
1914
+ <string>WFURLContentItem</string>
1915
+ </array>
1916
+ <key>WFWorkflowMinimumClientVersion</key>
1917
+ <integer>411</integer>
1918
+ <key>WFWorkflowTypes</key>
1919
+ <array>
1920
+ <string>ActionExtension</string>
1921
+ <string>NCWidget</string>
1922
+ </array>
1923
+ </dict>
1924
+ </plist>