-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbarbara_holzer.py
More file actions
executable file
·3006 lines (3000 loc) · 107 KB
/
barbara_holzer.py
File metadata and controls
executable file
·3006 lines (3000 loc) · 107 KB
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
#!/usr/bin/env python2
# -*- coding: utf8 -*-
import sys, os
from PIL import Image, ImageOps, ImageFont, ImageDraw
import tracery, json
import disarticulate
from random import Random
random=Random()
holzer=[
"a little knowledge can go a long way", "a lot of professionals are crackpots", "a man can't know what it is to be a mother", "a name means a lot just by itself", "a positive attitude means all the difference in the world", "a relaxed man is not necessarily a better man", "a sense of timing is the mark of genius", "a sincere effort is all you can ask",
"a single event can have infinitely many interpretations", "a solid home base builds a sense of self", "a strong sense of duty imprisons you", "absolute submission can be a form of freedom", "abstraction is a type of decadence", "abuse of power comes as no surprise", "action causes more trouble than thought", "alienation produces eccentrics or revolutionaries",
"all things are delicately interconnected", "ambition is just as dangerous as complacency", "ambivalence can ruin your life", "an elite is inevitable", "anger or hate can be a useful motivating force", "animalism is perfectly healthy", "any surplus is immoral", "anything is a legitimate area of investigation", "artificial desires are despoiling the earth",
"at times inactivity is preferable to mindless functioning", "at times your unconsciousness is truer than your conscious mind", "automation is deadly", "awful punishment awaits really bad people", "bad intentions can yield good results", "being alone with yourself is increasingly unpopular", "being happy is more important than anything else", "being judgmental is a sign of life",
"being sure of yourself means you're a fool", "believing in rebirth is the same as admitting defeat", "boredom makes you do crazy things", "calm is more conductive to creativity than is anxiety", "categorizing fear is calming", "change is valuable when the oppressed become tyrants", "chasing the new is dangerous to society", "children are the most cruel of all",
"children are the hope of the future", "class action is a nice idea with no substance", "class structure is as artificial as plastic", "confusing yourself is a way to stay honest", "crime against property is relatively unimportant", "decadence can be an end in itself", "decency is a relative thing", "dependence can be a meal ticket", "description is more important than metaphor",
"deviants are sacrificed to increase group solidarity", "disgust is the appropriate response to most situations", "disorganization is a kind of anesthesia", "don't place to much trust in experts", "drama often obscures the real issues", "dreaming while awake is a frightening contradiction", "dying and coming back gives you considerable perspective",
"dying should be as easy as falling off a log", "eating too much is criminal", "elaboration is a form of pollution", "emotional responses ar as valuable as intellectual responses", "enjoy yourself because you can't change anything anyway", "ensure that your life stays in flux", "even your family can betray you", "every achievement requires a sacrifice", "everyone's work is equally important",
"everything that's interesting is new", "exceptional people deserve special concessions", "expiring for love is beautiful but stupid", "expressing anger is necessary", "extreme behavior has its basis in pathological psychology", "extreme self-consciousness leads to perversion", "faithfulness is a social not a biological law", "fake or real indifference is a powerful personal weapon",
"fathers often use too much force", "fear is the greatest incapacitator", "freedom is a luxury not a necessity", "giving free rein to your emotions is an honest way to live", "go all out in romance and let the chips fall where they may", "going with the flow is soothing but risky", "good deeds eventually are rewarded", "government is a burden on the people", "grass roots agitation is the only hope",
"guilt and self-laceration are indulgences", "habitual contempt doesn't reflect a finer sensibility", "hiding your emotions is despicable", "holding back protects your vital energies", "humanism is obsolete", "humor is a release", "ideals are replaced by conventional goals at a certain age", "if you aren't political your personal life should be exemplary", "if you can't leave your mark give up",
"if you have many desires your life will be interesting", "if you live simply there is nothing to worry about", "ignoring enemies is the best way to fight", "illness is a state of mind", "imposing order is man's vocation for chaos is hell", "in some instances it's better to die than to continue", "inheritance must be abolished", "it can be helpful to keep going no matter what",
"it is heroic to try to stop time", "it is man's fate to outsmart himself", "it is a gift to the world not to have babies", "it's better to be a good person than a famous person", "it's better to be lonely than to be with inferior people", "it's better to be naive than jaded", "it's better to study the living fact than to analyze history", "it's crucial to have an active fantasy life",
"it's good to give extra money to charity", "it's important to stay clean on all levels", "it's just an accident that your parents are your parents", "it's not good to hold too many absolutes", "it's not good to operate on credit", "it's vital to live in harmony with nature", "just believing something can make it happen", "keep something in reserve for emergencies",
"killing is unavoidable but nothing to be proud of", "knowing yourself lets you understand others", "knowledge should be advanced at all costs", "labor is a life-destroying activity", "lack of charisma can be fatal", "leisure time is a gigantic smoke screen", "listen when your body talks", "looking back is the first sign of aging and decay", "loving animals is a substitute activity",
"low expectations are good protection", "manual labor can be refreshing and wholesome", "men are not monogamous by nature", "moderation kills the spirit", "money creates taste", "monomania is a prerequisite of success", "morals are for little people", "most people are not fit to rule themselves","mostly you should mind your own business", "mothers shouldn't make too many sacrifices",
"much was decided before you were born", "murder has its sexual side", "myth can make reality more intelligible", "noise can be hostile", "nothing upsets the balance of good and evil", "occasionally principles are more valuable than people", "offer very little information about yourself", "often you should act like you are sexless", "old friends are better left in the past",
"opacity is an irresistible challenge", "pain can be a very positive thing", "people are boring unless they are extremists", "people are nuts if they think they are important", "people are responsible for what they do unless they are insane", "people who don't work with their hands are parasites", "people who go crazy are too sensitive", "people won't behave if they have nothing to lose",
"physical culture is second best", "planning for the future is escapism", "playing it safe can cause a lot of damage in the long run", "politics is used for personal gain", "potential counts for nothing until it's realized", "private property created crime", "pursuing pleasure for the sake of pleasure will ruin you", "push yourself to the limit as often as possible",
"raise boys and girls the same way", "random mating is good for debunking sex myths", "rechanneling destructive impulses is a sign of maturity", "recluses always get weak", "redistributing wealth is imperative", "relativity is no boon to mankind", "religion causes as many problems as it solves", "remember you always have freedom of choice", "repetition is the best way to learn",
"resolutions serve to ease our conscience", "revolution begins with changes in the individual", "romantic love was invented to manipulate women", "routine is a link with the past", "routine small excesses are worse than then the occasional debauch", "sacrificing yourself for a bad cause is not a moral act", "salvation can't be bought and sold", "self-awareness can be crippling",
"self-contempt can do more harm than good", "selfishness is the most basic motivation", "selflessness is the highest achievement", "separatism is the way to a new beginning", "sex differences are here to stay", "sin is a means of social control", "slipping into madness is good for the sake of comparison", "sloppy thinking gets worse over time", "solitude is enriching",
"sometimes science advances faster than it should", "sometimes things seem to happen of their own accord", "spending too much time on self-improvement is antisocial", "starvation is nature's way", "stasis is a dream state", "sterilization is a weapon of the rulers", "strong emotional attachment stems from basic insecurity", "stupid people shouldn't breed", "survival of the fittest applies to men and animals",
"symbols are more meaningful than things themselves", "taking a strong stand publicizes the opposite position", "talking is used to hide one's inability to act", "teasing people sexually can have ugly consequences", "technology will make or break us", "the cruelest disappointment is when you let yourself down", "the desire to reproduce is a death wish", "the family is living on borrowed time",
"the idea of revolution is an adolescent fantasy", "the idea of transcendence is used to obscure oppression", "the idiosyncratic has lost its authority", "the most profound things are inexpressible", "the mundane is to be cherished", "the new is nothing but a restatement of the old", "the only way to be pure is to stay by yourself", "the sum of your actions determines what you are",
"the unattainable is invariable attractive", "the world operates according to discoverable laws", "there are too few immutable truths today", "there's nothing except what you sense", "there's nothing redeeming in toil", "thinking too much can only cause problems", "threatening someone sexually is a horrible act", "timidity is laughable", "to disagree presupposes moral integrity",
"to volunteer is reactionary", "torture is barbaric", "trading a life for a life is fair enough", "true freedom is frightful", "unique things must be the most valuable", "unquestioning love demonstrates largesse of spirit", "using force to stop force is absurd", "violence is permissible even desirable occasionally", "war is a purification rite", "we must make sacrifices to maintain our quality of life",
"when something terrible happens people wake up", "wishing things away is not effective", "with perseverance you can discover any truth", "words tend to be inadequate", "worrying can help you prepare", "you are a victim of the rules you live by", "you are guileless in your dreams", "you are responsible for constituting the meaning of things", "you are the past present and future",
"you can live on through your descendants", "you can't expect people to be something they're not", "you can't fool others if you're fooling yourself", "you don't know what's what until you support yourself", "you have to hurt others to be extraordinary", "you must be intimate with a token few", "you must disagree with authority figures", "you must have one grand passion",
"you must know where you stop and the world begins", "you can understand someone of your sex only", "you owe the world not the other way around", "you should study as much as possible", "your actions ae pointless if no one notices", "your oldest fears are the worst ones" ]
holzer+=["what is the worst thing you've ever done", "what is my next thought going to be?","why am i here?","i wish you well","i want you to be happy","what if i said no?","how can i be stronger for this?","what books changed your life?","does anger make this better?","am i being kind or clever?","is this getting me closer to my ideal life?","does this stop me from acting with justice?","does this stop me from acting with courage?","does this stop me from acting with temperance?","does this stop me from acting with wisdom?","why do i care what they think?","do i care what they think?","is this something only i can do?","who owns who?","where does this person fit into the world?","what am i working to get better at?","what can i let go of?","who do you spend time with?","is this in my control?","what does your ideal day look like?","to be or to do?","if i am not for me, who is?","if i am only for me, who am i?","what am i missing by choosing to worry?","what am i missing by choosing to be afraid?","am i doing my job?","what is the most important thing?","who is this for?","what do they want?","what do they need?","what value am i offering them?","does this actually matter?","will this be alive time or dead time?","is this who i want to be?","what am i for?","what is my job?","who do i want to be?","what is up to me?","what does a good day look like?"]
holzer+=["Is this something that I want or need to memorize?","Does this remind me of anything in another unrelated domain of knowledge?","Can I think of anything else I know that contradicts this concept?","What other things that I already know support the veracity of this concept?","Can I think of any practical examples of this?","Is this the first time that I’ve come across this nugget of knowledge?","Where else have I come across this idea?","Who else has tried to teach me this before?","How certain am I that this is true and correct?","Does this relate to anything else that I already know?","Where else in life can I find an example of this?","What other related concepts come to mind?","How difficult was it for me to grasp this?","If this is a WHAT, then can I explain the WHY?","How can this information be applied in my life?","Why is this important to know?","What else do I know about this topic?","What else would I like to learn about this subject?","Do I fully understand this?","Can I break this down into smaller parts?","How would I explain this to a child?","How does this fit in with the rest of what I know about this subject?","Is this information reliable?","Is this totally believable?","What, if anything, surprises me about this?","Is this easy to grasp?","Do I find this interesting and why?","How can I apply this it the real world?","Why is this important to know?","Am I curious to learn more about this?","What else might I want to learn more about because of this?","What does this mean to me?","Do I need to consult another source to better understand this?","What questions does this raise for me?","Does this have any broader implications?","Why is this important?","What other ways could I express this concept?","Does this bring any examples to mind?","Would I like to be able to remember this forever?","Should I consult another source?","How would I succinctly summarize this?"]
holzer+=["Abandon desire","Abandon normal instructions","Abandon normal instruments.","Accept advice","Accept advice.","Accretion","Accretion.","Adding on","A line has two sides","A line has two sides.","Allow an easement (an easement is the abandonment of a stricture)","Allow an easement (an easement is the abandonment of a stricture).","Always first steps","Always first steps.","Always give yourself credit for having more than personality","Always give yourself credit for having more than personality.","Always the first steps","Are there sections?","Are there sections? Consider transitions","Ask people to work against their better judgement","Ask people to work against their better judgment.","Ask your body","Ask your body.","Assemble some of the elements in a group and treat the group","Assemble some of the elements in a group and treat the group.","A very small object. Its center.","A very small object -Its centre","Back up a few steps. What else could you have done?","Balance the consistency principle with the inconsistency principle","Balance the consistency principle with the inconsistency principle.","Be dirty","Be dirty.","Be extravagant","Be extravagant.","Be less critical more often","Be less critical more often.","Breathe more deeply","Breathe more deeply.","Bridges -build -burn","Bridges -build -burn.","Call your mother and ask her what to do.","Cascades","Cascades.","Change ambiguities to specifics","Change instrument roles","Change instrument roles.","Change nothing and continue with immaculate consistency","Change nothing and continue with immaculate consistency.","Change specifics to ambiguities","Children -speaking -singing.","Children's voices -speaking -singing","Close","Cluster analysis","Cluster analysis.","Consider different fading systems","Consider different fading systems.","Consider transitions","Consider transitions.","Consult other sources -promising -unpromising","Consult other sources -promising -unpromising.","Convert a melodic element into a rhythmic element","Convert a melodic element into a rhythmic element.","Courage!","Cut a vital connection","Cut a vital connection.","Decorate, decorate","Decorate, decorate.","Define an area as 'safe' and use it as an anchor.","Define an area as `safe' and use it as an anchor","Describe the landscape in which this belongs. (9 August)","Destroy nothing; Destroy the most important thing","Destroy -nothing -the most important thing.","Discard an axiom","Discard an axiom.","Disciplined self-indulgence","Disciplined self-indulgence.","Disconnect from desire","Disconnect from desire.","Discover the recipes you are using and abandon them","Discover the recipes you are using and abandon them.","Discover your formulas and abandon them","Display your talent","Distorting time","Distorting time.","Do nothing for as long as possible","Do nothing for as long as possible.","Don't avoid what is easy","Don't be afraid of things because they're easy to do","Don't be afraid of things because they're easy to do.","Don't be frightened of cliches","Don't be frightened of cliches.","Don't be frightened to display your talents","Don't be frightened to display your talents.","Don't break the silence","Don't break the silence.","Don't stress one thing more than another","Don't stress one thing more than another.","Do something boring","Do something boring.","Do something sudden, destructive and unpredictable","Do the last thing first","Do the washing up","Do the washing up.","Do the words need changing?","Do we need holes?","Emphasize differences","Emphasize differences.","Emphasize repetitions","Emphasize repetitions.","Emphasize the flaws","Emphasize the flaws.","Faced with a choice, do both","Faced with a choice, do both.","Feedback recordings into an acoustic situation","Feed the recording back out of the medium","Feed the recording back out of the medium.","Fill every beat with something","Fill every beat with something.","Find a safe part and use it as an anchor","First work alone, then work in unusual pairs.","from it? What could you take from it?","From nothing to more than nothing","From nothing to more than nothing.","Get your neck massaged","Get your neck massaged.","Ghost echoes","Ghost echoes.","Give the game away","Give the game away.","Give way to your worst impulse","Give way to your worst impulse.","Go outside. Shut the door.","Go slowly all the way round the outside","Go slowly all the way round the outside.","Go to an extreme, move back to a more comfortable place","Go to an extreme, move back to a more comfortable place.","Honor thy error as a hidden intention.","How would someone else do it?","How would you explain this to your parents?","How would you have done it?","Humanize something free of error.","Humanize something that is free of error.","Idiot glee (?)","Idiot glee (?).","Imagine a caterpillar moving.","Imagine the music as a moving chain or caterpillar","Imagine the music as a series of disconnected events","Imagine the piece as a set of disconnected events.","improve his virility shovels them straight into his lap)","Infinitesimal gradations","Infinitesimal gradations.","Instead of changing the thing, change the world around it.","Intentions -credibility of -nobility of -humility of","Intentions -nobility of -humility of -credibility of.","In total darkness, or in a very large room, very quietly","In total darkness, or in a very large room, very quietly.","Into the impossible","Into the impossible.","Is it finished?","Is something missing?","Is the intonation correct?","Is there something missing?","Is the style right?","Is the tuning appropriate?","Is the tuning intonation correct?","It is quite possible (after all)","It is quite possible (after all).","It is simply a matter or work","Just carry on","Just carry on.","Left channel, right channel, center channel.","Left channel, right channel, centre channel","Listen in total darkness, or in a very large room, very quietly","Listen to the quiet voice","Listen to the quiet voice.","List the qualities it has. List those you'd like.","Look at a very small object, look at its center.","Look at a very small object, look at its centre","Look at the order in which you do things","Look at the order in which you do things.","Look closely at the most embarrassing details and amplify.","Look closely at the most embarrassing details and amplify them.","Lost in useless territory","Lost in useless territory.","Lowest common denominator.","Lowest common denominator check -single beat -single note -single riff","Magnify the most difficult details","Make a blank valuable by putting it in an excquisite frame","Make a blank valuable by putting it in an exquisite frame.","Make an exhaustive list of everything you might do and do the last thing","Make an exhaustive list of everything you might do and do the last thing on the list.","Make a sudden, destructive unpredictable action; incorporate","Make a sudden, destructive unpredictable action; incorporate.","Make it more sensual","Make what's perfect more human","Mechanize something idiosyncratic","Mechanize something idiosyncratic.","Move towards the unimportant","Mute and continue","Mute and continue.","Not building a wall but making a brick","Not building a wall but making a brick.","Once the search has begun, something will be found","Once the search is in progress, something will be found.","Only a part, not the whole","Only a part, not the whole.","Only one element of each kind","Only one element of each kind.","on the list","(Organic) machinery","(Organic) machinery.","Overtly resist change","Overtly resist change.","Pae White's non-blank graphic metacard","Pay attention to distractions","Picture of a man spotlighted","Put in ear plugs.","Put in earplugs","Question the heroic approach","Question the heroic approach.","Reevaluation (a warm feeling).","Remember those quiet evenings","Remember those quiet evenings.","Remove ambiguities and convert to specifics","Remove ambiguities and convert to specifics.","Remove a restriction","Remove specifics and convert to ambiguities","Remove specifics and convert to ambiguities.","Remove the middle, extend the edges","Repetition is a form of change","Repetition is a form of change.","Retrace your steps","Retrace your steps.","Revaluation (a warm feeling)","Reverse","Reverse.","Short circuit (example; a man eating peas with the idea that they will","Short circuit (example; a man eating peas with the idea that they will improve his virility shovels them straight into his lap).","Shut the door and listen from outside","Simple subtraction","Simple subtraction.","Simply a matter of work","Simply a matter of work.","Slow preparation, fast execution","Spectrum analysis","Spectrum analysis.","State the problem in words as clearly as possible.","State the problem in words as simply as possible","Steal a solution.","Take a break","Take a break.","Take away as much mystery as possible. What is left?","Take away the elements in order of apparent non-importance","Take away the elements in order of apparent non-importance.","Take away the important parts","Tape your mouth","Tape your mouth.","The inconsistency principle","The inconsistency principle.","The most important thing is the thing most easily forgotten","The most important thing is the thing most easily forgotten.","The tape is now the music","The tape is now the music.","Think - inside the work -outside the work","Think of the radio","Think of the radio.","Tidy up","Tidy up.","Towards the insignificant","Towards the insignificant.","Trust in the you of now","Trust in the you of now.","Try faking it","Turn it upside down","Turn it upside down.","Twist the spine","Twist the spine.","Use an old idea","Use an old idea.","Use an unacceptable color","Use an unacceptable color.","Use cliches","Use fewer notes","Use fewer notes.","Use filters","Use filters.","Use something nearby as a model","Use 'unqualified' people.","Use your own ideas","Voice your suspicions","Water","Water.","What are the sections sections of?","What are the sections sections of? Imagine a caterpillar moving","What are you really thinking about just now?","What context would look right?","What do you do? Now, what do you do best?","What else is this like?","What is the reality of the situation?","What is the simplest solution?","What mistakes did you make last time?","What most recently impressed you? How is it similar? What can you learn","What to increase? What to reduce? What to maintain?","What were the branch points in the evolution of this entity","What were you really thinking about just now? Incorporate","What would make this really successful?","What wouldn't you do?","What would your closest friend do?","When is it for? Who is it for?","Where is the edge?","Which parts can be grouped?","Who would make this really successful?","Work at a different speed","Work at a different speed.","Would anybody want it?","Would anyone want it?","You are an engineer","You are an engineer.","You can only make one dot at a time","You can only make one dot at a time.","You don't have to be ashamed of using your own ideas","You don't have to be ashamed of using your own ideas.","Your mistake was a hidden intention"]
holzer+=["we should be vigilant against anything that appears too familiar", "beneath the cobblestones, the beach", "be realistic: demand the impossible", "protection when you least expect it", "routine is a link with the past", "in an infinite universe, even nothing is possible", "support free enterprise: shoplift", "if you are looking for a sign, this is it", "this sign is not for you", "what's stopping you?", "they know", "there is no enemy anywhere", "stasis is the most potent force for change", "common sense is neither", "patriotism is for foreigners", "black sheep are still sheep", "alarm clocks kill dreams", "finishing is for quitters", "illusion is a revolutionary weapon", "you are now aware of your tongue", "you are now breathing manually", "are you blinking at the normal rate?", "to disagree presupposes moral integrity", "no us, no them: only the universe", "reality lacks discretionary power", "preserve disorder", "fools seldom differ", "think outside which box?", "what you change, changes you.", "freedom needs work.", "freedom is half off", "real men don't essentialize gender", "smash the state of mind", "this is the only warning i'm allowed to give you", "a conclusion is simply where you stopped thinking", "does anger make this better?", "am i being kind or clever?", "what if i said no?", "do i care what they think?", "why do i care what they think?", "what can i let go of?", "who is this for?", "do you believe that?", "the mind can only suspend so much disbelief"]
holzer+=[ "adventurous, sweeping", "birds thudding in time to", "bold", "bold, combative", "bold, inquisitive", "broody, chilling", "cheekily dramatic", "cheeky", "chilling", "chilling, suspenseful", "country", "creepy, ornate", "cryptic", "curious", "curious, quirky", "dark, determined", "darkly grandiose", "darkly menacing", "dark, overpowering", "delicate", "delicate, cryptic", "delicate, emotional", "delicate, inquisitive", "delicate, suspicious", "delicate, unnerving", "delicate, unsettling", "delicate, wondrous", "despondent", "determined", "disconcerting", "disorienting", "distressing", "dolorous", "dramatic", "dramatic, resolute", "dramatic, revelatory", "eerie", "eerie, cryptic", "eerie, unsettling", "elegant", "elegant classical guitar", "elegant instrumental", "enigmatic, inquisitive", "faint, echoing opera", "fay, wondrous", "foreboding", "forlorn", "gentle, perturbing", "gentle, quirky", "gentle, tender", "gloomy", "gloomy, bombastic", "grand", "grandiose, elegant", "grandly menacing", "grim, foreboding", "grimly grandiose", "groovy, kooky", "heroic", "inquisitive", "inscrutable", "instrumental", "insulted, determined", "intense", "intense, sweeping", "intense, unsettling", "intimidating", "jauntily macabre", "jauntily macabre outro", "jauntily macabre theme", "jittery, creepy", "lachrymose", "low, discomforting", "low, foreboding", "low, menacing", "low, mysterious", "low, ominous", "low, somber", "low, unnerving", "melancholic string", "melancholy", "mellow", "menacing", "mischievous", "mournful", "mournful, dramatic", "mysterious", "mysterious, haunting", "ominous", "ominous choral", "ominous, suspenseful", "pensive", "playfully gloomy", "plucky", "plucky, excited", "poignant", "poignant, melancholy", "pop", "quirkily dreary", "quirkily sinister", "quirky", "quirky, impish", "quirky, intense", "quizzical", "restrained, morose", "restrained, poignant", "rousing", "sinister", "solemn", "somber", "somber, emotional", "somber, inquisitive", "subdued, emotional", "subdued, whimsical", "suspenseful", "suspenseful chase", "suspicious", "tender, emotional", "tender, wondrous", "tense", "tense, distraught", "tense, dramatic", "tense, elegant cello", "tense, enigmatic", "tense, frenetic", "tense, unnerving", "twinkling, wondrous", "upbeat pop", "whimsically eerie", "whimsically gloomy", "whimsically morbid", ]
holzer += [
"100% privacy free",
"1/2 ",
"24-hour daylight",
"52Hz wail",
"abjection",
"a black market in genetic rodenticide ",
"a breakthrough in sound ",
"abstract culture",
"abstract milkshake",
"abyssal freedom",
"abyssal hole",
"abyssal plane",
"academy of fisticuffs",
"accelerated death benefits",
"Acceptable Kill Ratio ",
"acceptable meat creaminess",
"accidental materialities",
"a chaosmos",
"a charm of blood and stones",
"acid hatch",
"a comb for your hairy heart",
"a common penchant for violent death",
"a continuum of intensities",
"acousmatic",
"a creeping naturalism",
"acres of boiling feces",
"a cryptography of cosmic pain",
"ACTION OFFICE ",
"active denial",
"active denial system",
"actuarial escape velocity",
"adamical algorithm",
"a dangerous eye",
"added smashing power",
"adequate images",
"a desirable calamity",
"a direct sexual relationship with satan",
"a disco in hell",
"a dog named robot",
"adorable ice cream crisis",
"a dream of lunar alchemy",
"a durable landscape",
"advanced arse death",
"advanced psychotronic devices",
"adversarial pornography",
"aerial board of control",
"aerial triangles",
"a fading and cooling of stars",
"a failure to thrive",
"a false impression of premeditation",
"a fascinating disaster",
"a feeding-place for animals",
"a festival of rats",
"a frightening inheritance",
"against action",
"against flesh",
"a game called history",
"agean yacht vacation",
"aggregate accessory fruit",
"aggressively punctuated",
"a god without a function",
"a golden age of crime and detection",
"a grand unified theory of urban living",
"a hole in the real",
"a house for orgies and bacchanals",
"ai murder policy",
"AI Murder Policy",
"air-breathers of america",
"air disaster",
"a jagged sky",
"Alan Skokal's Cello Scrotum ",
"a lawsuit waiting to happen",
"alien fire (from the mercy seat)",
"alien traditions",
"a literature of exhaustion",
"a living hell that time forgot",
"all cause mortality",
"all cheese all the tiem",
"alligator belief championship",
"all my favorite cities are invisible",
"all of them witches",
"all-purpose survival cracker",
"all the ways out have been land mined",
"almost meat",
"a long strange way home",
"a lost age of violence and meat",
"alpine jungle",
"altered chord",
"altered wood",
"alternate dildo chainsaw",
"alternative light",
"alternative meats",
"a lunar countenance",
"a market for eyes",
"amber phenomena",
"ambient cream",
"ambient dread",
"ambient humanity",
"ambient shopping",
"ambulant coupling",
"a mechanical semblance of life",
"a melting hell",
"American Bottom Archaeology ",
"american carnage",
"american magic & dread",
"america's bathroom",
"a monstrous providence",
"a morphology of miracles",
"a most extraordinary something",
"a mournful ruminant bleating",
"amputation hazard",
"a mysterious force",
"an abortive and bastard art",
"anaerobic digester",
"analphabetic darkness",
"analysis cannon",
"an amazing mistake",
"anarchist jurisdiction",
"anatomical gifts",
"androgynous zones",
"a new and powerful god",
"a new and startling universe",
"a new casual mode of paranoia",
"a new disaster",
"a new leader in murder tech",
"a new point in ramen space",
"angel grinder",
"angel mafia",
"angry catfish",
"angry fruit salad",
"angry goat terror",
"angry young computer",
"ANGRY YOUNG COMPUTER ",
"a nice flat heaven",
"animal vigour",
"an improvement in stairs",
"an inconvenience of nettles",
"an invitation to bad ideas",
"anomalies in the soil",
"an ordered hell",
"anthrophage ",
"anthropodermic bibliophagy",
"anticontrol",
"antiproduction",
"anti-spitting hats",
"an univited rat",
"an unorthodox guidance",
"anything with a face",
"apes with ape problems",
"a petrified desolation",
"aphelion",
"a politics for alienation",
"appointment viewing",
"a principle of sufficient unreason",
"a process for avoiding certainty",
"a pungent, ammonia-like stench",
"a questionable supernatural agenda",
"arboreonasal bukake",
"archive fever",
"area 54",
"a rebellious and sinister dandyism",
"ariel phenomenon research organization",
"arise chicken",
"armed unit",
"A Romance of Entropy",
"art as encumberance",
"art crimes unit",
"artificial fear",
"artificial songs",
"artisanal mining operation",
"artisinal bullets",
"art thou still living, wretch?",
"art trauma",
"art works and art related merchandise",
"aryepiglottic folds five",
"a science of ghosts",
"a section of agghartha",
"a sick picture for sick people",
"a simpler hell",
"ask the fever",
"a sleeping suit for air-raid nights",
"a slow motion uppercut aimed at the sun",
"aspirational supervillain lifestyle",
"assault on society",
"associated force",
"a state of disoriented conflict",
"a study in abnormality",
"a study in confusion and misery",
"a sudden and miraculous grace",
"a sudden burst of day",
"a suddenly unfolded world",
"asymmetric bob",
"a tantalizing typology of personality",
"atari transputer workstation",
"a taste for satan",
"a taste for the categorical",
"a theramin for rats",
"at home in death",
"a time for evil",
"atomic hearing aid",
"atopia of the other",
"a tragical history of numbers",
"audio nasty",
"aunt baby",
"auntie fragile",
"auntie oedipus",
"auntlion",
"austrian wine control",
"autogenic discharge",
"autoicon ",
"automatic mouth ",
"automatic uncontrollable giving",
"available fog",
"a vision for the macrocosm",
"awake quiescence",
"a wet and deadly desert",
"awful necessity",
"a world of gently shifting greys",
"axis theory",
"aztec death whistle",
"babbling micro perceptions",
"back and to the left",
"backdoor revolution",
"back rear",
"bad wrong fun",
"bag-like mass",
"baker-miller punk",
"baltic sea anomaly",
"bang routing",
"barbarous vengence",
"barleymalt dermatology",
"Bart Fargo",
"baseline of happy normality",
"basic orgy management",
"baste me",
"bathtub guns",
"bearded seal call -- get sample",
"beat beta",
"beaverduck",
"becoming symmetrical",
"becoming vapor",
"bedtime procrastination revenge",
"Bedtown ",
"behold this mockery of food",
"bellicose space beings",
"bell island boom",
"beltane dew",
"beneath the witch layer",
"bent energy",
"bespoke ennui",
"best if used",
"betrothed by a scream",
"between leering galaxies",
"Between Us And The Stars ",
"beyond all dreams of dread",
"beyond appearance",
"beyond taste",
"big cat sancturary",
"big death",
"big dreams and blood powers",
"big library",
"big mood machine",
"big opinions",
"big real mode",
"big seance",
"bikini nose",
"biocontrol",
"bio-exorcist ",
"bipedal ruminants",
"bird specialist ",
"birdstrike",
"birth father",
"bizarre secrets of the pleaure cult",
"black reef",
"blazing slack",
"bleakly empowering",
"blended threat",
"Blood, Actually",
"blood and image",
"blood by drone",
"blood dealer",
"bloodfucker",
"blowing zen ",
"blue indigo violet ",
"blue mink bifocals ",
"blue resonant morpho",
"blueshaft",
"bluestocking temptress",
"boat nectar",
"bodies without options",
"body genres",
"body port hygene",
"bog butter knots",
"bogwife",
"boiled moon",
"bomb city",
"bomb-sniffing cyborg locusts",
"bone ossidex",
"bonewright",
"book tarot",
"boomtime for deathcults",
"bootleg video van",
"booty for the bold",
"borderline content",
"border science",
"born cancelled",
"bornless transrational event",
"born without skeletons",
"brain fever",
"brain garbage",
"brain needle",
"brand surgery",
"brazen empire of organized crime",
"breaded meat torus ",
"breakfast cloth",
"break space",
"breakthrough infection",
"brick machines",
"brief but powerful",
"brief sensuality",
"brilliant objects over washington",
"broken seals",
"brood x",
"brown mountain lights",
"brutal gigantic avian predators",
"brutal liminal",
"build the moon",
"bulletproof wolf",
"bull market for baby teeth",
"bundle of sleep",
"bungalow universe",
"bureaucratic love delusion",
"bureaucrats of the revolution",
"bureau of corpse medicine",
"bureau of crisis telepathy",
"bureau of public roads",
"buried spaceship",
"burke in name, burke in nature",
"burning desperate return to anything",
"burnt maps",
"burnt maps emanating from a dead moon",
"but lighting was his mother",
"butt carnival ",
"butterfly season",
"butter knot squashed",
"butt-focused school boards",
"butt lift specialist",
"Butt Mechanics ",
"buzzy electric",
"by some savage claw",
"cabinet beast ",
"cadaver organs",
"cadaver procurement section",
"calibrated amateurism",
"Callisto cuddle sponge",
"(Call it Emril's Postman Takes Away) ",
"calming slaughterbox",
"camels of the middle class",
"candidate for crisis",
"canned heat ",
"cannibal energies",
"cannibal metaphysics",
"cannibal prospector",
"canterwaul",
"captain boyfriend",
"captain supermarket",
"captive angel",
"carceral archipelago",
"carcrash world",
"cardboard lingerie",
"care control",
"caress of the sewergod",
"carnal rain",
"carrion screaming",
"cash nexus",
"casino death machine",
"catastrophic steam event",
"category jam ",
"cathode ray tube entertainment system",
"catladder",
"cave captives",
"celebration bowels",
"celebrity meat production",
"cemetery birdwatch",
"cemetery girls",
"cemetery guns",
"cemetery lichens",
"center for applied eschatology",
"center for effective dreaming",
"central computing hole",
"central dust control",
"centralized qualia control",
"central meat / central whip",
"certified 100% flesh",
"cerulean process",
"chainsaw heart",
"chamber of arts and wonders",
"characteristic heads",
"charming bed & breakfast nightmare",
"cheap grace",
"cheap nature",
"chemically peculiar",
"chicken grass alliance",
"chill panic",
"chimeric spike",
"chiral crisis",
"chitinous chimerical",
"chocolate bomb",
"chosen prefix collision attack",
"chrome rotation",
"chromium avacado wreck",
"churning cauldron of arbitrary failure",
"cincinnati tailfreak",
"citogenesis",
"civilized space",
"claycold lips",
"click gap",
"click to pray functionality",
"cloaca maxima",
"cloak and lasers",
"clockwork wizard",
"clown fetish growth industry",
"clown husbandry",
"clown school generation",
"cobra mist",
"cockroach milk",
"coeur en d'or",
"coffinbirth",
"coffin caller",
"coffin factory",
"cognitive estrangement",
"Coleridgean fantasy software",
"collapse informatics",
"collapsology",
"collateralized horse obligation",
"collateral magic",
"collision emporium",
"colorado mystery drones",
"colorspace atlas",
"combat agate",
"combined horse",
"comfort noise",
"comfortnoise",
"command phrase",
"commensurate thighs",
"commit to wax",
"commonwealth of sleep",
"community fartbag",
"community vibrancy index",
"competitive jaywalking",
"competitive self-play",
"Competitive self-play ",
"complicated airflow",
"complicity machine",
"compulsory bodily awareness",
"concentrated animal feeding operation",
"conceptual emergency",
"conceptual threat",
"concrete corduroy",
"condemned to hope forever",
"condensation nucleus",
"confused boner darling",
"conjurewife",
"consensual sentimentality",
"consolation in numbers",
"consolidated art disaster inc",
"consolidated luxury science inc",
"consolidated opportunity costs, llc",
"conspiracies of the body",
"conspiracy to riot",
"constructed authenticity",
"constructed unmediation",
"consumers are nervous",
"continuity of government",
"continuous partial attention",
"continuous partial attrition",
"continuous partial conflict",
"controlled multiple haunting",
"convalescence quilts",
"coordinated inauthentic behavior",
"coquettish pulse mode",
"corn mucous",
"corpsecakes",
"corpsemaster",
"Corpses Carved ",
"corpse taunting",
"corridors of core",
"corrupted play",
"corvid-19",
"cosmetic computing",
"cosmic ear bakery",
"cosmic snake orgy",
"cosmic state",
"cosmic watergate",
"counter-earth ",
"counterexpectational",
"counterfeit infinity",
"count mecha",
"courtesy telephone please",
"cousin throckmorton",
"coven justice",
"covington doom",
"cowglitter stark",
"crashed session ",
"crepuscular forces",
"crew expendable",
"crimes new roman",
"crisis telepathy",
"crispin's dance",
"critical flicker frequency",
"critical thermal maximum",
"crotchmouth and leg teeth",
"crowd-sourced nightmares",
"crown locust",
"cruelty-free experience",
"cryptic rest posture",
"cryptic transmission",
"crypt of the neckbreeder",
"crypt trip",
"crystal weapons",
"cube projection system",
"culthopping",
"curated instagram graffiti",
"current sleep system",
"cursed to love only the dead",
"cutie violence and the headshots",
"cybernate",
"cybernetics in the service of communism",
"cyclone of gore",
"cytokine storm",
"daggers in the dark",
"DAG of distain",
"dali parton",
"damaged tape",
"damage night",
"damn tombstones",
"dangerbeans",
"danger our vocation",
"dangerously tall",
"dangerous slackers",
"danger's comforter",
"dank and misty woods",
"darker when wet",
"darkness unplugged",
"darkside cartography",
"dashed upon the rocks of adolescence",
"data seventy",
"data void",
"dawn forever",
"daylight discs",
"daymare",
"days of dull fear",
"dead instrument",
"dead internet theory",
"DEADLY MANTIS ",
"deadly rays",
"death as productive matrix",
"death astrology",
"death at that income level",
"death banana",
"death basket",
"death benefits",
"deathhouse",
"death hunter macaroni",
"death master file",
"death opera",
"death projection",
"death's screaming return",
"DEATH TO YOUR KNEES ",
"deathtrap mountain",
"deathzone",
"decaying orbit",
"deception analysis",
"deception island",
"deeper dimensions of the profane",
"deer processing IV",
"defector concubine",
"definition of planet",
"de-fleshed ",
"deformed malediction",
"delicate sledgehammer",
"deltaworks",
"Demonstration Machine ",
"deodant",
"department of charm registration",
"designated survivor",
"desk test pilots",
"desolation bay",
"despair fatigue",
"dessicated pedant",
"dessicated ruin",
"destructive deduction",
"deviant whalers",
"dharma position",
"diabolical lizard cult",
"dice and small binoculars",
"die hot",
"die in complete surprise",
"different forms of play",
"difficult conversations laboratory",
"digital fur technology",
"DIM GREY WOMB",
"dirty book water",
"disc craze continues",
"disco bolus",
"disco finger",
"disco's revenge",
"discount cenobite warehouse",
"disgusting ham fantasy",
"disintegrated circus",
"disquietude",
"disruption operation playbook",
"disruptive strategy",
"distant beyond belief",
"distant thunder",
"distracting mouth sounds",
"dizzydog",
"dizzy vacuua",
"doctor beak",
"doctor chainsaw",
"doctor horse",
"dog a fake hero",
"dogwood sandwich",
"domestication syndrome",
"dominant victorian",
"dominating masculine necropolitics",
"dongle trunk",
"doom loop",
"doppler ganger",
"doubtful dollars ",
"doubting the witch",
"Dowsing for wikipedia articles. ",
"dramatic action",
"dread risks",
"dream control",
"dream incubation temple",
"dream loss bureau",
"dreamsin",
"dreamtax",
"dream theme inventory",
"drink the web",
"droop snoot",
"dr praetorious's incredible hungry skin",
"dry anus orgy",
"duck the momentum",
"dukes of hell",
"dumping syndrome",
"durkheim and the social fact",
"dymaxion chronovisor",
"dysphoric rituals",
"early internet argument culture",
"earthwife",
"Easy Home-Made Ruin ",
"easy watch",
"eat flaming death",
"eat your tv",
"eccentric wife orchestra",
"echo answer",
"eco death care",
"ecstasy of the consumed",
"ecstatic literacy",
"edible barcodes",
"edison's secret spirit experiments",
"educationally optimized panopticon",
"ego stripping",
"eight foot death machine",
"elaborate systems of dread ",
"elastic time",
"elderly teenage timeshare",
"electric gremlin",
"electric larryland",
"electroblood ",
"electronic voice phenomenon",
"eleven myths about snail breeding",
"elfcake",
"elite panic",
"emanating from a dead moon",
"embodied damnation",
"embodied logic",
"embryonic teeth",
"emenation body",
"emergent technologies of flesh",
"emotional prosthetic",
"emotion mind",
"empire of death",
"EMPIRE OF DEATH",
"empire of hair",
"empty motion",
"empty prosperity",
"endless cheese conveyer",
"endless everyday",
"endless expansion of wants",
"endless genealogy",
"end user digest",
"enemy ghost",
"enemy stand",
"enlarged intimate supplement",
"entropic ruin",
"eponymous laws",
"errands of devilry",
"escalator entrapment incident",
"esotourism",
"established infotech",
"ET: The Exorcist ",
"european fungus library",
"evaporation industry",
"everlasting faint",
"Every-Day Tums Festival ",
"every now",
"everything else is death",
"excellent eating experience",
"except at occasional intervals",
"excess death contingency",
"excess organs",
"Execution Model ",
"exodus to an uninhabitable earth",
"exothanatology",
"expectorate the vestigial",
"expensive static from outer space",
"experimental forest",
"experimental fortress",
"experiments in tone",
"experiments upon vegetables",
"explode the clinic",
"explode the palimpsest",
"explode with vital juices",
"exploding in reverse",
"exposition cop",
"Exposure",
"extended contact with the dead",
"extended face processing",
"external shrinkage",
"ex tradition",
"extrasensory pay phone",
"extremely normal website",
"extruding the universe",
"extrusion of the etheric double",
"eye biters",
"eye penetration",
"eyes of the spine",
"eyestalk ablation",
"eyewax",
"face furniture",
"facial action coding system",
"FactoryManagerFactory",
"Factory of Cups ",
"faculty x",
"fairy tale archaeology",
"faith without smile",
"fake goth",
"fake goth appropriation subcommittee",
"false and defamatory",
"false color images",
"falsehoods to believe in",
"falsehoods we can believe in",
"fantastic animal",
"fantastic hesitation",
"fantastic plenum",
"fantasy aggression",
"farcaster network",
"farce acceleration",
"far memory",
"fashionable paranoia",
"fashion mask",
"fast machine",
"fast radio burst",
"Fatigue Zone ",
"faulty language selection",
"fearcon",
"feathered death garlands",
"fecal force fountain",
"fecal timebomb",
"federated hypercrime unit",
"ferocious analysis",
"fertile mistakes",
"festive cruelty",
"fetid wave of reeking death",
"fever machine",
"few things in this life work",
"field taxidermy",
"fierce and lovely",
"fifteen chapters on sloths",
"fifteen foot sinus",
"fifty foot horse",
"fighting about fighting",
"fighting sabrecats",
"film music for daydreams",
"filtered blood",
"filth as sign of devotion",
"final processing",
"fine trash literature",
"fish bulletin",
"fish recognition system",
"fish repairs",
"fist implement",
"five inches of danger ",
"five tons of protoplasm",
"flamboyant gothic",
"flame photometer",
"flap data",
"flask of skin",
"flaylord",
"fleeting indecency",
"FLESHCAKE",
"fleshcops",
"flesh pirates",
"fleshsort",
"flesh with the crowd",
"fleshy puncture",
"florid filth",
"flow of tapes",
"flow trigger",
"flying duckman",
"flying meat",
"flying saucer revue",
"fog in the kitchen",
"forbidden encounters with a fancy bear",
"forbidden shapes",
"forest bathing in the green chapel",
"form estrangement",
"Formula Tales ",
"for-profit death cult",
"for the benefit of the corpse",
"fossil ape",
"four of skin",
"four oreos from heaven",
"foxy car wreck",
"franchise glitz dealer",
"fraud in absentia",
"freakwave",
"freak windsuit accident",
"Free Halloween idea for IT people: ",
"free jazz acid exorcism",
"freelance vivisectionist",
"freestyle acupuncture",
"frenzy of loathing",
"fresh and desperate wailing",
"freudensprung",
"fridge poetry for Roman Emperors",
"frightened as they warm",
"frog delta",
"frolicking exercises",
"frost heave",
"frozen conflict",
"fruit bringing society",
"fruiting body",
"fucking hellshit",
"Fuel Oil 3 ",
"fugues of the creeping unknown",
"full torso roaming apparition",
"functional music",
"functional wound",
"funeral apology",
"funeral dj",
"funereal world of terror",
"fungus humongus",
"funk the assassination",
"fur bikini",
"future flesh",
"fuzz and sustain",
"gaffe machine",
"galactic head",
"galloping ghosts",
"gaping chasms",
"gaping mouth ring ",
"garbage day",
"garden of errors ",
"gateaux",
"gatorvision",
"generalized curves",
"generally regarded as sludge",
"general purpose criminals",
"genericide",
"gentle morning shout",
"geocentric plane of infinite inertia",
"geophage",
"ghost economy",
"ghost hominid",
"ghost kitchens",
"ghostmath ",
"ghosts from the future",
"ghost shift",
"ghosts of the living",
"ghost stream",
"ghost value",
"giant moth intervention",
"giant spider inversion",
"girlmeat",
"GIRLS MEET TRACTOR",
"girls on talk",
"give up your dead",
"glamsight",
"glass brain",
"glass hall of knives",
"glasspalace",
"glassroots",
"glitterghost",
"global hum",
"global seismic event",
"gloomy elaborate whining",
"glory in defeat",
"gnome illusionist",
"goblinbane",
"god-forsaken antimatter galaxy",
"God's transcendent negativity ",
"golden ratio in the uterus",
"gongmaster",
"gore files",
"gorilla orphanage",
"gossamer myth",
"gothdots",
"government cheesecake",
"grace insurance",
"graphic methods for presenting facts",
"gratiutous gargoyle cinematography",
"gravewax ",
"gravygrave",
"greaseboy",
"greasy target center",
"great monster destruction",
"great wheat motifs",
"grief collective",
"grimslide",
"grinding utility",
"groovy professor satan",
"gruen transfer",
"gruesome animal metaphors",
"gruesome machines",
"gutsnatcher",
"hair metal terminator",
"hairy cabinet",
"hairy tongues",
"hairy wonderboy",
"half-way to anywhere",
"handicraft futures",
"hangliding mice",
"Happy America Day ",
"haptic recon commando",
"harbingers of failure",
"hard cozy",
"hard dollar",
"harmful pleasures",
"harmonious fists",
"harmonious grays",
"Harry Humanoid",
"Harry Meatpile",
"haunted idiot wind",
"haunted mouse descendents",
"havana syndrome",
"hazardous toys",
"h certificate",
"head cleaner",
"healthy limb system",
"heatherface",