summaryrefslogtreecommitdiff
path: root/skel/.config/GIMP/2.10/pluginrc
blob: 052d871675c4c54d298bf95bc423f6e2b872b889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
# GIMP pluginrc
# 
# This file can safely be removed and will be automatically regenerated by
# querying the installed plug-ins.

(protocol-version 25)
(file-version 5)

(plug-in-def "${gimp_plug_in_dir}/plug-ins/spyro_plus/spyro_plus.py" 1562830519
    (proc-def "plug_in_spyrogimp" 1
         "Draw spyrographs using current tool settings and selection."
         "Uses current tool settings to draw Spyrograph patterns. The size and location of the pattern is based on the current selection."
         "Elad Shahar"
         "Elad Shahar"
         "2018"
         "Spyrogimp..."
         1
        (menu-path "<Image>/Filters/Render/")
        (icon icon-name -1 "")
         "*"
         16 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "curve-type" "The curve type { Spyrograph (0), Epitrochoid (1), Sine (2), Lissajous(3) }")
        (proc-arg 0 "shape" "Shape of fixed gear")
        (proc-arg 0 "sides" "Number of sides of fixed gear (3 or greater). Only used by some shapes.")
        (proc-arg 3 "morph" "Morph shape of fixed gear, between 0 and 1. Only used by some shapes.")
        (proc-arg 0 "fixed-teeth" "Number of teeth for fixed gear")
        (proc-arg 0 "moving-teeth" "Number of teeth for moving gear")
        (proc-arg 3 "hole-percent" "Location of hole in moving gear in percent, where 100 means that the hole is at the edge of the gear, and 0 means the hole is at the center")
        (proc-arg 0 "margin" "Margin from selection, in pixels")
        (proc-arg 0 "equal-w-h" "Make height and width equal (TRUE or FALSE)")
        (proc-arg 3 "pattern-rotation" "Pattern rotation, in degrees")
        (proc-arg 3 "shape-rotation" "Shape rotation of fixed gear, in degrees")
        (proc-arg 0 "tool" "Tool to use for drawing the pattern.")
        (proc-arg 0 "long-gradient" "Whether to apply a long gradient to match the length of the pattern (TRUE or FALSE). Only applicable to some of the tools."))
    (locale-def "gimp20-python" "${gimp_installation_dir}/share/locale"))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-dds/gimp-org-file-dds" 1562830804
    (proc-def "file-dds-load" 1
         "Loads files in DDS image format"
         "Loads files in DDS image format"
         "Shawn Kirst"
         "Shawn Kirst"
         "2008"
         "DDS image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "dds")
            (magics "0,string,DDS")
            (mime-types "image/dds"))
         ""
         5 1
        (proc-arg 0 "run-mode" "Interactive, non-interactive")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 0 "load-mipmaps" "Load mipmaps if present")
        (proc-arg 0 "decode-images" "Decode YCoCg/AExp images when detected")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-dds-save" 1
         "Saves files in DDS image format"
         "Saves files in DDS image format"
         "Shawn Kirst"
         "Shawn Kirst"
         "2008"
         "DDS image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "dds")
            (mime-types "image/dds"))
         "INDEXED, GRAY, RGB"
         18 0
        (proc-arg 0 "run-mode" "Interactive, non-interactive")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image as")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 0 "compression-format" "Compression format (0 = None, 1 = BC1/DXT1, 2 = BC2/DXT3, 3 = BC3/DXT5, 4 = BC3n/DXT5nm, 5 = BC4/ATI1N, 6 = BC5/ATI2N, 7 = RXGB (DXT5), 8 = Alpha Exponent (DXT5), 9 = YCoCg (DXT5), 10 = YCoCg scaled (DXT5))")
        (proc-arg 0 "mipmaps" "How to handle mipmaps (0 = No mipmaps, 1 = Generate mipmaps, 2 = Use existing mipmaps (layers)")
        (proc-arg 0 "savetype" "How to save the image (0 = selected layer, 1 = cube map, 2 = volume map, 3 = texture array")
        (proc-arg 0 "format" "Custom pixel format (0 = default, 1 = R5G6B5, 2 = RGBA4, 3 = RGB5A1, 4 = RGB10A2)")
        (proc-arg 0 "transparent-index" "Index of transparent color or -1 to disable (for indexed images only).")
        (proc-arg 0 "mipmap-filter" "Filtering to use when generating mipmaps (0 = default, 1 = nearest, 2 = box, 3 = triangle, 4 = quadratic, 5 = bspline, 6 = mitchell, 7 = lanczos, 8 = kaiser)")
        (proc-arg 0 "mipmap-wrap" "Wrap mode to use when generating mipmaps (0 = default, 1 = mirror, 2 = repeat, 3 = clamp)")
        (proc-arg 0 "gamma-correct" "Use gamma correct mipmap filtering")
        (proc-arg 0 "srgb" "Use sRGB colorspace for gamma correction")
        (proc-arg 3 "gamma" "Gamma value to use for gamma correction (i.e. 2.2)")
        (proc-arg 0 "perceptual-metric" "Use a perceptual error metric during compression")
        (proc-arg 0 "preserve-alpha-coverage" "Preserve alpha test converage for alpha channel maps")
        (proc-arg 3 "alpha-test-threshold" "Alpha test threshold value for which alpha test converage should be preserved"))
    (proc-def "color-decode-ycocg" 1
         "Converts YCoCg encoded pixels to RGB"
         "Converts YCoCg encoded pixels to RGB"
         "Shawn Kirst"
         "Shawn Kirst"
         "2008"
         "Decode YCoCg"
         0
        (icon icon-name -1 "")
         "RGBA"
         3 0
        (proc-arg 0 "run-mode" "Interactive, non-interactive")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save"))
    (proc-def "color-decode-ycocg-scaled" 1
         "Converts YCoCg (scaled) encoded pixels to RGB"
         "Converts YCoCg (scaled) encoded pixels to RGB"
         "Shawn Kirst"
         "Shawn Kirst"
         "2008"
         "Decode YCoCg (scaled)"
         0
        (icon icon-name -1 "")
         "RGBA"
         3 0
        (proc-arg 0 "run-mode" "Interactive, non-interactive")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save"))
    (proc-def "color-decode-alpha-exp" 1
         "Converts alpha exponent encoded pixels to RGB"
         "Converts alpha exponent encoded pixels to RGB"
         "Shawn Kirst"
         "Shawn Kirst"
         "2008"
         "Decode Alpha exponent"
         0
        (icon icon-name -1 "")
         "RGBA"
         3 0
        (proc-arg 0 "run-mode" "Interactive, non-interactive")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/python-eval/python-eval.py" 1562830519
    (proc-def "python-fu-eval" 1
         "Evaluate Python code"
         "Evaluate python code under the python interpreter (primarily for batch mode)"
         "Manish Singh"
         "Manish Singh"
         "2006"
         ""
         0
        (icon icon-name -1 "")
         ""
         2 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "code" "The code to evaluate")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/python-console/python-console.py" 1562830518
    (proc-def "python-fu-console" 1
         "Interactive GIMP Python interpreter"
         "Type in commands and see results"
         "James Henstridge"
         "James Henstridge"
         "1997-1999"
         "_Console"
         1
        (menu-path "<Image>/Filters/Languages/Python-Fu")
        (icon icon-name -1 "")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }"))
    (locale-def "gimp20-python" "${gimp_installation_dir}/share/locale"))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/py-slice/py-slice.py" 1562830519
    (proc-def "python-fu-slice" 1
         "Cuts an image along its guides, creates images and a HTML table snippet"
         "Add guides to an image. Then run this. It will cut along the guides,\n    and give you the html to reassemble the resulting images. If you\n    choose to generate javascript for onmouseover and clicked events, it\n    will use the lower three visible layers on the image for normal,\n    onmouseover and clicked states, in that order. If skip caps is\n    enabled, table cells on the edge of the table won't become animated,\n    and its images will be taken from the active layer."
         "Manish Singh"
         "Manish Singh"
         "2003"
         "_Slice..."
         1
        (menu-path "<Image>/Filters/Web")
        (icon icon-name -1 "")
         "*"
         12 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "save-path" "Path for HTML export")
        (proc-arg 4 "html-filename" "Filename for export")
        (proc-arg 4 "image-basename" "Image name prefix")
        (proc-arg 4 "image-extension" "Image format")
        (proc-arg 0 "separate-image-dir" "Separate image folder")
        (proc-arg 4 "relative-image-path" "Folder for image export")
        (proc-arg 0 "cellspacing" "Space between table elements")
        (proc-arg 0 "animate" "Javascript for onmouseover and clicked")
        (proc-arg 0 "skip-caps" "Skip animation for table caps"))
    (locale-def "gimp20-python" "${gimp_installation_dir}/share/locale"))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/palette-to-gradient/palette-to-gradient.py" 1562830519
    (proc-def "python-fu-palette-to-gradient" 1
         "Create a gradient using colors from the palette"
         "Create a new gradient using colors from the palette."
         "Carol Spears, reproduced from previous work by Adrian Likins and Jeff Trefftz"
         "Carol Spears"
         "2006"
         "Palette to _Gradient"
         1
        (menu-path "<Palettes>")
        (icon icon-name -1 "")
         ""
         2 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "palette" "Palette")
        (proc-arg 4 "new-gradient" "Result"))
    (proc-def "python-fu-palette-to-gradient-repeating" 1
         "Create a repeating gradient using colors from the palette"
         "Create a new repeating gradient using colors from the palette."
         "Carol Spears, reproduced from previous work by Adrian Likins and Jeff Trefftz"
         "Carol Spears"
         "2006"
         "Palette to _Repeating Gradient"
         1
        (menu-path "<Palettes>")
        (icon icon-name -1 "")
         ""
         2 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "palette" "Palette")
        (proc-arg 4 "new-gradient" "Result"))
    (locale-def "gimp20-python" "${gimp_installation_dir}/share/locale"))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/palette-sort/palette-sort.py" 1562830519
    (proc-def "python-fu-palette-sort" 1
         "Sort the colors in a palette"
         "palette_sort (palette, selection, slice_expr, channel,\nchannel2, quantize, ascending, pchannel, pquantize) -> new_palette\nSorts a palette, or part of a palette, using several options.\nOne can select two color channels over which to sort,\nand several auxiliary parameters create a 2D sorted\npalette with sorted rows, among other things.\nOne can optionally install colormath\n(https://pypi.python.org/pypi/colormath/1.0.8)\nto GIMP's Python to get even more channels to choose from.\n"
         "João S. O. Bueno, Carol Spears, David Gowers"
         "João S. O. Bueno, Carol Spears, David Gowers"
         "2006-2014"
         "_Sort Palette..."
         1
        (menu-path "<Palettes>")
        (icon icon-name -1 "")
         ""
         11 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "palette" "Palette")
        (proc-arg 0 "selections" "Selections")
        (proc-arg 4 "slice-expr" "Slice expression")
        (proc-arg 0 "channel1" "Channel to sort")
        (proc-arg 0 "ascending1" "Ascending")
        (proc-arg 0 "channel2" "Secondary Channel to sort")
        (proc-arg 0 "ascending2" "Ascending")
        (proc-arg 3 "quantize" "Quantization")
        (proc-arg 0 "pchannel" "Partitioning channel")
        (proc-arg 3 "pquantize" "Partition quantization"))
    (locale-def "gimp20-python" "${gimp_installation_dir}/share/locale"))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/palette-offset/palette-offset.py" 1562830519
    (proc-def "python-fu-palette-offset" 1
         "Offset the colors in a palette"
         "palette_offset (palette, amount) -> modified_palette"
         "Joao S. O. Bueno Calligaris, Carol Spears"
         "(c) Joao S. O. Bueno Calligaris"
         "2004, 2006"
         "_Offset Palette..."
         1
        (menu-path "<Palettes>")
        (icon icon-name -1 "")
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "palette" "Palette")
        (proc-arg 0 "amount" "Offset")
        (proc-arg 4 "new-palette" "Result"))
    (locale-def "gimp20-python" "${gimp_installation_dir}/share/locale"))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/histogram-export/histogram-export.py" 1562830519
    (proc-def "python-fu-histogram-export" 1
         "Exports the image histogram to a text file (CSV)"
         "\nExports the image histogram to a text file,\nso that it can be used by other programs\nand loaded into spreadsheets.\n\nThe resulting file is a CSV file (Comma Separated\nValues), which can be imported\ndirectly in most spreadsheet programs.\n\nThe first two collums are the bucket boundaries,\nfollowed by the selected columns. The histogram\nrefers to the selected image area, and\ncan use either Sample Average data or data\nfrom the current drawable only.;\n\nThe output is in \"weighted pixels\" - meaning\nall fully transparent pixels are not counted.\n\nCheck the gimp-histogram call\n"
         "João S. O. Bueno"
         "João S. O. Bueno, 2014"
         "2014"
         "_Export histogram..."
         1
        (menu-path "<Image>/Colors/Info")
        (icon icon-name -1 "")
         "*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "img" "Image")
        (proc-arg 16 "drw" "Drawable")
        (proc-arg 4 "filename" "Histogram File")
        (proc-arg 3 "bucket-size" "Bucket Size")
        (proc-arg 0 "sample-average" "Sample Average")
        (proc-arg 4 "output-format" "Output format"))
    (locale-def "gimp20-python" "${gimp_installation_dir}/share/locale"))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gradients-save-as-css/gradients-save-as-css.py" 1562830519
    (proc-def "python-fu-gradient-save-as-css" 1
         "Creates a new palette from a given gradient"
         "palette_from_gradient (gradient, number, segment_colors) -> None"
         "Joao S. O. Bueno"
         "(c) GPL V3.0 or later"
         "2011"
         "Save as CSS..."
         1
        (menu-path "<Gradients>")
        (icon icon-name -1 "")
         ""
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "gradient" "Gradient to use")
        (proc-arg 4 "file-name" "File Name"))
    (locale-def "gimp20-python" "${gimp_installation_dir}/share/locale"))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-web-browser/gimp-org-web-browser" 1562830810
    (proc-def "plug-in-web-browser" 1
         "Open an URL in the user specified web browser"
         "Opens the given URL in the user specified web browser."
         "Henrik Brix Andersen <brix@gimp.org>"
         "2003"
         "2003/09/16"
         ""
         0
        (icon icon-name -1 "")
         ""
         1 0
        (proc-arg 4 "url" "URL to open")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-wavelet-decompose/gimp-org-wavelet-decompose" 1562830809
    (proc-def "plug-in-wavelet-decompose" 1
         "Wavelet decompose"
         "Compute and render wavelet scales"
         "Miroslav Talasek <miroslav.talasek@seznam.cz>"
         "Miroslav Talasek <miroslav.talasek@seznam.cz>"
         "19january 2017"
         "_Wavelet-decompose..."
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon icon-name -1 "")
         "RGB*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "scales" "Number of scales (1-7)")
        (proc-arg 0 "create-group" "Create a layer group to store the decomposition")
        (proc-arg 0 "create-masks" "Add a layer mask to each scales layers")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-warp/gimp-org-warp" 1562830809
    (proc-def "plug-in-warp" 1
         "Twist or smear image in many different ways"
         "Smears an image along vector paths calculated as the gradient of a separate control matrix. The effect can look like brushstrokes of acrylic or watercolor paint, in some cases."
         "John P. Beale"
         "John P. Beale"
         "1997"
         "_Warp..."
         0
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         17 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "amount" "Pixel displacement multiplier")
        (proc-arg 16 "warp-map" "Displacement control map")
        (proc-arg 0 "iter" "Iteration count (last required argument)")
        (proc-arg 3 "dither" "Random dither amount (first optional argument)")
        (proc-arg 3 "angle" "Angle of gradient vector rotation")
        (proc-arg 0 "wrap-type" "Edge behavior: { WRAP (0), SMEAR (1), BLACK (2), COLOR (3) }")
        (proc-arg 16 "mag-map" "Magnitude control map")
        (proc-arg 0 "mag-use" "Use magnitude map: { FALSE (0), TRUE (1) }")
        (proc-arg 0 "substeps" "Substeps between image updates")
        (proc-arg 0 "grad-map" "Gradient control map")
        (proc-arg 3 "grad-scale" "Scaling factor for gradient map (0=don't use)")
        (proc-arg 0 "vector-map" "Fixed vector control map")
        (proc-arg 3 "vector-scale" "Scaling factor for fixed vector map (0=don't use)")
        (proc-arg 3 "vector-angle" "Angle for fixed vector map")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-van-gogh-lic/gimp-org-van-gogh-lic" 1562830809
    (proc-def "plug-in-lic" 1
         "Special effects that nobody understands"
         "No help yet"
         "Tom Bech & Federico Mena Quintero"
         "Tom Bech & Federico Mena Quintero"
         "Version 0.14, September 24 1997"
         "_Van Gogh (LIC)..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon icon-name -1 "")
         "RGB*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-unit-editor/gimp-org-unit-editor" 1562830809
    (proc-def "plug-in-unit-editor" 1
         "Create or alter units used in GIMP"
         "The GIMP unit editor"
         "Michael Natterer <mitch@gimp.org>"
         "Michael Natterer <mitch@gimp.org>"
         "2000"
         "U_nits"
         1
        (menu-path "<Image>/Edit/Preferences")
        (icon icon-name -1 "gimp-tool-measure")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-tile/gimp-org-tile" 1562830809
    (proc-def "plug-in-tile" 1
         "Create an array of copies of the image"
         "This function creates a new image with a single layer sized to the specified 'new_width' and 'new_height' parameters.  The specified drawable is tiled into this layer.  The new layer will have the same type as the specified drawable and the new image will have a corresponding base type."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1996-1997"
         "_Tile..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon icon-name -1 "")
         "RGB*, GRAY*, INDEXED*"
         6 2
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "new-width" "New (tiled) image width")
        (proc-arg 0 "new-height" "New (tiled) image height")
        (proc-arg 0 "new-image" "Create a new image?")
        (proc-arg 13 "new-image" "Output image (-1 if new-image == FALSE)")
        (proc-arg 14 "new-layer" "Output layer (-1 if new-image == FALSE)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-tile-small/gimp-org-tile-small" 1562830809
    (proc-def "plug-in-small-tiles" 1
         "Tile image into smaller versions of the original"
         "More here later"
         "Andy Thomas"
         "Andy Thomas"
         "1997"
         "_Small Tiles..."
         0
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "num-tiles" "Number of tiles to make")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-sphere-designer/gimp-org-sphere-designer" 1562830809
    (proc-def "plug-in-spheredesigner" 1
         "Create an image of a textured sphere"
         "This plug-in can be used to create textured and/or bumpmapped spheres, and uses a small lightweight raytracer to perform the task with good quality"
         "Vidar Madsen"
         "Vidar Madsen"
         "1999"
         "Sphere _Designer..."
         1
        (menu-path "<Image>/Filters/Render")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-sparkle/gimp-org-sparkle" 1562830809
    (proc-def "plug-in-sparkle" 1
         "Turn bright spots into starry sparkles"
         "Uses a percentage based luminoisty threhsold to find candidate pixels for adding some sparkles (spikes). "
         "John Beale, & (ported to GIMP v0.54) Michael J. Hammel & ted to GIMP v1.0) & Seth Burgess & Spencer Kimball"
         "John Beale"
         "Version 1.27, September 2003"
         "_Sparkle..."
         1
        (menu-path "<Image>/Filters/Light and Shadow/Light")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         16 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "lum-threshold" "Luminosity threshold (0.0 - 1.0)")
        (proc-arg 3 "flare-inten" "Flare intensity (0.0 - 1.0)")
        (proc-arg 0 "spike-len" "Spike length (in pixels)")
        (proc-arg 0 "spike-pts" "# of spike points")
        (proc-arg 0 "spike-angle" "Spike angle (0-360 degrees, -1: random)")
        (proc-arg 3 "density" "Spike density (0.0 - 1.0)")
        (proc-arg 3 "transparency" "Transparency (0.0 - 1.0)")
        (proc-arg 3 "random-hue" "Random hue (0.0 - 1.0)")
        (proc-arg 3 "random-saturation" "Random saturation (0.0 - 1.0)")
        (proc-arg 0 "preserve-luminosity" "Preserve luminosity (TRUE/FALSE)")
        (proc-arg 0 "inverse" "Inverse (TRUE/FALSE)")
        (proc-arg 0 "border" "Add border (TRUE/FALSE)")
        (proc-arg 0 "color-type" "Color of sparkles: { NATURAL (0), FOREGROUND (1), BACKGROUND (2) }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-softglow/gimp-org-softglow" 1562830809
    (proc-def "plug-in-softglow" 1
         "Simulate glow by making highlights intense and fuzzy"
         "Gives an image a softglow effect by intensifying the highlights in the image. This is done by screening a modified version of the drawable with itself. The modified version is desaturated and then a sigmoidal transfer function is applied to force the distribution of intensities into very small and very large only. This desaturated version is then blurred to give it a fuzzy 'vaseline-on-the-lens' effect. The glow radius parameter controls the sharpness of the glow effect. The brightness parameter controls the degree of intensification applied to image highlights. The sharpness parameter controls how defined or alternatively, diffuse, the glow effect should be."
         "Spencer Kimball"
         "Bit Specialists, Inc."
         "2001"
         "_Softglow (legacy)..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "glow-radius" "Glow radius (radius in pixels)")
        (proc-arg 3 "brightness" "Glow brightness (0.0 - 1.0)")
        (proc-arg 3 "sharpness" "Glow sharpness (0.0 - 1.0)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-smooth-palette/gimp-org-smooth-palette" 1562830809
    (proc-def "plug-in-smooth-palette" 1
         "Derive a smooth color palette from the image"
         "help!"
         "Scott Draves"
         "Scott Draves"
         "1997"
         "Smoo_th Palette..."
         1
        (menu-path "<Image>/Colors/Info")
        (icon icon-name -1 "")
         "RGB*"
         7 2
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "width" "Width")
        (proc-arg 0 "height" "Height")
        (proc-arg 0 "ntries" "Search Depth")
        (proc-arg 0 "show-image" "Show Image?")
        (proc-arg 13 "new-image" "Output image")
        (proc-arg 14 "new-layer" "Output layer")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-sharpen/gimp-org-sharpen" 1562830809
    (proc-def "plug-in-sharpen" 1
         "Make image sharper (less powerful than Unsharp Mask)"
         "This plug-in selectively performs a convolution filter on an image."
         "Michael Sweet <mike@easysw.com>"
         "Copyright 1997-1998 by Michael Sweet"
         "1.4.2 - 3 June 1998"
         "_Sharpen..."
         0
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "percent" "Percent sharpening (default = 10)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-selection-to-path/gimp-org-selection-to-path" 1562830805
    (proc-def "plug-in-sel2path" 1
         "Converts a selection to a path"
         "Converts a selection to a path"
         "Andy Thomas"
         "Andy Thomas"
         "1999"
         ""
         0
        (icon icon-name -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)"))
    (proc-def "plug-in-sel2path-advanced" 1
         "Converts a selection to a path (with advanced user menu)"
         "Converts a selection to a path (with advanced user menu)"
         "Andy Thomas"
         "Andy Thomas"
         "1999"
         ""
         0
        (icon icon-name -1 "")
         "RGB*, INDEXED*, GRAY*"
         23 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 3 "align-threshold" "align_threshold")
        (proc-arg 3 "corner-always-threshold" "corner_always_threshold")
        (proc-arg 2 "corner-surround" "corner_surround")
        (proc-arg 3 "corner-threshold" "corner_threshold")
        (proc-arg 3 "error-threshold" "error_threshold")
        (proc-arg 2 "filter-alternative-surround" "filter_alternative_surround")
        (proc-arg 3 "filter-epsilon" "filter_epsilon")
        (proc-arg 2 "filter-iteration-count" "filter_iteration_count")
        (proc-arg 3 "filter-percent" "filter_percent")
        (proc-arg 2 "filter-secondary-surround" "filter_secondary_surround")
        (proc-arg 2 "filter-surround" "filter_surround")
        (proc-arg 2 "keep-knees" "{1-Yes, 0-No}")
        (proc-arg 3 "line-reversion-threshold" "line_reversion_threshold")
        (proc-arg 3 "line-threshold" "line_threshold")
        (proc-arg 3 "reparameterize-improvement" "reparameterize_improvement")
        (proc-arg 3 "reparameterize-threshold" "reparameterize_threshold")
        (proc-arg 3 "subdivide-search" "subdivide_search")
        (proc-arg 2 "subdivide-surround" "subdivide_surround")
        (proc-arg 3 "subdivide-threshold" "subdivide_threshold")
        (proc-arg 2 "tangent-surround" "tangent_surround")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-script-fu/gimp-org-script-fu" 1562830811
    (proc-def "extension-script-fu" 2
         "A scheme interpreter for scripting GIMP operations"
         "More help here later"
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1997"
         ""
         0
        (icon icon-name -1 "")
         ""
         0 0)
    (proc-def "plug-in-script-fu-console" 1
         "Interactive console for Script-Fu development"
         "Provides an interface which allows interactive scheme development."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1997"
         "_Console"
         1
        (menu-path "<Image>/Filters/Languages/Script-Fu")
        (icon icon-name -1 "")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))
    (proc-def "plug-in-script-fu-text-console" 1
         "Provides a text console mode for script-fu development"
         "Provides an interface which allows interactive scheme development."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1997"
         ""
         0
        (icon icon-name -1 "")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }"))
    (proc-def "plug-in-script-fu-server" 1
         "Server for remote Script-Fu operation"
         "Provides a server for remote script-fu operation. NOTE that for security reasons this procedure's API was changed in an incompatible way since GIMP 2.8.12. You now have to pass the IP to listen on as first parameter. Calling this procedure with the old API will fail on purpose."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1997"
         "_Start Server..."
         1
        (menu-path "<Image>/Filters/Languages/Script-Fu")
        (icon icon-name -1 "")
         ""
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "ip" "The ip on which to listen for requests")
        (proc-arg 0 "port" "The port on which to listen for requests")
        (proc-arg 4 "logfile" "The file to log server activity to"))
    (proc-def "plug-in-script-fu-eval" 1
         "Evaluate scheme code"
         "Evaluate the code under the scheme interpreter (primarily for batch mode)"
         "Manish Singh"
         "Manish Singh"
         "1998"
         ""
         0
        (icon icon-name -1 "")
         ""
         2 0
        (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "code" "The code to evaluate"))
    (locale-def "gimp20-script-fu"))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-screenshot/gimp-org-screenshot" 1562830805
    (proc-def "plug-in-screenshot" 1
         "Create an image from an area of the screen"
         "The plug-in takes screenshots of an interactively selected window or of the desktop, either the whole desktop or an interactively selected region. When called non-interactively, it may grab the root window or use the window-id passed as a parameter.  The last four parameters are optional and can be used to specify the corners of the region to be grabbed.On Mac OS X or on gnome-shell, when called non-interactively, the plug-inonly can take screenshots of the entire root window.Grabbing a window or a region is not supportednon-interactively. To grab a region or a particularwindow, you need to use the interactive mode."
         "Sven Neumann <sven@gimp.org>, Henrik Brix Andersen <brix@gimp.org>,Simone Karin Lehmann"
         "1998 - 2008"
         "v1.1 (2008/04)"
         "_Screenshot..."
         1
        (menu-path "<Image>/File/Create/Acquire")
        (icon inline-pixbuf 1606 "GdkP\0\0\6F\2\1\0\2\0\0\0X\0\0\0\26\0\0\0\26\213\0\0\0\0\1\242\242\242\5\203\242\242\242\31\221\0\0\0\0\2\27\27\26D\40\40\40\372\203\51\51\51\375\2\32\32\32\362\26\26\25\60\217\0\0\0\0\2\2\2\2\322\307\310\307\377\203\377\377\377\377\2\263\263\262\363\0\0\0\314\217\0\0\0\0\2\6\6\6\334\206\207\205\377\202\252\253\251\377\3\252\252\251\377ghe\376\1\1\1\320\217\0\0\0\0\2\11\11\11\346\56\57\55\345\202GHE\25\3JKH\32\60\61\57\364\5\5\5\333\212\0\0\0\0\17\26\26\25\31\26\26\25\60\26\26\25g\0\0\0\314\53\54\53\331LMK\375EFD\362ffe\347iig\346lmk\346RSQ\362\13\13\13\360\0\0\0\314\2\2\2\321\26\26\25V\203\0\0\0\0\43\26\26\25\31\26\26\25\60\26\26\25n\3\3\3\331\2\2\2\332JJI\355\215\215\215\372\246\246\246\347\267\270\266\362\177\202\176\377BC\77\377TUR\377\134\135Y\377gid\377\133\135X\377\204\206\204\374wxw\276\224\225\224\314LLK\343\26\26\25D\0\0\0\0\26\26\25D\3\3\3\341\17\17\17\373ghg\377\237\240\236\377\273\274\272\377\302\303\300\377\272\273\270\377\200\201\177\377zzz\377tws\377\220\223\217\377\221\225\221\377\224\227\223\377\202\226\232\226\377K\177\202\175\377xyu\377\217\221\215\377\226\227\226\365\0\0\0\371\0\0\0\0\2\2\2\330\257\261\257\377\275\276\273\377\262\263\260\377UWT\377QSP\377suq\377\135\136\133\377\304\304\304\377\303\303\303\377kmi\377MNJ\377WZX\377\133\140\137\377aeb\377gid\377\175\200\173\377SUQ\377FGE\377\200\201\200\377\12\12\12\357\0\0\0\0\4\4\4\345xyv\377\241\242\236\377\210\212\205\377vxt\377\220\222\217\377GIF\377\53\54\51\377\140\140\140\377jji\377UXV\377y\204\210\377\203\215\220\377\176\204\207\377flo\377PW\134\377SWU\377JLI\377\64\65\62\377tut\377\12\12\12\357\0\0\0\0\4\4\4\344opm\377\221\223\217\377\175\177\173\377\215\217\213\377\140b\137\377\50\51\47\377\52\53\51\377\67\70\65\377VXV\377u\176\202\377nsu\377VYZ\377OST\377OQS\377JOP\377\136cd\377\66\71\70\377\41\42\41\377llk\377\12\12\12\357\0\0\0\0\3\3\3\345npl\377\220\221\216\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377\71\72\67\377\136ce\377NRT\377UXY\377\50\54\56\377\22\24\25\377\41\44\46\377ILM\377\70\75\77\377RVX\377\47\47\46\377klk\377\12\12\12\357\0\0\0\1\3\3\3\345nol\377\220\221\216\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377\70\72\70\377TXY\377\62\70\71\377\23\25\26\377\16\16\16\377\1\1\1\377\2\2\2\377\24\25\25\377\56\63\64\377\62\70\71\377\60\61\61\377aa\140\377\11\11\11\360\0\0\0\3\3\3\3\345nol\377\204\205\202\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377\77BA\377\62\70\72\377\34\40\41\377\31\32\32\377\377\377\377\377hhh\377\40\40\40\377\22\22\22\377\56\60\60\377\56\64\66\377\72\76\77\377\140a\140\377\11\11\10\361\0\0\0\7\3\3\3\345mok\377z\173x\377\202UWS\377\24GIF\377\40\41\37\377\52\53\51\377HJI\377\56\64\66\377\25\27\30\377\40\40\40\377hhh\377\232\232\232\377\175\175\175\377\47\47\47\377\71\73\73\377\57\65\67\377\65\71\71\377\140\140\137\377\11\11\10\362\0\0\0\15\3\3\3\345lnk\377rsp\377\202UWS\377\24GIF\377\40\41\37\377\54\55\52\377\76\100\76\377\56\64\66\377\35\37\40\377\1\1\1\377\70\70\70\377\214\214\214\377\213\213\213\377AAA\377JKK\377\57\65\67\377\66\72\73\377WXV\377\6\6\6\364\0\0\0\21\0\0\0\371\201\202\177\377mok\377\202UWS\377iGIF\377MNM\377RRR\372ghg\364\133\140b\377\53\57\60\377\17\17\17\377\42\42\42\377\47\47\47\377HHH\377\263\263\263\377SUU\377W\134\136\377CFF\374\74\74\74\376\20\20\17\317\0\0\0\20\24\24\23\135\4\4\4\353\177\177\176\375\174\175z\373\175\176\174\374hih\376\71\72\71\371\0\0\0\347\0\0\0\351\7\7\7\367\56\64\66\377\62\65\66\377\40\40\40\377\50\50\50\377\72\72\72\377\140ab\377\71\76\77\377\11\13\13\376\0\0\0\353\0\0\0\300\14\14\13H\0\0\0\15\0\0\0\4\23\23\22L\0\0\0\332\0\0\0\341\0\0\0\346\0\0\0\341\14\14\13\173\0\0\0V\0\0\0a\0\0\0l\10\11\11\371\134\136\137\377LOP\377ILL\377LOQ\377QUV\377\16\17\17\377\34\37\40\244\0\0\0\140\0\0\0\64\0\0\0\27\0\0\0\7\0\0\0\1\0\0\0\3\0\0\0\10\0\0\0\21\0\0\0\34\0\0\0\47\0\0\0\60\0\0\0\66\0\0\0\75\0\0\0A\0\0\0F\4\5\5\355\12\13\13\371\17\20\20\376\15\16\16\375\10\10\11\365\7\10\11j\0\0\0G\0\0\0\55\0\0\0\30\0\0\0\13\0\0\0\4\0\0\0\0\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\11\0\0\0\16\0\0\0\23\0\0\0\31\0\0\0\35\0\0\0\41\0\0\0\43\0\0\0\44\0\0\0\45\0\0\0\44\0\0\0\46\0\0\0\45\0\0\0\36\0\0\0\27\0\0\0\20\0\0\0\10\0\0\0\3\0\0\0\1\204\0\0\0\0\5\0\0\0\1\0\0\0\2\0\0\0\4\0\0\0\5\0\0\0\6\202\0\0\0\10\11\0\0\0\11\0\0\0\7\0\0\0\10\0\0\0\5\0\0\0\7\0\0\0\6\0\0\0\5\0\0\0\3\0\0\0\1\202\0\0\0\0")
         ""
         7 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 0 "shoot-type" "The Shoot type { SHOOT-WINDOW (0), SHOOT-ROOT (1), SHOOT-REGION (2) }")
        (proc-arg 0 "window-id" "Window id for SHOOT-WINDOW")
        (proc-arg 0 "x1" "Region left x coord for SHOOT-REGION")
        (proc-arg 0 "y1" "Region top y coord for SHOOT-REGION")
        (proc-arg 0 "x2" "Region right x coord for SHOOT-REGION")
        (proc-arg 0 "y2" "Region bottom y coord for SHOOT-REGION")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-sample-colorize/gimp-org-sample-colorize" 1562830809
    (proc-def "plug-in-sample-colorize" 1
         "Colorize image using a sample image as a guide"
         "This plug-in colorizes the contents of the specified (gray) layer with the help of a  sample (color) layer. It analyzes all colors in the sample layer. The sample colors are sorted by brightness (== intentisty) and amount and stored in a sample colortable (where brightness is the index) The pixels of the destination layer are remapped with the help of the sample colortable. If use_subcolors is TRUE, the remapping process uses all sample colors of the corresponding brightness-intensity and distributes the subcolors according to their amount in the sample (If the sample has 5 green, 3 yellow, and 1 red pixel of the  intensity value 105, the destination pixels at intensity value 105 are randomly painted in green, yellow and red in a relation of 5:3:1 If use_subcolors is FALSE only one sample color per intensity is used. (green will be used in this example) The brightness intensity value is transformed at the remapping process according to the levels: out_lo, out_hi, in_lo, in_high and gamma The in_low / in_high levels specify an initial mapping of the intensity. The gamma value determines how intensities are interpolated between the in_lo and in_high levels. A gamma value of 1.0 results in linear interpolation. Higher gamma values results in more high-level intensities Lower gamma values results in more low-level intensities The out_low/out_high levels constrain the resulting intensity index The intensity index is used to pick the corresponding color in the sample colortable. If hold_inten is FALSE the picked color is used 1:1 as resulting remap_color. If hold_inten is TRUE The brightness of the picked color is adjusted back to the origial intensity value (only hue and saturation are taken from the picked sample color) (or to the input level, if orig_inten is set FALSE) Works on both Grayscale and RGB image with/without alpha channel. (the image with the dst_drawable is converted to RGB if necessary) The sample_drawable should be of type RGB or RGBA"
         "Wolfgang Hofer"
         "hof@hotbot.com"
         "02/2000"
         "_Sample Colorize..."
         1
        (menu-path "<Image>/Colors/Map")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         13 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "dst-drawable" "The drawable to be colorized (Type GRAY* or RGB*)")
        (proc-arg 16 "sample-drawable" "Sample drawable (should be of Type RGB or RGBA)")
        (proc-arg 0 "hold-inten" "hold brightness intensity levels (TRUE, FALSE)")
        (proc-arg 0 "orig-inten" "TRUE: hold brightness of original intensity levels. FALSE: Hold Intensity of input levels")
        (proc-arg 0 "rnd-subcolors" "TRUE: Use all subcolors of same intensity, FALSE: use only one color per intensity")
        (proc-arg 0 "guess-missing" "TRUE: guess samplecolors for the missing intensity values FALSE: use only colors found in the sample")
        (proc-arg 0 "in-low" "intensity of lowest input (0 <= in_low <= 254)")
        (proc-arg 0 "in-high" "intensity of highest input (1 <= in_high <= 255)")
        (proc-arg 3 "gamma" "gamma adjustment factor (0.1 <= gamma <= 10) where 1.0 is linear")
        (proc-arg 0 "out-low" "lowest sample color intensity (0 <= out_low <= 254)")
        (proc-arg 0 "out-high" "highest sample color intensity (1 <= out_high <= 255)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-qbist/gimp-org-qbist" 1562830809
    (proc-def "plug-in-qbist" 1
         "Generate a huge variety of abstract patterns"
         "This Plug-in is based on an article by Jörn Loviscach (appeared in c't 10/95, page 326). It generates modern art pictures from a random genetic formula."
         "Jörn Loviscach, Jens Ch. Restemeier"
         "Jörn Loviscach, Jens Ch. Restemeier"
         "January 2001, 1.12"
         "_Qbist..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon icon-name -1 "")
         "RGB*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-procedure-browser/gimp-org-procedure-browser" 1562830809
    (proc-def "plug-in-dbbrowser" 1
         "List available procedures in the PDB"
         ""
         "Thomas Noel"
         "Thomas Noel"
         "23th june 1997"
         "Procedure _Browser"
         1
        (menu-path "<Image>/Help/Programming")
        (icon icon-name -1 "")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-print/gimp-org-print" 1562830805
    (proc-def "file-print-gtk" 1
         "Print the image"
         "Print the image using the GTK+ Print API."
         "Bill Skaggs, Sven Neumann, Stefan Röllin"
         "Bill Skaggs <weskaggs@primate.ucdavis.edu>"
         "2006 - 2008"
         "_Print..."
         1
        (menu-path "<Image>/File/Send")
        (icon icon-name -1 "document-print")
         "*"
         2 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Image to print")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-plugin-browser/gimp-org-plugin-browser" 1562830809
    (proc-def "plug-in-plug-in-details" 1
         "Display information about plug-ins"
         "Allows one to browse the plug-in menus system. You can search for plug-in names, sort by name or menu location and you can view a tree representation of the plug-in menus. Can also be of help to find where new plug-ins have installed themselves in the menus."
         "Andy Thomas"
         "Andy Thomas"
         "1999"
         "_Plug-in Browser"
         1
        (menu-path "<Image>/Help/Programming")
        (icon icon-name -1 "gimp-plugin")
         ""
         1 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-photocopy/gimp-org-photocopy" 1562830809
    (proc-def "plug-in-photocopy" 1
         "Simulate color distortion produced by a copy machine"
         "Propagates dark values in an image based on each pixel's relative darkness to a neighboring average. The idea behind this filter is to give the look of a photocopied version of the image, with toner transferred based on the relative darkness of a particular region. This is achieved by darkening areas of the image which are measured to be darker than a neighborhood average and setting other pixels to white. In this way, sufficiently large shifts in intensity are darkened to black. The rate at which they are darkened to black is determined by the second pct_black parameter. The mask_radius parameter controls the size of the pixel neighborhood over which the average intensity is computed and then compared to each pixel in the neighborhood to decide whether or not to darken it to black. Large values for mask_radius result in very thick black areas bordering the regions of white and much less detail for black areas everywhere including inside regions of color. Small values result in less toner overall and more detail everywhere. Small values for the pct_black make the blend from the white regions to the black border lines smoother and the toner regions themselves thinner and less noticeable; larger values achieve the opposite effect."
         "Spencer Kimball"
         "Bit Specialists, Inc."
         "2001"
         "_Photocopy (legacy)..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "mask-radius" "Photocopy mask radius (radius of pixel neighborhood)")
        (proc-arg 3 "sharpness" "Sharpness (detail level) (0.0 - 1.0)")
        (proc-arg 3 "pct-black" "Percentage of darkened pixels to set to black (0.0 - 1.0)")
        (proc-arg 3 "pct-white" "Percentage of non-darkened pixels left white (0.0 - 1.0)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-pagecurl/gimp-org-pagecurl" 1562830805
    (proc-def "plug-in-pagecurl" 1
         "Curl up one of the image corners"
         "This plug-in creates a pagecurl-effect."
         "Federico Mena Quintero and Simon Budig"
         "Federico Mena Quintero and Simon Budig"
         "July 2004, 1.0"
         "_Pagecurl..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         7 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "colors" "FG- and BG-Color (0), Current gradient (1), Current gradient reversed (2)")
        (proc-arg 0 "edge" "Edge to curl (1-4, clockwise, starting in the lower right edge)")
        (proc-arg 0 "orientation" "Vertical (0), Horizontal (1)")
        (proc-arg 0 "shade" "Shade the region under the curl (1) or not (0)")
        (proc-arg 14 "Curl-Layer" "The new layer with the curl.")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-oilify/gimp-org-oilify" 1562830809
    (proc-def "plug-in-oilify" 1
         "Smear colors to simulate an oil painting"
         "This function performs the well-known oil-paint effect on the specified drawable."
         "Torsten Martinsen"
         "Torsten Martinsen"
         "1996"
         "Oili_fy (legacy)..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "mask-size" "Oil paint mask size")
        (proc-arg 0 "mode" "Algorithm { RGB (0), INTENSITY (1) }"))
    (proc-def "plug-in-oilify-enhanced" 1
         "Smear colors to simulate an oil painting"
         "This function performs the well-known oil-paint effect on the specified drawable."
         "Torsten Martinsen, Daniel Richard G."
         "Torsten Martinsen, Daniel Richard G."
         "2007"
         ""
         0
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         8 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "mode" "Algorithm { RGB (0), INTENSITY (1) }")
        (proc-arg 0 "mask-size" "Oil paint mask size")
        (proc-arg 16 "mask-size-map" "Mask size control map")
        (proc-arg 0 "exponent" "Oil paint exponent")
        (proc-arg 16 "exponent-map" "Exponent control map")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-nl-filter/gimp-org-nl-filter" 1562830809
    (proc-def "plug-in-nlfilt" 1
         "Nonlinear swiss army knife filter"
         "This is the pnmnlfilt, in gimp's clothing.  See the pnmnlfilt manpage for details."
         "Graeme W. Gill, gimp 0.99 plug-in by Eric L. Hernes"
         "Graeme W. Gill, Eric L. Hernes"
         "1997"
         "_NL Filter..."
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon icon-name -1 "")
         "RGB,GRAY"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "img" "The Image to Filter")
        (proc-arg 16 "drw" "The Drawable")
        (proc-arg 3 "alpha" "The amount of the filter to apply")
        (proc-arg 3 "radius" "The filter radius")
        (proc-arg 0 "filter" "The Filter to Run, 0 - alpha trimmed mean; 1 - optimal estimation (alpha controls noise variance); 2 - edge enhancement")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-newsprint/gimp-org-newsprint" 1562830809
    (proc-def "plug-in-newsprint" 1
         "Halftone the image to give newspaper-like effect"
         "Halftone the image, trading off resolution to represent colors or grey levels using the process described both in the PostScript language definition, and also by Robert Ulichney, \"Digital halftoning\", MIT Press, 1987."
         "Austin Donnelly"
         "Austin Donnelly"
         "1998 (v0.60)"
         "Newsprin_t..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         15 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "cell-width" "Screen cell width in pixels")
        (proc-arg 0 "colorspace" "Separate to { GRAYSCALE (0), RGB (1), CMYK (2), LUMINANCE (3) }")
        (proc-arg 0 "k-pullout" "Percentage of black to pullout (CMYK only)")
        (proc-arg 3 "gry-ang" "Grey/black screen angle (degrees)")
        (proc-arg 0 "gry-spotfn" "Grey/black spot function { DOTS (0), LINES (1), DIAMONDS (2), EUCLIDIAN-DOT (3), PS-DIAMONDS (4) }")
        (proc-arg 3 "red-ang" "Red/cyan screen angle (degrees)")
        (proc-arg 0 "red-spotfn" "Red/cyan spot function (values as gry-spotfn)")
        (proc-arg 3 "grn-ang" "Green/magenta screen angle (degrees)")
        (proc-arg 0 "grn-spotfn" "Green/magenta spot function (values as gry-spotfn)")
        (proc-arg 3 "blu-ang" "Blue/yellow screen angle (degrees)")
        (proc-arg 0 "blu-spotfn" "Blue/yellow spot function (values as gry-spotfn)")
        (proc-arg 0 "oversample" "how many times to oversample spot fn")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-metadata-viewer/gimp-org-metadata-viewer" 1562830805
    (proc-def "plug-in-metadata-viewer" 1
         "View metadata (Exif, IPTC, XMP)"
         "View metadata information attached to the current image.  This can include Exif, IPTC and/or XMP information."
         "Hartmut Kuhse, Michael Natterer, Ben Touchette"
         "Hartmut Kuhse, Michael Natterer, Ben Touchette"
         "2013, 2017"
         "View Metadata"
         1
        (menu-path "<Image>/Image/Metadata")
        (icon icon-name -1 "")
         "*"
         2 0
        (proc-arg 0 "run-mode" "Run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-metadata-editor/gimp-org-metadata-editor" 1562830805
    (proc-def "plug-in-metadata-editor" 1
         "Edit metadata (IPTC, EXIF, XMP)"
         "Edit metadata information attached to the current image. Some or all of this metadata will be saved in the file, depending on the output file format."
         "Ben Touchette"
         "Ben Touchette"
         "2017"
         "Edit Metadata"
         1
        (menu-path "<Image>/Image/Metadata")
        (icon icon-name -1 "")
         "*"
         2 0
        (proc-arg 0 "run-mode" "Run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-max-rgb/gimp-org-max-rgb" 1562830809
    (proc-def "plug-in-max-rgb" 1
         "Reduce image to pure red, green, and blue"
         "There's no help yet."
         "Shuji Narazaki (narazaki@InetQ.or.jp)"
         "Shuji Narazaki"
         "May 2000"
         "Maxim_um RGB..."
         0
        (icon icon-name -1 "")
         "RGB*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (not used)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "max-p" "{ MINIMIZE (0), MAXIMIZE (1) }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-map-object/gimp-org-map-object" 1562830805
    (proc-def "plug-in-map-object" 1
         "Map the image to an object (plane, sphere, box or cylinder)"
         "No help yet"
         "Tom Bech & Federico Mena Quintero"
         "Tom Bech & Federico Mena Quintero"
         "Version 1.2.0, July 16 1998"
         "Map _Object..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon icon-name -1 "")
         "RGB*"
         49 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "maptype" "Type of mapping (0=plane,1=sphere,2=box,3=cylinder)")
        (proc-arg 3 "viewpoint-x" "Position of viewpoint (x,y,z)")
        (proc-arg 3 "viewpoint-y" "Position of viewpoint (x,y,z)")
        (proc-arg 3 "viewpoint-z" "Position of viewpoint (x,y,z)")
        (proc-arg 3 "position-x" "Object position (x,y,z)")
        (proc-arg 3 "position-y" "Object position (x,y,z)")
        (proc-arg 3 "position-z" "Object position (x,y,z)")
        (proc-arg 3 "firstaxis-x" "First axis of object [x,y,z]")
        (proc-arg 3 "firstaxis-y" "First axis of object [x,y,z]")
        (proc-arg 3 "firstaxis-z" "First axis of object [x,y,z]")
        (proc-arg 3 "secondaxis-x" "Second axis of object [x,y,z]")
        (proc-arg 3 "secondaxis-y" "Second axis of object [x,y,z]")
        (proc-arg 3 "secondaxis-z" "Second axis of object [x,y,z]")
        (proc-arg 3 "rotationangle-x" "Rotation about X axis in degrees")
        (proc-arg 3 "rotationangle-y" "Rotation about Y axis in degrees")
        (proc-arg 3 "rotationangle-z" "Rotation about Z axis in degrees")
        (proc-arg 0 "lighttype" "Type of lightsource (0=point,1=directional,2=none)")
        (proc-arg 10 "lightcolor" "Lightsource color (r,g,b)")
        (proc-arg 3 "lightposition-x" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightposition-y" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightposition-z" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightdirection-x" "Lightsource direction [x,y,z]")
        (proc-arg 3 "lightdirection-y" "Lightsource direction [x,y,z]")
        (proc-arg 3 "lightdirection-z" "Lightsource direction [x,y,z]")
        (proc-arg 3 "ambient-intensity" "Material ambient intensity (0..1)")
        (proc-arg 3 "diffuse-intensity" "Material diffuse intensity (0..1)")
        (proc-arg 3 "diffuse-reflectivity" "Material diffuse reflectivity (0..1)")
        (proc-arg 3 "specular-reflectivity" "Material specular reflectivity (0..1)")
        (proc-arg 3 "highlight" "Material highlight (0..->), note: it's exponential")
        (proc-arg 0 "antialiasing" "Apply antialiasing (TRUE/FALSE)")
        (proc-arg 0 "tiled" "Tile source image (TRUE/FALSE)")
        (proc-arg 0 "newimage" "Create a new image (TRUE/FALSE)")
        (proc-arg 0 "transparentbackground" "Make background transparent (TRUE/FALSE)")
        (proc-arg 3 "radius" "Sphere/cylinder radius (only used when maptype=1 or 3)")
        (proc-arg 3 "x-scale" "Box x size (0..->)")
        (proc-arg 3 "y-scale" "Box y size (0..->)")
        (proc-arg 3 "z-scale" "Box z size (0..->)")
        (proc-arg 3 "cylinder-length" "Cylinder length (0..->)")
        (proc-arg 16 "box-front-drawable" "Box front face (set these to -1 if not used)")
        (proc-arg 16 "box-back-drawable" "Box back face")
        (proc-arg 16 "box-top-drawable" "Box top face")
        (proc-arg 16 "box-bottom-drawable" "Box bottom face")
        (proc-arg 16 "box-left-drawable" "Box left face")
        (proc-arg 16 "box-right-drawable" "Box right face")
        (proc-arg 16 "cyl-top-drawable" "Cylinder top face (set these to -1 if not used)")
        (proc-arg 16 "cyl-bottom-drawable" "Cylinder bottom face")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-mail/gimp-org-mail" 1562830809
    (proc-def "plug-in-mail-image" 1
         "Send the image by email"
         "The preferred email composer is used to send emails and must be properly configured."
         "Adrian Likins, Reagan Blundell"
         "Adrian Likins, Reagan Blundell, Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "Send by E_mail..."
         1
        (menu-path "<Image>/File/Send")
        (icon icon-name -1 "gtk-edit")
         "*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "to-address" "The email address to send to")
        (proc-arg 4 "from-address" "The email address for the From: field")
        (proc-arg 4 "subject" "The subject")
        (proc-arg 4 "comment" "The Comment")
        (proc-arg 0 "encapsulation" "ignored")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-lighting/gimp-org-lighting" 1562830805
    (proc-def "plug-in-lighting" 1
         "Apply various lighting effects to an image"
         "No help yet"
         "Tom Bech & Federico Mena Quintero"
         "Tom Bech & Federico Mena Quintero"
         "Version 0.2.0, March 15 1998"
         "_Lighting Effects..."
         1
        (menu-path "<Image>/Filters/Light and Shadow/Light")
        (icon icon-name -1 "")
         "RGB*"
         24 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 16 "bumpdrawable" "Bumpmap drawable (set to 0 if disabled)")
        (proc-arg 16 "envdrawable" "Environmentmap drawable (set to 0 if disabled)")
        (proc-arg 0 "dobumpmap" "Enable bumpmapping (TRUE/FALSE)")
        (proc-arg 0 "doenvmap" "Enable envmapping (TRUE/FALSE)")
        (proc-arg 0 "bumpmaptype" "Type of mapping (0=linear,1=log, 2=sinusoidal, 3=spherical)")
        (proc-arg 0 "lighttype" "Type of lightsource (0=point,1=directional,3=spot,4=none)")
        (proc-arg 10 "lightcolor" "Lightsource color (r,g,b)")
        (proc-arg 3 "lightposition-x" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightposition-y" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightposition-z" "Lightsource position (x,y,z)")
        (proc-arg 3 "lightdirection-x" "Lightsource direction [x,y,z]")
        (proc-arg 3 "lightdirection-y" "Lightsource direction [x,y,z]")
        (proc-arg 3 "lightdirection-z" "Lightsource direction [x,y,z]")
        (proc-arg 3 "ambient-intensity" "Material ambient intensity (0..1)")
        (proc-arg 3 "diffuse-intensity" "Material diffuse intensity (0..1)")
        (proc-arg 3 "diffuse-reflectivity" "Material diffuse reflectivity (0..1)")
        (proc-arg 3 "specular-reflectivity" "Material specular reflectivity (0..1)")
        (proc-arg 3 "highlight" "Material highlight (0..->), note: it's exponential")
        (proc-arg 0 "antialiasing" "Apply antialiasing (TRUE/FALSE)")
        (proc-arg 0 "newimage" "Create a new image (TRUE/FALSE)")
        (proc-arg 0 "transparentbackground" "Make background transparent (TRUE/FALSE)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-jigsaw/gimp-org-jigsaw" 1562830809
    (proc-def "plug-in-jigsaw" 1
         "Add a jigsaw-puzzle pattern to the image"
         "Jigsaw puzzle look"
         "Nigel Wetten"
         "Nigel Wetten"
         "May 2000"
         "_Jigsaw..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon icon-name -1 "")
         "RGB*"
         8 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "x" "Number of tiles across > 0")
        (proc-arg 0 "y" "Number of tiles down > 0")
        (proc-arg 0 "style" "The style/shape of the jigsaw puzzle { 0, 1 }")
        (proc-arg 0 "blend-lines" "Number of lines for shading bevels >= 0")
        (proc-arg 3 "blend-amount" "The power of the light highlights 0 =< 5")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-imagemap/gimp-org-imagemap" 1562830805
    (proc-def "plug-in-imagemap" 1
         "Create a clickable imagemap"
         ""
         "Maurits Rijk"
         "Maurits Rijk"
         "1998-2005"
         "_Image Map..."
         1
        (menu-path "<Image>/Filters/Web")
        (icon icon-name -1 "")
         "RGB*, GRAY*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-ifs-compose/gimp-org-ifs-compose" 1562830805
    (proc-def "plug-in-ifscompose" 1
         "Create an Iterated Function System (IFS) fractal"
         "Interactively create an Iterated Function System fractal. Use the window on the upper left to adjust the component transformations of the fractal. The operation that is performed is selected by the buttons underneath the window, or from a menu popped up by the right mouse button. The fractal will be rendered with a transparent background if the current image has an alpha channel."
         "Owen Taylor"
         "Owen Taylor"
         "1997"
         "_IFS Fractal..."
         1
        (menu-path "<Image>/Filters/Render/Fractals")
        (icon icon-name -1 "")
         "*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-hot/gimp-org-hot" 1562830809
    (proc-def "plug-in-hot" 1
         "Find and fix pixels that may be unsafely bright"
         "hot scans an image for pixels that will give unsave values of chrominance or composite signale amplitude when encoded into an NTSC or PAL signal.  Three actions can be performed on these ``hot'' pixels. (0) reduce luminance, (1) reduce saturation, or (2) Blacken."
         "Eric L. Hernes, Alan Wm Paeth"
         "Eric L. Hernes"
         "1997"
         "_Hot..."
         1
        (menu-path "<Image>/Colors/Modify")
        (icon icon-name -1 "")
         "RGB"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "The Image")
        (proc-arg 16 "drawable" "The Drawable")
        (proc-arg 0 "mode" "Mode { NTSC (0), PAL (1) }")
        (proc-arg 0 "action" "The action to perform")
        (proc-arg 0 "new-layer" "Create a new layer { TRUE, FALSE }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-help/gimp-org-help" 1562830804
    (proc-def "extension-gimp-help" 2
         ""
         ""
         "Sven Neumann <sven@gimp.org>, Michael Natterer <mitch@gimp.org>, Henrik Brix Andersen <brix@gimp.org>"
         "Sven Neumann, Michael Natterer & Henrik Brix Andersen"
         "1999-2008"
         ""
         0
        (icon icon-name -1 "")
         ""
         4 0
        (proc-arg 0 "num-domain-names" "")
        (proc-arg 9 "domain-names" "")
        (proc-arg 0 "num-domain-uris" "")
        (proc-arg 9 "domain-uris" "")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-guillotine/gimp-org-guillotine" 1562830808
    (proc-def "plug-in-guillotine" 1
         "Slice the image into subimages using guides"
         "This function takes an image and slices it along its guides, creating new images. The original image is not modified."
         "Adam D. Moss (adam@foxbox.org)"
         "Adam D. Moss (adam@foxbox.org)"
         "1998"
         "Slice Using G_uides"
         1
        (menu-path "<Image>/Image/Crop")
        (icon icon-name -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 2
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 0 "image-count" "Number of images created")
        (proc-arg 5 "image-ids" "Output images")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-grid/gimp-org-grid" 1562830809
    (proc-def "plug-in-grid" 1
         "Draw a grid on the image"
         "Draws a grid using the specified colors. The grid origin is the upper left corner."
         "Tim Newsome"
         "Tim Newsome, Sven Neumann, Tom Rathborne, TC"
         "1997 - 2000"
         "_Grid (legacy)..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon icon-name -1 "")
         "RGB*, GRAY*, INDEXED*"
         18 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "hwidth" "Horizontal Width   (>= 0)")
        (proc-arg 0 "hspace" "Horizontal Spacing (>= 1)")
        (proc-arg 0 "hoffset" "Horizontal Offset  (>= 0)")
        (proc-arg 10 "hcolor" "Horizontal Colour")
        (proc-arg 2 "hopacity" "Horizontal Opacity (0...255)")
        (proc-arg 0 "vwidth" "Vertical Width   (>= 0)")
        (proc-arg 0 "vspace" "Vertical Spacing (>= 1)")
        (proc-arg 0 "voffset" "Vertical Offset  (>= 0)")
        (proc-arg 10 "vcolor" "Vertical Colour")
        (proc-arg 2 "vopacity" "Vertical Opacity (0...255)")
        (proc-arg 0 "iwidth" "Intersection Width   (>= 0)")
        (proc-arg 0 "ispace" "Intersection Spacing (>= 0)")
        (proc-arg 0 "ioffset" "Intersection Offset  (>= 0)")
        (proc-arg 10 "icolor" "Intersection Colour")
        (proc-arg 2 "iopacity" "Intersection Opacity (0...255)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-gradient-map/gimp-org-gradient-map" 1562830808
    (proc-def "plug-in-gradmap" 1
         "Recolor the image using colors from the active gradient"
         "This plug-in maps the contents of the specified drawable with active gradient. It calculates luminosity of each pixel and replaces the pixel by the sample of active gradient at the position proportional to that luminosity. Complete black pixel becomes the leftmost color of the gradient, and complete white becomes the rightmost. Works on both Grayscale and RGB image with/without alpha channel."
         "Eiichi Takamori"
         "Eiichi Takamori"
         "1997"
         "_Gradient Map"
         1
        (menu-path "<Image>/Colors/Map")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable"))
    (proc-def "plug-in-palettemap" 1
         "Recolor the image using colors from the active palette"
         "This plug-in maps the contents of the specified drawable with the active palette. It calculates luminosity of each pixel and replaces the pixel by the palette sample  at the corresponding index. A complete black pixel becomes the lowest palette entry, and complete white becomes the highest. Works on both Grayscale and RGB image with/without alpha channel."
         "Bill Skaggs"
         "Bill Skaggs"
         "2004"
         "_Palette Map"
         1
        (menu-path "<Image>/Colors/Map")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-gradient-flare/gimp-org-gradient-flare" 1562830804
    (proc-def "plug-in-gflare" 1
         "Produce a lense flare effect using gradients"
         "This plug-in produces a lense flare effect using custom gradients. In interactive call, the user can edit his/her own favorite lense flare (GFlare) and render it. Edited gflare is saved automatically to the folder in gflare-path, if it is defined in gimprc. In non-interactive call, the user can only render one of GFlare which has been stored in gflare-path already."
         "Eiichi Takamori"
         "Eiichi Takamori, and a lot of GIMP people"
         "1997"
         "_Gradient Flare..."
         1
        (menu-path "<Image>/Filters/Light and Shadow/Light")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         14 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "gflare-name" "The name of GFlare")
        (proc-arg 0 "xcenter" "X coordinate of center of GFlare")
        (proc-arg 0 "ycenter" "Y coordinate of center of GFlare")
        (proc-arg 3 "radius" "Radius of GFlare (pixel)")
        (proc-arg 3 "rotation" "Rotation of GFlare (degree)")
        (proc-arg 3 "hue" "Hue rotation of GFlare (degree)")
        (proc-arg 3 "vangle" "Vector angle for second flares (degree)")
        (proc-arg 3 "vlength" "Vector length for second flares (percentage to Radius)")
        (proc-arg 0 "use-asupsample" "Whether it uses or not adaptive supersampling while rendering (boolean)")
        (proc-arg 0 "asupsample-max-depth" "Max depth for adaptive supersampling")
        (proc-arg 3 "asupsample-threshold" "Threshold for adaptive supersampling")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-goat-exercise/gimp-org-goat-exercise" 1562830808
    (proc-def "plug-in-goat-exercise" 1
         "Exercise a goat"
         "takes a goat for a walk"
         "Øyvind Kolås <pippin@gimp.org>"
         "Øyvind Kolås <pippin@gimp.org>"
         "21march 2012"
         "Goat-exercise"
         1
        (menu-path "<Image>/Filters")
        (icon icon-name -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-gimpressionist/gimp-org-gimpressionist" 1562830804
    (proc-def "plug-in-gimpressionist" 1
         "Performs various artistic operations"
         "Performs various artistic operations on an image"
         "Vidar Madsen <vidar@prosalg.no>"
         "Vidar Madsen"
         "v1.0, November 2003"
         "_GIMPressionist..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "preset" "Preset Name")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-gfig/gimp-org-gfig" 1562830804
    (proc-def "plug-in-gfig" 1
         "Create geometric shapes"
         "Draw Vector Graphics and paint them onto your images.  Gfig allows you to draw many types of objects including Lines, Circles, Ellipses, Curves, Polygons, pointed stars, Bezier curves, and Spirals.  Objects can be painted using Brushes or other toolsor filled using colors or patterns.  Gfig objects can also be used to create selections.  "
         "Andy Thomas"
         "Andy Thomas"
         "1997"
         "_Gfig..."
         1
        (menu-path "<Image>/Filters/Render")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "dummy" "dummy")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-fractal-trace/gimp-org-fractal-trace" 1562830808
    (proc-def "plug-in-fractal-trace" 1
         "Transform image with the Mandelbrot Fractal"
         "transform image with the Mandelbrot Fractal"
         "Hirotsuna Mizuno <s1041150@u-aizu.ac.jp>"
         "Copyright (C) 1997 Hirotsuna Mizuno"
         "v0.4 test version (Dec. 25 1997)"
         "_Fractal Trace (legacy)..."
         1
        (menu-path "<Image>/Filters/Map")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "xmin" "xmin fractal image delimiter")
        (proc-arg 3 "xmax" "xmax fractal image delimiter")
        (proc-arg 3 "ymin" "ymin fractal image delimiter")
        (proc-arg 3 "ymax" "ymax fractal image delimiter")
        (proc-arg 0 "depth" "Trace depth")
        (proc-arg 0 "outside-type" "Outside type { WRAP (0), TRANS (1), BLACK (2), WHITE (3) }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-fractal-explorer/gimp-org-fractal-explorer" 1562830804
    (proc-def "plug-in-fractalexplorer" 1
         "Render fractal art"
         "No help yet."
         "Daniel Cotting (cotting@multimania.com, www.multimania.com/cotting)"
         "Daniel Cotting (cotting@multimania.com, www.multimania.com/cotting)"
         "December, 1998"
         "_Fractal Explorer..."
         1
        (menu-path "<Image>/Filters/Render/Fractals")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         22 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 2 "fractaltype" "0: Mandelbrot; 1: Julia; 2: Barnsley 1; 3: Barnsley 2; 4: Barnsley 3; 5: Spider; 6: ManOWar; 7: Lambda; 8: Sierpinski")
        (proc-arg 3 "xmin" "xmin fractal image delimiter")
        (proc-arg 3 "xmax" "xmax fractal image delimiter")
        (proc-arg 3 "ymin" "ymin fractal image delimiter")
        (proc-arg 3 "ymax" "ymax fractal image delimiter")
        (proc-arg 3 "iter" "Iteration value")
        (proc-arg 3 "cx" "cx value ( only Julia)")
        (proc-arg 3 "cy" "cy value ( only Julia)")
        (proc-arg 2 "colormode" "0: Apply colormap as specified by the parameters below; 1: Apply active gradient to final image")
        (proc-arg 3 "redstretch" "Red stretching factor")
        (proc-arg 3 "greenstretch" "Green stretching factor")
        (proc-arg 3 "bluestretch" "Blue stretching factor")
        (proc-arg 2 "redmode" "Red application mode (0:SIN;1:COS;2:NONE)")
        (proc-arg 2 "greenmode" "Green application mode (0:SIN;1:COS;2:NONE)")
        (proc-arg 2 "bluemode" "Blue application mode (0:SIN;1:COS;2:NONE)")
        (proc-arg 2 "redinvert" "Red inversion mode (1: enabled; 0: disabled)")
        (proc-arg 2 "greeninvert" "Green inversion mode (1: enabled; 0: disabled)")
        (proc-arg 2 "blueinvert" "Green inversion mode (1: enabled; 0: disabled)")
        (proc-arg 0 "ncolors" "Number of Colors for mapping (2<=ncolors<=8192)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-flame/gimp-org-flame" 1562830804
    (proc-def "plug-in-flame" 1
         "Create cosmic recursive fractal flames"
         "Create cosmic recursive fractal flames"
         "Scott Draves"
         "Scott Draves"
         "1997"
         "_Flame..."
         1
        (menu-path "<Image>/Filters/Render/Fractals")
        (icon icon-name -1 "")
         "RGB*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-filter-pack/gimp-org-filter-pack" 1562830808
    (proc-def "plug-in-filter-pack" 1
         "Interactively modify the image colors"
         "Interactively modify the image colors."
         "Pavel Grinfeld (pavel@ml.com)"
         "Pavel Grinfeld (pavel@ml.com)"
         "27th March 1997"
         "_Filter Pack..."
         0
        (icon icon-name -1 "")
         "RGB*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (used for indexed images)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-film/gimp-org-film" 1562830808
    (proc-def "plug-in-film" 1
         "Combine several images on a film strip"
         "Compose several images to a roll film"
         "Peter Kirchgessner"
         "Peter Kirchgessner (peter@kirchgessner.net)"
         "1997"
         "_Filmstrip..."
         1
        (menu-path "<Image>/Filters/Combine")
        (icon icon-name -1 "")
         "INDEXED*, GRAY*, RGB*"
         12 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (only used as default image in interactive mode)")
        (proc-arg 16 "drawable" "Input drawable (not used)")
        (proc-arg 0 "film-height" "Height of film (0: fit to images)")
        (proc-arg 10 "film-color" "Color of the film")
        (proc-arg 0 "number-start" "Start index for numbering")
        (proc-arg 4 "number-font" "Font for drawing numbers")
        (proc-arg 10 "number-color" "Color for numbers")
        (proc-arg 0 "at-top" "Flag for drawing numbers at top of film")
        (proc-arg 0 "at-bottom" "Flag for drawing numbers at bottom of film")
        (proc-arg 0 "num-images" "Number of images to be used for film")
        (proc-arg 5 "image-ids" "num-images image IDs to be used for film")
        (proc-arg 13 "new-image" "Output image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-xwd/gimp-org-file-xwd" 1562830808
    (proc-def "file-xwd-load" 1
         "Loads files in the XWD (X Window Dump) format"
         "Loads files in the XWD (X Window Dump) format. XWD image files are produced by the program xwd. Xwd is an X Window System window dumping utility."
         "Peter Kirchgessner"
         "Peter Kirchgessner"
         "1996"
         "X window dump"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "xwd")
            (magics "4,long,0x00000007")
            (mime-types "image/x-xwindowdump"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-xwd-save" 1
         "Exports files in the XWD (X Window Dump) format"
         "XWD exporting handles all image types except those with alpha channels."
         "Peter Kirchgessner"
         "Peter Kirchgessner"
         "1996"
         "X window dump"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "xwd")
            (mime-types "image/x-xwindowdump")
            (handles-uri))
         "RGB, GRAY, INDEXED"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-xmc/gimp-org-file-xmc" 1562830808
    (proc-def "file-xmc-load" 1
         "Loads files of X11 Mouse Cursor file format"
         "This plug-in loads X11 Mouse Cursor (XMC) files."
         "Takeshi Matsuyama <tksmashiw@gmail.com>"
         "Takeshi Matsuyama"
         "26 May 2009"
         "X11 Mouse Cursor"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "xmc")
            (magics "0,string,Xcur")
            (mime-types "image/x-xcursor")
            (thumb-loader "file-xmc-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-xmc-load-thumb" 1
         "Loads only first frame of X11 Mouse Cursor's animation sequence which nominal size is the closest of thumb-size to be used as a thumbnail"
         ""
         "Takeshi Matsuyama <tksmashiw@gmail.com>"
         "Takeshi Matsuyama"
         "26 May 2009"
         ""
         0
        (icon icon-name -1 "")
         ""
         2 5
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "The width of image")
        (proc-arg 0 "image-height" "The height of image")
        (proc-arg 0 "image-type" "The color type of image")
        (proc-arg 0 "image-num-layers" "The number of layeres"))
    (proc-def "file-xmc-save" 1
         "Exports files of X11 cursor file"
         "This plug-in exports X11 Mouse Cursor (XMC) files"
         "Takeshi Matsuyama <tksmashiw@gmail.com>"
         "Takeshi Matsuyama"
         "26 May 2009"
         "X11 Mouse Cursor"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "xmc")
            (mime-types "image/x-xcursor"))
         "RGBA"
         15 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 0 "x-hot" "X-coordinate of hot spot")
        (proc-arg 0 "y-hot" "Y-coordinate of hot spot\nUse (-1, -1) to keep original hot spot.")
        (proc-arg 0 "crop" "Auto-crop or not")
        (proc-arg 0 "size" "Default nominal size")
        (proc-arg 0 "size-replace" "Replace existent size or not.")
        (proc-arg 0 "delay" "Default delay")
        (proc-arg 0 "delay-replace" "Replace existent delay or not.")
        (proc-arg 4 "copyright" "Copyright information.")
        (proc-arg 4 "license" "License information.")
        (proc-arg 4 "other" "Other comment.(taken from \"gimp-comment\" parasite)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-xbm/gimp-org-file-xbm" 1562830808
    (proc-def "file-xbm-load" 1
         "Load a file in X10 or X11 bitmap (XBM) file format"
         "Load a file in X10 or X11 bitmap (XBM) file format.  XBM is a lossless format for flat black-and-white (two color indexed) images."
         "Gordon Matzigkeit"
         "Gordon Matzigkeit"
         "1998"
         "X BitMap image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "xbm,icon,bitmap")
            (mime-types "image/x-xbitmap"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-xbm-save" 1
         "Export a file in X10 or X11 bitmap (XBM) file format"
         "Export a file in X10 or X11 bitmap (XBM) file format.  XBM is a lossless format for flat black-and-white (two color indexed) images."
         "Gordon Matzigkeit"
         "Gordon Matzigkeit"
         "1998"
         "X BitMap image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "xbm,icon,bitmap")
            (mime-types "image/x-xbitmap")
            (handles-uri))
         "INDEXED"
         12 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 4 "comment" "Image description (maximum 72 bytes)")
        (proc-arg 0 "x10" "Export in X10 format")
        (proc-arg 0 "x-hot" "X coordinate of hotspot")
        (proc-arg 0 "y-hot" "Y coordinate of hotspot")
        (proc-arg 4 "prefix" "Identifier prefix [determined from filename]")
        (proc-arg 0 "write-mask" "(0 = ignore, 1 = save as extra file)")
        (proc-arg 4 "mask-extension" "Extension of the mask file")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-tiff/gimp-org-file-tiff" 1562830804
    (proc-def "file-tiff-load" 1
         "loads files of the tiff file format"
         "FIXME: write help for tiff_load"
         "Spencer Kimball, Peter Mattis & Nick Lamb"
         "Nick Lamb <njl195@zepler.org.uk>"
         "1995-1996,1998-2003"
         "TIFF image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "tif,tiff")
            (magics "0,string,II*\\0,0,string,MM\\0*")
            (mime-types "image/tiff")
            (handles-uri))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-tiff-save" 1
         "saves files in the tiff file format"
         "Saves files in the Tagged Image File Format.  The value for the saved comment is taken from the 'gimp-comment' parasite."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1995-1996,2000-2003"
         "TIFF image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "tif,tiff")
            (mime-types "image/tiff")
            (handles-uri))
         "RGB*, GRAY*, INDEXED*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }"))
    (proc-def "file-tiff-save2" 1
         "saves files in the tiff file format"
         "Saves files in the Tagged Image File Format.  The value for the saved comment is taken from the 'gimp-comment' parasite."
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1995-1996,2000-2003"
         "TIFF image"
         0
        (icon icon-name -1 "")
         "RGB*, GRAY*, INDEXED*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2), DEFLATE (3), JPEG (4), CCITT G3 Fax (5), CCITT G4 Fax (6) }")
        (proc-arg 0 "save-transp-pixels" "Keep the color data masked by an alpha channel intact (do not store premultiplied components)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-tga/gimp-org-file-tga" 1562830808
    (proc-def "file-tga-load" 1
         "Loads files of Targa file format"
         "FIXME: write help for tga_load"
         "Raphael FRANCOIS, Gordon Matzigkeit"
         "Raphael FRANCOIS, Gordon Matzigkeit"
         "1997,2000,2007"
         "TarGA image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "tga,vda,icb,vst")
            (magics "-18&,string,TRUEVISION-XFILE.,-1,byte,0")
            (mime-types "image/x-tga"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-tga-save" 1
         "exports files in the Targa file format"
         "FIXME: write help for tga_save"
         "Raphael FRANCOIS, Gordon Matzigkeit"
         "Raphael FRANCOIS, Gordon Matzigkeit"
         "1997,2000"
         "TarGA image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "tga")
            (mime-types "image/x-tga"))
         "RGB*, GRAY*, INDEXED*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")
        (proc-arg 0 "rle" "Use RLE compression")
        (proc-arg 0 "origin" "Image origin (0 = top-left, 1 = bottom-left)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-svg/gimp-org-file-svg" 1562830808
    (proc-def "file-svg-load" 1
         "Loads files in the SVG file format"
         "Renders SVG files to raster graphics using librsvg."
         "Dom Lachowicz, Sven Neumann"
         "Dom Lachowicz <cinamod@hotmail.com>"
         "2.5.0"
         "SVG image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "svg")
            (magics "0,string,<?xml,0,string,<svg")
            (mime-types "image/svg+xml")
            (thumb-loader "file-svg-load-thumb"))
         ""
         7 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 3 "resolution" "Resolution to use for rendering the SVG (defaults to 90 dpi)")
        (proc-arg 0 "width" "Width (in pixels) to load the SVG in. (0 for original width, a negative width to specify a maximum width)")
        (proc-arg 0 "height" "Height (in pixels) to load the SVG in. (0 for original height, a negative width to specify a maximum height)")
        (proc-arg 0 "paths" "Whether to not import paths (0), import paths individually (1) or merge all imported paths (2)")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-svg-load-thumb" 1
         "Generates a thumbnail of an SVG image"
         "Renders a thumbnail of an SVG file using librsvg."
         "Dom Lachowicz, Sven Neumann"
         "Dom Lachowicz <cinamod@hotmail.com>"
         "2.5.0"
         ""
         0
        (icon icon-name -1 "")
         ""
         2 3
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-sunras/gimp-org-file-sunras" 1562830808
    (proc-def "file-sunras-load" 1
         "load file of the SunRaster file format"
         "load file of the SunRaster file format"
         "Peter Kirchgessner"
         "Peter Kirchgessner"
         "1996"
         "SUN Rasterfile image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "im1,im8,im24,im32,rs,ras")
            (magics "0,long,0x59a66a95")
            (mime-types "image/x-sun-raster"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-sunras-save" 1
         "export file in the SunRaster file format"
         "SUNRAS exporting handles all image types except those with alpha channels."
         "Peter Kirchgessner"
         "Peter Kirchgessner"
         "1996"
         "SUN Rasterfile image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "im1,im8,im24,im32,rs,ras")
            (mime-types "image/x-sun-raster"))
         "RGB, GRAY, INDEXED"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")
        (proc-arg 0 "rle" "Specify non-zero for rle output, zero for standard output")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-sgi/gimp-org-file-sgi" 1562830804
    (proc-def "file-sgi-load" 1
         "Loads files in SGI image file format"
         "This plug-in loads SGI image files."
         "Michael Sweet <mike@easysw.com>"
         "Copyright 1997-1998 by Michael Sweet"
         "1.1.1 - 17 May 1998"
         "Silicon Graphics IRIS image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "sgi,rgb,rgba,bw,icon")
            (magics "0,short,474")
            (mime-types "image/x-sgi"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-sgi-save" 1
         "Exports files in SGI image file format"
         "This plug-in exports SGI image files."
         "Michael Sweet <mike@easysw.com>"
         "Copyright 1997-1998 by Michael Sweet"
         "1.1.1 - 17 May 1998"
         "Silicon Graphics IRIS image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "sgi,rgb,rgba,bw,icon")
            (mime-types "image/x-sgi"))
         "RGB*, GRAY*, INDEXED*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")
        (proc-arg 0 "compression" "Compression level (0 = none, 1 = RLE, 2 = ARLE)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-raw-placeholder/gimp-org-file-raw-placeholder" 1562830804
    (proc-def "file-raw-placeholder-canon-load" 1
         "Load files in the Canon raw formats via raw-placeholder"
         "This plug-in loads files in Canon's raw formats by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Canon"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "cr2,crw")
            (magics "0,string,II*\\0\\020\\0\\0\\0CR,0,string,II\\024\\0\\0\\0HEAPCCDR")
            (mime-types "image/x-canon-cr2,image/x-canon-crw")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-nikon-load" 1
         "Load files in the Nikon raw formats via raw-placeholder"
         "This plug-in loads files in Nikon's raw formats by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Nikon"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "nef,nrw")
            (mime-types "image/x-nikon-nef,image/x-nikon-nrw")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-hasselblad-load" 1
         "Load files in the Hasselblad raw formats via raw-placeholder"
         "This plug-in loads files in Hasselblad's raw formats by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Hasselblad"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "3fr,fff")
            (mime-types "image/x-hasselblad-3fr,image/x-hasselblad-fff")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-sony-load" 1
         "Load files in the Sony raw formats via raw-placeholder"
         "This plug-in loads files in Sony's raw formats by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Sony"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "arw,srf,sr2")
            (mime-types "image/x-sony-arw,image/x-sony-srf,image/x-sony-sr2")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-bay-load" 1
         "Load files in the BAY raw format via raw-placeholder"
         "This plug-in loads files in Casio's raw BAY format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Casio BAY"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "bay")
            (mime-types "image/x-casio-bay")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-cine-load" 1
         "Load files in the CINE raw format via raw-placeholder"
         "This plug-in loads files in Phantom Software's raw CINE format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Phantom Software CINE"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "cine,cin")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-sinar-load" 1
         "Load files in the Sinar raw formats via raw-placeholder"
         "This plug-in loads files in Sinar's raw formats by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Sinar"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "cs1,ia,sti")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-kodak-load" 1
         "Load files in the Kodak raw formats via raw-placeholder"
         "This plug-in loads files in Kodak's raw formats by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Kodak"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "dc2,dcr,kdc,k25,kc2")
            (mime-types "image/x-kodak-dc2,image/x-kodak-dcr,image/x-kodak-kdc,image/x-kodak-k25,image/x-kodak-kc2")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-dng-load" 1
         "Load files in the DNG raw format via raw-placeholder"
         "This plug-in loads files in the Adobe Digital Negative DNG format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Adobe DNG Digital Negative"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "dng")
            (mime-types "image/x-adobe-dng")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-erf-load" 1
         "Load files in the ERF raw format via raw-placeholder"
         "This plug-in loads files in Epson's raw ERF format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Epson ERF"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "erf")
            (mime-types "image/x-epson-erf")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-phaseone-load" 1
         "Load files in the Phase One raw formats via raw-placeholder"
         "This plug-in loads files in Phase One's raw formats by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Phase One"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "cap,iiq")
            (mime-types "image/x-phaseone-cap,image/x-phaseone-iiq")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-minolta-load" 1
         "Load files in the Minolta raw formats via raw-placeholder"
         "This plug-in loads files in Minolta's raw formats by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Minolta"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "mdc,mrw")
            (mime-types "image/x-minolta-mdc,image/x-minolta-mrw")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-mef-load" 1
         "Load files in the MEF raw format via raw-placeholder"
         "This plug-in loads files in Mamiya's raw MEF format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Mamiya MEF"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "mef")
            (mime-types "image/x-mamiya-mef")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-mos-load" 1
         "Load files in the MOS raw format via raw-placeholder"
         "This plug-in loads files in Leaf's raw MOS format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Leaf MOS"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "mos")
            (mime-types "image/x-leaf-mos")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-orf-load" 1
         "Load files in the ORF raw format via raw-placeholder"
         "This plug-in loads files in Olympus' raw ORF format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Olympus ORF"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "orf")
            (magics "0,string,IIRO,0,string,MMOR,0,string,IIRS")
            (mime-types "image/x-olympus-orf")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-pef-load" 1
         "Load files in the PEF raw format via raw-placeholder"
         "This plug-in loads files in Pentax' raw PEF format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Pentax PEF"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "pef,raw")
            (mime-types "image/x-pentax-pef,image/x-pentax-raw")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-pxn-load" 1
         "Load files in the PXN raw format via raw-placeholder"
         "This plug-in loads files in Logitech's raw PXN format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Logitech PXN"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "pxn")
            (mime-types "image/x-pxn")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-qtk-load" 1
         "Load files in the QTK raw format via raw-placeholder"
         "This plug-in loads files in Apple's QuickTake QTK raw format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Apple QuickTake QTK"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "qtk")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-raf-load" 1
         "Load files in the RAF raw format via raw-placeholder"
         "This plug-in loads files in Fujifilm's raw RAF format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Fujifilm RAF"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "raf")
            (magics "0,string,FUJIFILMCCD-RAW")
            (mime-types "image/x-fuji-raf")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-panasonic-load" 1
         "Load files in the Panasonic raw formats via raw-placeholder"
         "This plug-in loads files in Panasonic's raw formats by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Panasonic"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "raw,rw2")
            (magics "0,string,IIU\\0")
            (mime-types "image/x-panasonic-raw,image/x-panasonic-rw2")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-rdc-load" 1
         "Load files in the RDC raw format via raw-placeholder"
         "This plug-in loads files in Digital Foto Maker's raw RDC format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Digital Foto Maker RDC"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "rdc")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-rwl-load" 1
         "Load files in the RWL raw format via raw-placeholder"
         "This plug-in loads files in Leica's raw RWL format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Leica RWL"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "rwl")
            (mime-types "image/x-leica-rwl")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-srw-load" 1
         "Load files in the SRW raw format via raw-placeholder"
         "This plug-in loads files in Samsung's raw SRW format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Samsung SRW"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "srw")
            (mime-types "image/x-samsung-srw")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-x3f-load" 1
         "Load files in the X3F raw format via raw-placeholder"
         "This plug-in loads files in Sigma's raw X3F format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Sigma X3F"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "x3f")
            (magics "0,string,FOVb")
            (mime-types "image/x-sigma-x3f")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-placeholder-ari-load" 1
         "Load files in the ARI raw format via raw-placeholder"
         "This plug-in loads files in Arriflex' raw ARI format by calling raw-placeholder."
         "Tobias Ellinghaus"
         "Tobias Ellinghaus"
         "2016"
         "Raw Arriflex ARI"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "ari")
            (handles-raw))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-raw-data/gimp-org-file-raw-data" 1562830808
    (proc-def "file-raw-load" 1
         "Load raw images, specifying image information"
         "Load raw images, specifying image information"
         "timecop, pg@futureware.at"
         "timecop, pg@futureware.at"
         "Aug 2004"
         "Raw image data"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "data"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-hgt-load" 1
         "Load HGT data as images"
         "Load Digital Elevation Model data in HGT format from the Shuttle Radar Topography Mission as images. Though the output image will be RGB, all colors are grayscale by default and the contrast will be quite low on most earth relief. Therefore You will likely want to remap elevation to colors as a second step, for instance with the \"Gradient Map\" plug-in."
         ""
         ""
         "2017-12-09"
         "Digital Elevation Model data"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "hgt"))
         ""
         4 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 0 "samplespacing" "The sample spacing of the data. Only supported values are 0, 1 and 3 (respectively auto-detect, SRTM-1 and SRTM-3 data)")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-raw-save" 1
         "Dump images to disk in raw format"
         "This plug-in dumps images to disk in raw format, using the default settings stored as a parasite."
         "timecop, pg@futureware.at"
         "timecop, pg@futureware.at"
         "Aug 2004"
         "Raw image data"
         0
        (icon icon-name -1 "")
         "INDEXED, GRAY, RGB, RGBA"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered"))
    (proc-def "file-raw-save2" 1
         "Dump images to disk in raw format"
         "Dump images to disk in raw format"
         "Björn Kautler, Bjoern@Kautler.net"
         "Björn Kautler, Bjoern@Kautler.net"
         "April 2014"
         "Raw image data"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "data,raw"))
         "INDEXED, GRAY, RGB, RGBA"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }")
        (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }"))
    (proc-def "file-raw-get-defaults" 1
         "Get the current set of defaults used by the raw image data dump plug-in"
         "This procedure returns the current set of defaults stored as a parasite for the raw image data dump plug-in. These defaults are used to seed the UI, by the file_raw_save_defaults procedure, and by gimp_file_save when it detects to use RAW."
         "Björn Kautler, Bjoern@Kautler.net"
         "Björn Kautler, Bjoern@Kautler.net"
         "April 2014"
         ""
         0
        (icon icon-name -1 "")
         ""
         0 2
        (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }")
        (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }"))
    (proc-def "file-raw-set-defaults" 1
         "Set the current set of defaults used by the raw image dump plug-in"
         "This procedure sets the current set of defaults stored as a parasite for the raw image data dump plug-in. These defaults are used to seed the UI, by the file_raw_save_defaults procedure, and by gimp_file_save when it detects to use RAW."
         "Björn Kautler, Bjoern@Kautler.net"
         "Björn Kautler, Bjoern@Kautler.net"
         "April 2014"
         ""
         0
        (icon icon-name -1 "")
         ""
         2 0
        (proc-arg 0 "image-type" "The image type { RAW_RGB (0), RAW_PLANAR (3) }")
        (proc-arg 0 "palette-type" "The palette type { RAW_PALETTE_RGB (0), RAW_PALETTE_BGR (1) }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-psp/gimp-org-file-psp" 1562830808
    (proc-def "file-psp-load" 1
         "loads images from the Paint Shop Pro PSP file format"
         "This plug-in loads and exports images in Paint Shop Pro's native PSP format. Vector layers aren't handled. Exporting isn't yet implemented."
         "Tor Lillqvist"
         "Tor Lillqvist"
         "1999"
         "Paint Shop Pro image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "psp,tub,pspimage")
            (magics "0,string,Paint\\040Shop\\040Pro\\040Image\\040File\n\032")
            (mime-types "image/x-psp"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-psd/gimp-org-file-psd" 1562830804
    (proc-def "file-psd-load" 1
         "Loads images from the Photoshop PSD file format"
         "This plug-in loads images in Adobe Photoshop (TM) native PSD format."
         "John Marshall"
         "John Marshall"
         "2007"
         "Photoshop image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "psd")
            (magics "0,string,8BPS")
            (mime-types "image/x-psd")
            (thumb-loader "file-psd-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-psd-load-merged" 1
         "Loads merged images from the Photoshop PSD file format"
         "This plug-in loads the merged image data in Adobe Photoshop (TM) native PSD format."
         "Ell"
         "Ell"
         "2018"
         "Photoshop image (merged)"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "psd")
            (magics "0,string,8BPS")
            (priority 1)
            (mime-types "image/x-psd")
            (priority 1))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-psd-load-thumb" 1
         "Loads thumbnails from the Photoshop PSD file format"
         "This plug-in loads thumbnail images from Adobe Photoshop (TM) native PSD format files."
         "John Marshall"
         "John Marshall"
         "2007"
         ""
         0
        (icon icon-name -1 "")
         ""
         2 3
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image"))
    (proc-def "file-psd-save" 1
         "saves files in the Photoshop(tm) PSD file format"
         "This filter saves files of Adobe Photoshop(tm) native PSD format.  These files may be of any image type supported by GIMP, with or without layers, layer masks, aux channels and guides."
         "Monigotes"
         "Monigotes"
         "2000"
         "Photoshop image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "psd")
            (mime-types "image/x-psd"))
         "RGB*, GRAY*, INDEXED*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2)")
        (proc-arg 0 "fill-order" "Fill Order: { MSB to LSB (0), LSB to MSB (1)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-pnm/gimp-org-file-pnm" 1562830808
    (proc-def "file-pnm-load" 1
         "Loads files in the PNM file format"
         "This plug-in loads files in the various Netpbm portable file formats."
         "Erik Nygren"
         "Erik Nygren"
         "1996"
         "PNM Image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "pnm,ppm,pgm,pbm,pfm")
            (magics "0,string,P1,0,string,P2,0,string,P3,0,string,P4,0,string,P5,0,string,P6,0,string,PF,0,string,Pf")
            (mime-types "image/x-portable-anymap")
            (handles-uri))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-pnm-save" 1
         "Exports files in the PNM file format"
         "PNM exporting handles all image types without transparency."
         "Erik Nygren"
         "Erik Nygren"
         "1996"
         "PNM image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "pnm")
            (mime-types "image/x-portable-anymap")
            (handles-uri))
         "RGB, GRAY, INDEXED"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")
        (proc-arg 0 "raw" "TRUE for raw output, FALSE for ascii output"))
    (proc-def "file-pbm-save" 1
         "Exports files in the PBM file format"
         "PBM exporting produces mono images without transparency."
         "Martin K Collins"
         "Erik Nygren"
         "2006"
         "PBM image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "pbm")
            (mime-types "image/x-portable-bitmap")
            (handles-uri))
         "RGB, GRAY, INDEXED"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")
        (proc-arg 0 "raw" "TRUE for raw output, FALSE for ascii output"))
    (proc-def "file-pgm-save" 1
         "Exports files in the PGM file format"
         "PGM exporting produces grayscale images without transparency."
         "Erik Nygren"
         "Erik Nygren"
         "1996"
         "PGM image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "pgm")
            (mime-types "image/x-portable-graymap")
            (handles-uri))
         "RGB, GRAY, INDEXED"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")
        (proc-arg 0 "raw" "TRUE for raw output, FALSE for ascii output"))
    (proc-def "file-ppm-save" 1
         "Exports files in the PPM file format"
         "PPM exporting handles RGB images without transparency."
         "Erik Nygren"
         "Erik Nygren"
         "1996"
         "PPM image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "ppm")
            (mime-types "image/x-portable-floatmap")
            (handles-uri))
         "RGB, GRAY, INDEXED"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")
        (proc-arg 0 "raw" "TRUE for raw output, FALSE for ascii output"))
    (proc-def "file-pfm-save" 1
         "Exports files in the PFM file format"
         "PFM exporting handles all images without transparency."
         "Mukund Sivaraman"
         "Mukund Sivaraman"
         "2015"
         "PFM image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "pfm")
            (handles-uri))
         "RGB, GRAY, INDEXED"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-png/gimp-org-file-png" 1562830808
    (proc-def "file-png-load" 1
         "Loads files in PNG file format"
         "This plug-in loads Portable Network Graphics (PNG) files."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         "PNG image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "png")
            (magics "0,string,‰PNG\r\n\032\n")
            (mime-types "image/png"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-png-save" 1
         "Exports files in PNG file format"
         "This plug-in exports Portable Network Graphics (PNG) files."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         "PNG image"
         0
        (icon icon-name -1 "")
         "RGB*,GRAY*,INDEXED*"
         12 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")
        (proc-arg 0 "interlace" "Use Adam7 interlacing?")
        (proc-arg 0 "compression" "Deflate Compression factor (0--9)")
        (proc-arg 0 "bkgd" "Write bKGD chunk?")
        (proc-arg 0 "gama" "Write gAMA chunk?")
        (proc-arg 0 "offs" "Write oFFs chunk?")
        (proc-arg 0 "phys" "Write pHYs chunk?")
        (proc-arg 0 "time" "Write tIME chunk?"))
    (proc-def "file-png-save2" 1
         "Exports files in PNG file format"
         "This plug-in exports Portable Network Graphics (PNG) files. This procedure adds 2 extra parameters to file-png-save that control whether image comments are saved and whether transparent pixels are saved or nullified."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         "PNG image"
         0
        (icon icon-name -1 "")
         "RGB*,GRAY*,INDEXED*"
         14 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")
        (proc-arg 0 "interlace" "Use Adam7 interlacing?")
        (proc-arg 0 "compression" "Deflate Compression factor (0--9)")
        (proc-arg 0 "bkgd" "Write bKGD chunk?")
        (proc-arg 0 "gama" "Write gAMA chunk?")
        (proc-arg 0 "offs" "Write oFFs chunk?")
        (proc-arg 0 "phys" "Write pHYs chunk?")
        (proc-arg 0 "time" "Write tIME chunk?")
        (proc-arg 0 "comment" "Write comment?")
        (proc-arg 0 "svtrans" "Preserve color of transparent pixels?"))
    (proc-def "file-png-save-defaults" 1
         "Exports files in PNG file format"
         "This plug-in exports Portable Network Graphics (PNG) files, using the default settings stored as a parasite."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         "PNG image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "png")
            (mime-types "image/png"))
         "RGB*,GRAY*,INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in"))
    (proc-def "file-png-get-defaults" 1
         "Get the current set of defaults used by the PNG file export plug-in"
         "This procedure returns the current set of defaults stored as a parasite for the PNG export plug-in. These defaults are used to seed the UI, by the file_png_save_defaults procedure, and by gimp_file_save when it detects to use PNG."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         ""
         0
        (icon icon-name -1 "")
         ""
         0 9
        (proc-arg 0 "interlace" "Use Adam7 interlacing?")
        (proc-arg 0 "compression" "Deflate Compression factor (0--9)")
        (proc-arg 0 "bkgd" "Write bKGD chunk?")
        (proc-arg 0 "gama" "Write gAMA chunk?")
        (proc-arg 0 "offs" "Write oFFs chunk?")
        (proc-arg 0 "phys" "Write pHYs chunk?")
        (proc-arg 0 "time" "Write tIME chunk?")
        (proc-arg 0 "comment" "Write comment?")
        (proc-arg 0 "svtrans" "Preserve color of transparent pixels?"))
    (proc-def "file-png-set-defaults" 1
         "Set the current set of defaults used by the PNG file export plug-in"
         "This procedure set the current set of defaults stored as a parasite for the PNG export plug-in. These defaults are used to seed the UI, by the file_png_save_defaults procedure, and by gimp_file_save when it detects to use PNG."
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>"
         "Michael Sweet <mike@easysw.com>, Daniel Skarda <0rfelyus@atrey.karlin.mff.cuni.cz>, Nick Lamb <njl195@zepler.org.uk>"
         "1.3.4 - 03 September 2002"
         ""
         0
        (icon icon-name -1 "")
         ""
         9 0
        (proc-arg 0 "interlace" "Use Adam7 interlacing?")
        (proc-arg 0 "compression" "Deflate Compression factor (0--9)")
        (proc-arg 0 "bkgd" "Write bKGD chunk?")
        (proc-arg 0 "gama" "Write gAMA chunk?")
        (proc-arg 0 "offs" "Write oFFs chunk?")
        (proc-arg 0 "phys" "Write pHYs chunk?")
        (proc-arg 0 "time" "Write tIME chunk?")
        (proc-arg 0 "comment" "Write comment?")
        (proc-arg 0 "svtrans" "Preserve color of transparent pixels?")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-pix/gimp-org-file-pix" 1562830808
    (proc-def "file-pix-load" 1
         "loads files of the Alias|Wavefront Pix file format"
         "loads files of the Alias|Wavefront Pix file format"
         "Michael Taylor"
         "Michael Taylor"
         "1997"
         "Alias Pix image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "pix,matte,mask,alpha,als")
            (handles-uri))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-pix-save" 1
         "export file in the Alias|Wavefront pix/matte file format"
         "export file in the Alias|Wavefront pix/matte file format"
         "Michael Taylor"
         "Michael Taylor"
         "1997"
         "Alias Pix image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "pix,matte,mask,alpha,als")
            (handles-uri))
         "RGB*, GRAY*, INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-pdf-save/gimp-org-file-pdf-save" 1562830808
    (proc-def "file-pdf-save" 1
         "Save files in PDF format"
         "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript."
         "Barak Itkin"
         "Copyright Barak Itkin"
         "August 2009"
         "Portable Document Format"
         0
        (icon icon-name -1 "")
         "RGB*, GRAY*, INDEXED*"
         8 0
        (proc-arg 0 "run-mode" "Run mode")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE")
        (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE")
        (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)"))
    (proc-def "file-pdf-save2" 1
         "Save files in PDF format"
         "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nThis procedure adds an extra parameter to file-pdf-save to save layers as pages."
         "Barak Itkin, Lionel N., Jehan"
         "Copyright Barak Itkin, Lionel N., Jehan"
         "August 2009, 2017"
         "Portable Document Format"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "pdf")
            (mime-types "application/pdf"))
         "RGB*, GRAY*, INDEXED*"
         10 0
        (proc-arg 0 "run-mode" "Run mode")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE")
        (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE")
        (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)")
        (proc-arg 0 "layers-as-pages" "Layers as pages (bottom layers first). TRUE or FALSE")
        (proc-arg 0 "reverse-order" "Reverse the pages order (top layers first). TRUE or FALSE"))
    (proc-def "file-pdf-save-multi" 1
         "Save files in PDF format"
         "Saves files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript."
         "Barak Itkin"
         "Copyright Barak Itkin"
         "August 2009"
         "_Create multipage PDF..."
         0
        (icon icon-name -1 "")
         "RGB*, GRAY*, INDEXED*"
         8 0
        (proc-arg 0 "run-mode" "Run mode")
        (proc-arg 0 "count" "The amount of images entered (This will be the amount of pages). 1 <= count <= MAX_PAGE_COUNT")
        (proc-arg 5 "images" "Input image for each page (An image can appear more than once)")
        (proc-arg 0 "vectorize" "Convert bitmaps to vector graphics where possible. TRUE or FALSE")
        (proc-arg 0 "ignore-hidden" "Omit hidden layers and layers with zero opacity. TRUE or FALSE")
        (proc-arg 0 "apply-masks" "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-pdf-load/gimp-org-file-pdf-load" 1562830808
    (proc-def "file-pdf-load" 1
         "Load file in PDF format"
         "Loads files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nIf the PDF document has multiple pages, only the first page will be loaded. Call file_pdf_load2() to load several pages as layers."
         "Nathan Summers"
         "Nathan Summers"
         "2005"
         "Portable Document Format"
         0
        (icon icon-name -1 "")
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-pdf-load2" 1
         "Load file in PDF format"
         "Loads files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript.\nThis procedure adds extra parameters to file-pdf-load to open encrypted PDF and to allow multiple page loading."
         "Nathan Summers, Lionel N."
         "Nathan Summers, Lionel N."
         "2005, 2017"
         "Portable Document Format"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "pdf")
            (magics "0, string,%PDF-")
            (mime-types "application/pdf")
            (thumb-loader "file-pdf-load-thumb"))
         ""
         6 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 4 "pdf-password" "The password to decrypt the encrypted PDF file")
        (proc-arg 0 "n-pages" "Number of pages to load (0 for all)")
        (proc-arg 5 "pages" "The pages to load in the expected order")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-pdf-load-thumb" 1
         "Loads a preview from a PDF file."
         "Loads a small preview of the first page of the PDF format file. Uses the embedded thumbnail if present."
         "Nathan Summers"
         "Nathan Summers"
         "2005"
         ""
         0
        (icon icon-name -1 "")
         ""
         2 5
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image")
        (proc-arg 0 "image-type" "Image type")
        (proc-arg 0 "num-layers" "Number of pages")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-pcx/gimp-org-file-pcx" 1562830808
    (proc-def "file-pcx-load" 1
         "Loads files in Zsoft PCX file format"
         "FIXME: write help for pcx_load"
         "Francisco Bustamante & Nick Lamb"
         "Nick Lamb <njl195@zepler.org.uk>"
         "January 1997"
         "ZSoft PCX image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "pcx,pcc")
            (magics "0&,byte,10,2&,byte,1,3&,byte,>0,3,byte,<9")
            (mime-types "image/x-pcx"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-pcx-save" 1
         "Exports files in ZSoft PCX file format"
         "FIXME: write help for pcx_save"
         "Francisco Bustamante & Nick Lamb"
         "Nick Lamb <njl195@zepler.org.uk>"
         "January 1997"
         "ZSoft PCX image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "pcx,pcc")
            (mime-types "image/x-pcx"))
         "INDEXED, RGB, GRAY"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name entered")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-pat/gimp-org-file-pat" 1562830808
    (proc-def "file-pat-save" 1
         "Exports Gimp pattern file (.PAT)"
         "New Gimp patterns can be created by exporting them in the appropriate place with this plug-in."
         "Tim Newsome"
         "Tim Newsome"
         "1997"
         "GIMP pattern"
         0
        (icon icon-name -1 "gimp-pattern")
        (save-proc
            (extensions "pat")
            (mime-types "image/x-gimp-pat")
            (handles-uri))
         "RGB*, GRAY*, INDEXED*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "uri" "The URI of the file to export the image in")
        (proc-arg 4 "raw-uri" "The URI of the file to export the image in")
        (proc-arg 4 "description" "Short description of the pattern")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-mng/gimp-org-file-mng" 1562830808
    (proc-def "file-mng-save" 1
         "Saves images in the MNG file format"
         "This plug-in saves images in the Multiple-image Network Graphics (MNG) format which can be used as a replacement for animated GIFs, and more."
         "Mukund Sivaraman <muks@mukund.org>"
         "Mukund Sivaraman <muks@mukund.org>"
         "November 19, 2002"
         "MNG animation"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "mng")
            (mime-types "image/x-mng"))
         "RGB*,GRAY*,INDEXED*"
         17 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 0 "interlace" "Use interlacing")
        (proc-arg 0 "compression" "PNG deflate compression level (0 - 9)")
        (proc-arg 3 "quality" "JPEG quality factor (0.00 - 1.00)")
        (proc-arg 3 "smoothing" "JPEG smoothing factor (0.00 - 1.00)")
        (proc-arg 0 "loop" "(ANIMATED MNG) Loop infinitely")
        (proc-arg 0 "default-delay" "(ANIMATED MNG) Default delay between frames in milliseconds")
        (proc-arg 0 "default-chunks" "(ANIMATED MNG) Default chunks type (0 = PNG + Delta PNG; 1 = JNG + Delta PNG; 2 = All PNG; 3 = All JNG)")
        (proc-arg 0 "default-dispose" "(ANIMATED MNG) Default dispose type (0 = combine; 1 = replace)")
        (proc-arg 0 "bkgd" "Write bKGD (background color) chunk")
        (proc-arg 0 "gama" "Write gAMA (gamma) chunk")
        (proc-arg 0 "phys" "Write pHYs (image resolution) chunk")
        (proc-arg 0 "time" "Write tIME (creation time) chunk")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-jpeg/gimp-org-file-jpeg" 1562830804
    (proc-def "file-jpeg-load" 1
         "loads files in the JPEG file format"
         "loads files in the JPEG file format"
         "Spencer Kimball, Peter Mattis & others"
         "Spencer Kimball & Peter Mattis"
         "1995-2007"
         "JPEG image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "jpg,jpeg,jpe")
            (magics "6,string,JFIF,6,string,Exif")
            (mime-types "image/jpeg")
            (thumb-loader "file-jpeg-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-jpeg-load-thumb" 1
         "Loads a thumbnail from a JPEG image"
         "Loads a thumbnail from a JPEG image (only if it exists)"
         "Mukund Sivaraman <muks@mukund.org>, Sven Neumann <sven@gimp.org>"
         "Mukund Sivaraman <muks@mukund.org>, Sven Neumann <sven@gimp.org>"
         "November 15, 2004"
         ""
         0
        (icon icon-name -1 "")
         ""
         2 3
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image"))
    (proc-def "file-jpeg-save" 1
         "saves files in the JPEG file format"
         "saves files in the lossy, widely supported JPEG format"
         "Spencer Kimball, Peter Mattis & others"
         "Spencer Kimball & Peter Mattis"
         "1995-2007"
         "JPEG image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "jpg,jpeg,jpe")
            (mime-types "image/jpeg"))
         "RGB*, GRAY*"
         14 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")
        (proc-arg 3 "quality" "Quality of saved image (0 <= quality <= 1)")
        (proc-arg 3 "smoothing" "Smoothing factor for saved image (0 <= smoothing <= 1)")
        (proc-arg 0 "optimize" "Use optimized tables during Huffman coding (0/1)")
        (proc-arg 0 "progressive" "Create progressive JPEG images (0/1)")
        (proc-arg 4 "comment" "Image comment")
        (proc-arg 0 "subsmp" "Sub-sampling type { 0, 1, 2, 3 } 0 == 4:2:0 (chroma quartered), 1 == 4:2:2 Horizontal (chroma halved), 2 == 4:4:4 (best quality), 3 == 4:2:2 Vertical (chroma halved)")
        (proc-arg 0 "baseline" "Force creation of a baseline JPEG (non-baseline JPEGs can't be read by all decoders) (0/1)")
        (proc-arg 0 "restart" "Interval of restart markers (in MCU rows, 0 = no restart markers)")
        (proc-arg 0 "dct" "DCT method to use { INTEGER (0), FIXED (1), FLOAT (2) }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-jp2-load/gimp-org-file-jp2-load" 1562830808
    (proc-def "file-jp2-load" 1
         "Loads JPEG 2000 images."
         "The JPEG 2000 image loader."
         "Mukund Sivaraman"
         "Mukund Sivaraman"
         "2009"
         "JPEG 2000 image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "jp2")
            (magics "3,string,\fjP")
            (mime-types "image/jp2"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-j2k-load" 1
         "Loads JPEG 2000 codestream."
         "Loads JPEG 2000 codestream. If the color space is set to UNKNOWN (0), we will try to guess, which is only possible for few spaces (such as grayscale). Most such calls will fail. You are rather expected to know the color space of your data."
         "Jehan"
         "Jehan"
         "2009"
         "JPEG 2000 codestream"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "j2k,j2c,jpc")
            (magics "0,string,ÿOÿQ")
            (mime-types "image/x-jp2-codestream"))
         ""
         4 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 0 "colorspace" "Color space { UNKNOWN (0), GRAYSCALE (1), RGB (2), CMYK (3), YCbCr (4), xvYCC (5) }")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-ico/gimp-org-file-ico" 1562830804
    (proc-def "file-ico-load" 1
         "Loads files of Windows ICO file format"
         "Loads files of Windows ICO file format"
         "Christian Kreibich <christian@whoop.org>"
         "Christian Kreibich <christian@whoop.org>"
         "2002"
         "Microsoft Windows icon"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "ico")
            (magics "0,string,\\000\\001\\000\\000,0,string,\\000\\002\\000\\000")
            (mime-types "image/x-ico")
            (thumb-loader "file-ico-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-ico-load-thumb" 1
         "Loads a preview from an Windows ICO file"
         ""
         "Dom Lachowicz, Sven Neumann"
         "Sven Neumann <sven@gimp.org>"
         "2005"
         ""
         0
        (icon icon-name -1 "")
         ""
         2 3
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image"))
    (proc-def "file-ico-save" 1
         "Saves files in Windows ICO file format"
         "Saves files in Windows ICO file format"
         "Christian Kreibich <christian@whoop.org>"
         "Christian Kreibich <christian@whoop.org>"
         "2002"
         "Microsoft Windows icon"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "ico")
            (mime-types "image/x-ico"))
         "*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-html-table/gimp-org-file-html-table" 1562830807
    (proc-def "file-gtm-save" 1
         "GIMP Table Magic"
         "Allows you to draw an HTML table in GIMP. See help for more info."
         "Daniel Dunbar"
         "Daniel Dunbar"
         "1998"
         "HTML table"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "html,htm")
            (mime-types "text/html")
            (handles-uri))
         "RGB*, GRAY*, INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-header/gimp-org-file-header" 1562830807
    (proc-def "file-header-save" 1
         "saves files as C unsigned character array"
         "FIXME: write help"
         "Spencer Kimball & Peter Mattis"
         "Spencer Kimball & Peter Mattis"
         "1997"
         "C source code header"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "h")
            (mime-types "text/x-chdr")
            (handles-uri))
         "INDEXED, RGB"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-glob/gimp-org-file-glob" 1562830807
    (proc-def "file-glob" 1
         "Returns a list of matching filenames"
         "This can be useful in scripts and other plug-ins (e.g., batch-conversion). See the glob(7) manpage for more info. Note however that this isn't a full-featured glob implementation. It only handles simple patterns like \"/home/foo/bar/*.jpg\"."
         "Sven Neumann"
         "Sven Neumann"
         "2004"
         ""
         0
        (icon icon-name -1 "")
         ""
         2 2
        (proc-arg 4 "pattern" "The glob pattern (in UTF-8 encoding)")
        (proc-arg 0 "encoding" "Encoding of the returned names: { UTF-8 (0), filename encoding (1) }")
        (proc-arg 0 "num-files" "The number of returned names")
        (proc-arg 9 "files" "The list of matching names")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-gih/gimp-org-file-gih" 1562830807
    (proc-def "file-gih-save" 1
         "exports images in GIMP brush pipe format"
         "This plug-in exports an image in the GIMP brush pipe format. For a colored brush pipe, RGBA layers are used, otherwise the layers should be grayscale masks. The image can be multi-layered, and additionally the layers can be divided into a rectangular array of brushes."
         "Tor Lillqvist"
         "Tor Lillqvist"
         "1999"
         "GIMP brush (animated)"
         0
        (icon icon-name -1 "gimp-tool-paintbrush")
        (save-proc
            (extensions "gih")
            (mime-types "image/x-gimp-gih")
            (handles-uri))
         "RGB*, GRAY*"
         15 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "uri" "The URI of the file to export the brush pipe in")
        (proc-arg 4 "raw-uri" "The URI of the file to export the brush pipe in")
        (proc-arg 0 "spacing" "Spacing of the brush")
        (proc-arg 4 "description" "Short description of the brush pipe")
        (proc-arg 0 "cell-width" "Width of the brush cells")
        (proc-arg 0 "cell-height" "Width of the brush cells")
        (proc-arg 2 "display-cols" "Display column number")
        (proc-arg 2 "display-rows" "Display row number")
        (proc-arg 0 "dimension" "Dimension of the brush pipe")
        (proc-arg 7 "rank" "Ranks of the dimensions")
        (proc-arg 0 "dimension" "Dimension (again)")
        (proc-arg 9 "sel" "Selection modes")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-gif-save/gimp-org-file-gif-save" 1562830807
    (proc-def "file-gif-save" 1
         "exports files in Compuserve GIF file format"
         "Export a file in Compuserve GIF format, with possible animation, transparency, and comment.  To export an animation, operate on a multi-layer file.  The plug-in will interpret <50% alpha as transparent.  When run non-interactively, the value for the comment is taken from the 'gimp-comment' parasite.  "
         "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas"
         "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas"
         "1995-1997"
         "GIF image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "gif")
            (mime-types "image/gif")
            (handles-uri))
         "INDEXED*, GRAY*"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Image to export")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "uri" "The name of the URI to export the image in")
        (proc-arg 4 "raw-uri" "The name of the URI to export the image in")
        (proc-arg 0 "interlace" "Try to export as interlaced")
        (proc-arg 0 "loop" "(animated gif) loop infinitely")
        (proc-arg 0 "default-delay" "(animated gif) Default delay between frames in milliseconds")
        (proc-arg 0 "default-dispose" "(animated gif) Default disposal type (0=`don't care`, 1=combine, 2=replace)"))
    (proc-def "file-gif-save2" 1
         "exports files in Compuserve GIF file format"
         "Export a file in Compuserve GIF format, with possible animation, transparency, and comment.  To export an animation, operate on a multi-layer file and give the 'as-animation' parameter as TRUE.  The plug-in will interpret <50% alpha as transparent.  When run non-interactively, the value for the comment is taken from the 'gimp-comment' parasite.  "
         "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas"
         "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas"
         "1995-1997"
         "GIF image"
         0
        (icon icon-name -1 "")
         "INDEXED*, GRAY*"
         12 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Image to export")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "uri" "The name of the URI to export the image in")
        (proc-arg 4 "raw-uri" "The name of the URI to export the image in")
        (proc-arg 0 "interlace" "Try to export as interlaced")
        (proc-arg 0 "loop" "(animated gif) loop infinitely")
        (proc-arg 0 "default-delay" "(animated gif) Default delay between frames in milliseconds")
        (proc-arg 0 "default-dispose" "(animated gif) Default disposal type (0=`don't care`, 1=combine, 2=replace)")
        (proc-arg 0 "as-animation" "Export GIF as animation?")
        (proc-arg 0 "force-delay" "(animated gif) Use specified delay for all frames?")
        (proc-arg 0 "force-dispose" "(animated gif) Use specified disposal for all frames?")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-gif-load/gimp-org-file-gif-load" 1562830807
    (proc-def "file-gif-load" 1
         "Loads files of Compuserve GIF file format"
         "FIXME: write help for gif_load"
         "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas"
         "Spencer Kimball, Peter Mattis, Adam Moss, David Koblas"
         "1995-2006"
         "GIF image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "gif")
            (magics "0,string,GIF8")
            (mime-types "image/gif")
            (thumb-loader "file-gif-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-gif-load-thumb" 1
         "Loads only the first frame of a GIF image, to be used as a thumbnail"
         ""
         "Sven Neumann"
         "Sven Neumann"
         "2006"
         ""
         0
        (icon icon-name -1 "")
         ""
         2 3
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Output image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-gegl/gimp-org-file-gegl" 1562830807
    (proc-def "file-load-rgbe" 1
         "Load files in the RGBE file format"
         "This procedure loads images in the RGBE format, using gegl:load"
         "Simon Budig"
         "Simon Budig"
         "2012"
         "Radiance RGBE"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "hdr")
            (magics "0,string,?#")
            (mime-types "image/vnd.radiance"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load.")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-save-rgbe" 1
         "Saves files in the RGBE file format"
         "This procedure exports images in the RGBE format, using gegl:save"
         "Simon Budig"
         "Simon Budig"
         "2012"
         "Radiance RGBE"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "hdr")
            (mime-types "image/vnd.radiance"))
         "*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in"))
    (proc-def "file-exr-save" 1
         "Saves files in the OpenEXR file format"
         "This procedure saves images in the OpenEXR format, using gegl:save"
         "Simon Budig"
         "Simon Budig"
         "2012"
         "OpenEXR image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "exr")
            (mime-types "image/x-exr"))
         "*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-gbr/gimp-org-file-gbr" 1562830807
    (proc-def "file-gbr-save" 1
         "Exports files in the GIMP brush file format"
         "Exports files in the GIMP brush file format"
         "Tim Newsome, Jens Lautenbacher, Sven Neumann"
         "Tim Newsome, Jens Lautenbacher, Sven Neumann"
         "1997-2000"
         "GIMP brush"
         0
        (icon icon-name -1 "gimp-tool-paintbrush")
        (save-proc
            (extensions "gbr")
            (mime-types "image/x-gimp-gbr")
            (handles-uri))
         "RGB*, GRAY*, INDEXED*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "uri" "The URI of the file to export the image in")
        (proc-arg 4 "raw-uri" "The URI of the file to export the image in")
        (proc-arg 0 "spacing" "Spacing of the brush")
        (proc-arg 4 "description" "Short description of the brush")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-fli/gimp-org-file-fli" 1562830804
    (proc-def "file-fli-load" 1
         "load FLI-movies"
         "This is an experimantal plug-in to handle FLI movies"
         "Jens Ch. Restemeier"
         "Jens Ch. Restemeier"
         "1997"
         "AutoDesk FLIC animation"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "fli,flc")
            (mime-types "image/x-flic"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-fli-save" 1
         "export FLI-movies"
         "This is an experimantal plug-in to handle FLI movies"
         "Jens Ch. Restemeier"
         "Jens Ch. Restemeier"
         "1997"
         "AutoDesk FLIC animation"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "fli,flc")
            (mime-types "image/x-flic"))
         "INDEXED,GRAY"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 4 "filename" "The name of the file to export")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 0 "from-frame" "Export beginning from this frame")
        (proc-arg 0 "to-frame" "End exporting with this frame"))
    (proc-def "file-fli-info" 1
         "Get information about a Fli movie"
         "This is a experimantal plug-in to handle FLI movies"
         "Jens Ch. Restemeier"
         "Jens Ch. Restemeier"
         "1997"
         ""
         0
        (icon icon-name -1 "")
         ""
         1 3
        (proc-arg 4 "filename" "The name of the file to get info")
        (proc-arg 0 "width" "Width of one frame")
        (proc-arg 0 "height" "Height of one frame")
        (proc-arg 0 "frames" "Number of Frames")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-fits/gimp-org-file-fits" 1562830804
    (proc-def "file-fits-load" 1
         "load file of the FITS file format"
         "load file of the FITS file format (Flexible Image Transport System)"
         "Peter Kirchgessner"
         "Peter Kirchgessner (peter@kirchgessner.net)"
         "1997"
         "Flexible Image Transport System"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "fit,fits")
            (magics "0,string,SIMPLE")
            (mime-types "image/x-fits"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-fits-save" 1
         "export file in the FITS file format"
         "FITS exporting handles all image types except those with alpha channels."
         "Peter Kirchgessner"
         "Peter Kirchgessner (peter@kirchgessner.net)"
         "1997"
         "Flexible Image Transport System"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "fit,fits")
            (mime-types "image/x-fits"))
         "RGB, GRAY, INDEXED"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "The name of the file to export the image in")
        (proc-arg 4 "raw-filename" "The name of the file to export the image in")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-faxg3/gimp-org-file-faxg3" 1562830804
    (proc-def "file-faxg3-load" 1
         "loads g3 fax files"
         "This plug-in loads Fax G3 Image files."
         "Jochen Friedrich"
         "Jochen Friedrich, Gert Doering, Spencer Kimball & Peter Mattis"
         "0.6"
         "G3 fax image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "g3")
            (magics "4,string,Research")
            (mime-types "image/g3-fax"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-dicom/gimp-org-file-dicom" 1562830807
    (proc-def "file-dicom-load" 1
         "loads files of the dicom file format"
         "Load a file in the DICOM standard format.The standard is defined at http://medical.nema.org/. The plug-in currently only supports reading images with uncompressed pixel sections."
         "Dov Grobgeld"
         "Dov Grobgeld <dov@imagic.weizmann.ac.il>"
         "2003"
         "DICOM image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "dcm,dicom")
            (magics "128,string,DICM")
            (mime-types "image/x-dcm"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name of the file to load")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-dicom-save" 1
         "Save file in the DICOM file format"
         "Save an image in the medical standard DICOM image formats. The standard is defined at http://medical.nema.org/. The file format is defined in section 10 of the standard. The files are saved uncompressed and the compulsory DICOM tags are filled with default dummy values."
         "Dov Grobgeld"
         "Dov Grobgeld <dov@imagic.weizmann.ac.il>"
         "2003"
         "Digital Imaging and Communications in Medicine image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "dcm,dicom")
            (mime-types "image/x-dcm"))
         "RGB, GRAY"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save")
        (proc-arg 4 "raw-filename" "The name of the file to save")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-desktop-link/gimp-org-file-desktop-link" 1562830807
    (proc-def "file-desktop-link-load" 1
         "Follows a link to an image in a .desktop file"
         "Opens a .desktop file and if it is a link, it asks GIMP to open the file the link points to."
         "Sven Neumann"
         "Sven Neumann"
         "2006"
         "Desktop Link"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "desktop"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-csource/gimp-org-file-csource" 1562830807
    (proc-def "file-csource-save" 1
         "Dump image data in RGB(A) format for C source"
         "CSource cannot be run non-interactively."
         "Tim Janik"
         "Tim Janik"
         "1999"
         "C source code"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "c")
            (mime-types "text/x-csrc")
            (handles-uri))
         "*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name of the file to save the image in")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-compressor/gimp-org-file-compressor" 1562830807
    (proc-def "file-gz-load" 1
         "loads files compressed with gzip"
         "This procedure loads files in the gzip compressed format."
         "Daniel Risacher"
         "Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "gzip archive"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "xcf.gz,xcfgz")
            (magics "0,string,\037‹")
            (mime-types "application/x-gzip"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-gz-save" 1
         "saves files compressed with gzip"
         "This procedure saves files in the gzip compressed format."
         "Daniel Risacher"
         "Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "gzip archive"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "xcf.gz,xcfgz")
            (mime-types "application/x-gzip"))
         "RGB*, GRAY*, INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered"))
    (proc-def "file-bz2-load" 1
         "loads files compressed with bzip2"
         "This procedure loads files in the bzip2 compressed format."
         "Daniel Risacher"
         "Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "bzip archive"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "xcf.bz2,xcfbz2")
            (magics "0,string,BZh")
            (mime-types "application/x-bzip"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-bz2-save" 1
         "saves files compressed with bzip2"
         "This procedure saves files in the bzip2 compressed format."
         "Daniel Risacher"
         "Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "bzip archive"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "xcf.bz2,xcfbz2")
            (mime-types "application/x-bzip"))
         "RGB*, GRAY*, INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered"))
    (proc-def "file-xz-load" 1
         "loads files compressed with xz"
         "This procedure loads files in the xz compressed format."
         "Daniel Risacher"
         "Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "xz archive"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "xcf.xz,xcfxz")
            (magics "0,string,ý7zXZ")
            (mime-types "application/x-xz"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-xz-save" 1
         "saves files compressed with xz"
         "This procedure saves files in the xz compressed format."
         "Daniel Risacher"
         "Daniel Risacher, Spencer Kimball and Peter Mattis"
         "1995-1997"
         "xz archive"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "xcf.xz,xcfxz")
            (mime-types "application/x-xz"))
         "RGB*, GRAY*, INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-cel/gimp-org-file-cel" 1562830807
    (proc-def "file-cel-load" 1
         "Loads files in KISS CEL file format"
         "This plug-in loads individual KISS cell files."
         "Nick Lamb"
         "Nick Lamb <njl195@zepler.org.uk>"
         "May 1998"
         "KISS CEL"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "cel")
            (magics "0,string,KiSS\\040"))
         ""
         4 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "Filename to load image from")
        (proc-arg 4 "raw-filename" "Name entered")
        (proc-arg 4 "palette-filename" "Filename to load palette from")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-cel-save" 1
         "Exports files in KISS CEL file format"
         "This plug-in exports individual KISS cell files."
         "Nick Lamb"
         "Nick Lamb <njl195@zepler.org.uk>"
         "May 1998"
         "KISS CEL"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "cel")
            (handles-uri))
         "RGB*, INDEXED*"
         6 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to export")
        (proc-arg 4 "filename" "Filename to export image to")
        (proc-arg 4 "raw-filename" "Name entered")
        (proc-arg 4 "palette-filename" "Filename to save palette to")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-file-bmp/gimp-org-file-bmp" 1562830804
    (proc-def "file-bmp-load" 1
         "Loads files of Windows BMP file format"
         "Loads files of Windows BMP file format"
         "Alexander Schulz"
         "Alexander Schulz"
         "1997"
         "Windows BMP image"
         0
        (icon icon-name -1 "")
        (load-proc
            (extensions "bmp")
            (magics "0,string,BM")
            (mime-types "image/bmp"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-bmp-save" 1
         "Saves files in Windows BMP file format"
         "Saves files in Windows BMP file format"
         "Alexander Schulz"
         "Alexander Schulz"
         "1997"
         "Windows BMP image"
         0
        (icon icon-name -1 "")
        (save-proc
            (extensions "bmp")
            (mime-types "image/bmp"))
         "INDEXED, GRAY, RGB*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Drawable to save")
        (proc-arg 4 "filename" "The name of the file to save the image in")
        (proc-arg 4 "raw-filename" "The name entered")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-emboss/gimp-org-emboss" 1562830807
    (proc-def "plug-in-emboss" 1
         "Simulate an image created by embossing"
         "Emboss or Bumpmap the given drawable, specifying the angle and elevation for the light source."
         "Eric L. Hernes, John Schlag"
         "Eric L. Hernes"
         "1997"
         "_Emboss (legacy)..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon icon-name -1 "")
         "RGB*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "The Image")
        (proc-arg 16 "drawable" "The Drawable")
        (proc-arg 3 "azimuth" "The Light Angle (degrees)")
        (proc-arg 3 "elevation" "The Elevation Angle (degrees)")
        (proc-arg 0 "depth" "The Filter Width")
        (proc-arg 0 "emboss" "Emboss or Bumpmap")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-edge-neon/gimp-org-edge-neon" 1562830807
    (proc-def "plug-in-neon" 1
         "Simulate the glowing boundary of a neon light"
         "This filter works in a manner similar to the edge plug-in, but uses the first derivative of the gaussian operator to achieve resolution independence. The IIR method of calculating the effect is utilized to keep the processing time constant between large and small standard deviations."
         "Spencer Kimball"
         "Bit Specialists, Inc."
         "2002"
         "_Neon (legacy)..."
         1
        (menu-path "<Image>/Filters/Edge-Detect")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "radius" "Radius of neon effect (in pixels)")
        (proc-arg 3 "amount" "Effect enhancement variable (0.0 - 1.0)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-edge-dog/gimp-org-edge-dog" 1562830807
    (proc-def "plug-in-dog" 1
         "Edge detection with control of edge thickness"
         "Applies two Gaussian blurs to the drawable, and subtracts the results.  This is robust and widely used method for detecting edges."
         "Spencer Kimball, Peter Mattis, Sven Neumann, William Skaggs"
         "Spencer Kimball, Peter Mattis, Sven Neumann, William Skaggs"
         "1995-2004"
         "_Difference of Gaussians (legacy)..."
         1
        (menu-path "<Image>/Filters/Edge-Detect")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "inner" "Radius of inner gaussian blur (in pixels, > 0.0)")
        (proc-arg 3 "outer" "Radius of outer gaussian blur (in pixels, > 0.0)")
        (proc-arg 0 "normalize" "Normalize { TRUE, FALSE }")
        (proc-arg 0 "invert" "Invert { TRUE, FALSE }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-destripe/gimp-org-destripe" 1562830807
    (proc-def "plug-in-destripe" 1
         "Remove vertical stripe artifacts from the image"
         "This plug-in tries to remove vertical stripes from an image."
         "Marc Lehmann <pcg@goof.com>"
         "Marc Lehmann <pcg@goof.com>"
         "0.2"
         "Des_tripe..."
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "avg-width" "Averaging filter width (default = 36)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-despeckle/gimp-org-despeckle" 1562830806
    (proc-def "plug-in-despeckle" 1
         "Remove speckle noise from the image"
         "This plug-in selectively performs a median or adaptive box filter on an image."
         "Michael Sweet <mike@easysw.com>"
         "Copyright 1997-1998 by Michael Sweet"
         "May 2010"
         "Des_peckle..."
         1
        (menu-path "<Image>/Filters/Enhance")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "radius" "Filter box radius (default = 3)")
        (proc-arg 0 "type" "Filter type { MEDIAN (0), ADAPTIVE (1), RECURSIVE-MEDIAN (2), RECURSIVE-ADAPTIVE (3) }")
        (proc-arg 0 "black" "Black level (-1 to 255)")
        (proc-arg 0 "white" "White level (0 to 256)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-depth-merge/gimp-org-depth-merge" 1562830806
    (proc-def "plug-in-depth-merge" 1
         "Combine two images using depth maps (z-buffers)"
         "Taking as input two full-color, full-alpha images and two corresponding grayscale depth maps, this plug-in combines the images based on which is closer (has a lower depth map value) at each point."
         "Sean Cier"
         "Sean Cier"
         "August 1998"
         "_Depth Merge..."
         1
        (menu-path "<Image>/Filters/Combine")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         11 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "result" "Result")
        (proc-arg 16 "source1" "Source 1")
        (proc-arg 16 "source2" "Source 2")
        (proc-arg 16 "depthMap1" "Depth map 1")
        (proc-arg 16 "depthMap2" "Depth map 2")
        (proc-arg 3 "overlap" "Overlap")
        (proc-arg 3 "offset" "Depth relative offset")
        (proc-arg 3 "scale1" "Depth relative scale 1")
        (proc-arg 3 "scale2" "Depth relative scale 2")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-decompose/gimp-org-decompose" 1562830806
    (proc-def "plug-in-decompose" 1
         "Decompose an image into separate colorspace components"
         "This function creates new gray images with different channel information in each of them"
         "Peter Kirchgessner"
         "Peter Kirchgessner"
         "1997"
         "_Decompose..."
         0
        (icon icon-name -1 "")
         "RGB*"
         5 4
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "decompose-type" "What to decompose: \"RGB\", \"RGBA\", \"Red\", \"Green\", \"Blue\", \"Alpha\", \"HSV\", \"Hue\", \"Saturation\", \"Value\", \"HSL\", \"Hue (HSL)\", \"Saturation (HSL)\", \"Lightness\", \"CMY\", \"Cyan\", \"Magenta\", \"Yellow\", \"CMYK\", \"Cyan_K\", \"Magenta_K\", \"Yellow_K\", \"LAB\", \"LCH\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R709_256\"")
        (proc-arg 0 "layers-mode" "Create channels as layers in a single image")
        (proc-arg 13 "new-image" "Output gray image")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)"))
    (proc-def "plug-in-decompose-registered" 1
         "Decompose an image into separate colorspace components"
         "This function creates new gray images with different channel information in each of them. Pixels in the foreground color will appear black in all output images.  This can be used for things like crop marks that have to show up on all channels."
         "Peter Kirchgessner"
         "Peter Kirchgessner, Clarence Risher"
         "1997"
         "_Decompose..."
         1
        (menu-path "<Image>/Colors/Components")
        (icon icon-name -1 "")
         "RGB*"
         5 4
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "decompose-type" "What to decompose: \"RGB\", \"RGBA\", \"Red\", \"Green\", \"Blue\", \"Alpha\", \"HSV\", \"Hue\", \"Saturation\", \"Value\", \"HSL\", \"Hue (HSL)\", \"Saturation (HSL)\", \"Lightness\", \"CMY\", \"Cyan\", \"Magenta\", \"Yellow\", \"CMYK\", \"Cyan_K\", \"Magenta_K\", \"Yellow_K\", \"LAB\", \"LCH\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R709_256\"")
        (proc-arg 0 "layers-mode" "Create channels as layers in a single image")
        (proc-arg 13 "new-image" "Output gray image")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
        (proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-curve-bend/gimp-org-curve-bend" 1562830806
    (proc-def "plug-in-curve-bend" 1
         "Bend the image using two control curves"
         "This plug-in does bend the active layer If there is a current selection it is copied to floating selection and the curve_bend distortion is done on the floating selection. If work_on_copy parameter is TRUE, the curve_bend distortion is done on a copy of the active layer (or floating selection). The upper and lower edges are bent in shape of 2 spline curves. both (upper and lower) curves are determined by upto 17 points or by 256 Y-Values if curve_type == 1 (freehand mode) If rotation is not 0, the layer is rotated before and rotated back after the bend operation. This enables bending in other directions than vertical. bending usually changes the size of the handled layer. this plug-in sets the offsets of the handled layer to keep its center at the same position"
         "Wolfgang Hofer (hof@hotbot.com)"
         "Wolfgang Hofer"
         "v1.3.18 (2003/08/26)"
         "_Curve Bend..."
         1
        (menu-path "<Image>/Filters/Distorts")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         20 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (must be a layer without layermask)")
        (proc-arg 3 "rotation" "Direction {angle 0 to 360 degree } of the bend effect")
        (proc-arg 0 "smoothing" "Smoothing { TRUE, FALSE }")
        (proc-arg 0 "antialias" "Antialias { TRUE, FALSE }")
        (proc-arg 0 "work-on-copy" "{ TRUE, FALSE } TRUE: copy the drawable and bend the copy")
        (proc-arg 0 "curve-type" " { 0, 1 } 0 == smooth (use 17 points), 1 == freehand (use 256 val_y) ")
        (proc-arg 0 "argc-upper-point-x" "{2 <= argc <= 17} ")
        (proc-arg 8 "upper-point-x" "array of 17 x point_koords { 0.0 <= x <= 1.0 or -1 for unused point }")
        (proc-arg 0 "argc-upper-point-y" "{2 <= argc <= 17} ")
        (proc-arg 8 "upper-point-y" "array of 17 y point_koords { 0.0 <= y <= 1.0 or -1 for unused point }")
        (proc-arg 0 "argc-lower-point-x" "{2 <= argc <= 17} ")
        (proc-arg 8 "lower-point-x" "array of 17 x point_koords { 0.0 <= x <= 1.0 or -1 for unused point }")
        (proc-arg 0 "argc-lower-point-y" "{2 <= argc <= 17} ")
        (proc-arg 8 "lower-point-y" "array of 17 y point_koords { 0.0 <= y <= 1.0 or -1 for unused point }")
        (proc-arg 0 "argc-upper-val-y" "{ 256 } ")
        (proc-arg 7 "upper-val-y" "array of 256 y freehand koord { 0 <= y <= 255 }")
        (proc-arg 0 "argc-lower-val-y" "{ 256 } ")
        (proc-arg 7 "lower-val-y" "array of 256 y freehand koord { 0 <= y <= 255 }")
        (proc-arg 14 "bent-layer" "the handled layer"))
    (proc-def "plug_in_curve_bend_Iterator" 1
         "This procedure calculates the modified values for one iterationstep for the call of plug_in_curve_bend"
         ""
         "Wolfgang Hofer (hof@hotbot.com)"
         "Wolfgang Hofer"
         "v1.3.18 (2003/08/26)"
         ""
         0
        (icon icon-name -1 "")
         ""
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }")
        (proc-arg 0 "total-steps" "total number of steps (# of layers-1 to apply the related plug-in)")
        (proc-arg 3 "current-step" "current (for linear iterations this is the layerstack position, otherwise some value in between)")
        (proc-arg 0 "len-struct" "length of stored data structure with id is equal to the plug_in  proc_name")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-crop-zealous/gimp-org-crop-zealous" 1562830805
    (proc-def "plug-in-zealouscrop" 1
         "Autocrop unused space from edges and middle"
         ""
         "Adam D. Moss"
         "Adam D. Moss"
         "1997"
         "_Zealous Crop"
         1
        (menu-path "<Image>/Image/Crop")
        (icon icon-name -1 "")
         "RGB*, GRAY*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-contrast-retinex/gimp-org-contrast-retinex" 1562830806
    (proc-def "plug-in-retinex" 1
         "Enhance contrast using the Retinex method"
         "The Retinex Image Enhancement Algorithm is an automatic image enhancement method that enhances a digital image in terms of dynamic range compression, color independence from the spectral distribution of the scene illuminant, and color/lightness rendition."
         "Fabien Pelisson"
         "Fabien Pelisson"
         "2003"
         "Retine_x..."
         1
        (menu-path "<Image>/Colors/Tone Mapping")
        (icon icon-name -1 "")
         "RGB*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "scale" "Biggest scale value")
        (proc-arg 0 "nscales" "Number of scales")
        (proc-arg 0 "scales-mode" "Retinex distribution through scales")
        (proc-arg 3 "cvar" "Variance value")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-contrast-normalize/gimp-org-contrast-normalize" 1562830805
    (proc-def "plug-in-normalize" 1
         "Stretch brightness values to cover the full range"
         "This plug-in performs almost the same operation as the 'contrast autostretch' plug-in, except that it won't allow the color channels to normalize independently.  This is actually what most people probably want instead of contrast-autostretch; use c-a only if you wish to remove an undesirable color-tint from a source image which is supposed to contain pure-white and pure-black."
         "Adam D. Moss, Federico Mena Quintero"
         "Adam D. Moss, Federico Mena Quintero"
         "1997"
         "_Normalize"
         0
        (icon icon-name -1 "")
         "RGB*, GRAY*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-compose/gimp-org-compose" 1562830806
    (proc-def "plug-in-compose" 1
         "Create an image using multiple gray images as color channels"
         "This function creates a new image from multiple gray images"
         "Peter Kirchgessner"
         "Peter Kirchgessner (peter@kirchgessner.net)"
         "1997"
         "C_ompose..."
         1
        (menu-path "<Image>/Colors/Components")
        (icon icon-name -1 "")
         "GRAY*"
         7 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image1" "First input image")
        (proc-arg 16 "drawable" "Input drawable (not used)")
        (proc-arg 13 "image2" "Second input image")
        (proc-arg 13 "image3" "Third input image")
        (proc-arg 13 "image4" "Fourth input image")
        (proc-arg 4 "compose-type" "What to compose: \"RGB\", \"RGBA\", \"HSV\", \"HSL\", \"CMY\", \"CMYK\", \"LAB\", \"LCH\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709_256\"")
        (proc-arg 13 "new-image" "Output image"))
    (proc-def "plug-in-drawable-compose" 1
         "Compose an image from multiple drawables of gray images"
         "This function creates a new image from multiple drawables of gray images"
         "Peter Kirchgessner"
         "Peter Kirchgessner (peter@kirchgessner.net)"
         "1998"
         ""
         0
        (icon icon-name -1 "")
         "GRAY*"
         7 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image1" "First input image (not used)")
        (proc-arg 16 "drawable1" "First input drawable")
        (proc-arg 16 "drawable2" "Second input drawable")
        (proc-arg 16 "drawable3" "Third input drawable")
        (proc-arg 16 "drawable4" "Fourth input drawable")
        (proc-arg 4 "compose-type" "What to compose: \"RGB\", \"RGBA\", \"HSV\", \"HSL\", \"CMY\", \"CMYK\", \"LAB\", \"LCH\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709_256\"")
        (proc-arg 13 "new-image" "Output image"))
    (proc-def "plug-in-recompose" 1
         "Recompose an image that was previously decomposed"
         "This function recombines the grayscale layers produced by Decompose into a single RGB or RGBA layer, and replaces the originally decomposed layer with the result."
         "Bill Skaggs"
         "Bill Skaggs"
         "2004"
         "R_ecompose"
         1
        (menu-path "<Image>/Colors/Components")
        (icon icon-name -1 "")
         "GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Image to recompose from")
        (proc-arg 16 "drawable" "Not used")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-colormap-remap/gimp-org-colormap-remap" 1562830806
    (proc-def "plug-in-colormap-remap" 1
         "Rearrange the colormap"
         "This procedure takes an indexed image and lets you alter the positions of colors in the colormap without visually changing the image."
         "Mukund Sivaraman <muks@mukund.org>"
         "Mukund Sivaraman <muks@mukund.org>"
         "June 2006"
         "R_earrange Colormap..."
         2
        (menu-path "<Image>/Colors/Map/Colormap")
        (menu-path "<Colormap>")
        (icon icon-name -1 "gimp-colormap")
         "INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "num-colors" "Length of 'map' argument (should be equal to colormap size)")
        (proc-arg 7 "map" "Remap array for the colormap"))
    (proc-def "plug-in-colormap-swap" 1
         "Swap two colors in the colormap"
         "This procedure takes an indexed image and lets you swap the positions of two colors in the colormap without visually changing the image."
         "Mukund Sivaraman <muks@mukund.org>"
         "Mukund Sivaraman <muks@mukund.org>"
         "June 2006"
         "_Swap Colors"
         0
        (icon icon-name -1 "")
         "INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 2 "index1" "First index in the colormap")
        (proc-arg 2 "index2" "Second (other) index in the colormap")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-colorify/gimp-org-colorify" 1562830806
    (proc-def "plug-in-colorify" 1
         "Replace all colors with shades of a specified color"
         "Makes an average of the RGB channels and uses it to set the color"
         "Francisco Bustamante"
         "Francisco Bustamante"
         "1.1"
         "Colorif_y..."
         0
        (icon icon-name -1 "")
         "RGB*"
         4 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 10 "color" "Color to apply")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-color-enhance/gimp-org-color-enhance" 1562830805
    (proc-def "plug-in-color-enhance" 1
         "Stretch color saturation to cover maximum possible range"
         "This simple plug-in does an automatic saturation stretch.  For each channel in the image, it finds the minimum and maximum values... it uses those values to stretch the individual histograms to the full range.  For some images it may do just what you want; for others it may not work that well.  This version differs from Contrast Autostretch in that it works in HSV space, and preserves hue."
         "Martin Weber"
         "Martin Weber"
         "1997"
         "_Color Enhance (legacy)"
         1
        (menu-path "<Image>/Colors/Auto")
        (icon icon-name -1 "")
         "RGB*, INDEXED*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-color-cube-analyze/gimp-org-color-cube-analyze" 1562830805
    (proc-def "plug-in-ccanalyze" 1
         "Analyze the set of colors in the image"
         "Analyze colorcube and print some information about the current image (also displays a color-histogram)"
         "robert@experimental.net"
         "robert@experimental.net"
         "June 20th, 1997"
         "Colorcube A_nalysis..."
         1
        (menu-path "<Image>/Colors/Info")
        (icon icon-name -1 "")
         "RGB*, GRAY*, INDEXED*"
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "num-colors" "Number of colors in the image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-cml-explorer/gimp-org-cml-explorer" 1562830805
    (proc-def "plug-in-cml-explorer" 1
         "Create abstract Coupled-Map Lattice patterns"
         "Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula Automata on continuous (value) domain. In GIMP_RUN_NONINTERACTIVE, the name of a parameter file is passed as the 4th arg. You can control CML_explorer via parameter file."
         "Shuji Narazaki (narazaki@InetQ.or.jp); http://www.inetq.or.jp/~narazaki/TheGIMP/"
         "Shuji Narazaki"
         "1997"
         "CML _Explorer..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         4 0
        (proc-arg 0 "ru--mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (not used)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "parameter-filename" "The name of parameter file. CML_explorer makes an image with its settings.")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-checkerboard/gimp-org-checkerboard" 1562830805
    (proc-def "plug-in-checkerboard" 1
         "Create a checkerboard pattern"
         "More here later"
         "Brent Burton & the Edward Blevins"
         "Brent Burton & the Edward Blevins"
         "1997"
         "_Checkerboard (legacy)..."
         1
        (menu-path "<Image>/Filters/Render/Pattern")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "check-mode" "Check mode { REGULAR (0), PSYCHOBILY (1) }")
        (proc-arg 0 "check-size" "Size of the checks")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-cartoon/gimp-org-cartoon" 1562830805
    (proc-def "plug-in-cartoon" 1
         "Simulate a cartoon by enhancing edges"
         "Propagates dark values in an image based on each pixel's relative darkness to a neighboring average. The idea behind this filter is to give the look of a black felt pen drawing subsequently shaded with color. This is achieved by darkening areas of the image which are measured to be darker than a neighborhood average. In this way, sufficiently large shifts in intensity are darkened to black. The rate at which they are darkened to black is determined by the second pct_black parameter. The mask_radius parameter controls the size of the pixel neighborhood over which the average intensity is computed and then compared to each pixel in the neighborhood to decide whether or not to darken it to black. Large values for mask_radius result in very thick black areas bordering the shaded regions of color and much less detail for black areas everywhere including inside regions of color. Small values result in more subtle pen strokes and detail everywhere. Small values for the pct_black make the blend from the color regions to the black border lines smoother and the lines themselves thinner and less noticeable; larger values achieve the opposite effect."
         "Spencer Kimball"
         "Bit Specialists, Inc."
         "2001"
         "Ca_rtoon (legacy)..."
         1
        (menu-path "<Image>/Filters/Artistic")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 3 "mask-radius" "Cartoon mask radius (radius of pixel neighborhood)")
        (proc-arg 3 "pct-black" "Percentage of darkened pixels to set to black (0.0 - 1.0)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-busy-dialog/gimp-org-busy-dialog" 1562830805
    (proc-def "plug-in-busy-dialog" 1
         "Show a dialog while waiting for an operation to finish"
         "Used by GIMP to display a dialog, containing a spinner and a custom message, while waiting for an ongoing operation to finish. Optionally, the dialog may provide a \"Cancel\" button, which can be used to cancel the operation."
         "Ell"
         "Ell"
         "2018"
         ""
         0
        (icon icon-name -1 "")
         ""
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
        (proc-arg 0 "read-fd" "The read file descriptor")
        (proc-arg 0 "write-fd" "The write file descriptor")
        (proc-arg 4 "message" "The message")
        (proc-arg 0 "cancelable" "Whether the dialog is cancelable (TRUE or FALSE)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-border-average/gimp-org-border-average" 1562830805
    (proc-def "plug-in-borderaverage" 1
         "Set foreground to the average color of the image border"
         ""
         "Philipp Klaus"
         "Internet Access AG"
         "1998"
         "_Border Average..."
         1
        (menu-path "<Image>/Colors/Info")
        (icon icon-name -1 "")
         "RGB*"
         5 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "thickness" "Border size to take in count")
        (proc-arg 0 "bucket-exponent" "Bits for bucket size (default=4: 16 Levels)")
        (proc-arg 10 "borderaverage" "The average color of the specified border.")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-blur/gimp-org-blur" 1562830805
    (proc-def "plug-in-blur" 1
         "Simple blur, fast but not very strong"
         "This plug-in blurs the specified drawable, using a 3x3 blur. Indexed images are not supported."
         "Miles O'Neal  <meo@rru.com>"
         "Miles O'Neal, Spencer Kimball, Peter Mattis, Torsten Martinsen, Brian Degenhardt, Federico Mena Quintero, Stephen Norris, Daniel Cotting"
         "1995-1998"
         "_Blur"
         0
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-blinds/gimp-org-blinds" 1562830805
    (proc-def "plug-in-blinds" 1
         "Simulate an image painted on window blinds"
         "More here later"
         "Andy Thomas"
         "Andy Thomas"
         "1997"
         "_Blinds..."
         0
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image (unused)")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 0 "angle-dsp" "Angle of Displacement")
        (proc-arg 0 "num-segments" "Number of segments in blinds")
        (proc-arg 0 "orientation" "The orientation { ORIENTATION-HORIZONTAL (0), ORIENTATION-VERTICAL (1) }")
        (proc-arg 0 "bg-transparent" "Background transparent { FALSE, TRUE }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-animation-play/gimp-org-animation-play" 1562830805
    (proc-def "plug-in-animationplay" 1
         "Preview a GIMP layer-based animation"
         ""
         "Adam D. Moss <adam@gimp.org>"
         "Adam D. Moss <adam@gimp.org>"
         "1997, 1998..."
         "_Playback..."
         1
        (menu-path "<Image>/Filters/Animation")
        (icon icon-name -1 "media-playback-start")
         "RGB*, INDEXED*, GRAY*"
         3 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-animation-optimize/gimp-org-animation-optimize" 1562830805
    (proc-def "plug-in-animationoptimize" 1
         "Modify image to reduce size when saved as GIF animation"
         "This procedure applies various optimizations to a GIMP layer-based animation in an attempt to reduce the final file size.  If a frame of the animation can use the 'combine' mode, this procedure attempts to maximize the number of ajdacent pixels having the same color, which improves the compression for some image formats such as GIF or MNG."
         "Adam D. Moss <adam@gimp.org>"
         "Adam D. Moss <adam@gimp.org>"
         "1997-2003"
         "Optimize (for _GIF)"
         1
        (menu-path "<Image>/Filters/Animation")
        (icon icon-name -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 13 "result" "Resulting image"))
    (proc-def "plug-in-animationoptimize-diff" 1
         "Reduce file size where combining layers is possible"
         "This procedure applies various optimizations to a GIMP layer-based animation in an attempt to reduce the final file size.  If a frame of the animation can use the 'combine' mode, this procedure uses a simple difference between the frames."
         "Adam D. Moss <adam@gimp.org>"
         "Adam D. Moss <adam@gimp.org>"
         "1997-2001"
         "_Optimize (Difference)"
         1
        (menu-path "<Image>/Filters/Animation")
        (icon icon-name -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 13 "result" "Resulting image"))
    (proc-def "plug-in-animationunoptimize" 1
         "Remove optimization to make editing easier"
         "This procedure 'simplifies' a GIMP layer-based animation that has been optimized for animation. This makes editing the animation much easier."
         "Adam D. Moss <adam@gimp.org>"
         "Adam D. Moss <adam@gimp.org>"
         "1997-2001"
         "_Unoptimize"
         1
        (menu-path "<Image>/Filters/Animation")
        (icon icon-name -1 "")
         "RGB*, INDEXED*, GRAY*"
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (unused)")
        (proc-arg 13 "result" "Resulting image")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/gimp-org-align-layers/gimp-org-align-layers" 1562830805
    (proc-def "plug-in-align-layers" 1
         "Align all visible layers of the image"
         "Align visible layers"
         "Shuji Narazaki <narazaki@InetQ.or.jp>"
         "Shuji Narazaki"
         "1997"
         "Align Visi_ble Layers..."
         1
        (menu-path "<Image>/Image/Arrange")
        (icon icon-name -1 "")
         "RGB*,GRAY*,INDEXED*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable (not used)")
        (proc-arg 0 "link-after-alignment" "Link the visible layers after alignment { TRUE, FALSE }")
        (proc-arg 0 "use-bottom" "use the bottom layer as the base of alignment { TRUE, FALSE }")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/foggify/foggify.py" 1562830519
    (proc-def "python-fu-foggify" 1
         "Add a layer of fog"
         "Adds a layer of fog to the image."
         "James Henstridge"
         "James Henstridge"
         "1999,2007"
         "_Fog..."
         1
        (menu-path "<Image>/Filters/Decor")
        (icon icon-name -1 "")
         "RGB*, GRAY*"
         7 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "name" "Layer name")
        (proc-arg 10 "colour" "Fog colour")
        (proc-arg 3 "turbulence" "Turbulence")
        (proc-arg 3 "opacity" "Opacity"))
    (locale-def "gimp20-python" "${gimp_installation_dir}/share/locale"))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/file-openraster/file-openraster.py" 1562830519
    (proc-def "file-openraster-load-thumb" 1
         "loads a thumbnail from an OpenRaster (.ora) file"
         "loads a thumbnail from an OpenRaster (.ora) file"
         "Jon Nordby"
         "Jon Nordby"
         "2009"
         ""
         0
        (icon icon-name -1 "")
         ""
         3 3
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 0 "thumb-size" "Preferred thumbnail size")
        (proc-arg 13 "image" "Thumbnail image")
        (proc-arg 0 "image-width" "Width of full-sized image")
        (proc-arg 0 "image-height" "Height of full-sized image"))
    (proc-def "file-openraster-load" 1
         "load an OpenRaster (.ora) file"
         "load an OpenRaster (.ora) file"
         "Jon Nordby"
         "Jon Nordby"
         "2009"
         "OpenRaster"
         1
        (menu-path "<Load>")
        (icon icon-name -1 "")
        (load-proc
            (extensions "ora")
            (mime-types "image/openraster")
            (thumb-loader "file-openraster-load-thumb"))
         ""
         3 1
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 4 "filename" "The name of the file to load")
        (proc-arg 4 "raw-filename" "The name entered")
        (proc-arg 13 "image" "Output image"))
    (proc-def "file-openraster-save" 1
         "save an OpenRaster (.ora) file"
         "save an OpenRaster (.ora) file"
         "Jon Nordby"
         "Jon Nordby"
         "2009"
         "OpenRaster"
         1
        (menu-path "<Save>")
        (icon icon-name -1 "")
        (save-proc
            (extensions "ora"))
         "*"
         5 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "filename" "The name of the file")
        (proc-arg 4 "raw-filename" "The name of the file")))
(plug-in-def "${gimp_plug_in_dir}/plug-ins/colorxhtml/colorxhtml.py" 1562830519
    (proc-def "file-colorxhtml-save" 1
         "Save as colored XHTML"
         "Saves the image as colored XHTML text (based on Perl version by Marc Lehmann)"
         "Manish Singh and Carol Spears"
         "Manish Singh and Carol Spears"
         "2003"
         "Colored XHTML"
         1
        (menu-path "<Save>")
        (icon icon-name -1 "")
        (save-proc
            (extensions "xhtml"))
         "RGB"
         9 0
        (proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
        (proc-arg 13 "image" "Input image")
        (proc-arg 16 "drawable" "Input drawable")
        (proc-arg 4 "filename" "The name of the file")
        (proc-arg 4 "raw-filename" "The name of the file")
        (proc-arg 4 "source" "Character source")
        (proc-arg 4 "characters" "File to read or characters to use")
        (proc-arg 0 "font-size" "Font size in pixels")
        (proc-arg 0 "separate" "Write a separate CSS file"))
    (locale-def "gimp20-python" "${gimp_installation_dir}/share/locale"))

# end of pluginrc