-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffline_dweet_gallery.html
4187 lines (4178 loc) · 287 KB
/
offline_dweet_gallery.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1252" />
<title>Dweets</title>
<style>
html,
body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
background: #111;
text-align: center;
}
* {
overflow: hidden;
}
#iframe-container-wrapper {
width: 100%;
padding: 0 0 56.25% 0; /* 16:9 */
position: relative;
background: black;
}
#iframe-container {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
iframe {
width: 100%;
height: 100%;
border: 0;
outline: 0;
margin: 0;
padding: 0;
}
.share-overlay {
text-align: left;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.8);
opacity: 0;
transition: opacity 0.1s;
z-index: 1;
color: grey;
padding: 15px;
font-size: 20px;
font-family: monospace;
}
.share-overlay input {
margin-left: 15px;
background: transparent;
font-family: monospace;
color: white;
border: 0;
outline: 0;
font-size: 20px;
border-bottom: 1px solid white;
}
html:hover .share-overlay,
body:hover .share-overlay,
.share-overlay:hover {
opacity: 1;
}
code {
white-space: pre;
}
</style>
</head>
<body>
<div id="iframe-container-wrapper">
<div id="iframe-container">
<iframe
sandbox="allow-scripts"
src="data:text/html;charset=utf-8,%3C!DOCTYPE%20html%3E%3Chead%3E%3Cstyle%3E*%20%7Bpadding%3A0%3Bmargin%3A0%3Bborder%3A0%3Boutline%3A0%3Boverflow%3Ahidden%7Dcanvas%20%7Bwidth%3A%20100%25%3Bbackground%3A%20white%3B%7D%3C%2Fstyle%3E%3C%2Fhead%3E%3Cbody%3E%3Ccanvas%20id%3Dc%3E%3C%2Fcanvas%3E%3Cscript%3Evar%20c%20%3D%20document.querySelector(%22%23c%22)%3Bc.width%20%3D%201920%3Bc.height%20%3D%201080%3Bvar%20S%20%3D%20Math.sin%3Bvar%20C%20%3D%20Math.cos%3Bvar%20T%20%3D%20Math.tan%3Bvar%20R%20%3D%20function(r%2Cg%2Cb%2Ca)%20%7Ba%20%3D%20a%20%3D%3D%3D%20undefined%20%3F%201%20%3A%20a%3Breturn%20%22rgba(%22%2B(r%7C0)%2B%22%2C%22%2B(g%7C0)%2B%22%2C%22%2B(b%7C0)%2B%22%2C%22%2Ba%2B%22)%22%3B%7D%3Bvar%20x%20%3D%20c.getContext(%222d%22)%3Bvar%20startT%20%3D%20%2Bnew%20Date()%3B%20function%20u(t)%20%7B%7D%3Bfunction%20loop()%20%7BrequestAnimationFrame(loop)%3Bu((new%20Date()%20-%20startT)%20%2F%201000)%3B%7D%3Bloop()%3B%3C%2Fscript%3E"
></iframe>
</div>
</div>
<div class="share-overlay">
<code>
function u(t) { /* Will be called 60 times per second. * t: Elapsed time
in seconds. * S: Shorthand for Math.sin. * C: Shorthand for Math.cos. *
T: Shorthand for Math.tan. * R: Function that generates rgba-strings,
usage ex.: R(255, 255, 255, 0.5) * c: A 1920x1080 canvas. * x: A 2D
context for that canvas. */
<input
id="editor"
autocomplete="off"
autocorrect="off"
autocapitalize="none"
spellcheck="false"
size="1"
/>
} // (<span id="character-count-display">0</span>/140)
</code>
</div>
<script>
var dweets = [
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud878\udc5b\ud866\udc3d\ud827\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc27\ud85d\udc28\ud830\udc2c\ud830\udc2c\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud831\udc38\ud830\udc2c\ud869\udc3d\ud86c\udc3d\ud831\udc35\ud833\udc30\ud829\udc3b\ud869\udc2d\ud82d\udc3b\ud878\udc5b\ud866\udc5d\ud828\udc58\ud82a\udc36\ud82c\udc59\ud82a\udc36\ud82c\udc31\ud82b\udc4b\ud82c\udc35\ud829\udc29\ud858\udc3d\ud869\udc25\ud839\udc30\ud82f\udc33\ud82c\udc59\ud83d\udc69\ud82f\udc39\ud830\udc2c\ud846\udc3d\ud874\udc2a\ud835\udc38\ud82d\udc69\ud82f\udc6c\ud82c\udc41\ud83d\udc58\ud82b\udc38\ud82a\udc53\ud828\udc7e\ud846\udc2f\ud839\udc2b\ud859\udc2f\ud839\udc29\ud82c\udc4b\ud83d\udc46\ud825\udc31\ud82f\udc34\ud82b\udc21\ud821\udc28\ud841\udc2f\ud831\udc37\ud82d\udc31\ud836\udc2f\ud831\udc38\ud87c\udc59\ud82f\udc34\ud82d\udc31\ud830\udc2f\ud835\udc7c\ud841\udc2b\ud832\udc26\ud832\udc29\ud82f\udc32\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc60\ud868\udc73\ud86c\udc28\ud824\udc7b\ud869\udc2a\ud831\udc32\ud830\udc7d\ud820\udc39\ud839\udc25\ud824\udc7b\ud84b\udc2a\ud839\udc39\ud87d\udc25\ud860\udc3b`.replace(/u../g,'')))",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud839\udc39\ud80a\udc70\ud83d\udc31\ud836\udc0a\ud86a\udc3d\ud831\udc0a\ud863\udc2e\ud873\udc74\ud879\udc6c\ud865\udc2e\ud866\udc69\ud86c\udc74\ud865\udc72\ud83d\udc27\ud862\udc6c\ud875\udc72\ud828\udc31\ud835\udc70\ud878\udc29\ud863\udc6f\ud86e\udc74\ud872\udc61\ud873\udc74\ud828\udc33\ud829\udc69\ud86e\udc76\ud865\udc72\ud874\udc28\ud827\udc0a\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud852\udc28\ud830\udc2c\ud831\udc33\ud830\udc2c\ud832\udc35\ud835\udc29\ud80a\udc66\ud86f\udc72\ud828\udc69\ud83d\udc32\ud83b\udc69\ud83e\udc30\ud83b\udc69\ud82d\udc3d\ud82e\udc33\ud82f\udc28\ud870\udc2b\ud874\udc29\ud829\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud870\udc2a\ud828\udc33\ud82b\udc28\ud86a\udc3d\ud82d\udc6a\ud829\udc2a\ud869\udc29\ud82c\udc70\ud82a\udc28\ud832\udc2b\ud828\udc69\ud82a\udc2a\ud82e\udc30\ud831\udc2a\ud828\udc43\ud828\udc69\ud829\udc2a\ud82a\udc2e\ud835\udc2a\ud843\udc28\ud832\udc30\ud830\udc2a\ud869\udc2b\ud874\udc29\ud82d\udc69\ud82a\udc2a\ud82e\udc33\ud829\udc29\ud829\udc2c\ud834\udc2c\ud834\udc29`.replace(/u../g,'')))",
},
{
code:
"c.width|=0,w=960;for(i=700;i--;x.fillRect(w+w*X/Z,w-Y/Z*w,s=(8/Z)**5,s));X=3*C(U=i+t)+C(V=t+i/(1+t/w*.7)),Y=S(i)+C(V)*T(V)-2,Z=S(U)-5",
},
{
code:
"t?0:c.width=40;y=frame;x.fillRect(y%16+1,~~(y/16)+1,1,'\ue5b6\u00ea\u1835\u73d4\u11e0\ud308\u9f8f\u3be1\ua170\u9a83\ue65a\u16c8\u0237\u8d47\u7f34\u4c6c\uaf4c\u0818\u99c2\ue644\u876b\ue6a4\ue2a2\u16e2\u0852'.charCodeAt(y/10).toString(3).split``.reverse()[y%10]/2)",
},
{
code:
"c.width|=0,w=960;for(i=w*2;i--;x.fillRect(w+w*X/Z,w-Y/Z*w,s=(8/Z)**5,s));X=3*C(U=i+t)+C(V=t+i/2),Y=C(U)*S((i*3)+t)+C(V)*T(V)-2,Z=S(U)-5",
},
{
code:
"c.width|=0,w=960;for(i=4000;i--;x.fillRect(w+w*X/Z,w-Y/Z*w,s=500/Z/Z/Z,s));X=2*C(U=i+t)+C(V=t+i*i),;Y=T(U)+C(V)*T(V)-2,;Z=S(U)-5",
},
{
code:
"for(c.width&=m=i=8320;i--;x.fillRect(X=i&127,Y=i>>7,1,f(X/m+.01,Y/m)))f=(x,y,n=42)=>--n&&y/C(x+n/2+t)<2?f(x*x-y*y-1.5,2*x*y,n):n/16",
},
{
code:
"for(r=28,c.width|=i=1025;--i;x.fillRect(960+X*r+o*S(i*i),540+Y*r+o*S(i**3),r,r))X=16-i%32,Y=512-i>>5,o=S((X*X+Y*Y)/399-t*2)*r+r",
},
{
code:
"c.style.filter=`invert(`;x.shadowBlur=40;x.shadowColor='#000';if(t<55/7)x.fillRect(960-320*C(t-(h=t>22/7?1:0)),540+320*S(h+t),8,7*(t%4))",
},
{
code:
"for(c.width&=i=8320;i--;x.fillRect(;48+X/2+Y/128*S(X/3+Y/24-t*6),8+Y/2,V<80|V<96&X/4&1,X/32^Y/96+.5?.1:.3;))X=i%64,Y=i/64,V=Y-Math.abs(X-32)",
},
{
code:
"eval(unescape(escape`\ud851\udc3d\ud871\udc3d\ud83e\udc78\ud82e\udc6c\ud869\udc6e\ud865\udc54\ud86f\udc28\ud838\udc38\ud82b\udc58\ud82f\udc71\ud82a\udc35\ud830\udc2c\ud835\udc30\ud82b\udc59\ud82f\udc71\ud82a\udc35\ud830\udc29\ud80a\udc66\ud86f\udc72\ud828\udc66\ud83d\udc31\ud837\udc2c\ud869\udc3d\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud831\udc37\ud835\udc2c\ud86e\udc3d\ud853\udc28\ud874\udc29\ud83b\udc69\ud82d\udc2d\ud83b\udc78\ud82e\udc73\ud874\udc72\ud86f\udc6b\ud865\udc28\ud829\udc29\ud866\udc6f\ud872\udc28\ud878\udc2e\ud862\udc65\ud867\udc69\ud86e\udc50\ud861\udc74\ud868\udc28\ud86a\udc3d\ud836\udc29\ud83b\udc6a\ud82d\udc2d\ud83b\udc51\ud828\udc32\ud82d\udc6e\ud829\udc29\ud858\udc3d\ud828\udc69\ud82d\udc74\ud825\udc31\ud829\udc25\ud866\udc2a\ud82e\udc39\ud82b\udc28\ud862\udc3d\ud869\udc2f\ud866\udc7c\ud830\udc29\ud825\udc32\ud82a\udc2e\ud834\udc34\ud82d\udc38\ud82c\udc59\ud83d\udc28\ud862\udc2b\ud86e\udc25\ud832\udc25\ud866\udc2d\ud834\udc29\ud82a\udc33\ud82f\udc34\ud82c\udc51\ud828\udc32\ud829\udc2c\ud858\udc2b\ud83d\udc53\ud828\udc70\ud83d\udc6a\ud82f\udc2e\ud839\udc35\ud829\udc2f\ud832\udc2c\ud859\udc2b\ud83d\udc43\ud828\udc70\ud829\udc2f\ud832\udc3b`.replace(/u../g,'')))",
},
{
code:
"for(c.width&=i=6272;i--;x.fillRect(40+X/2+X/48*C(X/8-Y/8-t*7),8+Y/2+X/6+X/12*S(X/16-t*3),2,i?X/36-1.3|Y/10-3|X+1&4?.06:.36:63))X=i%98,Y=i/98",
},
{
code:
"for(w=c.width|=i=600;i--;)x.fillRect(i+i/20*C(i*38+t*5),i%20*20+i*S(i/w-.1*S(i/99-t*2)),q=5*S(i*32*i/99)+9,q);x.fillRect(0,0,9,w)",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc63\ud82e\udc73\ud874\udc79\ud86c\udc65\ud82e\udc66\ud869\udc6c\ud874\udc65\ud872\udc3d\ud827\udc69\ud86e\udc76\ud865\udc72\ud874\udc28\ud827\udc0a\ud874\udc25\ud83d\udc58\ud83d\udc59\ud83d\udc31\ud82c\udc5a\ud83d\udc31\ud836\udc0a\ud866\udc6f\ud872\udc28\ud869\udc3d\ud833\udc65\ud833\udc3b\ud869\udc2d\ud82d\udc3b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc39\ud838\udc30\ud82b\udc61\ud82a\udc37\ud838\udc2c\ud831\udc32\ud830\udc30\ud82d\udc28\ud862\udc2b\ud874\udc2a\ud85a\udc29\ud82a\udc32\ud835\udc2c\ud839\udc2c\ud839\udc29\ud829\udc61\ud83d\udc58\ud82d\udc58\ud82a\udc74\ud82c\udc62\ud83d\udc5a\ud82d\udc5a\ud82a\udc74\ud82c\udc5a\ud82b\udc3d\ud828\udc58\ud82a\udc59\ud82d\udc5a\ud829\udc2f\ud833\udc39\ud82c\udc58\ud82b\udc3d\ud828\udc59\ud82d\udc58\ud829\udc2f\ud839\udc2c\ud859\udc2b\ud83d\udc58\ud82a\udc28\ud832\udc37\ud82d\udc5a\ud829\udc2f\ud838\udc37\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc52\ud828\udc28\ud861\udc2b\ud83d\udc58\ud82a\udc74\ud829\udc2a\ud839\udc39\ud82c\udc69\ud82f\udc39\ud82c\udc69\ud82f\udc31\ud839\udc29`.replace(/u../g,'')))",
},
{
code:
"for(i=2e3,f=(X,Y,n=99)=>T(X-S(Y))<9?f(X*X-Y*Y,2*X*Y+.7,n-1):x.fillStyle=`hsl(${i/8},80%,${C(n)*n}%`;i--;x.fillRect(i,t*60,1,1))f(i/3e3,t/50)",
},
{
code:
"for(j=4;j--&&t<2;)for(i=1080;i--;x.fillRect(a=t*240+j*480,i,8,f(a/2400-.4,i/2400-.225)**2))f=(X,Y,n=80)=>Y<n?f(X*X-Y*Y-.3,2*X*Y+.7,--n):n/80",
},
{
code:
"for(i=3e3,f=g=>i*g(i*i+t)*g(i/t)**.3;i--;x.fillRect(960+f(C),800-f(S),9/t,9/t))x.fillStyle=`hsl(${120+(k=S(i*i+t/5)*340)},99%,${k/4}%,.1`",
},
{
code:
"for(i=w=c.width|=m=19;i--;x.lineWidth=m/s)(1+i)%m||x.beginPath(x.stroke()),s=i/m-t%1,x.lineTo(960+2*(i%m-9)/s*w,9+(1+S(S(s/6+t)+i%m))/s*w)",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud873\udc74\ud879\udc6c\ud865\udc3d\ud827\udc66\ud869\udc6c\ud874\udc65\ud872\udc3a\ud869\udc6e\ud876\udc65\ud872\udc74\ud828\udc27\ud83b\udc66\ud86f\udc72\ud828\udc6c\ud865\udc74\ud820\udc7a\ud82c\udc41\ud82c\udc42\ud82c\udc6e\ud82c\udc58\ud82c\udc59\ud82c\udc69\ud83d\udc31\ud836\udc3b\ud869\udc3b\ud858\udc2b\ud83d\udc41\ud82c\udc59\ud82b\udc3d\ud842\udc29\ud859\udc2a\ud859\udc3c\ud834\udc65\ud835\udc26\ud826\udc58\ud82f\udc34\ud832\udc35\ud87c\udc59\ud82f\udc39\ud839\udc7c\ud858\udc2f\ud832\udc35\ud82b\udc31\ud837\udc26\ud832\udc3f\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc39\ud836\udc30\ud82b\udc58\ud82c\udc35\ud834\udc30\ud82b\udc59\ud82c\udc6e\ud82f\udc2b\ud82b\udc7a\ud82a\udc2a\ud82e\udc34\ud82c\udc2e\ud830\udc34\ud829\udc3a\ud828\udc7a\ud83d\udc31\ud82c\udc41\ud83d\udc53\ud828\udc72\ud83d\udc2d\ud82d\udc6e\ud83f\udc74\ud82a\udc2a\ud869\udc2a\ud86e\udc3a\ud874\udc2f\ud869\udc25\ud831\udc2e\ud836\udc2d\ud82e\udc38\ud829\udc2c\ud842\udc3d\ud843\udc28\ud872\udc29\ud82c\udc6e\ud829\udc7c\ud87c\udc28\ud86e\udc3d\ud838\udc2c\ud858\udc3d\ud874\udc2c\ud859\udc3d\ud869\udc2d\ud82d\udc2d\ud836\udc34\ud830\udc29`.replace(/u../g,'')))",
},
{
code:
"for(i=2e3,f=g=>(1+t)*i*g(i*i)*g(i+t/19);i--;x.fillRect(950+f(C),540+f(S),8/t,9/t))x.fillStyle=`hsl(${t*9},80%,${S(i/1e5+t)*99}%,.2`",
},
{
code:
"for(i=2e3,f=g=>(1+t)*i*g(i*i)*g(i)**.01;i--;x.fillRect(950+f(C),540+f(S),8/t,9/t))x.fillStyle=`hsl(${9+i/7},80%,${S(i/1e5+t)*99}%,.2`",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud873\udc74\ud879\udc6c\ud865\udc3d\ud827\udc66\ud869\udc6c\ud874\udc65\ud872\udc3a\ud869\udc6e\ud876\udc65\ud872\udc74\ud828\udc27\ud83b\udc66\ud86f\udc72\ud828\udc6c\ud865\udc74\ud820\udc7a\ud82c\udc41\ud82c\udc42\ud82c\udc6e\ud82c\udc58\ud82c\udc59\ud82c\udc69\ud83d\udc32\ud834\udc3b\ud869\udc3b\ud858\udc2b\ud83d\udc41\ud82c\udc59\ud82b\udc3d\ud842\udc29\ud828\udc34\ud830\udc2b\ud858\udc2f\ud834\udc38\ud85e\udc31\ud836\udc2b\ud859\udc2f\ud834\udc38\ud829\udc25\ud831\udc35\ud83e\udc31\ud83f\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud858\udc2c\ud859\udc2c\ud86e\udc2f\ud82b\udc2b\ud87a\udc2a\ud82a\udc2e\ud835\udc2c\ud831\udc2f\ud838\udc29\ud83a\udc28\ud87a\udc3d\ud831\udc2c\ud872\udc3d\ud828\udc6e\ud82b\udc37\ud829\udc2a\ud82a\udc69\ud82a\udc74\ud82c\udc41\ud83d\udc32\ud82a\udc53\ud828\udc72\ud829\udc2c\ud842\udc3d\ud832\udc2a\ud843\udc28\ud872\udc29\ud82c\udc2d\ud82d\udc6e\ud829\udc7c\ud87c\udc28\ud86e\udc3d\ud838\udc2c\ud858\udc3d\ud831\udc32\ud838\udc30\ud82b\udc69\ud82a\udc53\ud828\udc74\ud829\udc2c\ud859\udc3d\ud837\udc32\ud830\udc2b\ud869\udc2a\ud843\udc28\ud874\udc29\ud82c\udc2d\ud82d\udc69\ud829\udc3b`.replace(/u../g,'')))",
},
{
code:
"for(i=2e3,f=g=>i*C(i+S(t)**4)*g(i/70)*T(i/999);i--;x.fillRect(960+f(S),540+f(C),9/t,9/t))x.fillStyle=`hsl(${i/t/80},99%,${S(i-t)*99}%,.1`",
},
{
code:
'c.style.filter="blur(7px)contrast(5)invert(";for(c.width|=i=999;i--;x.fillRect(960+i*S(i/8),999-i*T(t+i*i),25,50))x.fillStyle=R(0,i/9,i)',
},
{
code:
'c.style.filter="blur(9px)contrast(90)",x.fillStyle=`hsl(${t*99},69%,50%)`;x.fillRect(960+S(t*4)*99,540+C(t*5)*99,99,99)',
},
{
code:
"for(c.width|=n=12;n--;x.stroke())for(i=0|99;i--;)k=((w=T(-t/3+n*20))*60*C(t+i)*S(n)),x.lineTo(960+w*120+k*S(j=i*6.28/n),540+k*C(j))",
},
{
code:
"for(x.fillRect(0,0,i=640,i);z=--i**.3;x.fillStyle=R(0,500/--z))x.setTransform(s=20/z+S(t),0,0,s,0,0),x.fillText('*',i%z*99-C(t),t++%z*60)",
},
{
code:
"for(c.width=w=127,i=7e3;i--;t?p&T[r=i+w+r%3]<1&&--T[i]&++T[r]:T[i]=r)p=T[i],x.fillRect(X=i&w,Y=i>>7,T[S(t*t*w)*w|0]=1,p/3),r=i*t^Y/14&X/9",
},
{
code:
"for(T[2931]=i=6001;i--;T[i]&!(T[d+=i]|T[d+e]|T[d-e])&&x.fillRect(i%99*20,i/5,21,T[d]=21))d=(Math.random(e=1)*4|0)*2-1,d>1?d=(d-4)*99:e=99",
},
{
code:
"with(x)for(c.width|=i=710;i--;beginPath(fill(ellipse(40+18*C(a=++t%3.1416),0,w=S(a),!rotate(i*49+w/3),a,0,7))))setTransform(9,0,0,9,960,540)",
},
{
code:
"with(x)for(fillRect(i=-710,i,i*=-2,i);i--;clearRect(20+9*S(a=i+t),2,w=C(a),w>0))setTransform(16,0,0,16,960,540),rotate(i/226)",
},
{
code:
"c.style.filter=`invert(`;for(e=k=c.width|=w=50;k--;x.fillRect(w|x.rotate(k%w+t/4),9,1,1));x.setTransform(v=2+k%7,0,0,v,k,(k*k+t*v)*w%e-w*8)",
},
{
code:
"for(t*=30,c.width=X=128;X--;)for(Y=72;Y--;)(t+X^t-Y)%41<Y/4&&x.fillRect(X,Y,1,1)",
},
{
code:
"for(\u2d60=1e4;\u2d60--;\u0d3d(0,0,340,\u2d60+t))\u0d3d=(\u03b2,\u03b1,\u1011,\u0da7)=>\u1011>1?\u0d3d(\u03b1+\u1011*S(\u0da7),\u03b2+\u1011*C(\u0da7),\u1011/3,T(\u0da7/11)*22.5):x.fillRect(\u03b2+940,\u03b1+540,1,(t<4)/3)",
},
{
code:
"for(w=i=c.width|=0,x.globalAlpha=.15;i--;x.fillText('\u2744',-4,-4))x.setTransform(s=i*i%63/7,0,0,s,(i+s*w/(1+9**C(t/3)))%w,(s/5*t+T(i*i))%2*600)",
},
{
code:
"eval(unescape(escape`\ud869\udc3d\ud839\udc39\ud836\udc3b\ud877\udc69\ud874\udc68\ud828\udc78\ud829\udc66\ud86f\udc72\ud828\udc73\ud865\udc74\ud854\udc72\ud861\udc6e\ud873\udc66\ud86f\udc72\ud86d\udc28\ud831\udc2c\ud830\udc2c\ud830\udc2c\ud831\udc2c\ud828\udc74\ud82a\udc3d\ud837\udc32\ud837\udc30\ud829\udc25\ud832\udc65\ud833\udc2c\ud874\udc2f\ud831\udc36\ud829\udc3b\ud869\udc2d\ud82d\udc3b\ud872\udc65\ud873\udc74\ud86f\udc72\ud865\udc28\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc30\ud82c\udc53\ud828\udc6a\ud82a\udc6a\ud82b\udc74\ud829\udc2a\ud833\udc39\ud82c\udc6a\ud82c\udc6a\ud82f\udc32\ud839\udc29\ud829\udc29\ud873\udc61\ud876\udc65\ud828\udc29\ud82c\udc73\ud863\udc61\ud86c\udc65\ud828\udc21\ud872\udc6f\ud874\udc61\ud874\udc65\ud828\udc28\ud831\udc2b\ud869\udc2b\ud869\udc25\ud832\udc29\ud82a\udc2e\ud835\udc32\ud833\udc36\ud829\udc2c\ud869\udc25\ud832\udc2a\ud832\udc2d\ud831\udc29\ud82c\udc72\ud86f\udc74\ud861\udc74\ud865\udc28\ud86a\udc3d\ud869\udc2f\ud831\udc32\ud87c\udc63\ud86c\udc69\ud870\udc28\ud86e\udc65\ud877\udc20\ud850\udc61\ud874\udc68\ud832\udc44\ud828\udc27\ud86d\udc30\ud820\udc30\ud876\udc35\ud830\udc68\ud832\udc39\ud827\udc29\ud829\udc29`.replace(/u../g,'')))",
},
{
code:
"for(i=c.width|=p=g=>(g(0)?k&3:k/4)*200+130*g(.8+(~~k+k/4&1||-1)*(i%120*41/13+5*t));k=--i/120;)x.fillRect(560+p(S),240+p(C),9,9)",
},
{
code:
"for(i=c.width|=0;i--;x.fillRect(X,540+200*C(a),-150,7))X=i%960*2,x.fillStyle=`hsl(${q=X/8+60*t},69%,${42+32*S(a=(q/32%1+(i>960))/.32)}%`",
},
{
code:
"for(i=996;i--;x.fillRect(250*X,250*Y,2e3,1))X=t/2,Y=i/230,h=300*S(Y%S(m=X/2%S(p=C(q=Y*S(X/3))*2)*2+T(i*i**t)/6)),x.fillStyle=R(h*p,h*m,h*q)",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud87a\udc3d\ud839\udc39\ud80a\udc74\ud83f\udc43\ud83f\udc54\ud82b\udc3d\ud82e\udc30\ud833\udc3a\ud830\udc3a\ud856\udc3d\ud859\udc3d\ud854\udc3d\ud831\udc0a\ud866\udc6f\ud872\udc28\ud869\udc3d\ud835\udc3b\ud869\udc2d\ud82d\udc3b\ud869\udc7c\ud87c\udc54\ud825\udc31\ud83c\udc2e\ud836\udc3f\ud848\udc3d\ud868\udc3a\ud830\udc29\ud86a\udc3d\ud869\udc2b\ud854\udc7c\ud830\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc28\ud86a\udc2d\ud854\udc29\ud82a\udc32\ud839\udc2c\ud868\udc3d\ud834\udc30\ud82d\udc39\ud82a\udc53\ud828\udc6a\ud82a\udc6a\ud829\udc2c\ud832\udc37\ud82c\udc7a\ud829\udc0a\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc39\ud82c\udc59\ud82b\udc3d\ud856\udc2b\ud83d\udc2e\ud830\udc37\ud82c\udc34\ud82c\udc2d\ud837\udc29\ud80a\udc6f\ud86e\udc6d\ud86f\udc75\ud873\udc65\ud864\udc6f\ud877\udc6e\ud83d\udc59\ud83e\udc48\ud83f\udc59\ud82b\udc28\ud856\udc3d\ud830\udc29\ud83e\udc48\ud82b\udc33\ud83f\udc43\ud83d\udc30\ud83a\udc28\ud859\udc3d\ud848\udc2c\ud865\udc3d\ud83e\udc56\ud83d\udc2d\ud832\udc29\ud83a\udc30\ud80a\udc74\ud868\udc72\ud86f\udc77\ud820\udc6a`.replace(/u../g,'')))",
},
{
code:
"for(i=c.width|=0;i--;x.fillRect(660+(p>>2)*200+130*C(a=Math.PI/4+(p+p/4&1||-1)*(369/13*d+3*t)),240+p%4*200+130*S(a),d,d))d=i%120/9,p=i/120|0",
},
{
code:
"for(i=3e3,f=g=>i*C(i*i)*g(i+t*(t>4));i--;x.fillRect(960+f(S)*C(t/3),540+f(C)*C(t/3),1,.5))x.fillStyle=R(i,i/9),c.style='filter:invert('",
},
{
code:
"for(i=3e3,c.width|=f=g=>t+99*((g(i)-3)+g(i+t))*g(V=i/19+t);i--;)x.arc(960+f(C),540+f(S),19,0,5-S(V-t));x.stroke(),c.style='filter:invert('",
},
{
code:
"x.setTransform(28,0,0,30,800,400);x.fillText('\u2299\u2299',0,2);x.stroke(new Path2D(`m3-4c0-9 9-9 9 0M3 2c0 30 11 9 11 8q2-3 4-2M6 4c0 9 6 9 6-3`))",
},
{
code:
"r=Math.random;for(i=k=214;i--;x.strokeRect(k*X,k*Y,i/t,k/t))X=r(Y=r()*5)*9,h=k*S(S(Y*.7)%C(p=S(q=1.5-X/3)*q+2)),x.strokeStyle=R(h*q,h*p,h*Y)",
},
{
code:
"for(c.width=w=128,i=2e3;z=--i>>7;x.fillRect(i%w,(4+S(a=i/6+7*t/z)+S(3*a^z)/3+S(9*a)/9)*(14-z),1,w))x.fillStyle=`hsl(200,${z*9}%,${i/7-z*z}%`",
},
{
code:
"eval(unescape(escape`\ud871\udc3d\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud839\udc39\ud83b\udc66\ud86f\udc72\ud828\udc76\ud861\udc72\ud820\udc6d\ud83d\udc33\ud830\udc2c\ud861\udc2c\ud86a\udc2c\ud86b\udc2c\ud869\udc3b\ud86d\udc2d\ud82d\udc3b\ud829\udc66\ud86f\udc72\ud828\udc6e\ud83d\udc31\ud82d\udc6d\ud82f\udc33\ud830\udc2c\ud869\udc3d\ud871\udc3b\ud869\udc2d\ud82d\udc3b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc69\ud82c\udc61\ud82a\udc28\ud832\udc39\ud82d\udc6d\ud829\udc2f\ud832\udc2c\ud831\udc2c\ud871\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud860\udc68\ud873\udc6c\ud828\udc32\ud830\udc30\ud82c\udc24\ud87b\udc6d\ud82a\udc33\ud87d\udc25\ud82c\udc24\ud87b\udc35\ud830\udc2b\ud853\udc28\ud86e\udc2a\ud834\udc29\ud82a\udc35\ud830\udc7d\ud825\udc29\ud860\udc29\ud829\udc66\ud86f\udc72\ud828\udc61\ud83d\udc33\ud82c\udc6a\ud83d\udc31\ud832\udc3b\ud86a\udc2d\ud82d\udc3b\ud861\udc2b\ud83d\udc53\ud828\udc28\ud828\udc74\ud82f\udc6d\ud82a\udc71\ud82b\udc69\ud829\udc2b\ud839\udc2a\ud853\udc28\ud86d\udc2a\ud86b\udc29\ud829\udc2a\ud86b\udc2f\ud839\udc29\ud82f\udc6b\ud829\udc6b\ud83d\udc32\ud82a\udc2a\ud86a\udc3b`.replace(/u../g,'')))",
},
{
code:
"for(c.width&=i=8320;i--;);x.fillRect(X=i&127,Y=i>>7,;k=S(8*t+X*X+Y*Y+X*Y)+.5,k)",
},
{
code:
"for(c.width=433,p=1;p++<6;)for(i=400;i--;)x.fillStyle=`hsla(${p*t*5},99%,50%,.4`,x.fillRect(i,m=C(i/(9*p+96)+t)*p*S(+p+S(i/66))*9+57,1,m)",
},
{
code:
"c.width=1920;X=960,Y=540,P=Math.PI,N=t/P%32,p=P/N;for(i=0;i<P;i+=p)x.fillRect(X+Y*(S(i+P)-S(i))/2*S(t+i),Y+Y*(C(i+P)-C(i))/2*S(t+i),19,19)",
},
{
code:
"with(x)for(c.width|=i=78,translate(960,540);j=i*i--/5;rotate(!fillRect(j+=(S(t-j/99)-1)*1e5/j,j*=j>0,j*=-2,j)))fillStyle=R(89,a=222-j/4,2*a)",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud831\udc39\ud832\udc2c\ud852\udc3d\ud834\udc38\ud82c\udc69\ud83d\udc38\ud830\udc36\ud834\udc3b\ud869\udc2d\ud82d\udc3b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc53\ud82b\udc39\ud836\udc2c\ud854\udc2b\ud835\udc34\ud82c\udc43\ud828\udc4d\ud861\udc74\ud868\udc2e\ud861\udc74\ud861\udc6e\ud832\udc28\ud853\udc3d\ud869\udc25\ud839\udc37\ud82d\udc52\ud82c\udc54\ud83d\udc69\ud82f\udc39\ud837\udc2d\ud852\udc2c\ud872\udc3d\ud828\udc53\ud82a\udc53\ud82b\udc54\ud82a\udc54\ud829\udc2a\ud82a\udc2e\ud835\udc29\ud82a\udc39\ud829\udc2a\ud832\udc30\ud82d\udc72\ud826\udc34\ud834\udc26\ud826\udc72\ud83e\udc33\ud836\udc3f\ud872\udc3c\ud834\udc32\ud83f\udc54\ud82f\udc52\ud83a\udc53\ud82f\udc52\ud83a\udc31\ud82c\udc72\ud83e\udc33\ud836\udc3f\ud872\udc3c\ud852\udc3a\ud87a\udc28\ud833\udc29\ud82f\udc35\ud829\udc29\ud87a\udc3d\ud86e\udc3d\ud83e\udc6e\ud82d\udc2d\ud826\udc26\ud843\udc28\ud854\udc2f\ud832\udc2b\ud853\udc2a\ud854\udc2f\ud852\udc2b\ud874\udc2a\ud839\udc29\ud82a\udc43\ud828\udc54\ud82f\udc34\ud82d\udc7a\ud828\udc6e\ud829\udc2a\ud832\udc29\ud82d\udc72\ud82f\udc36`.replace(/u../g,'')))",
},
{
code:
"for(i=c.width|=u=v=0;i--;)x.fillRect(960+u*2,540+v,99,9),u+=b=S(m=i/99*S(i*i/1e6+t)),v+=a=C(m),x.fillStyle=`hsl(${q=a*b*50} 50%${q+50}%`",
},
{
code:
"for(c.width|=i=8;--i;)for(w=j=3<<i-1;j--;x.fillRect(-!x.rotate(6.283/w*(j+i/(1+5**(4+i-t%3*5)))),-25*i,2,25))x.setTransform(3,0,0,3,960,540)",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc6b\ud83d\udc32\ud835\udc32\ud80a\udc66\ud86f\udc72\ud828\udc78\ud82e\udc74\ud872\udc61\ud86e\udc73\ud86c\udc61\ud874\udc65\ud828\udc31\ud830\udc32\ud833\udc2c\ud835\udc37\ud836\udc29\ud83b\udc6b\ud82d\udc2d\ud83b\udc78\ud82e\udc72\ud86f\udc74\ud861\udc74\ud865\udc28\ud84d\udc61\ud874\udc68\ud82e\udc50\ud849\udc2f\ud836\udc29\ud829\udc78\ud82e\udc72\ud865\udc63\ud874\udc28\ud82d\udc31\ud865\udc34\ud82c\udc28\ud86a\udc3d\ud86b\udc25\ud837\udc29\ud82a\udc31\ud839\udc39\ud82c\udc31\ud865\udc35\ud82c\udc53\ud828\udc6a\ud82b\udc28\ud86b\udc2f\ud838\udc34\ud87c\udc30\ud829\udc2b\ud874\udc29\ud82a\udc37\ud839\udc29\ud82c\udc6b\ud825\udc38\ud834\udc3f\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud860\udc68\ud873\udc6c\ud828\udc24\ud87b\udc6b\ud82a\udc32\ud82b\udc74\ud82a\udc36\ud830\udc7d\ud820\udc39\ud839\udc25\ud824\udc7b\ud86b\udc2f\ud833\udc7d\ud825\udc29\ud860\udc3a\ud878\udc2e\ud862\udc65\ud867\udc69\ud86e\udc50\ud861\udc74\ud868\udc28\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud860\udc65\ud876\udc65\ud86e\udc6f\ud864\udc64\ud860\udc29`.replace(/u../g,'')))",
},
{
code:
"for(c.width=960,j=8;j--;)for(i=20;i--;)x.arc(480,270,2**((i>>1)+i%2/2-j%2/2+t/3%1),a=(j+i%2)*Math.PI/4,a);x.fill()",
},
{
code:
"X=1e3,Y=X/2;for(c.width|=i=2e3;i--;x.fillRect(X+=C(d*=11/7),Y+=S(d),5,5),x.fillRect(2e3-X,1e3-Y,5,5))d=S(S(i/120+t-i/99))*3;",
},
{
code:
"X=1e3,Y=X/2;for(c.width|=i=2e3;i--;x.fillRect(X+=C(d*=Math.PI/2),Y+=S(d),9,9),x.fillRect(2e3-X,1e3-Y,9,9))d=C(i/120+t/5-S(i/99-t/3))*4^0;",
},
{
code:
"f=(X,Y,r,a,s,d=1)=>r>.5&&x.lineTo(X,Y)|f(X+C(a+=s/3)*r,Y+S(a)*r,r-r/22,a,s,-d)|f(X,Y,r/2.9,a+s*d,s*d);t||f(1280,214,118,1.3,.6)|x.stroke()",
},
{
code:
"for(c.width|=i=266;i--;x.beginPath(x.fill()))for(r=74-T(S(i*i+t/4)*.6+t/2)**8,j=6;j--;)x.arc((i>>4)*2-i%2<<6,i%16*111,r>0&&r,a=j*1.047+11,a)",
},
{
code:
"for(i=2e3,f=(X,Y,n=135)=>X**3/Y<42?f(X*X-Y*Y-.8,2*X*Y+.2,n-3):x.fillStyle=`hsl(${6*n},90%,${n}%`;i--;x.fillRect(i,t*60,1,i))f(i/5e3-.7,t/85)",
},
{
code:
"for(i=2e3,f=(X,Y,n=235)=>X**3/Y<n?f(X*X-Y*Y-.8,2*X*Y+.2,n-3):x.fillStyle=`hsl(${n*4},90%,${n/2}%`;i--;x.fillRect(i,t*60,1,999))f(i/3e3,t/50)",
},
{
code:
"eval(unescape(escape`\ud841\udc3d\ud853\udc28\ud874\udc29\ud83b\udc42\ud83d\udc43\ud828\udc74\ud829\udc3b\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud858\udc3d\ud831\udc32\ud838\udc3b\ud858\udc2d\ud82d\udc3b\ud829\udc7b\ud866\udc6f\ud872\udc28\ud85a\udc3d\ud831\udc2c\ud852\udc3d\ud854\udc28\ud858\udc2f\ud838\udc31\ud82d\udc2e\ud838\udc29\ud83b\udc61\ud83d\udc32\ud830\udc2b\ud828\udc52\ud82a\udc42\ud82d\udc41\ud829\udc2a\ud85a\udc2c\ud862\udc3d\ud831\udc33\ud832\udc2b\ud828\udc52\ud82a\udc41\ud82b\udc42\ud829\udc2a\ud85a\udc2c\ud828\udc61\ud85e\udc62\ud829\udc25\ud837\udc3e\ud831\udc3b\ud829\udc5a\ud82b\udc3d\ud82e\udc31\ud83b\udc66\ud86f\udc72\ud828\udc59\ud83d\udc2d\ud834\udc38\ud83b\udc59\ud82b\udc2b\ud83c\udc34\ud838\udc3b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc58\ud82c\udc33\ud836\udc2d\ud859\udc2f\ud85a\udc2c\ud87a\udc25\ud837\udc3c\ud836\udc3f\ud85a\udc2f\ud838\udc3a\ud87a\udc2b\ud874\udc2a\ud836\udc26\ud861\udc26\ud826\udc2d\ud831\udc2c\ud831\udc29\ud829\udc7a\ud83d\udc28\ud861\udc2b\ud862\udc29\ud82a\udc38\ud83c\udc3c\ud861\udc25\ud832\udc2c\ud87a\udc3d\ud87a\udc2d\ud859\udc5e\ud859\udc2b\ud87a\udc7d`.replace(/u../g,'')))",
},
{
code:
"A=S(t);B=C(t);for(c.width=X=128;X--;x.fillRect(X,36-1e3/Z,Z**.5/16,2e3/Z))for(Z=1,R=T(X/81-.8);(A*t+24+(R*B-A)*Z/8^64+(R*A+B)*Z/8)%15>1;)Z++",
},
{
code:
"eval(unescape(escape`\ud874\udc7c\ud87c\udc28\ud872\udc3d\ud861\udc3d\ud862\udc3d\ud836\udc34\ud829\udc3b\ud841\udc3d\ud853\udc28\ud872\udc29\ud83b\udc42\ud83d\udc43\ud828\udc72\ud829\udc3b\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud858\udc3d\ud831\udc32\ud838\udc3b\ud858\udc2d\ud82d\udc3b\ud861\udc2d\ud83d\udc6b\ud82a\udc41\ud82c\udc62\ud82b\udc3d\ud86b\udc2a\ud842\udc2c\ud872\udc2d\ud83d\udc43\ud828\udc58\ud82f\udc34\ud830\udc2b\ud853\udc28\ud874\udc5e\ud85a\udc29\ud829\udc2f\ud85a\udc2f\ud85a\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc58\ud82c\udc33\ud836\udc2d\ud831\udc65\ud833\udc2f\ud85a\udc2c\ud86b\udc2a\ud872\udc2c\ud832\udc65\ud833\udc2f\ud85a\udc29\ud829\udc66\ud86f\udc72\ud828\udc5a\ud83d\udc31\ud82c\udc52\ud83d\udc54\ud828\udc58\ud82f\udc38\ud831\udc2d\ud82e\udc38\ud829\udc3b\ud828\udc61\ud82b\udc28\ud852\udc2a\ud842\udc2d\ud841\udc29\ud82a\udc5a\ud82f\udc38\ud85e\udc62\ud82b\udc28\ud852\udc2a\ud841\udc2b\ud842\udc29\ud82a\udc5a\ud82f\udc38\ud829\udc25\ud831\udc35\ud83e\udc31\ud83b\udc29\ud86b\udc3d\ud828\udc5a\ud82b\udc2b\ud82a\udc2a\ud82e\udc35\ud82d\udc33\ud829\udc2f\ud834\udc65\ud833\udc3b`.replace(/u../g,'')))",
},
{
code:
"for(Y=t*60,X=480;X--;x.fillStyle=R(o=333*C(C(S(t+X/33)-t+S(X/(25+T(X/19+Y/19))))),o*.7))x.fillRect(X*4,0,4,4);x.drawImage(c,0,4)",
},
{
code:
"\u5de5=(\u4e00,\u4e8c,\u5341=0)=>\u4e00*\u4e00>5?\u5341:;\u5de5(2*\u4e00*\u4e8c-.7,S(\u4e8c*\u4e8c*2-\u4e00*\u4e00*2),\u5341+1);\u5de5;for(\u9f99=\u4e09=1234;\u9f99--;x.fillRect(t*61,\u9f99,\u529b,1));\u5de5,x.fillStyle=R(\u529b=;\u5de5(3*\u9f99/\u4e09-1,1+t/11)**2,\u529b/5)",
},
{
code:
"c.width|=i=490;for(x.translate(979,550);i--;x.rotate(Math.PI/5))x.rect(-1e3,(j=i%98)*80,2e3,80-C(j/9+t)*80);x.fill`evenodd`",
},
{
code:
"x.beginPath(c.width|=X=Y=Z=0.004);for(i=2e3;i--;x.lineTo(960+(Z*S(t)+X*C(t))*i*99,540+Y*i*49))X+=Y*Z+Y,Y+=Y*Y-X*X-Z-X,Z+=-Z*Y*X+Y;x.stroke()",
},
{
code:
"eval(unescape(escape`\ud877\udc69\ud874\udc68\ud828\udc78\ud829\udc66\ud86f\udc72\ud828\udc63\ud82e\udc77\ud869\udc64\ud874\udc68\ud87c\udc3d\ud84b\udc3d\ud839\udc39\ud82c\udc65\ud83d\udc28\ud844\udc2c\ud842\udc2c\ud843\udc29\ud83d\udc3e\ud865\udc6c\ud86c\udc69\ud870\udc73\ud865\udc28\ud84b\udc2a\ud839\udc2b\ud844\udc2a\ud84b\udc2a\ud82d\udc28\ud841\udc25\ud836\udc3c\ud833\udc3f\ud831\udc3a\ud82d\udc31\ud829\udc2c\ud835\udc34\ud830\udc2c\ud845\udc3d\ud857\udc2d\ud82d\udc2a\ud84b\udc2c\ud845\udc2d\ud84b\udc2c\ud830\udc2c\ud841\udc2b\ud842\udc2c\ud841\udc2b\ud843\udc2c\ud842\udc29\ud82c\udc5a\ud83d\udc2e\ud833\udc2c\ud841\udc3d\ud828\udc74\ud825\udc3d\ud85a\udc29\ud83b\udc41\ud83c\udc36\ud82b\udc74\ud83b\udc41\ud82b\udc3d\ud85a\udc2c\ud873\udc74\ud872\udc6f\ud86b\udc65\ud828\udc29\ud829\udc62\ud865\udc67\ud869\udc6e\ud850\udc61\ud874\udc68\ud828\udc57\ud83d\udc34\ud829\udc2c\ud865\udc28\ud831\udc2c\ud85a\udc2c\ud830\udc2c\ud865\udc28\ud830\udc2c\ud830\udc2c\ud85a\udc2c\ud863\udc6c\ud86f\udc73\ud865\udc50\ud861\udc74\ud868\udc28\ud865\udc28\ud831\udc2c\ud830\udc2c\ud85a\udc29\ud82c\udc65\ud828\udc30\ud82c\udc5a\ud82c\udc30\ud829\udc2c\ud857\udc3d\ud835\udc29\ud829\udc29`.replace(/u../g,'')))",
},
{
code:
"c.width|=X=Y=0;for(i=3e3;i--;s=i/59+9,x.globalAlpha=i*i/2e7,x.fillRect(960+(X+=C(d))*s/9,540+(Y+=S(d))*s/9,s,s))d=S((t+i)/33+t*9|0)*88",
},
{
code:
"with(x)arc(960,540,t*t,(t%8>4?t:-t)/3,99),setLineDash([t*t/5]),stroke(),setLineDash([]),globalAlpha=1-S(t%4*.8),beginPath(stroke())",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud839\udc39\ud82c\udc69\ud83d\udc32\ud865\udc33\ud83b\udc69\ud82d\udc2d\ud83b\udc7e\ud828\udc71\ud87c\udc59\ud829\udc26\ud834\udc26\ud826\udc31\ud83c\udc3c\ud828\udc59\ud83c\udc3c\ud832\udc7c\ud871\udc2a\ud832\udc29\ud826\udc33\ud835\udc39\ud834\udc7c\ud87c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud835\udc30\ud82b\udc43\ud828\udc6d\ud829\udc2a\ud872\udc2c\ud875\udc2a\ud832\udc32\ud82d\udc53\ud828\udc6d\ud829\udc2a\ud872\udc2f\ud833\udc2c\ud836\udc2c\ud835\udc29\ud829\udc61\ud83d\udc69\ud82f\udc31\ud838\udc2c\ud872\udc3d\ud828\udc39\ud82b\udc43\ud828\udc69\ud829\udc29\ud82a\udc36\ud82a\udc53\ud828\udc53\ud828\udc75\ud83d\udc33\ud82d\udc69\ud82f\udc36\ud836\udc36\ud829\udc2a\ud82a\udc2e\ud835\udc29\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc52\ud828\udc67\ud83d\udc43\ud828\udc74\ud829\udc2a\ud853\udc28\ud86d\udc3d\ud874\udc2a\ud832\udc2b\ud861\udc29\ud82a\udc33\ud837\udc37\ud82c\udc67\ud82f\udc32\ud829\udc2c\ud859\udc3d\ud875\udc2a\ud833\udc2d\ud834\udc2c\ud871\udc3d\ud861\udc25\ud836\udc2e\ud833\udc0a`.replace(/u../g,'')))",
},
{
code:
"f=(X,Y,n=0)=>X*X>4?n:f(2*X*Y-.7,S(Y*Y-X*X),n+1);for(i=w=1920;i--;x.fillRect(i,t*60,1,g))x.fillStyle=R(g=f(i/w,t/22)**1.3,g/2.5)",
},
{
code:
"with(x)for(c.width|=i=300;j=i--/300;beginPath(stroke()))ellipse(1e3+700*C(t+j*2),500+99*S(t+j*2),50-50*C(i/60),180+160*S(-i/40),S(t)/4,0,7)",
},
{
code:
"for(i=2e3,f=(X,Y,n=62)=>X**3/Y<n?f(X*X-Y*Y-.8,2*X*Y+.2,n-1):x.fillStyle=`hsl(${n*6},99%,${X+n}%`;i--;x.fillRect(i,t*60,1,9))f(i/490-2,1-t/9)",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc69\ud83d\udc31\ud839\udc32\ud83b\udc69\ud82d\udc2d\ud83b\udc6d\ud87c\udc7c\ud878\udc2e\ud862\udc65\ud867\udc69\ud86e\udc50\ud861\udc74\ud868\udc28\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud828\udc29\ud829\udc29\ud80a\udc61\ud83d\udc4d\ud861\udc74\ud868\udc2e\ud850\udc49\ud82f\udc31\ud836\udc2c\ud86b\udc3d\ud869\udc3e\ud83e\udc31\ud82c\udc76\ud83d\udc31\ud82d\udc28\ud874\udc2b\ud86b\udc2f\ud831\udc36\ud829\udc25\ud831\udc2c\ud86d\udc3d\ud869\udc25\ud832\udc2c\ud86a\udc3d\ud86d\udc3f\ud861\udc3a\ud82d\udc61\ud82c\udc72\ud83d\udc28\ud869\udc3e\ud831\udc35\ud839\udc29\ud82a\udc76\ud82a\udc31\ud865\udc33\ud82c\udc7a\ud83d\udc28\ud86b\udc2f\ud831\udc36\ud82b\udc6d\ud829\udc3e\ud83e\udc31\ud82c\udc78\ud82e\udc61\ud872\udc63\ud828\udc39\ud836\udc30\ud82b\udc72\ud82a\udc43\ud828\udc61\ud82a\udc3d\ud832\udc2a\ud86b\udc29\ud82c\udc35\ud834\udc30\ud82b\udc72\ud82a\udc53\ud828\udc61\ud829\udc2c\ud87a\udc3e\ud830\udc26\ud826\udc28\ud87a\udc2b\ud876\udc29\ud82a\udc39\ud839\udc2c\ud861\udc2b\ud86a\udc2c\ud861\udc2d\ud86a\udc2c\ud86d\udc29`.replace(/u../g,'')))",
},
{
code:
"with(x)for(fillRect(0,0,w=2e3,i=1080);i--;strokeRect(960-i,540-i,i*2,i*2))setLineDash([i/6]),strokeStyle=R(lineDashOffset=i+S(i/50+t)*i,w,i)",
},
{
code:
"x.fillRect(0,0,w=2e3,w);for(i=480;i--;x.strokeRect(960-i*2,540-i*2,i*4,i*4))x.setLineDash([i]),x.lineDashOffset=w%i+i*t-w,x.strokeStyle=R(i)",
},
{
code:
"for(b=i=800;i--;x.fillRect(b+S(i)*W+(a?59:t*99),Y*.7+650,9,9))Y=b*t-b,W=(a=Y>-549)?(3e5-Y*Y)**.3*14:39,x.fillStyle=R(v=S(i*19)*99+289*a,v/3)",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud857\udc3d\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc46\ud83d\udc69\ud83d\udc35\ud830\udc30\ud83b\udc69\ud82d\udc2d\ud83b\udc78\ud82e\udc73\ud874\udc72\ud86f\udc6b\ud865\udc28\ud829\udc29\ud878\udc2e\ud873\udc63\ud861\udc6c\ud865\udc28\ud87a\udc3d\ud831\udc2e\ud830\udc30\ud832\udc2c\ud87a\udc29\ud82c\udc59\ud83d\udc28\ud853\udc28\ud869\udc29\ud82a\udc57\ud82b\udc74\ud82a\udc46\ud829\udc25\ud831\udc65\ud833\udc2c\ud878\udc2e\ud862\udc65\ud867\udc69\ud86e\udc50\ud861\udc74\ud868\udc28\ud871\udc3d\ud859\udc3e\ud846\udc29\ud82c\udc78\ud82e\udc6c\ud869\udc6e\ud865\udc57\ud869\udc64\ud874\udc68\ud83d\udc32\ud82d\udc32\ud82a\udc71\ud82a\udc28\ud859\udc2d\ud846\udc29\ud82f\udc46\ud82c\udc78\ud82e\udc65\ud86c\udc6c\ud869\udc70\ud873\udc65\ud828\udc69\ud82a\udc69\ud825\udc57\ud82d\udc21\ud871\udc2a\ud828\udc46\ud82d\udc59\ud829\udc2f\ud832\udc2c\ud82e\udc2e\ud82e\udc71\ud83f\udc5b\ud846\udc2c\ud861\udc3d\ud828\udc59\ud82d\udc46\ud829\udc2f\ud837\udc2c\ud861\udc2f\ud835\udc2c\ud830\udc5d\ud83a\udc5b\ud859\udc2d\ud839\udc2c\ud830\udc2c\ud835\udc2c\ud836\udc5d\ud82c\udc30\ud82c\udc37\ud829\udc3b`.replace(/u../g,'')))",
},
{
code:
"for(A=a=b=0,i=1e4*(t<9);i--;x.fillRect(a*1500-440,b*1380+330,.5,.2))r=0|3*Math.random(),a+=.3*(r-a*1.2+b*S(a*3)),b+=.3*(1-A*b+C(A*3)),A=a",
},
{
code:
"with(x)for(strokeStyle='#FFF',i=400;i--;stroke())beginPath(fill()),arc(960+(r=1.01**(300-i)*80)*S(a=i+t/2)+99*S(i/50+t),600+r*C(a),r/7,0,7)",
},
{
code:
"eval(unescape(escape`\ud846\udc3d\ud828\udc58\ud82c\udc59\ud82c\udc5a\ud82c\udc41\ud829\udc3d\ud83e\udc54\ud828\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud858\udc2c\ud859\udc2c\ud87a\udc3d\ud828\udc4c\ud83d\udc5a\ud83c\udc2e\ud832\udc29\ud83f\udc31\ud839\udc3a\ud85a\udc2c\ud87a\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud852\udc28\ud84c\udc3f\ud871\udc3a\ud85a\udc2c\ud84c\udc2a\ud871\udc2a\ud854\udc28\ud854\udc3d\ud84d\udc61\ud874\udc68\ud82e\udc72\ud861\udc6e\ud864\udc6f\ud86d\udc29\ud829\udc29\ud82c\udc5a\ud83e\udc31\ud826\udc26\ud846\udc28\ud858\udc2b\ud853\udc28\ud841\udc29\ud82a\udc5a\ud82f\udc32\ud82c\udc59\ud82d\udc43\ud828\udc41\ud829\udc2a\ud85a\udc2f\ud832\udc2c\ud85a\udc2a\ud82e\udc39\ud837\udc2c\ud841\udc2a\ud82e\udc39\ud836\udc2b\ud854\udc28\ud829\udc2a\ud82e\udc34\ud82d\udc2e\ud832\udc29\ud829\udc3e\ud82e\udc37\ud826\udc26\ud846\udc28\ud858\udc2c\ud859\udc2c\ud85a\udc2f\ud832\udc2c\ud854\udc28\ud829\udc2a\ud834\udc2d\ud832\udc29\ud80a\udc71\ud83d\udc32\ud835\udc36\ud80a\udc46\ud828\udc71\ud82b\udc74\ud82a\udc34\ud865\udc34\ud82c\udc31\ud830\udc32\ud830\udc2c\ud836\udc30\ud82c\udc30\ud829\udc3b`.replace(/u../g,'')))",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc72\ud83d\udc6d\ud83d\udc3e\ud843\udc28\ud82b\udc2b\ud873\udc29\ud82a\udc2a\ud832\udc2a\ud866\udc25\ud86d\udc0a\ud854\udc3d\ud828\udc58\ud82c\udc59\ud82c\udc5a\ud82c\udc41\ud829\udc3d\ud83e\udc72\ud828\udc36\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud858\udc2b\ud828\udc4c\ud83d\udc5a\ud83c\udc31\ud829\udc2a\ud828\udc62\ud83d\udc74\ud82a\udc66\ud82d\udc73\ud82a\udc39\ud82d\udc66\ud829\udc2a\ud828\udc62\ud83e\udc30\ud829\udc2c\ud859\udc2c\ud87a\udc3d\ud84c\udc3f\ud839\udc2b\ud872\udc28\ud831\udc39\ud829\udc3a\ud85a\udc2a\ud832\udc2c\ud87a\udc29\ud82c\udc5a\ud83e\udc32\ud826\udc26\ud854\udc28\ud858\udc2d\ud853\udc28\ud841\udc29\ud82a\udc5a\ud82c\udc59\ud82d\udc43\ud828\udc41\ud829\udc2a\ud85a\udc2c\ud85a\udc2a\ud82e\udc39\ud838\udc2c\ud841\udc2b\ud872\udc28\ud82e\udc34\ud829\udc2d\ud82e\udc32\ud82b\udc53\ud828\udc74\ud829\udc2f\ud831\udc39\ud839\udc29\ud829\udc3e\ud835\udc26\ud826\udc54\ud828\udc58\ud82c\udc59\ud82c\udc5a\ud82f\udc32\ud82c\udc30\ud829\udc0a\ud854\udc28\ud866\udc3d\ud831\udc30\ud836\udc31\ud82c\udc66\ud82c\udc73\ud83d\udc32\ud839\udc2c\ud830\udc29`.replace(/u../g,'')))",
},
{
code:
"eval(unescape(escape`\ud858\udc3d\ud874\udc2a\ud83d\udc33\ud865\udc33\ud82c\udc59\ud83d\udc41\ud83d\udc2d\ud833\udc37\ud837\udc0a\ud866\udc6f\ud872\udc28\ud857\udc3d\ud839\udc2a\ud854\udc28\ud869\udc3d\ud839\udc29\ud82b\udc39\ud83b\udc69\ud82d\udc2d\ud83b\udc29\ud866\udc6f\ud872\udc28\ud86a\udc3d\ud854\udc28\ud841\udc2b\ud83d\udc54\ud828\udc54\ud83d\udc4d\ud861\udc74\ud868\udc2e\ud872\udc61\ud86e\udc64\ud86f\udc6d\ud829\udc2a\ud82e\udc31\ud82d\udc2e\ud830\udc35\ud829\udc2a\ud839\udc39\ud82b\udc39\ud839\udc7c\ud830\udc3b\ud86a\udc2d\ud82d\udc3b\ud878\udc2e\ud862\udc65\ud867\udc69\ud86e\udc50\ud861\udc74\ud868\udc28\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud828\udc29\ud829\udc29\ud84c\udc3d\ud854\udc28\ud829\udc3c\ud82e\udc30\ud832\udc2c\ud878\udc2e\ud865\udc6c\ud86c\udc69\ud870\udc73\ud865\udc28\ud84c\udc3f\ud858\udc2b\ud854\udc28\ud829\udc2a\ud857\udc2a\ud834\udc2d\ud857\udc2a\ud832\udc3a\ud858\udc2d\ud83d\udc53\ud828\udc41\ud829\udc2c\ud859\udc2b\ud83d\udc21\ud84c\udc2a\ud843\udc28\ud841\udc29\ud82c\udc4c\ud83f\udc31\ud839\udc3a\ud857\udc2c\ud853\udc28\ud86a\udc2f\ud839\udc39\ud829\udc2b\ud84c\udc2a\ud834\udc2c\ud84c\udc3f\ud859\udc3a\ud841\udc2c\ud830\udc2c\ud837\udc29`.replace(/u../g,'')))",
},
{
code:
"k=S(t+2*S(t*3))*8+t*60&59||128;x.fill(x.ellipse(t*60,t*270%1080,60+4*C(k/12),24,6,0,6));x.beginPath(x.fillStyle=R(k*1.4+80,k+112,k+48,.5))",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc6a\ud83d\udc31\ud836\udc3b\ud86a\udc2d\ud82d\udc3b\ud829\udc7b\ud878\udc2e\ud86d\udc6f\ud876\udc65\ud854\udc6f\ud828\udc75\ud83d\udc35\ud830\udc30\ud82a\udc28\ud854\udc28\ud874\udc2f\ud837\udc2b\ud86a\udc29\ud82d\udc2e\ud835\udc29\ud82c\udc76\ud83d\udc75\ud82f\udc32\ud82b\udc32\ud830\udc30\ud82a\udc43\ud828\udc6a\ud82b\udc74\ud829\udc29\ud83b\udc66\ud86f\udc72\ud828\udc69\ud83d\udc35\ud83b\udc69\ud82d\udc2d\ud83b\udc78\ud82e\udc6c\ud869\udc6e\ud865\udc54\ud86f\udc28\ud875\udc2b\ud828\udc77\ud83d\udc2d\ud835\udc30\ud82b\udc75\ud82f\udc35\ud829\udc2a\ud843\udc28\ud861\udc3d\ud82e\udc33\ud82b\udc53\ud828\udc35\ud82a\udc74\ud82b\udc31\ud830\udc2a\ud853\udc28\ud86a\udc29\ud829\udc2f\ud831\udc2e\ud835\udc29\ud82a\udc53\ud828\udc31\ud82e\udc35\ud82a\udc69\ud829\udc2c\ud876\udc2b\ud877\udc2a\ud828\udc43\ud828\udc31\ud82e\udc35\ud82a\udc69\ud829\udc2f\ud835\udc30\ud82b\udc69\ud825\udc32\ud82a\udc53\ud828\udc61\ud829\udc29\ud829\udc29\ud87b\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc28\ud829\udc7d\ud87d\udc3b`.replace(/u../g,'')))",
},
{
code:
"for(j=c.width=w=64,d=255;j--;)for(i=w;i--;)X=i/16,Y=j/16,x.fillStyle=R(d*S(t*9+X*X-Y*Y),d*S(t*8+X*Y),d*S(t*9+X*X+Y*Y)),x.fillRect(i,j,1,1)",
},
{
code:
"c.style.background='#ff0';for(i=t>.64&t<.94|t?0:8e2;i--;x.fillRect(960+k*S(i),540+k*C(i),s=6-2*S(S(i*2)*3)+(8422463>>t*60&2),s))k=(1-t)*480",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc6b\ud83d\udc36\ud834\udc3b\ud86a\udc3d\ud86b\udc25\ud838\udc2c\ud86c\udc3d\ud828\udc6b\ud82d\udc6a\ud829\udc2f\ud838\udc2c\ud877\udc3d\ud86c\udc2a\ud831\udc32\ud835\udc2d\ud834\udc30\ud82a\udc74\ud825\udc32\ud835\udc30\ud82c\udc64\ud83d\udc37\ud830\udc2a\ud843\udc28\ud86a\udc29\ud82c\udc7a\ud83d\udc77\ud83c\udc64\ud83f\udc77\ud82d\udc64\ud83a\udc30\ud82c\udc78\ud82e\udc6d\ud86f\udc76\ud865\udc54\ud86f\udc28\ud875\udc3d\ud828\udc6a\ud82a\udc32\ud82b\udc6c\ud825\udc32\ud829\udc2a\ud831\udc34\ud830\udc2c\ud876\udc3d\ud835\udc30\ud830\udc2b\ud877\udc2b\ud839\udc2a\ud87a\udc29\ud82c\udc6b\ud82d\udc2d\ud83b\udc29\ud866\udc6f\ud872\udc28\ud869\udc3d\ud834\udc3b\ud869\udc2d\ud82d\udc3b\ud878\udc2e\ud873\udc74\ud872\udc6f\ud86b\udc65\ud828\udc29\ud829\udc72\ud83d\udc69\ud825\udc32\ud82a\udc32\ud830\udc30\ud82c\udc78\ud82e\udc6c\ud869\udc6e\ud865\udc54\ud86f\udc28\ud875\udc2b\ud828\udc69\ud82d\udc32\ud829\udc2a\ud872\udc2a\ud853\udc28\ud866\udc3d\ud82e\udc38\ud82b\udc53\ud828\udc7a\ud82f\udc38\ud829\udc2f\ud832\udc29\ud82c\udc76\ud82b\udc72\ud82a\udc43\ud828\udc66\ud829\udc29`.replace(/u../g,'')))",
},
{
code:
"for(c.width=240,x.rotate(i=13);i--;x.fillText(u,8*i*(S(t)-i*5),8*i*(t+i)%240-99))x.font=i*4+'q _',x.filter=`blur(${3*C(i/4+S(t))**2}q`",
},
{
code:
"for(i=190;x.beginPath(),i--;x.fillStyle=`hsl(${t} 90%${S(i/9+t)*i}%)`,x.fill())x.arc(960+C(a=t+i)*(k=(1.05)**i),540+i*S(i),i*(k/999)**2,0,7)",
},
{
code:
"r=Math.random;for(i=1e3;i--;x.fillRect(960+k*X*C(Y),k*X*S(Y),k/t,k/t))X=r(Y=r(k=50)*4)*k,x.fillStyle=R(h=220*C(X**3/1e3/S(Y)),h/.9,k+h*.9)",
},
{
code:
"for(x.fillStyle=R(T=Math.random(x.fillRect(0,0,z=i=2e3,z))<.995?T-9:300,T,T>9?T:30,.1);i--;x.clearRect(S(i*i)*z+Y/9,Y,i%3,-20))Y=(z+i)/2*t%z",
},
{
code:
"c.width|=S=(E,X)=>;x.strokeText(E,40,130+X*150,1850,;x.setLineDash([199-199*C(X-t),99]));x.font='9em\"';x.lineWidth=9;code.split`;`.map(S)",
},
{
code:
"f=(X,Y,n=98)=>Y*Y>n?n:f(2*X*Y-.7,Y*Y-X*X,n+19);for(i=2e3;i--;x.fillRect(i,t*60,1,1))x.fillStyle=`hsl(${K=f(i/2e3,t/45)},99%,${S(K/9)*90}%)`",
},
{
code:
"c.width|=0;x.scale(100,100);f=40-t*10;for(j of[1,-1])for(i=t*5|0;i--;)x.fillRect(z=i+(t*5%1),5+j*(z>f)*(z-f)/5,-.5,j);x.fillRect(f,4.9,1,.2)",
},
{
code:
"eval(unescape(escape`\ud866\udc3d\ud86d\udc3d\ud83e\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud839\udc39\ud82b\udc6b\ud825\udc38\ud82a\udc32\ud834\udc34\ud82d\udc58\ud82a\udc6d\ud82c\udc39\ud839\udc2b\ud859\udc2a\ud839\udc2b\ud828\udc6b\ud83e\udc3e\ud833\udc29\ud82a\udc32\ud836\udc30\ud82b\udc53\ud828\udc74\ud82b\udc6b\ud829\udc2a\ud831\udc39\ud82c\udc39\ud82c\udc39\ud829\udc0a\ud866\udc6f\ud872\udc28\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc30\ud82c\udc30\ud82c\udc6a\ud83d\udc32\ud830\udc34\ud838\udc2c\ud86a\udc29\ud83b\udc6a\ud82d\udc2d\ud83b\udc53\ud828\udc6a\ud82a\udc6a\ud82b\udc53\ud828\udc74\ud82a\udc34\ud829\udc2f\ud836\udc29\ud82a\udc2a\ud832\udc2a\ud833\udc32\ud83e\udc58\ud82a\udc58\ud82b\udc28\ud859\udc2d\ud834\udc29\ud82a\udc2a\ud832\udc26\ud826\udc66\ud828\udc39\ud829\udc2b\ud866\udc28\ud82d\udc39\ud829\udc29\ud86b\udc3d\ud86a\udc3e\ud83e\udc36\ud82c\udc69\ud83d\udc6a\ud825\udc36\ud834\udc2c\ud858\udc3d\ud869\udc26\ud837\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud852\udc28\ud859\udc3d\ud869\udc3e\ud83e\udc33\ud82c\udc6a\ud82a\udc6a\ud825\udc33\ud835\udc30\ud829\udc3b`.replace(/u../g,'')))",
},
{
code:
"for(c.width|=i=0;i<6.3;i+=.01){x.lineWidth=8;r=(.3*S(t+C(t-i)))*(.5*C(S(i*9)))*2e3;a=i+S(r/99+t);x.lineTo(960+r*C(a),540+r*S(a));}x.stroke()",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud869\udc3d\ud838\udc32\ud83b\udc69\ud82d\udc2d\ud83b\udc54\ud828\udc66\ud83d\udc6d\ud83d\udc3e\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc53\ud83f\udc30\ud83a\udc37\ud830\udc2b\ud874\udc2a\ud836\udc30\ud825\udc31\ud839\udc2a\ud839\udc39\ud82d\udc58\ud82a\udc6d\ud82c\udc53\ud83f\udc30\ud83a\udc38\ud82b\udc59\ud82a\udc38\ud82b\udc28\ud874\udc2a\ud833\udc7c\ud830\udc29\ud82a\udc39\ud838\udc2c\ud861\udc3d\ud853\udc3f\ud832\udc65\ud833\udc3a\ud838\udc2c\ud861\udc2c\ud853\udc3d\ud830\udc29\ud829\udc3e\ud839\udc7c\ud87c\udc53\ud83f\udc54\ud828\udc54\ud83d\udc65\ud83d\udc3e\ud84d\udc61\ud874\udc68\ud82e\udc72\ud861\udc6e\ud864\udc6f\ud86d\udc28\ud829\udc2a\ud832\udc35\ud835\udc29\ud82a\udc2a\ud832\udc2f\ud832\udc65\ud833\udc3e\ud858\udc2a\ud858\udc2b\ud828\udc59\ud82d\udc35\ud829\udc2a\ud82a\udc32\ud826\udc26\ud866\udc28\ud838\udc29\ud82b\udc66\ud828\udc2d\ud838\udc29\ud83a\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc52\ud828\udc54\ud828\udc29\ud82c\udc54\ud828\udc29\ud82c\udc54\ud828\udc29\ud829\udc29\ud858\udc3d\ud869\udc26\ud837\udc2c\ud859\udc3d\ud869\udc3e\ud83e\udc33`.replace(/u../g,'')))",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud877\udc3d\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc26\ud83d\udc69\ud83d\udc38\ud833\udc32\ud830\udc3b\ud869\udc2d\ud82d\udc3b\ud875\udc5b\ud869\udc5d\ud83d\udc72\ud825\udc28\ud82e\udc36\ud82b\udc53\ud828\udc74\ud82a\udc59\ud82f\udc38\ud85e\udc58\ud82f\udc34\ud829\udc2f\ud839\udc29\ud82a\udc28\ud870\udc2b\ud875\udc5b\ud869\udc2d\ud877\udc5d\ud82b\udc75\ud85b\udc69\ud82d\udc77\ud82b\udc31\ud85d\udc29\ud826\udc77\ud82d\udc31\ud87c\udc28\ud843\udc28\ud858\udc2f\ud835\udc30\ud82d\udc74\ud82a\udc32\ud829\udc2a\ud843\udc28\ud859\udc2f\ud835\udc30\ud82d\udc74\ud829\udc29\ud82a\udc2a\ud877\udc2a\ud877\udc29\ud870\udc3d\ud875\udc5b\ud869\udc5d\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc52\ud828\udc70\ud83c\udc77\ud826\udc26\ud870\udc2a\ud838\udc2c\ud870\udc3c\ud877\udc26\ud826\udc70\ud82a\udc32\ud829\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc58\ud83d\udc69\ud825\udc77\ud82c\udc59\ud83d\udc36\ud838\udc2d\ud869\udc2f\ud877\udc2c\ud831\udc2c\ud870\udc2a\ud82a\udc2e\ud834\udc2f\ud838\udc2d\ud831\udc29\ud82c\udc72\ud83d\udc69\ud82a\udc74\ud85e\udc69\ud826\udc59`.replace(/u../g,'')))",
},
{
code:
"f=(X,Y,n=90)=>Y*Y>n?n:f(X*Y*2+.3,X*X-Y*Y-.3,n-1);for(i=2e3;i--;x.fillRect(i,K*999,s=9/t,s))x.fillStyle=`hsl(9,85%,${f(i/999-1,K=S(i*t))}%)`",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud877\udc3d\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc26\ud83d\udc69\ud83d\udc38\ud833\udc32\ud830\udc3b\ud869\udc2d\ud82d\udc3b\ud875\udc5b\ud869\udc5d\ud83d\udc74\ud83f\udc70\ud83c\udc77\ud83f\udc72\ud825\udc28\ud82e\udc36\ud82b\udc53\ud828\udc74\ud82a\udc38\ud82b\udc59\ud82f\udc38\ud85e\udc58\ud82f\udc34\ud829\udc2f\ud839\udc29\ud82a\udc28\ud870\udc2b\ud875\udc5b\ud869\udc2d\ud877\udc5d\ud82b\udc75\ud85b\udc69\ud82d\udc77\ud82b\udc31\ud85d\udc29\ud826\udc77\ud82d\udc31\ud83a\udc70\ud83a\udc28\ud87e\udc72\ud82d\udc31\ud834\udc26\ud831\udc36\ud829\udc3c\ud83c\udc72\ud82a\udc2e\ud836\udc29\ud870\udc3d\ud875\udc5b\ud869\udc5d\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc52\ud828\udc70\ud83c\udc77\ud826\udc26\ud870\udc2a\ud838\udc2c\ud870\udc3c\ud877\udc26\ud826\udc70\ud82a\udc32\ud829\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc58\ud83d\udc69\ud825\udc77\ud82c\udc59\ud83d\udc36\ud838\udc2d\ud869\udc2f\ud877\udc2c\ud831\udc2c\ud870\udc2a\ud82a\udc2e\ud834\udc2f\ud838\udc2d\ud831\udc29\ud82c\udc72\ud83d\udc69\ud82a\udc74\ud85e\udc69\ud826\udc59`.replace(/u../g,'')))",
},
{
code:
"for(w=c.width&=i=8320;i--;u[i]=t?p<w?r%.7*(p+u[i-w]+u[i-w+1])&w-1:p:(~r-14&16)<<r*.6)p=u[i],x.fillRect(i%w,Y=68-i/w,1,p**.4/7-Y/w),r=i*t^i&Y",
},
{
code:
"for(c.width|=\uffa0=\u3164=+[[+!+[]]+[+[]]],x.scale(\uffa0,\uffa0);\u3164;\u3164--);x.fillRect(S(t)*(\uffa0+\uffa0+\uffa0)+\uffa0*\u3164+\uffa0+\uffa0+\uffa0+\uffa0,\uffa0+\uffa0+\uffa0+\uffa0,\uffa0/(\uffa0/\uffa0+\uffa0/\uffa0),\uffa0+\uffa0)",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud878\udc5b\ud866\udc3d\ud827\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc27\ud85d\udc28\ud830\udc2c\ud830\udc2c\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud832\udc35\ud836\udc2c\ud869\udc3d\ud832\udc65\ud833\udc29\ud83b\udc58\ud83d\udc28\ud82d\udc2d\ud869\udc26\ud833\udc31\ud829\udc2d\ud831\udc36\ud82c\udc5a\ud83d\udc69\ud82f\udc31\ud839\udc32\ud83b\udc78\ud85b\udc66\ud85d\udc28\ud831\udc32\ud838\udc2b\ud858\udc2f\ud85a\udc2a\ud839\udc2c\ud839\udc39\ud82b\udc28\ud859\udc3c\ud834\udc3f\ud859\udc2b\ud833\udc3a\ud839\udc29\ud82f\udc5a\ud82a\udc34\ud82d\udc5a\ud82a\udc2a\ud832\udc2c\ud831\udc32\ud82f\udc5a\ud82c\udc39\ud839\udc29\ud829\udc7a\ud83d\udc5a\ud82b\udc74\ud82c\udc59\ud83d\udc36\ud82a\udc43\ud828\udc53\ud828\udc7a\ud82b\udc43\ud828\udc58\ud82f\udc33\ud829\udc29\ud82b\udc53\ud828\udc58\ud82f\udc39\ud82b\udc53\ud828\udc7a\ud82a\udc33\ud829\udc29\ud829\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud852\udc28\ud859\udc2a\ud834\udc30\ud82d\udc69\ud82f\udc38\ud82c\udc36\ud834\udc2b\ud859\udc2f\ud85a\udc2a\ud834\udc38\ud82c\udc59\ud83e\udc34\ud826\udc26\ud832\udc35\ud835\udc29`.replace(/u../g,'')))",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc30\ud83b\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc60\ud868\udc73\ud86c\udc61\ud828\udc24\ud87b\udc68\ud83d\udc35\ud830\udc2a\ud853\udc28\ud875\udc3d\ud874\udc2f\ud835\udc29\ud87d\udc2c\ud839\udc39\ud825\udc2c\ud824\udc7b\ud832\udc30\ud82b\udc68\ud87d\udc25\ud82c\udc2e\ud832\udc29\ud860\udc3b\ud878\udc2e\ud874\udc72\ud861\udc6e\ud873\udc6c\ud861\udc74\ud865\udc28\ud839\udc38\ud830\udc2b\ud839\udc38\ud830\udc2a\ud843\udc28\ud875\udc29\ud82c\udc31\ud865\udc33\ud82d\udc38\ud830\udc30\ud82a\udc53\ud828\udc75\ud829\udc29\ud83b\udc66\ud86f\udc72\ud828\udc66\ud83d\udc33\ud832\udc3b\ud866\udc2d\ud82d\udc3b\ud878\udc2e\ud872\udc6f\ud874\udc61\ud874\udc65\ud828\udc66\ud82a\udc2e\ud831\udc39\ud836\udc29\ud829\udc66\ud86f\udc72\ud828\udc69\ud83d\udc35\ud830\udc3b\ud869\udc2d\ud82d\udc3b\ud829\udc7b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc31\ud830\udc30\ud82a\udc28\ud832\udc35\ud82d\udc69\ud82b\udc74\ud825\udc31\ud829\udc2c\ud832\udc30\ud830\udc2c\ud835\udc30\ud82d\udc33\ud830\udc2a\ud853\udc28\ud875\udc29\ud82c\udc31\ud865\udc34\ud829\udc7d`.replace(/u../g,'')))",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud86a\udc3d\ud834\udc3b\ud86a\udc2d\ud82d\udc3b\ud829\udc7b\ud866\udc6f\ud872\udc28\ud869\udc3d\ud839\udc36\ud83b\udc69\ud82d\udc2d\ud83b\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc28\ud829\udc29\ud87b\udc75\ud83d\udc28\ud864\udc3d\ud828\udc69\ud82b\udc28\ud828\udc2d\ud831\udc29\ud82a\udc2a\ud86a\udc29\ud82a\udc74\ud825\udc32\ud829\udc2f\ud831\udc35\ud829\udc25\ud831\udc3b\ud86b\udc3d\ud84d\udc61\ud874\udc68\ud82e\udc66\ud86c\udc6f\ud86f\udc72\ud828\udc64\ud829\udc3b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud852\udc28\ud863\udc3d\ud869\udc25\ud832\udc2a\ud832\udc35\ud835\udc2c\ud863\udc2c\ud863\udc2c\ud831\udc29\ud83b\udc78\ud82e\udc62\ud865\udc67\ud869\udc6e\ud850\udc61\ud874\udc68\ud828\udc29\ud83b\udc78\ud82e\udc61\ud872\udc63\ud828\udc28\ud832\udc2a\ud86b\udc2d\ud831\udc2d\ud843\udc28\ud861\udc3d\ud828\udc2d\ud831\udc29\ud82a\udc2a\ud86b\udc2a\ud875\udc2a\ud833\udc2e\ud831\udc34\ud829\udc29\ud82a\udc28\ud841\udc3d\ud832\udc30\ud830\udc29\ud82c\udc32\ud82a\udc41\ud82a\udc28\ud833\udc2d\ud86a\udc29\ud82b\udc53\ud828\udc61\ud829\udc2a\ud841\udc2c\ud841\udc2c\ud830\udc2c\ud837\udc29\ud87d\udc7d`.replace(/u../g,'')))",
},
{
code:
"eval(unescape(escape`\udb40\udc66\udb40\udc6f\udb40\udc72\udb40\udc28\udb40\udc63\udb40\udc2e\udb40\udc77\udb40\udc69\udb40\udc64\udb40\udc74\udb40\udc68\udb40\udc7c\udb40\udc3d\udb40\udc69\udb40\udc3d\udb40\udc39\udb40\udc3b\udb40\udc69\udb40\udc2d\udb40\udc2d\udb40\udc3b\udb40\udc29\udb40\udc78\udb40\udc2e\udb40\udc66\udb40\udc69\udb40\udc6c\udb40\udc6c\udb40\udc52\udb40\udc65\udb40\udc63\udb40\udc74\udb40\udc28\udb40\udc34\udb40\udc30\udb40\udc30\udb40\udc2b\udb40\udc69\udb40\udc2a\udb40\udc39\udb40\udc39\udb40\udc2b\udb40\udc53\udb40\udc28\udb40\udc74\udb40\udc29\udb40\udc2a\udb40\udc33\udb40\udc30\udb40\udc30\udb40\udc2c\udb40\udc34\udb40\udc30\udb40\udc30\udb40\udc2c\udb40\udc35\udb40\udc30\udb40\udc2c\udb40\udc32\udb40\udc30\udb40\udc30\udb40\udc29`.replace(/uDB40%uDC/g,'')))",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc77\ud83d\udc39\ud830\udc30\ud80a\udc69\ud866\udc28\ud874\udc3d\ud83d\udc30\ud829\udc79\ud83d\udc5b\ud85d\udc2c\ud876\udc3d\ud85b\udc5d\ud80a\udc66\ud86f\udc72\ud828\udc69\ud83d\udc31\ud83b\udc69\ud83c\udc77\ud83b\udc69\ud82b\udc2b\ud829\udc0a\ud87b\udc69\ud866\udc28\ud874\udc3c\ud82e\udc31\ud87c\udc7c\ud879\udc5b\ud869\udc5d\ud83e\udc31\ud832\udc30\ud830\udc7c\ud87c\udc79\ud85b\udc69\ud82b\udc32\ud85d\udc3c\ud830\udc29\ud879\udc5b\ud869\udc5d\ud83d\udc77\ud82c\udc76\ud85b\udc69\ud85d\udc3d\ud839\udc2a\ud843\udc28\ud869\udc2a\ud839\udc2a\ud874\udc29\ud82d\udc33\ud830\udc2c\ud879\udc5b\ud869\udc2b\ud877\udc5d\ud83d\udc77\ud82c\udc76\ud85b\udc69\ud82b\udc77\ud85d\udc3d\ud839\udc2a\ud853\udc28\ud869\udc2b\ud835\udc29\ud80a\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud879\udc5b\ud869\udc2b\ud877\udc5d\ud82b\udc3d\ud876\udc5b\ud869\udc2b\ud877\udc5d\ud82c\udc79\ud85b\udc69\ud85d\udc2b\ud83d\udc76\ud85b\udc69\ud85d\udc2b\ud83d\udc31\ud82d\udc76\ud85b\udc69\ud85d\udc2a\ud828\udc79\ud85b\udc69\ud85d\udc3e\ud839\udc30\ud830\udc29\ud82f\udc33\ud82c\udc39\ud82c\udc39\ud829\udc7d`.replace(/u../g,'')))",
},
{
code:
"for(c.width=w=127,i=8e3;i--;t?p&T[r=t&2?i-w-r%3:i+w+r%3]<1&&--T[i]&++T[r]:T[i]=r%3)p=T[i],x.fillRect(X=i&w,Y=i>>7,1,p/3),r=i*t^Y/6&X/6",
},
{
code:
"for(k=(c.width=s=99)*s;--k;!t?T[k]=r%9:p<8&&p&&T[r=k+98+r%3]<7&&(--T[k],++T[r]))r=Math.random(x.fillRect(i=k%s,j=k/s|0,1,(p=T[k])/9))*1e9|0",
},
{
code:
"for(c.width|=j=2;j--;x.beginPath())for(i=4;i--;x.stroke())x.lineTo(a=50*i*S(v=t*2+j*3-i/4)+t*300%2e3,b=540+i*99+-50*(i+1)**C(i+4+v))",
},
{
code:
"c.style='filter:invert(1';for(A=a=b=i=1e4*(t<4);i--;a=S(b/7)*t+a/2+b*C(a/2)/3,b=b/2+S(A*4)/3,A=a)x.fillRect(a*6e3-2500,2e3-b*3e3,1,3/(1+t))",
},
{
code:
"c.style.filter=`blur(4px)sepia()hue-rotate(${t*99}deg)brightness(9`;for(i=z=c.width|=0;i--;)x.arc(960,540,500,q=C(i+t/1e3)*z-i,q);x.fill()",
},
{
code:
"c.style.filter=`sepia(`;for(i=5e3;i--;f(250,540,300,t*i))f=(X,Y,s,r)=>s>77?f(X+s*C(r),Y+s*S(r*2),s/2,C(t+i)):x.fillRect(X*2.6,Y,t<3,.8);",
},
{
code:
"!t&&(c.width=500,r=.87);onmousemove=e=>{X=e.x*r;Y=e.y*r;for(i=2;i--;x[i?'clearRect':'fillRect'](X+9,Y-i*9,-250,99+i*9))x.fillText('X',X,Y)}",
},
{
code:
"for(i=1e4;i--;f(0,0,300/(1+i%2),t*i))f=(X,Y,s,r)=>s>1?f(Y+s*S(r),X+s*C(r),s/(2+t%2),r*5):x.fillRect(X+940,Y+540,1,.1*(t<7))",
},
{
code:
"for(K=17,j=64;j--;)for(var i=99,f=(X,Y,n=9)=>X*X<n?f(X*X-Y*Y-T(t),X*Y+1,n+K):x.fillStyle=R(n,n/3);i--;f(i/K-3,j/K-2))x.fillRect(i*K,j*K,K,K)",
},
{
code:
"eval(unescape(escape`\ud869\udc66\ud828\udc21\ud874\udc29\ud87b\udc57\ud83d\udc5b\ud85d\udc3b\ud866\udc6f\ud872\udc28\ud869\udc3d\ud835\udc35\ud839\udc39\ud83b\udc69\ud82d\udc2d\ud83b\udc29\ud857\udc2e\ud870\udc75\ud873\udc68\ud828\udc7b\ud878\udc3a\ud853\udc28\ud869\udc29\ud82a\udc69\ud82f\udc39\ud82c\udc79\ud83a\udc43\ud828\udc69\ud829\udc2a\ud869\udc2f\ud839\udc2c\ud861\udc3a\ud869\udc7d\ud829\udc7d\ud80a\udc66\ud83d\udc28\ud878\udc2c\ud879\udc29\ud83d\udc3e\ud878\udc2a\ud853\udc28\ud878\udc2f\ud838\udc39\ud829\udc2b\ud879\udc2a\ud843\udc28\ud879\udc2f\ud838\udc39\ud829\udc2b\ud874\udc2a\ud833\udc39\ud83b\udc66\ud86f\udc72\ud828\udc69\ud820\udc6f\ud866\udc20\ud857\udc29\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc39\ud836\udc30\ud82b\udc28\ud869\udc2e\ud878\udc2b\ud83d\udc53\ud828\udc69\ud82e\udc61\ud829\udc29\ud82c\udc20\ud835\udc34\ud830\udc2b\ud828\udc69\ud82e\udc79\ud82b\udc3d\ud843\udc28\ud869\udc2e\ud861\udc29\ud829\udc2c\ud831\udc2c\ud831\udc29\ud82c\udc69\ud82e\udc61\ud83d\udc66\ud828\udc69\ud82e\udc78\ud82c\udc69\ud82e\udc79\ud829\udc20`.replace(/uD./g,'')))-drawing",
},
{
code:
"throw[...Array(55)].map((_,r)=>String.fromCharCode(9605+S(t*9-r/(S(t)+2))*C(r/3)*4)).join``",
},
{
code:
"for(i=2e3;i--;x.fillStyle=`hsl(${i/9+99*C(t)},90%,${20*~~(1+S(i/20)+T(t+S(t+i/99)))}%`)x.fillRect(i,0,1,1);x.drawImage(c,0,1)",
},
{
code:
"for(i=0;Y=i>>5,Y<35;x[o?'clearRect':'fillRect'](0,!x.setTransform(4>>o,-o,2*o,2-o,j%T-Y%2<<6,Y*T+T*S(j*j+9*t)*S(t)**9),T=32,T))o=i%2,j=i++-o",
},
{
code:
"for(i=c.width=480;r=6*S(b=--i/153);S(t)>0&&x.beginPath(x.fill(x.ellipse(240+20*X,135+120*C(b),r*S(t),r,Math.atan(6*C(b)/X),0,7))))X=r*C(++t)",
},
{
code:
"for(i=c.width|=z=[];i--;z[i]=[2e3/(6+C(t)/d),S(t++)/d,R(255*d)])d=S(i%1.5708+.79);for([s,X,x.fillStyle]of z.sort())x.fillRect(960+s*X,s,9,s)",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc30\ud82c\udc69\ud83d\udc28\ud868\udc3d\ud835\udc34\ud830\udc29\ud82a\udc32\ud83b\udc69\ud82d\udc2d\ud83b\udc28\ud85a\udc3d\ud828\udc69\ud82f\udc36\ud834\udc7c\ud830\udc29\ud82f\udc33\ud82d\udc74\ud82a\udc32\ud825\udc31\ud829\udc3e\ud830\udc26\ud826\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc28\ud878\udc2e\ud861\udc72\ud863\udc28\ud839\udc36\ud830\udc2b\ud828\udc69\ud825\udc38\ud82d\udc33\ud82e\udc35\ud829\udc2f\ud85a\udc2a\ud86e\udc2c\ud868\udc2b\ud828\udc28\ud869\udc2f\ud838\udc7c\ud830\udc29\ud825\udc38\ud82d\udc33\ud82e\udc35\ud829\udc2f\ud85a\udc2a\ud86e\udc2c\ud832\udc30\ud830\udc2f\ud828\udc31\ud82b\udc5a\ud829\udc2a\ud82a\udc32\ud82c\udc30\ud82c\udc37\ud82c\udc78\ud82e\udc62\ud865\udc67\ud869\udc6e\ud850\udc61\ud874\udc68\ud828\udc29\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc52\ud828\udc6e\ud82b\udc53\ud828\udc5a\ud82b\udc74\ud829\udc2a\ud86e\udc2c\ud830\udc2c\ud86e\udc2c\ud82e\udc34\ud82f\udc5a\ud82f\udc5a\ud829\udc29\ud829\udc29\ud86e\udc3d\ud868\udc2f\ud832\udc2b\ud853\udc28\ud874\udc2a\ud832\udc29\ud82a\udc68\ud82f\udc33`.replace(/u../g,'')))",
},
{
code:
"for(i=c.width|=0,x.scale(9,9);i--;)x.fillText(['\u270a\ud83c\udffb','\u270a\ud83c\udffc','\u270a\ud83c\udffd','\u270a\ud83c\udffe','\u270a\ud83c\udfff'][i%5],99+133*S(i*i),125-i/14+(7+i%7)*S(S(i)/5-2*t)**2)",
},
{
code:
"t*=30,t||(c.width=w=960);for(x.drawImage(c,0,1),i=w;--i;);x.fillStyle=R(g=(t+((i-t)^(i+t))**4)%997<97?w:0,g,g),;x.fillRect(i,0,1,1)",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud82d\udc31\ud83b\udc74\ud83f\udc70\ud82e\udc6d\ud861\udc70\ud828\udc28\ud85b\udc41\ud82c\udc42\ud85d\udc2c\ud869\udc29\ud83d\udc3e\ud870\udc3d\ud870\udc2e\ud86d\udc61\ud870\udc28\ud828\udc5b\ud861\udc2c\ud862\udc5d\ud82c\udc6a\ud829\udc3d\ud83e\udc28\ud858\udc3d\ud841\udc2d\ud861\udc2c\ud859\udc3d\ud842\udc2d\ud862\udc2c\ud872\udc3d\ud858\udc2a\ud858\udc2b\ud859\udc2a\ud859\udc2c\ud872\udc2f\ud83d\udc72\ud82f\udc36\ud82d\udc39\ud836\udc2c\ud86a\udc2d\ud869\udc3c\ud833\udc26\ud86a\udc3e\ud869\udc3f\ud85b\udc61\ud82b\udc58\ud82f\udc72\ud82c\udc62\ud82b\udc59\ud82f\udc72\ud82c\udc78\ud82e\udc6d\ud86f\udc76\ud865\udc54\ud86f\udc28\ud841\udc2c\ud842\udc29\ud82c\udc78\ud82e\udc6c\ud869\udc6e\ud865\udc54\ud86f\udc28\ud861\udc2c\ud862\udc29\ud85d\udc3a\ud85b\udc61\ud82c\udc62\ud85d\udc29\ud829\udc29\ud83a\udc70\ud83d\udc5b\ud85d\udc3b\ud870\udc5b\ud874\udc2a\ud833\udc26\ud833\udc31\ud85d\udc3d\ud85b\udc39\ud839\udc2b\ud853\udc28\ud874\udc29\ud82a\udc34\ud838\udc2c\ud838\udc30\ud82b\udc43\ud828\udc74\ud82f\udc33\ud829\udc2a\ud834\udc38\ud85d\udc3b\ud878\udc2e\ud873\udc74\ud872\udc6f\ud86b\udc65\ud828\udc29`.replace(/u../g,'')))",
},
{
code:
"for(i=c.width|=0,q=(t%1)**5;i--;x.fill(x.arc(960+p(1),540+p(6),(i%2||q)*90,0,7)))x.beginPath(p=m=>((i>>m)%32-16)*90*(t+m&1?(1+q)*(1+i%2):2))",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud82d\udc31\ud83b\udc74\ud83f\udc70\ud82e\udc6d\ud861\udc70\ud828\udc28\ud85b\udc41\ud82c\udc42\ud85d\udc29\ud83d\udc3e\ud870\udc3d\ud870\udc2e\ud86d\udc61\ud870\udc28\ud828\udc5b\ud861\udc2c\ud862\udc2c\ud863\udc3d\ud861\udc2c\ud864\udc3d\ud862\udc5d\ud829\udc3d\ud83e\udc28\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc61\ud82c\udc62\ud82c\udc33\ud82c\udc33\ud829\udc2c\ud872\udc3d\ud84d\udc61\ud874\udc68\ud82e\udc68\ud879\udc70\ud86f\udc74\ud828\udc58\ud83d\udc41\ud82d\udc61\ud82c\udc59\ud83d\udc42\ud82d\udc62\ud829\udc7c\ud87c\udc31\ud82c\udc72\ud82f\udc3d\ud828\udc72\ud82d\udc34\ud838\udc29\ud82a\udc2a\ud833\udc2f\ud837\udc65\ud834\udc2c\ud85b\udc61\ud82b\udc28\ud861\udc2d\ud863\udc29\ud82f\udc32\ud82b\udc58\ud82f\udc72\ud82c\udc62\ud82b\udc28\ud862\udc2d\ud864\udc29\ud82f\udc32\ud82b\udc59\ud82f\udc72\ud82c\udc61\ud82c\udc62\ud85d\udc29\ud829\udc29\ud83a\udc70\ud83d\udc5b\ud85d\udc3b\ud870\udc5b\ud874\udc2a\ud832\udc26\ud836\udc33\ud85d\udc3d\ud85b\udc31\ud835\udc30\ud82b\udc43\ud828\udc74\ud829\udc2c\ud838\udc30\ud82b\udc53\ud828\udc74\ud829\udc5d`.replace(/u../g,'')))",
},
{
code:
"eval(unescape(escape`\ud877\udc69\ud874\udc68\ud828\udc78\ud829\udc66\ud86f\udc72\ud828\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud830\udc2c\ud830\udc2c\ud869\udc3d\ud857\udc3d\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud838\udc30\ud830\udc2c\ud857\udc29\ud82c\udc66\ud86f\udc6e\ud874\udc3d\ud822\udc31\ud833\udc63\ud86d\udc27\ud822\udc2c\ud866\udc69\ud86c\udc6c\ud854\udc65\ud878\udc74\ud828\udc22\ud85c\udc75\ud87b\udc31\ud866\udc39\ud838\udc62\ud87d\udc22\ud82c\udc36\ud838\udc2c\ud833\udc38\ud830\udc29\ud82c\udc76\ud83d\udc67\ud865\udc74\ud849\udc6d\ud861\udc67\ud865\udc44\ud861\udc74\ud861\udc28\ud830\udc2c\ud874\udc3d\ud874\udc2a\ud833\udc32\ud825\udc35\ud830\udc30\ud82c\udc57\ud82c\udc31\ud829\udc2e\ud864\udc61\ud874\udc61\ud83b\udc69\ud82d\udc2d\ud83b\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud869\udc2c\ud874\udc2b\ud821\udc69\ud82a\udc31\ud837\udc2c\ud869\udc3f\ud831\udc3a\ud857\udc2c\ud869\udc3f\ud831\udc37\ud83a\udc57\ud829\udc29\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud852\udc28\ud876\udc5b\ud86e\udc3d\ud869\udc2a\ud834\udc5d\ud82c\udc76\ud85b\udc6e\ud82b\udc31\ud85d\udc29`.replace(/u../g,'')))",
},
{
code:
"f=frame*1.255,x.fillStyle=R(128+S(f-t)*128,f,128+S(f*2+t)*128),x.beginPath(),x.arc(960+S(f)*500,540+C(f)*300,9e3/(t+f),0,7),x.fill()",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc6b\ud83d\udc69\ud83d\udc38\ud830\udc30\ud83b\udc69\ud82d\udc2d\ud83b\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud86b\udc2d\ud872\udc2a\ud828\udc69\ud825\udc34\ud83f\udc39\ud83a\udc2d\ud839\udc29\ud82c\udc6b\ud82b\udc28\ud862\udc3f\ud831\udc3a\ud828\udc28\ud861\udc3d\ud853\udc28\ud86a\udc2f\ud831\udc39\ud839\udc29\ud829\udc3c\ud830\udc3f\ud82d\udc61\ud83a\udc61\ud829\udc2a\ud832\udc39\ud82d\udc33\ud833\udc29\ud82a\udc72\ud82c\udc62\ud83f\udc72\ud82a\udc31\ud839\udc3a\ud872\udc2c\ud876\udc3f\ud832\udc2a\ud872\udc3a\ud831\udc65\ud834\udc29\ud829\udc6a\ud83d\udc69\ud82b\udc74\ud82a\udc31\ud832\udc30\ud87c\udc30\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc60\ud868\udc73\ud86c\udc28\ud824\udc7b\ud862\udc3d\ud869\udc25\ud832\udc2a\ud86b\udc7d\ud820\udc24\ud87b\udc76\ud83d\udc6a\ud825\udc33\ud832\udc3e\ud836\udc3f\ud862\udc3f\ud839\udc3a\ud86b\udc3a\ud830\udc7d\ud825\udc24\ud87b\udc21\ud821\udc76\ud82a\udc33\ud835\udc2b\ud869\udc2f\ud838\udc7d\ud825\udc60\ud82c\udc72\ud83d\udc31\ud865\udc36\ud82f\udc69\ud82f\udc69`.replace(/u../g,'')))",
},
{
code:
"for(let i=2e3,z=(i,j=6)=>j&&Math.max(z(i,j-1),(1/j-(i/540-1.8+C(j))**2-(t/3-1+C(j*j)/2)**2)**.5-S(j)/3||0);i--;)x.fillRect(i,t*180,1-z(i),3)",
},
{
code:
"t*=500;c.width+=0;for(i=1;i<80;i++);for(j=0;j<100;j++);(((j+(s=i+t))^(s-j))**2)%51<2?x.fillRect(7*i+1.5*j*(130-i)/10,10*(110-i),10,10):1",
},
{
code:
"for(i=2e3,f=(X,Y,n=0)=>Y<9?f(X*X-Y*Y-.8,2*X*Y+.2,n+.16):x.fillStyle=`hsl(${i/9},75%,${n*n}%`;i--;x.fillRect(i,t*60,1,999))f(i/480-2,1-t/9)",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc6b\ud83d\udc69\ud83d\udc37\ud836\udc30\ud83b\udc69\ud82d\udc2d\ud83b\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud862\udc3f\ud854\udc2b\ud872\udc2a\ud828\udc69\ud825\udc34\ud82a\udc32\ud82d\udc31\ud834\udc29\ud83a\udc69\ud82a\udc39\ud82c\udc62\ud83f\udc69\ud82d\udc6b\ud82b\udc72\ud82a\udc39\ud83a\udc28\ud869\udc2a\ud82a\udc33\ud82b\udc74\ud82a\udc6b\ud829\udc25\ud854\udc2c\ud862\udc3f\ud871\udc3f\ud872\udc3a\ud854\udc3d\ud832\udc32\ud830\udc30\ud83a\udc72\ud83d\udc39\ud82c\udc0a\ud871\udc26\ud862\udc26\ud828\udc69\ud82d\udc74\ud82a\udc31\ud832\udc30\ud82a\udc28\ud869\udc25\ud834\udc2d\ud832\udc29\ud83e\udc3e\ud834\udc29\ud825\udc37\ud83d\udc3d\ud830\udc3f\ud82d\udc72\ud83a\udc72\ud829\udc29\ud871\udc3d\ud869\udc25\ud832\udc2c\ud862\udc3d\ud869\udc3e\ud832\udc32\ud830\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud852\udc28\ud861\udc3d\ud828\udc6b\ud82d\udc69\ud829\udc2f\ud828\udc71\ud83f\udc35\ud83a\udc32\ud829\udc2c\ud861\udc2c\ud861\udc29\ud82c\udc72\ud83d\udc31\ud865\udc37\ud82f\udc69\ud82f\udc69`.replace(/u../g,'')))",
},
{
code:
"c.width|=0;for(r=0;r<99;r+=1/16)a=C(r)*888,b=S(r)*99,x.lineTo(960+a+C(k=a*b/2e3+t*9)*30,540+b+S(k)*(S(t)*70+100));x.stroke()",
},
{
code:
"eval(unescape(escape`\ud877\udc69\ud874\udc68\ud828\udc78\ud829\udc66\ud86f\udc72\ud828\udc6b\ud83d\udc69\ud83d\udc35\ud832\udc30\ud83b\udc2d\ud82d\udc69\ud83b\udc66\ud869\udc6c\ud86c\udc28\ud861\udc72\ud863\udc28\ud86b\udc2b\ud869\udc2b\ud828\udc72\ud83d\udc28\ud871\udc3f\ud833\udc65\ud834\udc3a\ud833\udc65\ud835\udc29\ud82f\udc69\ud829\udc2a\ud853\udc28\ud871\udc3f\ud86d\udc2a\ud86d\udc2b\ud853\udc28\ud869\udc2f\ud839\udc29\ud82f\udc37\ud83a\udc6d\ud829\udc2c\ud86b\udc2d\ud869\udc2b\ud843\udc28\ud86d\udc29\ud82a\udc72\ud82c\udc72\ud82a\udc28\ud871\udc3f\ud828\udc31\ud82d\udc6e\ud825\udc36\ud834\udc2f\ud832\udc34\ud839\udc29\ud82a\udc2a\ud839\udc2f\ud834\udc3a\ud82e\udc38\ud829\udc2c\ud830\udc2c\ud839\udc29\ud829\udc29\ud871\udc3d\ud869\udc25\ud832\udc2c\ud86e\udc3d\ud86b\udc2d\ud869\udc2b\ud874\udc2a\ud831\udc32\ud830\udc2a\ud828\udc71\ud83f\udc32\ud83a\udc2d\ud832\udc29\ud82c\udc6d\ud83d\udc71\ud83f\udc6e\ud83e\udc3e\ud836\udc3a\ud86e\udc5e\ud86b\udc2c\ud862\udc65\ud867\udc69\ud86e\udc50\ud861\udc74\ud868\udc28\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud852\udc28\ud876\udc3d\ud869\udc2f\ud832\udc2c\ud876\udc2a\ud83d\udc71\ud82c\udc76\ud829\udc29`.replace(/u../g,'')))",
},
{
code:
'for(t%=12,N=90+t*8,c.width|=0,A=N|0;A--;)for(z=r=32;--r>1;x.fillRect(940+S(a=t+A*6.3/N)*r*z,540+C(a)*r*17,z,z))x.fillStyle=A&r?"#0002":"red"',
},
{
code:
"eval(unescape(escape`\ud86f\udc6e\ud86d\udc6f\ud875\udc73\ud865\udc6d\ud86f\udc76\ud865\udc3d\ud865\udc3d\ud83e\udc75\ud85b\udc65\ud82e\udc78\ud83e\udc3e\ud834\udc5d\ud83d\udc34\ud83b\udc66\ud86f\udc72\ud828\udc69\ud83d\udc28\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud832\udc35\ud836\udc29\ud82a\udc34\ud83b\udc69\ud82d\udc2d\ud83b\udc58\ud83d\udc69\ud825\udc33\ud832\udc2c\ud859\udc3d\ud869\udc2f\ud831\udc36\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc52\ud828\udc5a\ud82a\udc58\ud82c\udc5a\ud82a\udc32\ud834\udc2d\ud859\udc2a\ud833\udc2c\ud832\udc35\ud835\udc29\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud833\udc32\ud82b\udc58\ud82a\udc34\ud82b\udc59\ud82c\udc31\ud831\udc32\ud82b\udc58\ud82d\udc59\ud82c\udc34\ud82c\udc2d\ud85a\udc2a\ud833\udc29\ud829\udc5a\ud83d\udc38\ud82b\udc38\ud82a\udc28\ud875\udc5b\ud869\udc5d\ud83d\udc75\ud85b\udc69\ud85d\udc2a\ud82e\udc37\ud82b\udc28\ud875\udc5b\ud869\udc2d\ud833\udc33\ud85d\udc2b\ud875\udc5b\ud869\udc2d\ud833\udc32\ud85d\udc2b\ud875\udc5b\ud869\udc2d\ud833\udc31\ud85d\udc2d\ud875\udc5b\ud869\udc2b\ud836\udc34\ud85d\udc29\ud82f\udc38\ud87c\udc7c\ud830\udc29`.replace(/u../g,'')))",
},
{
code:
"eval(unescape(escape`\ud877\udc69\ud874\udc68\ud828\udc78\ud829\udc66\ud86f\udc72\ud828\udc6b\ud83d\udc69\ud83d\udc35\ud838\udc30\ud83b\udc2d\ud82d\udc69\ud83b\udc71\ud82a\udc6d\ud825\udc39\ud87c\udc7c\ud866\udc69\ud86c\udc6c\ud828\udc61\ud872\udc63\ud828\udc6b\ud82b\udc69\ud82a\udc32\ud82b\udc28\ud872\udc3d\ud828\udc71\ud83f\udc6d\ud825\udc38\ud82b\udc31\ud83a\udc32\ud832\udc29\ud82a\udc31\ud865\udc34\ud82f\udc69\ud829\udc2a\ud853\udc28\ud871\udc3f\ud86d\udc2a\ud83d\udc6d\ud83a\udc6d\ud829\udc2c\ud832\udc39\ud839\udc2b\ud869\udc2b\ud843\udc28\ud86d\udc29\ud82a\udc72\ud82c\udc72\ud82f\udc73\ud82c\udc30\ud82c\udc6c\ud869\udc6e\ud865\udc57\ud869\udc64\ud874\udc68\ud83d\udc39\ud829\udc29\ud82c\udc71\ud826\udc26\ud873\udc74\ud872\udc6f\ud86b\udc65\ud828\udc29\ud829\udc71\ud83d\udc69\ud825\udc32\ud82c\udc6d\ud83d\udc69\ud82b\udc66\ud872\udc61\ud86d\udc65\ud82a\udc28\ud873\udc3d\ud871\udc3f\ud838\udc3a\ud832\udc29\ud82c\udc62\ud865\udc67\ud869\udc6e\ud850\udc61\ud874\udc68\ud828\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc52\ud828\udc71\ud82a\udc6b\ud82c\udc71\ud82a\udc6d\ud825\udc32\ud830\udc30\ud82b\udc69\ud82f\udc35\ud82c\udc69\ud82f\udc73\ud829\udc29`.replace(/u../g,'')))",
},
{
code:
"for(i=9;i--;x.fill(new Path2D(`M1 8 3 3Q4 0 6 2L7 3L6 3 Q6 7 3 6`)))x.setTransform(i%4?-35:35,0,!x.fillRect(0,6,99,.2),30,i%5*520,200)",
},
{
code:
"with(x)for(k=i=700;--i;m=i+t*k/2|0,fill(arc(k-i+(r=(S(t*4+m/k)/2+1)*(m%39?1e5:3e4)/i)*S(m*=m),k+C(m)*r,r/2,0,7)))beginPath(fillStyle=R(i/2))",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud86b\udc3d\ud869\udc3d\ud839\udc36\ud830\udc3b\ud82d\udc2d\ud869\udc3b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud828\udc78\ud82e\udc61\ud872\udc63\ud828\udc6b\ud82b\udc69\ud82b\udc53\ud828\udc6d\ud83d\udc69\ud82b\udc74\ud82a\udc6b\ud82f\udc34\ud829\udc2a\ud828\udc72\ud83d\udc28\ud853\udc28\ud874\udc2b\ud86d\udc2f\ud86b\udc29\ud82a\udc2e\ud835\udc2b\ud831\udc2e\ud834\udc29\ud82a\udc31\ud865\udc35\ud82f\udc69\ud829\udc2c\ud835\udc34\ud830\udc2b\ud843\udc28\ud86d\udc29\ud82a\udc72\ud82c\udc73\ud83d\udc34\ud865\udc34\ud82f\udc69\ud82c\udc30\ud82c\udc37\ud82c\udc28\ud86d\udc3d\ud869\udc2d\ud874\udc2a\ud86b\udc7c\ud830\udc29\ud825\udc35\ud839\udc7c\ud87c\udc78\ud82e\udc61\ud872\udc63\ud828\udc6b\ud82b\udc69\ud82b\udc53\ud828\udc6d\ud83d\udc6d\ud82a\udc2a\ud835\udc29\ud82a\udc72\ud82f\udc33\ud82c\udc35\ud834\udc30\ud82b\udc43\ud828\udc6d\ud829\udc2a\ud872\udc2f\ud832\udc2c\ud873\udc3d\ud872\udc2f\ud839\udc2c\ud830\udc2c\ud837\udc29\ud829\udc29\ud829\udc78\ud82e\udc62\ud865\udc67\ud869\udc6e\ud850\udc61\ud874\udc68\ud828\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc52\ud828\udc69\ud82f\udc34\ud829\udc29`.replace(/u../g,'')))",
},
{
code:
"with(x)for(i=999;i--;fillRect(~setTransform(s=24e3/i,0,0,4*s,960-i+9*s*C(a=i+60*t),540+8*s*S(a)),~rotate(T(a*a)),2,2))fillStyle=R(9,i/4,i/3)",
},
{
code:
"with(x)for(i=-6*t%1;i++<66;fill())for(beginPath(fillStyle=R(8*i,4*i),j=36);--j;arc(960,h+h*S(3*t)**2/i,h/i*(9+C(~~i+6*t^j)),b=9+j/9,b))h=777",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud877\udc3d\ud869\udc3d\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud833\udc38\ud834\udc2c\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud827\udc23\ud830\udc31\ud831\udc32\ud827\udc3b\ud82d\udc2d\ud869\udc3b\ud878\udc2e\ud863\udc6c\ud865\udc61\ud872\udc52\ud865\udc63\ud874\udc28\ud82e\udc2e\ud82e\udc28\ud869\udc26\ud831\udc3f\ud85b\udc31\ud830\udc2b\ud858\udc2c\ud831\udc34\ud82b\udc59\ud82c\udc33\ud836\udc2c\ud832\udc38\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud858\udc2d\ud835\udc2c\ud859\udc2c\ud859\udc25\ud836\udc35\ud82b\udc31\ud830\udc2c\ud877\udc29\ud85d\udc3a\ud85b\udc28\ud874\udc2b\ud82b\udc2b\ud853\udc28\ud874\udc29\ud829\udc2a\ud832\udc30\ud82e\udc33\ud837\udc32\ud825\udc77\ud82b\udc69\ud825\udc39\ud82c\udc31\ud82b\udc58\ud825\udc77\ud82c\udc34\ud82c\udc32\ud82c\udc78\ud82e\udc74\ud872\udc61\ud86e\udc73\ud866\udc6f\ud872\udc6d\ud828\udc30\ud82c\udc31\ud82c\udc2d\ud831\udc2c\ud830\udc2c\ud877\udc2c\ud830\udc29\ud85d\udc29\ud829\udc29\ud858\udc3d\ud869\udc25\ud839\udc3c\ud83c\udc36\ud82c\udc59\ud83d\udc69\ud825\udc35\ud83c\udc3c\ud836\udc3b`.replace(/u../g,'')))",
},
{
code:
'c.width=-1;for(k=i=150;i--;)x[f="strokeRect"](i%6*64,i/5<<6,-37,i&3?40:20);for(;i++<k;x.rotate(11/7))x[f]((i*32+t*k)%620-300,(i/2<<5)-k,9,4)',
},
{
code:
"f=(X,y,r=80,a=0)=>r>6&&[0,.4,-.4,0].map(o=>o?f(X+r*S(a)*C(X*y/4e4+t),y-r*C(a),r*.8,a+o):x.lineTo(X,y));c.width=640;f(320,360);x.stroke()",
},
{
code:
"for(c.width|=f=(k,n=9)=>n&&C(n**.9*k)/n+f(k,n-1),x.translate(h=960,i=0);i++<h;x.fillRect(r=h/z,r,-2*r,9/z/z))z=i/42,x.rotate(f(z+3*t)/180)",
},
{
code:
"for(X=f=c=>S(S(9*c/d)*t),Y=t/8-1.1,i=2e3;i--;x.fillRect(i,t*60,(1+f(X=i/480-2)*f(Y))*(d/2+Y),3))x.fillStyle=R(C(r=X*X+Y*Y)*125),d=r>1||T(r)",
},
{
code:
"for(let i=2e3,f=(x,n,c=8-(t+6)*n)=>~n&(x*x*n*n+(8+(t-12)*n)**2+c*c-5)**2/16+c*c>1?f(x,n+=.002):c;i--;)x.fillRect(i,t*180,f(i/135-7,.7),3)",
},
{
code:
"c.width+=X=Y=Z=d=.19;for(i=9e3;i--;)X+=d*(-d*X+S(Y)),Y+=d*(-d*Y+S(Z)),Z+=d*(-d*Z+S(X)),;x.lineTo(960+99*(X*C(t)-Y*S(t)),560-99*Z);x.stroke()",
},
{
code:
"f=(x,y,n=w)=>x<n?f(x*x-y*y-.8,2*x*y+.2,n-1):S(n/9);for(w=c.width=99,i=6e3;i--;);x.fillRect(X=i%w,Y=i/w,1,f((X-49)/t**8,(Y-28)/t**8-.703956))",
},
{
code:
"for(f=c=>Math.tanh((r>1?3:13)*S(9*c/d)),Y=t/3-1,i=2e3;i--;x.fillRect(i,t*180,(1+f(X)*f(Y))*(d/2+Y/3.6),3))X=i/540-16/9,r=X*X+Y*Y,d=r>1||C(r)",
},
{
code:
"for(i=2e3,f=(X,Y,n=89)=>X<9?f(X*X-Y*Y-.8,2*X*Y+.2,n+2):x.fillStyle=`hsl(${n*2} 90%${n/2}%`;i--;x.fillRect(i,t*90,1,900))f(i/490-2,1-t/6)",
},
{
code:
"for(let i=1920,f=(x,y,n=256)=>x*y<n?f(x*x-y*y-.8,2*x*y+.156,n-1):1-n/256;i--;x.fillRect(i,t*180,1,3))x.globalAlpha=f(i/540-16/9,1-t/3)",
},
{
code:
"for(let i=1920,f=(x,n=420,a=0,b=0)=>a*a+b*b<n?f(x,n-1,a*a-b*b+x,2*a*b+.1133-t/4615):n/420;i--;)x.fillRect(i,180*t,f(i/8e5-.7467),3)",
},
{
code:
"for(c.width=i=640,n=32,q=2*t%1*n|0;i--;x[X>7&X<12&[810,865,1858,9808][q>>3]>>i/8+X+6?'fillRect':'strokeRect'](X*n-q,(i&-n)-q,n,n))X=i%n",
},
{
code:
"for(i=t?c.width|=C=_=>u[j=q+n&-n|p/n]=-!u[j]|1:p=q=r=s=571;i--;u[i]||x.fillRect(i?i%n*n:p+=r*=C(p+=r),i?i&-n:q+=s*=C(q+=s),z=i?n:15,-z))n=64",
},
{
code:
"c.style.filter='sepia()invert(';r=Math.random;A=X=r()*4-2;B=Y=r()*2-1;for(q=i=540;i--;x.fillRect(X*q+1200,Y*q+q,1,1))X=X*X-Y*Y+(Y=2*Y*X+B,A)",
},
{
code:
"for(c.width=i=620;i--;x.lineTo(310*(z+p*S(b))/z,300*(3+q*C(a))/z))q=i/8&1||-1,p=4-q*S(a=S(a=S(b=i/98+2*t)+b)/2+a/2),z=8+p*C(b-=t);x.stroke()",
},
{
code:
"eval(unescape(escape`\ud874\udc7c\ud87c\udc28\ud873\udc3d\ud85b\udc2e\ud82e\udc2e\ud822\udc20\ud831\udc33\ud844\udc5c\ud86e\udc46\ud838\udc32\ud843\udc5c\ud86e\udc45\ud841\udc35\ud834\udc5c\ud86e\udc36\ud839\udc42\ud837\udc22\ud85d\udc2c\ud854\udc3d\ud830\udc29\ud82c\udc6f\ud86e\udc6b\ud865\udc79\ud875\udc70\ud83d\udc6e\ud83d\udc3e\ud828\udc51\ud83d\udc73\ud85b\udc76\ud83d\udc54\ud82b\udc5b\ud82d\udc31\ud82c\udc35\ud82c\udc31\ud82c\udc2d\ud835\udc5d\ud85b\udc33\ud826\udc6e\ud82e\udc77\ud868\udc69\ud863\udc68\ud85d\udc5d\ud829\udc3e\ud822\udc30\ud822\udc3f\ud873\udc5b\ud873\udc5b\ud854\udc5d\ud83d\udc51\ud82c\udc54\ud83d\udc76\ud85d\udc3d\ud822\udc20\ud822\udc3a\ud830\udc2c\ud864\udc3d\ud864\udc6f\ud863\udc75\ud86d\udc65\ud86e\udc74\ud82e\udc62\ud86f\udc64\ud879\udc2c\ud864\udc2e\ud869\udc6e\ud86e\udc65\ud872\udc48\ud854\udc4d\ud84c\udc3d\ud822\udc3c\ud870\udc72\ud865\udc3e\ud822\udc2b\ud873\udc2e\ud86a\udc6f\ud869\udc6e\ud860\udc60\ud82c\udc64\ud82e\udc73\ud874\udc79\ud86c\udc65\ud82e\udc66\ud86f\udc6e\ud874\udc53\ud869\udc7a\ud865\udc3d\ud827\udc35\ud865\udc6d\ud827\udc3b`.replace(/u../g,'')))",
},
{
code:
"for(i=1920;i--;x.fillRect(i&-T,i%T*T,T=32,T))x.fillStyle=`hsl(${T*t},99%,${u[i]=u[i]*.94+T/Math.hypot(i/T-T-C(3*t)*20,i%T-16-S(4*t)*9)||0}%`",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc30\ud82c\udc30\ud82c\udc7a\ud83d\udc31\ud865\udc34\ud82c\udc7a\ud829\udc2c\ud869\udc3d\ud832\udc30\ud83b\udc69\ud82d\udc2d\ud83b\udc29\ud866\udc6f\ud872\udc28\ud86a\udc3d\ud872\udc3d\ud828\udc69\ud82a\udc31\ud839\udc2d\ud869\udc2a\ud869\udc2b\ud839\udc29\ud82a\udc2a\ud82e\udc35\ud82a\udc34\ud87c\udc30\ud83b\udc6a\ud82d\udc2d\ud83b\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud839\udc36\ud830\udc2b\ud828\udc6a\ud83e\udc72\ud82f\udc32\ud83f\udc54\ud83d\udc39\ud839\udc3a\ud831\udc32\ud829\udc2a\ud872\udc2a\ud843\udc28\ud861\udc2a\ud83d\udc36\ud82f\udc72\ud829\udc2c\ud869\udc2a\ud835\udc30\ud82c\udc54\ud82a\udc53\ud828\udc61\ud829\udc2c\ud835\udc30\ud829\udc29\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud852\udc28\ud876\udc3d\ud869\udc3f\ud831\udc34\ud830\udc2d\ud843\udc28\ud853\udc28\ud869\udc29\ud82a\udc54\ud82a\udc28\ud828\udc61\ud83d\udc6a\ud82b\udc74\ud825\udc31\ud829\udc2f\ud87a\udc2b\ud854\udc29\ud82a\udc2a\ud832\udc29\ud82a\udc54\ud83a\udc30\ud82c\udc76\ud82a\udc69\ud82f\udc39\ud82c\udc76\ud829\udc3b`.replace(/u../g,'')))",
},
{
code:
"c.width|=f=(X,Y,d,z=2+X*S(a=Y-4*t))=>d>>8?x.fillRect(960+1e3*X*C(a)/z,540+1e3*Y/z,6,6):[t,t+2,t+4].map(i=>f(X+C(i)/d,Y+S(i)/d,2*d));f(0,0,2)",
},
{
code:
'x[f="fillRect"](0,0,2e3,2e3);for(i=600;i--;x.fillStyle=R(i*T))x[f](T=800,199+i,i?M=24+C(t)*20:320,6),x[f](T-i*2,T+i,M+i,C(i/150))',
},
{
code:
"for(i=c.width|=0;j=--i>>5;x.fillRect(960*(z+S(j*j)+r*C(i))/z,3e3*(.2+m*(m<0&&-1)**i)/z,s=--m*9/z,s))m=(t+j/7)%2-1,r=m>0&&m/3,z=2+S(j)+r*S(i)",
},
{
code:
"for(c.width=w=480,i=999,f=g=>S(i)*g(t)+r*S(i*w)*g(t+8);i--;x.fillText('#=*-.'[z-9|0]||'',240+w*f(S)/z,135+w*r*C(i*w)/z))r=2+C(i),z=15+2*f(C)",
},
{
code:
'x.shadowColor="#0af",x.shadowBlur=99-C(t)*50;for(i=0;i++<40;x.fillRect(960-z-j/2,1070-i*5,z*2+j,-z*4))z=2e3/(i-t%32),j=i%3*z',
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc3d\ud831\udc38\ud830\udc3b\ud863\udc2e\ud873\udc74\ud879\udc6c\ud865\udc3d\ud827\udc66\ud869\udc6c\ud874\udc65\ud872\udc3a\ud862\udc6c\ud875\udc72\ud828\udc31\ud870\udc78\ud829\udc69\ud86e\udc76\ud865\udc72\ud874\udc28\ud827\udc3b\ud866\udc6f\ud872\udc28\ud874\udc2f\ud83d\udc31\ud832\udc2c\ud869\udc3d\ud833\udc65\ud833\udc3b\ud86d\udc3d\ud869\udc26\ud831\udc2c\ud876\udc3d\ud831\udc36\ud82d\udc6d\ud82a\udc32\ud82c\udc70\ud83d\udc35\ud82a\udc28\ud869\udc25\ud834\udc38\ud83c\udc31\ud838\udc29\ud82c\udc69\ud82d\udc2d\ud83b\udc29\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc6d\ud82a\udc35\ud830\udc2b\ud838\udc30\ud82b\udc70\ud82a\udc53\ud828\udc50\ud83d\udc69\ud82a\udc2a\ud82e\udc37\ud82b\udc74\ud829\udc2b\ud876\udc2a\ud843\udc28\ud856\udc3d\ud869\udc2a\ud82a\udc2e\ud835\udc2b\ud874\udc2d\ud874\udc2a\ud86d\udc2a\ud831\udc2e\ud835\udc29\ud82c\udc6d\ud82a\udc32\ud830\udc2b\ud834\udc30\ud82b\udc70\ud82a\udc43\ud828\udc50\ud829\udc2b\ud876\udc2a\ud853\udc28\ud856\udc29\ud82a\udc43\ud828\udc21\ud870\udc2a\ud869\udc29\ud82c\udc31\ud82c\udc2e\ud837\udc2d\ud86d\udc2a\ud82e\udc35\ud829\udc3b`.replace(/u../g,'')))",
},
{
code:
"t>1&&eval('U='+parent[c.style=9*u.r|reset()].u);U(t);if(t%1>.8)for(c.width=128,i=1e4;i--;)x.fillRect(i&127,0|i/120-t*4,1,u.r=Math.random())",
},
{
code:
"for(c.width|=j=9;j--;)for(i=60;i--;x.fillRect(960+j*Z*50*S(j)+(99*S(i*22)*Z),540+i*S(v=i/60)*C(v-t*3+j)*Z,Z*2,Z*9*S(i/16-4)+5))Z=2**T(t/5+j)",
},
{
code:
"//TBD: remove comments;for(W=i=688;i--;x.clearRect(W+q*C(u=i*W+t)/T*W,W+(4+C(t))*S(i)/T*W,T=q*S(u)+9,T))x.fillRect(0,i*2,2e3,1.3),q=6+5*C(i)",
},
{
code:
"for(k=i=960;--i;x.fillRect(k+S(i*j)*6+S(m=k*j^k)*r,540+C(m)*r,s=3e5/k*S(j*9),s))j=i/k+t/4,r=1e5/i,x.fillStyle=R(i,i/3)",
},
{
code:
"c.width|=c.style.filter=`blur(9px)contrast(900%)`;x.scale(80,99);for(i=2;i--;x.fillText(~~v%10,9,9))x.fillStyle=R(0,v=t+i/2,0,S(v*6.28+5)+1)",
},
{
code:
"with(x)for(r=m=>C(++h)*m,t||fillRect(0,0,i=h=2e3,h),translate(w=960,540);i-->0;clearRect((z=i%19)*i,a=r(z?89:-1),r(z?4:w),-2*a))rotate(r(h))",
},
{
code:
"c.width|=f=(X,Y,w)=>X*X+Y*Y<=2e6*S(t/9)**2?w>9&&f(X,Y,w/=2)|f(X+w,Y,w)|f(X,Y+w,w)|f(X+w,Y+w,w):x.strokeRect(X,Y,w,w);f(x.lineWidth=4,4,1072)",
},
{
code:
"for(c.width|=i=640;i--;x.stroke())x.beginPath(),x.strokeStyle=`hsl(${i},99%,50%)`,x.arc(99*S(t-i/9)+i*3,i%160*8-99,a=99**C(i/14+t)+14,a,0,7)",
},
{
code:
"eval(unescape(escape`\ud877\udc69\ud874\udc68\ud828\udc78\ud829\udc66\ud86f\udc72\ud828\udc63\ud82e\udc77\ud869\udc64\ud874\udc68\ud87c\udc3d\ud869\udc3d\ud832\udc3b\ud869\udc2d\ud82d\udc3b\ud863\udc6c\ud869\udc70\ud828\udc73\ud874\udc72\ud86f\udc6b\ud865\udc28\ud829\udc29\ud829\udc66\ud86f\udc6e\ud874\udc3d\ud828\udc31\ud834\udc2d\ud869\udc2a\ud839\udc29\ud82b\udc27\ud865\udc6d\ud822\udc27\ud82c\udc66\ud869\udc6c\ud86c\udc54\ud865\udc78\ud874\udc28\ud827\udc4d\ud861\udc67\ud86e\udc69\ud866\udc79\ud869\udc6e\ud867\udc20\ud847\udc6c\ud861\udc73\ud873\udc27\ud82c\udc36\ud839\udc30\ud82d\udc21\ud869\udc2a\ud828\udc7a\ud83d\udc35\ud834\udc30\ud82d\udc43\ud828\udc74\ud829\udc2a\ud834\udc38\ud830\udc29\ud82c\udc35\ud837\udc30\ud82b\udc21\ud869\udc2a\ud833\udc30\ud829\udc2c\ud878\udc5b\ud866\udc3d\ud827\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud827\udc5d\ud83d\udc27\ud823\udc46\ud846\udc46\ud827\udc2c\ud878\udc5b\ud866\udc5d\ud83d\udc52\ud828\udc21\ud869\udc7c\ud87c\udc66\ud869\udc6c\ud86c\udc28\ud861\udc72\ud863\udc28\ud837\udc32\ud830\udc2b\ud87a\udc2f\ud832\udc2c\ud835\udc34\ud830\udc2c\ud832\udc35\ud830\udc2c\ud830\udc2c\ud837\udc29\ud829\udc29`.replace(/u../g,'')))",
},
{
code:
"c.width|=v=(a,b,\u03a6,r)=>{for(i=~r;i++;)x.fillRect(a-=S(\u03a6),b-=C(\u03a6),s=r/9,s);r>15&&v(a,b,\u03a6-S(t),r*=.5)&v(a,b,\u03a6+C(r-t),r*=1.6)};v(940,1e3,0,230)",
},
{
code:
"c.style='filter:sepia()invert(';for(A=a=b=i=1e4;i--;a=a/2+(i*t/b&1)/4+b*S(a)/2,b=b/2+C(A*4.6)/3,A=a)x.fillRect(a*3e3+80,650-b*830,.3,t<2)",
},
{
code:
"F=f=>f(i)*(i)*i%19+t*f(i*i)*i**.3;for(i=5e3;t<8&&i--;x.fillRect(F(C)*9+970,800+F(S)*6-t*t*4,1,1));x.fillStyle=`hsl(98 50%${t*5-F(C)/8}%`",
},
{
code:
"for(c.width|=k=i=540;i--;x.strokeRect(960-i*2,k-i,i*4,i*2))n=i/7,x.setLineDash((t*k+1e5/i)%99>50?[n,n,0]:[n,0,n])",
},
{
code:
'c.width|=0;x.font="32em Eggzes";Life=["\ud83e\udd5a","\ud83d\udc23","\ud83d\udc25","\ud83d\udc24","\ud83d\udc13","\ud83c\udf57"];x.fillText(Life[i=(t>>1)%6],640+(i?0:S(t*29)*25),850-(i==2)*S((t%2)*1.4)*200)',
},
{
code:
"c.style.filter=`blur(9px)contrast(15)`;for(c.width|=i=9;i--;){x.fillStyle=R(99,40);x.fillRect(960+600*S(t/3+i),440+400*C(t/3+i/.6),200,200)}",
},
{
code:
"with(x)for(i=35;i--;fillStyle=R(320-r,160-r))for(j=6;j--;fill(ellipse(960,540,r=1.2**(i+t%2-2),5*r,(j+i/2+t/6)%6*Math.PI/6,0,7)))beginPath()",
},
{
code:
"for(i=c.width|=f=g=>22/7/(1+1e3**g(2*t+i%32/16));i--;x.fillText('dn',-6,3))x.setTransform(6,0,0,6,6*i+i%2*96,i%32*96-f(S)*61),x.rotate(f(C))",
},
{
code:
"c.style.filter=`blur(17px)contrast(2e3%)`;for(c.width|=i=11;i--;)x.fillRect(960+600*S(t+i),440+400*C(t+i/.6),200,200)",
},
{
code:
'for(c.width|=j=21,x.scale(5,5),x.lineJoin="round";j--;)for(i=26;i--;)x.arc(192,108,1.3**(r=j+i%2+t%2),a=(i+j)%24/3.8197+C(r)/2,a);x.stroke()',
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud873\udc74\ud879\udc6c\ud865\udc2e\ud866\udc69\ud86c\udc74\ud865\udc72\ud83d\udc22\ud862\udc6c\ud875\udc72\ud828\udc31\ud876\udc68\ud829\udc73\ud865\udc70\ud869\udc61\ud828\udc29\ud869\udc6e\ud876\udc65\ud872\udc74\ud828\udc2e\ud839\udc22\ud80a\udc66\ud86f\udc72\ud828\udc63\ud82e\udc77\ud869\udc64\ud874\udc68\ud83d\udc69\ud83d\udc2d\ud839\udc3b\ud82b\udc2b\ud869\udc3c\ud839\udc3b\ud852\udc3d\ud861\udc3d\ud83e\udc78\ud82e\udc6c\ud869\udc6e\ud865\udc54\ud86f\udc28\ud831\udc35\ud830\udc2b\ud861\udc2a\ud837\udc30\ud82f\udc28\ud87a\udc3d\ud86a\udc2d\ud874\udc2a\ud835\udc25\ud831\udc29\ud82b\udc43\ud828\udc74\ud829\udc2a\ud832\udc30\ud82c\udc39\ud830\udc2b\ud828\udc39\ud830\udc2b\ud853\udc28\ud86a\udc2b\ud874\udc2a\ud835\udc26\ud861\udc7c\ud839\udc29\ud82a\udc34\ud830\udc2d\ud861\udc2a\ud82a\udc34\ud829\udc2f\ud87a\udc29\ud829\udc66\ud86f\udc72\ud828\udc6a\ud83d\udc32\ud830\udc3b\ud878\udc2e\ud862\udc65\ud867\udc69\ud86e\udc50\ud861\udc74\ud868\udc28\ud878\udc2e\ud873\udc74\ud872\udc6f\ud86b\udc65\ud828\udc29\ud829\udc2c\ud852\udc28\ud869\udc29\ud82c\udc2d\ud82d\udc6a\ud83b\udc52\ud828\udc69\ud82b\udc31\ud829\udc29\ud852\udc28\ud869\udc29`.replace(/u../g,'')))",
},
{
code:
"for(z=k=2e3;k--;x.fillRect(i*9+S(z*t)*z|0,j*9+t*420,t?9:z,9))i=k%9,j=k/9|0,x.fillStyle=R(q=t?i*j%2*400*S(k*k*t):k/3+C(k*k)*39,q-99,t?q-k:99)",
},
{
code:
"eval(unescape(escape`\ud877\udc69\ud874\udc68\ud828\udc78\ud829\udc66\ud86f\udc72\ud828\udc63\ud82e\udc77\ud869\udc64\ud874\udc68\ud87c\udc3d\ud869\udc3d\ud832\udc34\ud830\udc2c\ud873\udc63\ud861\udc6c\ud865\udc28\ud833\udc2c\ud831\udc2e\ud835\udc29\ud83b\udc69\ud82d\udc2d\ud83b\udc61\ud872\udc63\ud828\udc33\ud832\udc30\ud82b\udc39\ud836\udc2a\ud853\udc28\ud861\udc3d\ud869\udc2f\ud82e\udc36\ud833\udc36\ud836\udc2d\ud874\udc29\ud82c\udc32\ud837\udc30\ud82b\udc39\ud836\udc2a\ud843\udc28\ud861\udc29\ud82b\udc69\ud82c\udc69\ud83e\udc32\ud832\udc30\ud83f\udc35\ud836\udc3a\ud833\udc32\ud82c\udc28\ud862\udc3d\ud869\udc2f\ud82e\udc32\ud831\udc32\ud832\udc2b\ud874\udc29\ud82d\udc2e\ud834\udc38\ud835\udc2c\ud862\udc2b\ud833\udc2e\ud836\udc32\ud829\udc29\ud869\udc25\ud836\udc3f\ud873\udc65\ud874\udc4c\ud869\udc6e\ud865\udc44\ud861\udc73\ud868\udc28\ud869\udc3c\ud832\udc30\ud83f\udc5b\ud831\udc30\ud82e\udc33\ud85d\udc3a\ud869\udc3e\ud831\udc32\ud830\udc3f\ud85b\udc31\ud835\udc32\ud82c\udc33\ud834\udc2c\ud832\udc32\ud836\udc2c\ud830\udc5d\ud83a\udc5b\ud85d\udc29\ud83a\udc62\ud865\udc67\ud869\udc6e\ud850\udc61\ud874\udc68\ud828\udc73\ud874\udc72\ud86f\udc6b\ud865\udc28\ud829\udc29`.replace(/u../g,'')))",
},
{
code:
"for(c.width=k=800;k--;x.fillText('\u2b24',X-(q=3+S(Math.hypot(393-X,227-Y)/99-t)**3*49)*S(t*6),Y+q*C(t*6)))j=k%23,X=k*1.1+j%2*13-49,Y=j*26-49",
},
{
code:
"for(w=i=125;i--;)for(j=0;j<8;x.fillRect(i*20,j++?w*j+299*C((t*j*j+i/j|0)**3)/j:0,20,3e3))x.fillStyle=`hsl(${j**4-149} ${j*7}%${29*C(j)+39}%`",
},
{
code:
"eval(unescape(escape`\ud877\udc69\ud874\udc68\ud828\udc78\ud829\udc73\ud83d\udc28\ud858\udc2c\ud859\udc2c\ud872\udc2c\ud869\udc3d\ud830\udc29\ud83d\udc3e\ud87b\udc66\ud86f\udc72\ud828\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc6b\ud83f\udc27\ud823\udc66\ud866\udc66\ud827\udc3a\ud827\udc23\ud830\udc30\ud830\udc34\ud827\udc2c\ud862\udc65\ud867\udc69\ud86e\udc50\ud861\udc74\ud868\udc28\ud866\udc69\ud86c\udc6c\ud828\udc61\ud872\udc63\ud828\udc58\ud82c\udc59\ud82c\udc6b\ud83f\udc72\ud83a\udc32\ud865\udc33\ud82c\udc30\ud82c\udc37\ud829\udc29\ud829\udc3b\ud869\udc3c\ud831\udc2b\ud872\udc2f\ud836\udc3b\ud869\udc2b\ud82b\udc29\ud877\udc3d\ud869\udc2a\ud872\udc2c\ud821\udc6b\ud87c\udc72\ud83e\udc38\ud826\udc26\ud873\udc28\ud858\udc2b\ud853\udc28\ud861\udc3d\ud869\udc26\ud826\udc33\ud839\udc39\ud82a\udc74\ud82f\udc77\ud82b\udc6b\ud829\udc2a\ud877\udc2c\ud859\udc2b\ud843\udc28\ud861\udc29\ud82a\udc77\ud82f\udc32\ud82c\udc6b\ud82b\udc2b\ud83f\udc72\ud82a\udc28\ud82e\udc32\ud82d\udc43\ud828\udc6b\ud82a\udc6b\ud829\udc2f\ud835\udc29\ud83a\udc36\ud839\udc29\ud87d\udc3b\ud873\udc28\ud839\udc36\ud830\udc2c\ud835\udc34\ud830\udc2c\ud86b\udc3d\ud830\udc29`.replace(/u../g,'')))",
},
{
code:
"eval(unescape(escape`\ud866\udc6f\ud872\udc28\ud86b\udc3d\ud830\udc3b\ud86b\udc3c\ud837\udc36\ud838\udc3b\ud878\udc2e\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud828\udc69\ud82a\udc32\ud830\udc2c\ud86a\udc3f\ud86a\udc2d\ud834\udc3f\ud854\udc2a\ud86a\udc2b\ud854\udc2a\ud843\udc28\ud871\udc2f\ud839\udc29\ud82f\udc6a\ud82b\udc35\ud839\udc2a\ud843\udc28\ud871\udc2f\ud834\udc29\ud82f\udc6a\ud83a\udc54\ud82a\udc6a\ud82d\udc34\ud830\udc30\ud82b\udc33\ud839\udc2a\ud828\udc53\ud828\udc71\ud829\udc2a\ud82a\udc34\ud829\udc2b\ud833\udc39\ud839\udc2a\ud828\udc53\ud828\udc71\ud82f\udc33\ud832\udc29\ud83c\udc2e\ud837\udc29\ud83a\udc30\ud82c\udc54\ud83d\udc31\ud834\udc33\ud82c\udc6a\ud82d\udc34\ud83f\udc32\ud865\udc33\ud83a\udc31\ud865\udc33\ud82b\udc37\ud839\udc39\ud82a\udc43\ud828\udc71\ud82f\udc31\ud836\udc29\ud82c\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc53\ud874\udc79\ud86c\udc65\ud83d\udc52\ud828\udc6a\ud82a\udc54\ud825\udc32\ud831\udc34\ud82c\udc6a\ud82a\udc3d\ud832\udc35\ud82c\udc54\ud82d\udc6a\ud829\udc29\ud829\udc69\ud83d\udc6b\ud83e\udc3e\ud833\udc2c\ud86a\udc3d\ud86b\udc2b\ud82b\udc25\ud838\udc2c\ud871\udc3d\ud869\udc2b\ud874\udc2a\ud86a\udc2a\ud82a\udc33\ud87c\udc30`.replace(/u../g,'')))",
},
{
code:
"for(i=c.width=99;i--;)for(k=j=56;j-->-k;)x.fillRect(i,j/2+28,1/t,j>0?(S(j*j+i/j-t*7)+C(j**5-i/j*6+t)**3)*j/k:Math.hypot(j+t*9,i-k)/300/t)",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud873\udc74\ud879\udc6c\ud865\udc3d\ud827\udc66\ud869\udc6c\ud874\udc65\ud872\udc3a\ud869\udc6e\ud876\udc65\ud872\udc74\ud828\udc31\ud827\udc3b\ud866\udc6f\ud872\udc28\ud861\udc3d\ud862\udc3d\ud850\udc3d\ud833\udc2e\ud831\udc34\ud82c\udc69\ud83d\udc31\ud865\udc34\ud83b\udc70\ud83d\udc69\ud826\udc34\ud82c\udc73\ud83d\udc32\ud834\udc30\ud82b\udc70\ud82a\udc61\ud82a\udc33\ud835\udc2c\ud869\udc2d\ud82d\udc3b\ud861\udc2b\ud83d\udc28\ud828\udc74\ud82a\udc69\ud82f\udc62\ud826\udc31\ud829\udc2d\ud861\udc2b\ud862\udc2a\ud853\udc28\ud861\udc2a\ud850\udc29\ud829\udc2f\ud832\udc2c\ud862\udc2b\ud83d\udc28\ud82d\udc61\ud82a\udc62\ud82b\udc43\ud828\udc61\ud82a\udc50\ud829\udc29\ud82f\udc32\ud829\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud838\udc38\ud830\udc2b\ud873\udc2a\ud853\udc28\ud859\udc3d\ud862\udc2a\ud850\udc2b\ud870\udc2a\ud862\udc2a\ud839\udc29\ud82a\udc43\ud828\udc21\ud870\udc2a\ud861\udc2a\ud850\udc29\ud82c\udc34\ud839\udc35\ud82b\udc73\ud82a\udc43\ud828\udc59\ud82d\udc70\ud82f\udc32\ud829\udc2c\ud82e\udc30\ud833\udc2d\ud853\udc28\ud859\udc2b\ud870\udc2a\ud82e\udc34\ud829\udc2a\ud82e\udc30\ud833\udc2c\ud831\udc29`.replace(/u../g,'')))",
},
{
code:
"for(x.beginPath([X,Y=X,r=X]=t?d.shift():d=[666]),i=4;i--;i&&d.push([X+p/2,Y-q/2,r/2]))p=r*S(b=i*2.094),q=r*C(b),x.lineTo(X+p,Y-q);x.stroke()",
},
{
code:
"for(i=c.width|=p=355/226;i--;x[i&5?'arc':'moveTo'](960,600-50*z,2e3/z,b=((i>>3)*2+S(i*p)-z)/8%4*p,b))z=2.5-2*t%1+(i>>7)+C(i*p)/2;x.fill()",
},
{
code:
"eval(unescape(escape`\ud863\udc2e\ud873\udc74\ud879\udc6c\ud865\udc3d\ud827\udc66\ud869\udc6c\ud874\udc65\ud872\udc3a\ud869\udc6e\ud876\udc65\ud872\udc74\ud828\udc31\ud827\udc3b\ud866\udc6f\ud872\udc28\ud861\udc3d\ud862\udc3d\ud870\udc3d\ud833\udc2e\ud831\udc34\ud82c\udc69\ud83d\udc31\ud865\udc34\ud83b\udc69\ud82d\udc2d\ud83b\udc61\ud82b\udc3d\ud828\udc72\ud82d\udc61\ud82b\udc62\ud82a\udc53\ud828\udc61\ud82a\udc70\ud829\udc29\ud82f\udc35\ud82c\udc62\ud82b\udc3d\ud828\udc2d\ud861\udc2a\ud862\udc2b\ud843\udc28\ud861\udc2a\ud870\udc29\ud829\udc2f\ud835\udc29\ud869\udc26\ud831\udc26\ud826\udc78\ud82e\udc66\ud869\udc6c\ud86c\udc52\ud865\udc63\ud874\udc28\ud839\udc36\ud830\udc2b\ud831\udc36\ud830\udc2a\ud843\udc28\ud859\udc3d\ud861\udc2a\ud834\udc2d\ud82e\udc33\ud829\udc2c\ud835\udc34\ud830\udc2b\ud831\udc36\ud830\udc2a\ud843\udc28\ud858\udc3d\ud862\udc2a\ud870\udc2b\ud870\udc2f\ud832\udc29\ud82a\udc53\ud828\udc59\ud829\udc2c\ud873\udc3d\ud853\udc28\ud858\udc29\ud83e\udc30\ud83f\udc2e\ud831\udc3a\ud830\udc2c\ud873\udc2b\ud853\udc28\ud858\udc2d\ud834\udc29\ud82a\udc2a\ud82e\udc39\ud87c\udc7c\ud873\udc2c\ud872\udc3d\ud869\udc2a\ud874\udc2f\ud862\udc26\ud831\udc29`.replace(/u../g,'')))",
},
{
code:
"c.style='filter:invert(1';for(a=b=0,i=1e4;i--;a+=.3*(r-a+b*S(a*3.1)),b+=.3*(-a*b+C(a*3.1)))i&8&&(r=i*t/b&3,x.fillRect(a*960,b*480+480,.2,1))",
},
{
code:
"c.style='filter:invert(1';for(a=b=0,i=1e4;i--;a+=.3*(r-a+b*S(a*3.14)),b+=.3*(-a*b+C(a*3.14)))i&1&&(r=i*t/b&1,x.fillRect(a*1920,b*960,.2,1))",
},
{
code:
"x.fillRect(0,0,w=2e3,w);for(let i=480;i--;x.strokeRect(0,560+i,w,w))x.setLineDash([i]),x.lineDashOffset=-960%i+i*t*5,x.strokeStyle=R(i)",
},
{
code:
'eval(unescape(escape`\u573d\u7425\u333c\u2e32\u3f36\u342b\u5328\u4328\u742a\u3929\u292a\u393a\u573b\u666f\u7228\u693d\u3235\u363b\u692d\u2d3b\u782e\u6669\u6c6c\u5265\u6374\u2869\u2a38\u2c30\u2c38\u2c38\u2929\u782e\u6669\u6c6c\u5374\u796c\u653d\u693c\u2831\u3238\u2d57\u2d54\u284d\u3d74\u2f32\u2531\u2e35\u2929\u7c7c\u693e\u5428\u4d29\u2b36\u342b\u573f\u2223\u3461\u6522\u3a60\u6873\u6c28\u302c\u3025\u2c24\u7b54\u2874\u2a33\u292b\u284d\u3e2e\u3035\u292a\u3235\u2a28\u312b\u2869\u3e36\u342b\u572f\u3329\u297d\u2529\u603b\u782e\u6472\u6177\u496d\u6167\u6528\u632c\u302c\u3429`.replace(/u(..)/g,"$1%")))',
},
{
code:
"t?c.width=99:X=Y=W=V=1;onmousemove=E=>A=E.y/7;x.fillRect(X+=V=X>96|X<9&X>4&V<0&Y>A-4&Y<A+9?-V/.96:V,Y+=W=Y%52?W:-W,4,4);x.fillRect(4,A,5,9)",
},
{
code:
"for(c.width=640,i=8;i--;x.stroke())x.beginPath(R=3+12**.5*C(t+=22/21)),j=i<2,x.arc(320+150*(2*!i-j),180+260*S(t)*!j/R,130/(j||R*R)**.5,0,7)",
},
{
code:
"for(i=c.width|=m=0;i--;m=1)x.globalAlpha=.3+m/3,z=C(i*i)-1.07,x.fillRect(m&&960*(z+2-(i**.2+t/3)%4)/z,540-m*32/z,s=m?i%9/z:2e3,32*s)",
},
{
code:
"for(i=c.width|=f=g=>g(a=S(t))*(Math.asin(S(z+t))-2*a+i%2*2-1)+z*g(a-8);i--;x.strokeRect(960+f(C)*h,540-h/2,h/42,h))z=(i/60+t)%32,h=1500/f(S)",
},
{
code:
"eval(unescape(escape`\ud855\udc3d\ud834\udc33\ud831\udc3b\ud877\udc69\ud874\udc68\ud828\udc78\ud829\udc66\ud86f\udc72\ud828\udc66\ud86f\udc6e\ud874\udc3d\ud822\udc37\ud832\udc65\ud86d\udc20\ud869\udc6d\ud870\udc61\ud863\udc74\ud822\udc2c\ud866\udc69\ud86c\udc6c\ud853\udc74\ud879\udc6c\ud865\udc3d\ud827\udc23\ud831\udc30\ud833\udc32\ud827\udc2c\ud866\udc69\ud86c\udc6c\ud854\udc65\ud878\udc74\ud828\udc5a\ud83d\udc69\ud83d\udc32\ud830\udc32\ud830\udc2c\ud839\udc2c\ud831\udc65\ud833\udc2c\ud831\udc39\ud830\udc30\ud829\udc3b\ud869\udc2d\ud82d\udc3b\ud874\udc2b\ud83d\udc69\ud825\udc55\ud83f\udc30\ud83a\udc39\ud829\udc71\ud83d\udc74\ud825\udc34\ud82c\udc51\ud83d\udc5a\ud82a\udc28\ud874\udc3e\ud83e\udc32\ud829\udc2c\ud854\udc3d\ud871\udc2a\ud855\udc2a\ud853\udc28\ud869\udc29\ud82c\udc63\ud86c\udc65\ud861\udc72\ud852\udc65\ud863\udc74\ud828\udc53\ud828\udc69\ud82a\udc69\ud829\udc2a\ud854\udc2b\ud851\udc25\ud839\udc36\ud837\udc2b\ud855\udc2c\ud855\udc2b\ud851\udc25\ud855\udc2b\ud843\udc28\ud869\udc2a\ud869\udc29\ud82a\udc54\ud82d\udc71\ud82a\udc33\ud839\udc39\ud82b\udc71\ud82a\udc71\ud82a\udc55\ud82c\udc66\ud83d\udc34\ud82b\udc69\ud825\udc35\ud82c\udc66\ud829\udc3b`.replace(/u../g,'')))",
},
{
code:
"for(c.width|=i=159,x.translate(960,99);i--;x.fillText(r+'\u2003____ ____\u2003'+r,S(a/137)*S(a/69)*i-44,9))x.scale(q=1.03,q),r=(a=i+t*60|0)%37?'\u2003':'\ud83c\udf35'",
},
{
code:
"c.width|=0;x.scale(23,23);for(i=96;i--;)for(j=54;j--;)if((i^j)%(g=2+~~t%7))x.fillRect(i+S(t*4+j/g)-1,j+S(t*4+i/g)-1,z=.9,z)",
},
{
code:
"for(i=n=c.width|=0;--i;x.fillRect(960+C(i/9)*y+S(3*t)*y-(k||((i&2)-1)*(2+i%7)*y),540-y,2*k||y/7,k/42||i%9*y))y=3/((i+27*t)/n%1-1),k=i%2*y",
},
{
code:
"t*=44;for(c.width|=i=99;i--;x.fillRect(w+z*(y%8-2),y%4*k,3,-q))z=5e3/(i-t%1),x.fillRect(w=960-z+(S((y=t+i|0)/9)-C(t/9))*z,k=540+z,q=z*2,3)",
},
{
code:
"eval(unescape(escape`\ud874\udc3f\ud863\udc2e\ud877\udc69\ud864\udc74\ud868\udc7c\ud83d\udc6f\ud86e\udc6d\ud86f\udc75\ud873\udc65\ud86d\udc6f\ud876\udc65\ud83d\udc65\ud83d\udc3e\ud858\udc3d\ud865\udc2e\ud878\udc2a\ud833\udc3a\ud857\udc3d\ud85a\udc3d\ud841\udc3d\ud85b\udc5d\ud83b\udc66\ud86f\udc72\ud828\udc69\ud83d\udc39\ud83b\udc69\ud82d\udc2d\ud83b\udc57\ud83e\udc51\ud826\udc57\ud83c\udc51\ud82b\udc35\ud830\udc26\ud85a\udc3e\ud843\udc26\ud85a\udc3c\ud833\udc30\ud830\udc3f\ud841\udc5b\ud869\udc5d\ud83d\udc31\ud83a\udc30\ud829\udc78\ud85b\udc46\ud83d\udc27\ud866\udc69\ud86c\udc6c\ud852\udc65\ud863\udc74\ud827\udc5d\ud828\udc51\ud83d\udc34\ud830\udc30\ud82b\udc69\ud82a\udc43\ud82b\udc53\ud828\udc74\ud829\udc2a\ud833\udc30\ud830\udc2c\ud843\udc3d\ud839\udc39\ud82c\udc35\ud830\udc2a\ud821\udc41\ud85b\udc69\ud85d\udc2c\ud832\udc30\ud830\udc29\ud83b\udc78\ud85b\udc46\ud85d\udc28\ud858\udc2d\ud834\udc31\ud82c\udc31\ud865\udc33\ud82c\udc43\ud82c\udc43\ud829\udc3b\ud878\udc5b\ud846\udc5d\ud828\udc57\ud82c\udc5a\ud83d\udc5a\ud83c\udc2d\ud843\udc3f\ud828\udc57\ud83d\udc58\ud82c\udc31\ud830\udc38\ud830\udc29\ud83a\udc5a\ud82d\udc32\ud830\udc2c\ud831\udc39\ud82c\udc43\ud829\udc3b`.replace(/u../g,'')))",
},
{
code:
"for(x.fillRect(x.globalAlpha=.1,0,i=2e3,i);r=--i*S(t/3);x.clearRect(960+r*S(a)*C(i)/z,540-r*S(i)/z,s=z>0&&6/z,s))z=1+r/2e3*C(a=i*i+t/9)*C(i)",
},
{
code:
"for(x.fillRect(N=0,0,i=2e3,i),v=540;Y=S(b=--i**3);x.clearRect(960+v*X/d,v-v*Y/d,Z*=5,Z))Y/=Z=1+C(++N)*C(b),X=S(N)*C(b)/Z,d=X*X+Y*Y+T(t)",
},
{
code:
"for(x.fillRect(0,0,i=2e3,i),v=540;Y=S(b=--i**3);x.clearRect(960+v*X/d,v-v*Y/d,Z*=6,Z))Y/=Z=1.2+C(++t)*C(b),X=S(t)*C(b)/Z,d=X*X+Y*Y+.1",