-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprompt.json
12001 lines (12001 loc) · 381 KB
/
prompt.json
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
{
"source": "source/18912.png",
"target": "target/18912.png",
"prompt": "a close up of a pokemon pokemon character with a blue and green flower"
}{
"source": "source/5905.png",
"target": "target/5905.png",
"prompt": "a cartoon image of a blue and green colored character"
}{
"source": "source/16269.png",
"target": "target/16269.png",
"prompt": "a close up of a red and green object in a bowl"
}{
"source": "source/20062.png",
"target": "target/20062.png",
"prompt": "a close up of a small airplane with a propeller on it"
}{
"source": "source/22845.png",
"target": "target/22845.png",
"prompt": "a cartoon image of a little goat with green eyes"
}{
"source": "source/24382.png",
"target": "target/24382.png",
"prompt": "a close up of a purple flower with blue dots on it"
}{
"source": "source/23067.png",
"target": "target/23067.png",
"prompt": "a close up of a bird flying through the air with its wings spread"
}{
"source": "source/18639.png",
"target": "target/18639.png",
"prompt": "a close up of a colorful animal with a black background"
}{
"source": "source/19478.png",
"target": "target/19478.png",
"prompt": "a green and purple snake with a green tail and a green tail"
}{
"source": "source/18696.png",
"target": "target/18696.png",
"prompt": "there is a bird that is flying in the air"
}{
"source": "source/6818.png",
"target": "target/6818.png",
"prompt": "a close up of a circular object with a lot of circles"
}{
"source": "source/11164.png",
"target": "target/11164.png",
"prompt": "a blue and yellow sonic the hedge is laying down"
}{
"source": "source/6087.png",
"target": "target/6087.png",
"prompt": "a close up of a yellow teddy bear with a sad face"
}{
"source": "source/12407.png",
"target": "target/12407.png",
"prompt": "a green and purple alien with a red eye"
}{
"source": "source/5340.png",
"target": "target/5340.png",
"prompt": "a close up of a cat laying on its back on a black background"
}{
"source": "source/3344.png",
"target": "target/3344.png",
"prompt": "a close up of a pokemon pokemon character with a leaf on it"
}{
"source": "source/16602.png",
"target": "target/16602.png",
"prompt": "a close up of a cartoon cat on a pole with a building in the background"
}{
"source": "source/25681.png",
"target": "target/25681.png",
"prompt": "a close up of a cartoon character holding a ring"
}{
"source": "source/16098.png",
"target": "target/16098.png",
"prompt": "a close up of a white and blue bird flying through the air"
}{
"source": "source/14206.png",
"target": "target/14206.png",
"prompt": "a close up of a cartoon bird with a blue body and orange eyes"
}{
"source": "source/16685.png",
"target": "target/16685.png",
"prompt": "a close up of a person with a red and blue costume"
}{
"source": "source/8308.png",
"target": "target/8308.png",
"prompt": "there is a green and red flower with a black background"
}{
"source": "source/1270.png",
"target": "target/1270.png",
"prompt": "a close up of a green and blue bird flying through the air"
}{
"source": "source/14737.png",
"target": "target/14737.png",
"prompt": "cartoon bird with a red beak and blue body and green legs"
}{
"source": "source/17018.png",
"target": "target/17018.png",
"prompt": "a close up of a pokemon type pokemon type pokemon type pokemon type pokemon type pokemon type pokemon type"
}{
"source": "source/17618.png",
"target": "target/17618.png",
"prompt": "there is a green and red flower with a green stem"
}{
"source": "source/17795.png",
"target": "target/17795.png",
"prompt": "a blue and white pokemon crystal with a yellow button"
}{
"source": "source/22765.png",
"target": "target/22765.png",
"prompt": "a close up of a cartoon bat with a green and orange tail"
}{
"source": "source/11775.png",
"target": "target/11775.png",
"prompt": "a close up of a blue and white dragon with a crown on its head"
}{
"source": "source/8857.png",
"target": "target/8857.png",
"prompt": "file dragon - dragon - dragon - dragon - dragon - dragon - dragon - dragon - dragon -"
}{
"source": "source/25883.png",
"target": "target/25883.png",
"prompt": "a close up of a blue and purple flower with a mustache"
}{
"source": "source/17553.png",
"target": "target/17553.png",
"prompt": "there is a red and blue fish with a black background"
}{
"source": "source/16684.png",
"target": "target/16684.png",
"prompt": "a close up of a dragon fly with a black background"
}{
"source": "source/18103.png",
"target": "target/18103.png",
"prompt": "a close up of a bird flying through the air with green and pink colors"
}{
"source": "source/14997.png",
"target": "target/14997.png",
"prompt": "a green deer with a bow on its head"
}{
"source": "source/11714.png",
"target": "target/11714.png",
"prompt": "a cartoon image of a small orange and blue rocket ship"
}{
"source": "source/20976.png",
"target": "target/20976.png",
"prompt": "there is a cartoon image of a person falling down on a skateboard"
}{
"source": "source/21973.png",
"target": "target/21973.png",
"prompt": "a cartoon image of a green and yellow cat with a green tail"
}{
"source": "source/13336.png",
"target": "target/13336.png",
"prompt": "a close up of a person laying on a bed with a cat"
}{
"source": "source/9072.png",
"target": "target/9072.png",
"prompt": "a close up of a cartoon animal flying through the air"
}{
"source": "source/16616.png",
"target": "target/16616.png",
"prompt": "file green sea turtle png wikim png"
}{
"source": "source/5201.png",
"target": "target/5201.png",
"prompt": "a close up of a cartoon animal with a green eye"
}{
"source": "source/9505.png",
"target": "target/9505.png",
"prompt": "a close up of a cartoon character with a big wing"
}{
"source": "source/7217.png",
"target": "target/7217.png",
"prompt": "a close up of a cartoon character with a blue background"
}{
"source": "source/26082.png",
"target": "target/26082.png",
"prompt": "a close up of a white cat with wings on its back"
}{
"source": "source/14271.png",
"target": "target/14271.png",
"prompt": "a blue and white cartoon character with a speech bubble"
}{
"source": "source/3019.png",
"target": "target/3019.png",
"prompt": "there is a pink flower with green leaves on it"
}{
"source": "source/631.png",
"target": "target/631.png",
"prompt": "a green plant with a purple flower on it"
}{
"source": "source/22925.png",
"target": "target/22925.png",
"prompt": "a close up of a turtle with a red and blue design"
}{
"source": "source/23552.png",
"target": "target/23552.png",
"prompt": "two gears with a face and a nose on them"
}{
"source": "source/3813.png",
"target": "target/3813.png",
"prompt": "a close up of a green and yellow turtle with a yellow ball"
}{
"source": "source/16995.png",
"target": "target/16995.png",
"prompt": "a close up of a cartoon character with a pink and blue tail"
}{
"source": "source/10754.png",
"target": "target/10754.png",
"prompt": "a close up of a pokemon character with a black background"
}{
"source": "source/13172.png",
"target": "target/13172.png",
"prompt": "a close up of a cartoon character with a blue background"
}{
"source": "source/20033.png",
"target": "target/20033.png",
"prompt": "a close up of a cartoon animal with a sword in its mouth"
}{
"source": "source/19561.png",
"target": "target/19561.png",
"prompt": "a close up of a pixel style image of a pink and green alien"
}{
"source": "source/10333.png",
"target": "target/10333.png",
"prompt": "a close up of a blue robot with a red nose"
}{
"source": "source/3727.png",
"target": "target/3727.png",
"prompt": "a close up of a pokemon character with a red and blue background"
}{
"source": "source/2085.png",
"target": "target/2085.png",
"prompt": "file pokemon - green - and - yellow - pokemon - type - png - file - pokemon"
}{
"source": "source/20806.png",
"target": "target/20806.png",
"prompt": "there is a cartoon orange and a green leaf on a black background"
}{
"source": "source/19875.png",
"target": "target/19875.png",
"prompt": "a close up of a pokemon type pokemon with a black background"
}{
"source": "source/20463.png",
"target": "target/20463.png",
"prompt": "file pokemon - red - and - blue - eyes - png - png - file -"
}{
"source": "source/14050.png",
"target": "target/14050.png",
"prompt": "a close up of a pink worm with a black background"
}{
"source": "source/23282.png",
"target": "target/23282.png",
"prompt": "a close up of a blue and green pokemon pokemon game"
}{
"source": "source/25950.png",
"target": "target/25950.png",
"prompt": "a close up of a blue and white toy with a toothbrush"
}{
"source": "source/1050.png",
"target": "target/1050.png",
"prompt": "a blue fish with a black nose and a yellow tail"
}{
"source": "source/16421.png",
"target": "target/16421.png",
"prompt": "butterfly with yellow and purple wings"
}{
"source": "source/13660.png",
"target": "target/13660.png",
"prompt": "sonic the hedgehog is a sonic the hedgehog character"
}{
"source": "source/17031.png",
"target": "target/17031.png",
"prompt": "a close up of a cartoon fish with a yellow and black tail"
}{
"source": "source/4531.png",
"target": "target/4531.png",
"prompt": "there is a blue and green pokemon character with a long tail"
}{
"source": "source/1304.png",
"target": "target/1304.png",
"prompt": "a close up of a lizard on a branch with leaves"
}{
"source": "source/19706.png",
"target": "target/19706.png",
"prompt": "a blue ball with a green center and a green center"
}{
"source": "source/960.png",
"target": "target/960.png",
"prompt": "a close up of a cartoon character with a purple and blue design"
}{
"source": "source/6697.png",
"target": "target/6697.png",
"prompt": "a close up of a cartoonish pink and green pokemon character"
}{
"source": "source/3570.png",
"target": "target/3570.png",
"prompt": "cartoon of a blue cat laying on its back with a ball in its mouth"
}{
"source": "source/9124.png",
"target": "target/9124.png",
"prompt": "file pokemon - type - pokemon - type - pokemon - type - pokemon - type - pokemon -"
}{
"source": "source/21955.png",
"target": "target/21955.png",
"prompt": "a close up of a cartoon bird with a crown on its head"
}{
"source": "source/14718.png",
"target": "target/14718.png",
"prompt": "a close up of a bunch of flowers with a black background"
}{
"source": "source/17558.png",
"target": "target/17558.png",
"prompt": "a close up of a frog with a green and pink body"
}{
"source": "source/13206.png",
"target": "target/13206.png",
"prompt": "a close up of a green and purple leaf with a yellow center"
}{
"source": "source/7645.png",
"target": "target/7645.png",
"prompt": "a cartoon turtle with a blue shell and a blue tail"
}{
"source": "source/18287.png",
"target": "target/18287.png",
"prompt": "a close up of a red and blue dragon flying through the air"
}{
"source": "source/20929.png",
"target": "target/20929.png",
"prompt": "a close up of a pokemon type animal with a long tail"
}{
"source": "source/283.png",
"target": "target/283.png",
"prompt": "a close up of a blue and green pokemon pokemon game"
}{
"source": "source/7584.png",
"target": "target/7584.png",
"prompt": "file twilight twilight twilight twilight twilight twilight twilight twilight twilight twilight twilight twilight twilight twilight twilight twilight twilight twilight"
}{
"source": "source/19995.png",
"target": "target/19995.png",
"prompt": "a close up of a person doing a trick on a skateboard"
}{
"source": "source/2930.png",
"target": "target/2930.png",
"prompt": "cartoon image of a pink and blue crab with a green tail"
}{
"source": "source/20477.png",
"target": "target/20477.png",
"prompt": "a green pokemon with blue eyes and a leafy head"
}{
"source": "source/5261.png",
"target": "target/5261.png",
"prompt": "there are two red roses and hearts on a black background"
}{
"source": "source/10833.png",
"target": "target/10833.png",
"prompt": "there is a blue bird with a red beak and a blue hat"
}{
"source": "source/9318.png",
"target": "target/9318.png",
"prompt": "pokemon png file file pokemon png file"
}{
"source": "source/5030.png",
"target": "target/5030.png",
"prompt": "cartoon of a yellow bee with a green leaf on its head"
}{
"source": "source/2037.png",
"target": "target/2037.png",
"prompt": "a green and purple sun with a black background"
}{
"source": "source/15830.png",
"target": "target/15830.png",
"prompt": "purple and green flower with green leaves on a black background"
}{
"source": "source/9967.png",
"target": "target/9967.png",
"prompt": "a close up of a person on a skateboard in the air"
}{
"source": "source/10706.png",
"target": "target/10706.png",
"prompt": "a green and blue pokemon character with a big smile on its face"
}{
"source": "source/4105.png",
"target": "target/4105.png",
"prompt": "cartoon image of a pink and green bunny with a black background"
}{
"source": "source/10807.png",
"target": "target/10807.png",
"prompt": "a close up of a green and purple insect on a black background"
}{
"source": "source/14402.png",
"target": "target/14402.png",
"prompt": "a close up of a cartoon character in a white and black outfit"
}{
"source": "source/19001.png",
"target": "target/19001.png",
"prompt": "a blue and green bird with green eyes and a long tail"
}{
"source": "source/22363.png",
"target": "target/22363.png",
"prompt": "a close up of a cartoon character with a blue hair"
}{
"source": "source/19277.png",
"target": "target/19277.png",
"prompt": "a cartoon image of a man in a red and blue outfit"
}{
"source": "source/633.png",
"target": "target/633.png",
"prompt": "a blue dress with a flower on it and a long train"
}{
"source": "source/15900.png",
"target": "target/15900.png",
"prompt": "a close up of a fish with a blue and yellow pattern"
}{
"source": "source/9361.png",
"target": "target/9361.png",
"prompt": "a close up of a cartoon spider with a green head"
}{
"source": "source/5533.png",
"target": "target/5533.png",
"prompt": "a close up of a cartoon character with a bow on his head"
}{
"source": "source/4848.png",
"target": "target/4848.png",
"prompt": "a red and blue circular object with a blue center"
}{
"source": "source/8897.png",
"target": "target/8897.png",
"prompt": "file pokemon - x - ray - pokemon - x - ray - pokemon png"
}{
"source": "source/19502.png",
"target": "target/19502.png",
"prompt": "a close up of a pixel horse with a red and blue tail"
}{
"source": "source/1402.png",
"target": "target/1402.png",
"prompt": "a close up of a bird flying through the air with a green and blue wing"
}{
"source": "source/4497.png",
"target": "target/4497.png",
"prompt": "there is a green and black picture of a small turtle"
}{
"source": "source/11190.png",
"target": "target/11190.png",
"prompt": "there are two birds that are flying in the air"
}{
"source": "source/4600.png",
"target": "target/4600.png",
"prompt": "a green and purple bug with green eyes and green legs"
}{
"source": "source/249.png",
"target": "target/249.png",
"prompt": "a blue and yellow pokemon type pokemon character with a long tail"
}{
"source": "source/2161.png",
"target": "target/2161.png",
"prompt": "a blue and green snake with a green tail"
}{
"source": "source/24431.png",
"target": "target/24431.png",
"prompt": "file pokemon - green - eyes - png - image - 1 png"
}{
"source": "source/24036.png",
"target": "target/24036.png",
"prompt": "a blue and yellow circular object with a number on it"
}{
"source": "source/6250.png",
"target": "target/6250.png",
"prompt": "a close up of a plant with green leaves and purple flowers"
}{
"source": "source/2664.png",
"target": "target/2664.png",
"prompt": "a green cartoon animal with a lightning bolt in its mouth"
}{
"source": "source/17081.png",
"target": "target/17081.png",
"prompt": "file cat - cat - in - blue png - wip - file - cat - in"
}{
"source": "source/15207.png",
"target": "target/15207.png",
"prompt": "a close up of a cartoon character with a green and yellow design"
}{
"source": "source/20432.png",
"target": "target/20432.png",
"prompt": "a close up of a red and blue object with a black background"
}{
"source": "source/22732.png",
"target": "target/22732.png",
"prompt": "a close up of a cartoon animal with a green and purple background"
}{
"source": "source/21721.png",
"target": "target/21721.png",
"prompt": "file file file file file file file file file file file file file file file file file file file"
}{
"source": "source/14191.png",
"target": "target/14191.png",
"prompt": "sonic the hedgehog - sonic the hedgehog in a pink suit"
}{
"source": "source/7597.png",
"target": "target/7597.png",
"prompt": "there is a bird that is sitting on a branch"
}{
"source": "source/8764.png",
"target": "target/8764.png",
"prompt": "a close up of a cartoon dinosaur with a long tail"
}{
"source": "source/22326.png",
"target": "target/22326.png",
"prompt": "a close up of a butterfly with a green and purple background"
}{
"source": "source/15614.png",
"target": "target/15614.png",
"prompt": "pokemon x and y are the same type of pokemon"
}{
"source": "source/19680.png",
"target": "target/19680.png",
"prompt": "a close up of a flower with many leaves on it"
}{
"source": "source/6361.png",
"target": "target/6361.png",
"prompt": "a blue and yellow cat sitting on top of a blue ball"
}{
"source": "source/19166.png",
"target": "target/19166.png",
"prompt": "a close up of a cartoon character with a blue and green face"
}{
"source": "source/15726.png",
"target": "target/15726.png",
"prompt": "a close up of a cartoon character with a red and blue background"
}{
"source": "source/936.png",
"target": "target/936.png",
"prompt": "a close up of a cartoon insect with a computer on its back"
}{
"source": "source/17222.png",
"target": "target/17222.png",
"prompt": "a close up of a yellow butterfly with a black background"
}{
"source": "source/11954.png",
"target": "target/11954.png",
"prompt": "a close up of a cartoon character with a red hat and green pants"
}{
"source": "source/12397.png",
"target": "target/12397.png",
"prompt": "file pokemon - type - pokemon - type - pokemon - type - pokemon - type - pokemon -"
}{
"source": "source/23225.png",
"target": "target/23225.png",
"prompt": "a blue and green dragon with a leaf on its head"
}{
"source": "source/10189.png",
"target": "target/10189.png",
"prompt": "a close up of a red and blue ball with a light on it"
}{
"source": "source/11898.png",
"target": "target/11898.png",
"prompt": "a close up of a teddy bear with a bow tie and a green and yellow vest"
}{
"source": "source/16813.png",
"target": "target/16813.png",
"prompt": "a close up of a cartoon frog with a red heart"
}{
"source": "source/24984.png",
"target": "target/24984.png",
"prompt": "a green cat with a green collar and a green tail"
}{
"source": "source/3548.png",
"target": "target/3548.png",
"prompt": "a blue and green crab with a green shell on its back"
}{
"source": "source/17397.png",
"target": "target/17397.png",
"prompt": "a green and purple frog with a hat and a green leaf"
}{
"source": "source/22905.png",
"target": "target/22905.png",
"prompt": "a purple pokemon character with a blue tail and a purple tail"
}{
"source": "source/5511.png",
"target": "target/5511.png",
"prompt": "cartoon image of a clown with a hat and a knife"
}{
"source": "source/13913.png",
"target": "target/13913.png",
"prompt": "a green and yellow cat with long tail standing in front of a black background"
}{
"source": "source/426.png",
"target": "target/426.png",
"prompt": "a close up of a pink and green worm on a black background"
}{
"source": "source/5701.png",
"target": "target/5701.png",
"prompt": "pokemon pikachu with a balloon and a tail"
}{
"source": "source/8876.png",
"target": "target/8876.png",
"prompt": "a close up of a cartoon animal with a red and green design"
}{
"source": "source/23476.png",
"target": "target/23476.png",
"prompt": "there is a bird that is flying in the air"
}{
"source": "source/5001.png",
"target": "target/5001.png",
"prompt": "file pokemon - pokemon - evolution - 2 - - - - - - - - - - -"
}{
"source": "source/14631.png",
"target": "target/14631.png",
"prompt": "there is a green apple with a smiley face and a leaf on it"
}{
"source": "source/857.png",
"target": "target/857.png",
"prompt": "file pokemon - blue - and - yellow - dragon - png - png - file -"
}{
"source": "source/14172.png",
"target": "target/14172.png",
"prompt": "a cartoon image of a green and blue frog with a black background"
}{
"source": "source/7065.png",
"target": "target/7065.png",
"prompt": "a close up of a blue and red pokemon character with leaves"
}{
"source": "source/10819.png",
"target": "target/10819.png",
"prompt": "a close up of a pink fish with a black background"
}{
"source": "source/3022.png",
"target": "target/3022.png",
"prompt": "pokemon red and blue logo"
}{
"source": "source/17673.png",
"target": "target/17673.png",
"prompt": "purple teddy bear with green eyes sitting on a black background"
}{
"source": "source/24659.png",
"target": "target/24659.png",
"prompt": "there is a picture of a pokemon type of dragon with a blue tail"
}{
"source": "source/21884.png",
"target": "target/21884.png",
"prompt": "a green and blue lizard with a long tail and a tail"
}{
"source": "source/728.png",
"target": "target/728.png",
"prompt": "a close up of a purple and green dinosaur with a star on its back"
}{
"source": "source/22217.png",
"target": "target/22217.png",
"prompt": "a pink and green pixel art of a man with a sword"
}{
"source": "source/17809.png",
"target": "target/17809.png",
"prompt": "a blue and green origami pokemon character with a black background"
}{
"source": "source/6271.png",
"target": "target/6271.png",
"prompt": "a close up of a purple and blue flower with a leaf"
}{
"source": "source/309.png",
"target": "target/309.png",
"prompt": "a green and purple sphere with a green arrow pointing up"
}{
"source": "source/18768.png",
"target": "target/18768.png",
"prompt": "a close up of a cartoon bird with a red and blue head"
}{
"source": "source/15237.png",
"target": "target/15237.png",
"prompt": "a close up of a cartoon character with a green hat on"
}{
"source": "source/9996.png",
"target": "target/9996.png",
"prompt": "cartoon image of a pink and purple space rocket with a green nose"
}{
"source": "source/26201.png",
"target": "target/26201.png",
"prompt": "a green and blue cartoon mouse with two ears and a tail"
}{
"source": "source/979.png",
"target": "target/979.png",
"prompt": "a close up of a green and black monster with green eyes"
}{
"source": "source/20306.png",
"target": "target/20306.png",
"prompt": "a close up of a blue bird with a green beak"
}{
"source": "source/4923.png",
"target": "target/4923.png",
"prompt": "a close up of a pokemon logo with a person falling off of it"
}{
"source": "source/6297.png",
"target": "target/6297.png",
"prompt": "a blue and green cartoon animal with a green tail"
}{
"source": "source/9642.png",
"target": "target/9642.png",
"prompt": "a close up of a purple and green heart on a black background"
}{
"source": "source/4556.png",
"target": "target/4556.png",
"prompt": "there is a pink bird with a green beak and a red head"
}{
"source": "source/4430.png",
"target": "target/4430.png",
"prompt": "a close up of a butterfly with a red and blue wing"
}{
"source": "source/24849.png",
"target": "target/24849.png",
"prompt": "a close up of a cartoon character with a blue background"
}{
"source": "source/12814.png",
"target": "target/12814.png",
"prompt": "a close up of a pink and blue leaf on a black background"
}{
"source": "source/13217.png",
"target": "target/13217.png",
"prompt": "a close up of a cartoon character with a big smile"
}{
"source": "source/1872.png",
"target": "target/1872.png",
"prompt": "a close up of a red and green cartoon character laying down"
}{
"source": "source/7437.png",
"target": "target/7437.png",
"prompt": "a close up of a cartoonish pokemon with a pink and blue outfit"
}{
"source": "source/16153.png",
"target": "target/16153.png",
"prompt": "a blue bird with a crown on its head"
}{
"source": "source/7216.png",
"target": "target/7216.png",
"prompt": "a close up of a cartoon character on a motorcycle"
}{
"source": "source/15656.png",
"target": "target/15656.png",
"prompt": "there is a bird that is flying through the air"
}{
"source": "source/3852.png",
"target": "target/3852.png",
"prompt": "a close up of a green and purple flower with a black background"
}{
"source": "source/17359.png",
"target": "target/17359.png",
"prompt": "there is a pink bird with two red wings on it"
}{
"source": "source/2326.png",
"target": "target/2326.png",
"prompt": "a close up of a green and purple insect with a black background"
}{
"source": "source/11883.png",
"target": "target/11883.png",
"prompt": "a green and purple turtle with a pink and green design"
}{
"source": "source/23390.png",
"target": "target/23390.png",
"prompt": "a close up of a bird with a long tail and a flower"
}{
"source": "source/2012.png",
"target": "target/2012.png",
"prompt": "a blue and yellow cartoon character with a hat and a baseball cap"
}{
"source": "source/12538.png",
"target": "target/12538.png",
"prompt": "a purple and yellow object with a green and yellow object on it"
}{
"source": "source/21495.png",
"target": "target/21495.png",
"prompt": "file pokemon - green - and - pink - pokemon - png - image - 1 png"
}{
"source": "source/14744.png",
"target": "target/14744.png",
"prompt": "purple and green elephant with a green tail and a blue tail"
}{
"source": "source/4998.png",
"target": "target/4998.png",
"prompt": "file pokemon - pikachu - with - green - eyes png wikims"
}{
"source": "source/19931.png",
"target": "target/19931.png",
"prompt": "purple and yellow flower with green stems and leaves"
}{
"source": "source/8538.png",
"target": "target/8538.png",
"prompt": "a close up of a flower with a purple rose on it"
}{
"source": "source/2247.png",
"target": "target/2247.png",
"prompt": "pokemon xd - pokemon xd - pokemon xd - pokemon xd - pokemon xd"
}{
"source": "source/12961.png",
"target": "target/12961.png",
"prompt": "a close up of a purple and white cat with wings"
}{
"source": "source/1286.png",
"target": "target/1286.png",
"prompt": "cartoon of a bird with a long beak and a long tail"
}{
"source": "source/4585.png",
"target": "target/4585.png",
"prompt": "a close up of a cartoon character with a flower in its hand"
}{
"source": "source/7969.png",
"target": "target/7969.png",
"prompt": "a close up of a cartoon bird with a halo on its head"
}{
"source": "source/10194.png",
"target": "target/10194.png",
"prompt": "a close up of a blue and red object with a green light"
}{
"source": "source/14446.png",
"target": "target/14446.png",
"prompt": "a close up of a cartoonish animal with a red eye"
}{
"source": "source/20495.png",
"target": "target/20495.png",
"prompt": "a close up of a red and blue dragon with a black background"
}{
"source": "source/5682.png",
"target": "target/5682.png",
"prompt": "cartoon turtle with sunglasses and a hat on"
}{
"source": "source/885.png",
"target": "target/885.png",
"prompt": "a green and black image of a girl in a green dress"
}{
"source": "source/14004.png",
"target": "target/14004.png",
"prompt": "a close up of a cartoon bird with a red and blue tail"
}{
"source": "source/16094.png",
"target": "target/16094.png",
"prompt": "a cartoon image of a blue and white cat with headphones"
}{
"source": "source/8874.png",
"target": "target/8874.png",
"prompt": "a close up of a pink and green pokemon pokemon pokemon"
}{
"source": "source/12500.png",
"target": "target/12500.png",
"prompt": "a close up of a blue insect with a black background"
}{
"source": "source/5226.png",
"target": "target/5226.png",
"prompt": "a close up of a cartoon character with a pink and green background"
}{
"source": "source/4385.png",
"target": "target/4385.png",
"prompt": "a close up of a pokemon character with a black background"
}{
"source": "source/21720.png",
"target": "target/21720.png",
"prompt": "a close up of a purple and green bird with a black background"
}{
"source": "source/13318.png",
"target": "target/13318.png",
"prompt": "cartoon of a cat with a crown on its head and a striped shirt"
}{
"source": "source/19719.png",
"target": "target/19719.png",
"prompt": "file pokemon - monster - with - a - hat - and - a - tail png wi"
}{
"source": "source/4797.png",
"target": "target/4797.png",
"prompt": "a cartoon blue caterpy worm with green spots on its legs"
}{
"source": "source/21087.png",
"target": "target/21087.png",
"prompt": "a green and blue necklace with a black and white flower"
}{
"source": "source/6014.png",
"target": "target/6014.png",
"prompt": "a cartoon image of a green and white snake with a blue tail"
}{
"source": "source/15284.png",
"target": "target/15284.png",
"prompt": "there is a cartoon of a hand holding a bowl with a fish on it"
}{
"source": "source/11690.png",
"target": "target/11690.png",
"prompt": "a close up of a green and purple pokemon type pokemon"
}{
"source": "source/20439.png",
"target": "target/20439.png",
"prompt": "a green and pink flower with a pink center"
}{
"source": "source/21599.png",
"target": "target/21599.png",
"prompt": "a close up of a pair of scissors with a broken one"
}{
"source": "source/21689.png",
"target": "target/21689.png",
"prompt": "a close up of a pokemon type pokemon with a blue tail"
}{
"source": "source/17639.png",
"target": "target/17639.png",
"prompt": "pokemon is a pokemon type pokemon with a very long tail"
}{
"source": "source/11561.png",
"target": "target/11561.png",
"prompt": "a purple and green alien with a red nose and a green body"
}{
"source": "source/23319.png",
"target": "target/23319.png",
"prompt": "a close up of a pixel pokemon type image of a bird"
}{
"source": "source/15219.png",
"target": "target/15219.png",
"prompt": "a close up of a blue and green pokemon type creature"
}{
"source": "source/13472.png",
"target": "target/13472.png",
"prompt": "a close up of a brown and white object with a black background"
}{
"source": "source/4100.png",
"target": "target/4100.png",
"prompt": "pokemon's pink and yellow character is flying through the air"
}{
"source": "source/14224.png",
"target": "target/14224.png",
"prompt": "a cartoon image of a person in a red and blue outfit"
}{
"source": "source/1259.png",
"target": "target/1259.png",
"prompt": "a close up of a pink and yellow flower on a black background"
}{
"source": "source/10764.png",
"target": "target/10764.png",
"prompt": "a close up of a purple fish on a black background"
}{
"source": "source/2006.png",
"target": "target/2006.png",
"prompt": "a green teddy bear with a green hat and a green bag"
}{
"source": "source/14991.png",
"target": "target/14991.png",
"prompt": "a close up of a red and blue fish with a black background"
}{
"source": "source/7846.png",
"target": "target/7846.png",
"prompt": "a close up of a cartoon character with a green and red outfit"
}{
"source": "source/26013.png",
"target": "target/26013.png",
"prompt": "a close up of a snake with a long tail and a long tail"
}{
"source": "source/22289.png",
"target": "target/22289.png",
"prompt": "there is a red and green dragon with a green tail"
}{
"source": "source/23022.png",
"target": "target/23022.png",
"prompt": "a close up of a frog with a red and blue tail"
}{
"source": "source/20672.png",
"target": "target/20672.png",
"prompt": "a close up of a small animal with green eyes"
}{
"source": "source/15055.png",
"target": "target/15055.png",
"prompt": "a close up of a cartoon animal with a baseball bat"
}{
"source": "source/25446.png",
"target": "target/25446.png",
"prompt": "a close up of a ring with a leaf on it"
}{
"source": "source/18725.png",
"target": "target/18725.png",
"prompt": "cartoon image of a cat with a lightning bolt coming out of its mouth"
}{
"source": "source/5731.png",
"target": "target/5731.png",
"prompt": "a close up of a white object with a red eye"
}{
"source": "source/25133.png",
"target": "target/25133.png",
"prompt": "a close up of a red and blue arrow with a red and green arrow"
}{
"source": "source/14334.png",
"target": "target/14334.png",
"prompt": "a close up of a black and white pokemon character with a green tail"
}{
"source": "source/4632.png",
"target": "target/4632.png",
"prompt": "a green dragon with a shield on its back"
}{
"source": "source/24271.png",
"target": "target/24271.png",
"prompt": "there is a red object with a red liquid pouring out of it"
}{
"source": "source/14793.png",
"target": "target/14793.png",
"prompt": "a close up of a pokemon type pokemon with a red and green tail"
}{
"source": "source/23017.png",
"target": "target/23017.png",
"prompt": "a close up of a cartoon character with a frisbee in his hand"