-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·899 lines (853 loc) · 95.7 KB
/
Copy pathindex.html
File metadata and controls
executable file
·899 lines (853 loc) · 95.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
<!DOCTYPE html>
<html>
<head>
<title>Tuesday JS web visual novel engine</title>
<link rel="shortcut icon" href="icon.jpg" type="image/x-icon">
<meta charset="UTF-8">
<meta content="#5f5196" name="theme-color" charset="UTF-8">
<meta name="description" content="simple web-based free and open source visual novel editor, it can be used in web browser. The engine uses standard HTML elements DOM this allows the use any media format supported by browsers, including vector graphics svg, gif animations and css styles.">
<meta name="keywords" content="วิชวลโนเวลเอ็นจิ้น,웹 비주얼 노벨 노블 엔진,Interactive Fiction,Visual Novel,Fairy Tale,Kinetic Novel,Open Source,视觉小说引擎,ビジュアルノベル・エンジン,движок визуальных новелл,motor de novelas visuales,moteur de roman visuel">
<meta name="author" content="Kirill Live">
<meta name="viewport" content="width=device-width, user-scalable=no">
<style>
:root {
--base_a:#9d92c8;
--base_b:#b5add7;
--base_c:#786bae;
}
body {
min-width: 480px;
background:var(--base_b);
}
* {
font-family: Arial;
font-size: 14px;
color: #fff;
border-collapse: collapse;
border: none;
margin: 0;
padding: 0;
border-spacing: 0px;
outline: none;
text-decoration: none;
box-sizing:border-box;
-webkit-tap-highlight-color: transparent;
}
@keyframes bg-scrolling {
100% {background-position:/*center left,*/ right bottom, -64px -64px, 0 0;}
}
.title {
width: 100%;
height: 100vh;
min-height: 600px;
display: grid;
align-items: top;
justify-content: center;
padding-top:30vh;
background:
/* no-repeat center left / auto 90% url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='100%' height='auto' viewBox='-500 0 5457 7372'%3e%3cdefs%3e%3clinearGradient xlink:href='%23lg8' id='lg7' x1='1233' y1='1003' x2='546' y2='2034' gradientUnits='userSpaceOnUse' gradientTransform='translate(2104,430)' /%3e%3clinearGradient id='lg8'%3e%3cstop style='stop-color:%23f7dbc9;' offset='0'/%3e%3cstop style='stop-color:%23e4bca6;' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient xlink:href='%23lg8' id='linearGradient1591' x1='2206' y1='2660' x2='3947' y2='3095' gradientUnits='userSpaceOnUse' /%3e%3clinearGradient xlink:href='%23lg6' id='lg5' x1='1298' y1='1282' x2='834' y2='1657' gradientUnits='userSpaceOnUse' gradientTransform='translate(310,-1594)' /%3e%3clinearGradient id='lg6'%3e%3cstop style='stop-color:%239587c8;' offset='0'/%3e%3cstop style='stop-color:%236f61a9;' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient xlink:href='%23lg6' id='linearGradient2501' x1='2355' y1='2224' x2='1545' y2='3811' gradientUnits='userSpaceOnUse' /%3e%3clinearGradient xlink:href='%23lg4' id='linearGradient4490' x1='2611' y1='532' x2='2338' y2='1005' gradientUnits='userSpaceOnUse' /%3e%3clinearGradient xlink:href='%23lg4' id='lg2' x1='941' y1='576' x2='726' y2='900' gradientUnits='userSpaceOnUse' gradientTransform='translate(2103,-344)' /%3e%3clinearGradient id='lg4'%3e%3cstop style='stop-color:%23965b32;' offset='0'/%3e%3cstop style='stop-color:%236c4124;' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient xlink:href='%23lg3' id='lg1' x1='901' y1='461' x2='851' y2='672' gradientUnits='userSpaceOnUse' gradientTransform='translate(483,-280)' /%3e%3clinearGradient id='lg3'%3e%3cstop style='stop-color:%23d40000;' offset='0'/%3e%3cstop style='stop-color:%23a90000;' offset='1'/%3e%3c/linearGradient%3e%3clinearGradient xlink:href='%23lg3' id='linearGradient5184' x1='2284' y1='245' x2='2181' y2='688' gradientUnits='userSpaceOnUse' /%3e%3c/defs%3e%3cpath style='fill:url(%23linearGradient4490);' d='m 1831,894 -29,-64 -21,-105 -2,-88 12,-97 42,-97 36,-58 -5,-20 -10,-2 48,-76 87,-94 98,-70 114,-41 111,-14 91,2 120,27 97,36 110,80 20,48 5,212 14,223 2,116 -30,-17 -34,8 -17,23 -18,215 40,-45 44,-57 -28,138 -19,127 2,63 -59,47 -29,-15 -39,-11 -40,8 -53,23 -47,-48 v -94 l 38,-36z'/%3e%3cpath style='fill:%239587c8;' d='m 2340,4924 68,97 68,47 72,19 70,-27 72,-64 47,58 12,35 -31,180 -31,78 -43,29 h -25 l -45,-25 -136,-109 -52,-68 -27,-66z m 2286,2132 54,17 50,-4 33,-31 21,-47 10,-58 -8,-85 -19,-87 -37,-103 -47,-109 -91,-142 -62,-76 52,12 87,39 50,39 31,56 87,72 6,37 -21,21 -37,21 21,70 78,111 27,72 14,72 -25,116 -74,165 -45,60 -23,6 -23,-10 -64,-122z'/%3e%3cpath style='fill:url(%23linearGradient1591);' d='m 1831,898 -1,42 21,62 43,74 83,101 65,76 -4,48 -17,80 -52,34 -23,-6 -78,-34 -64,-7 -64,7 -53,22 -40,35 -63,67 -82,130 -219,339 -120,248 -79,174 -55,52 -64,72 -96,127 -156,241 -93,144 -71,89 -115,74 -67,53 -90,72 -56,28 -107,37 -73,200 31,-3 46,-43 38,-69 11,-21 4,21 -17,155 5,30 17,-11 28,-45 12,22 19,-7 10,-11 72,-25 44,-26 60,41 3,-27 -23,-44 -5,-13 66,-34 146,-76 37,-54 34,-84 51,-82 156,-170 192,-228 149,-152 58,-90 169,-334 300,601 146,1417 215,313 177,197 27,81 30,129 42,58 47,51 74,37 64,-1 54,-23 66,-67 66,5 67,-8 54,-25 37,-38 25,-51 53,123 126,188 134,171 36,74 84,75 52,84 66,94 87,90 65,22 82,-7 89,-44 52,-50 41,-53 32,-71 14,-64 -10,-99 -44,-60 -112,-112 -119,-110 -65,-82 -53,-101 -41,-212 -69,-265 -76,-270 -82,-209 -83,-185 -552,-612 -364,-612 267,-605 69,-71 40,-61 81,-82 109,-70 85,-38 39,-40 24,-26 22,-42 39,-60 58,-16 49,-23 37,-41 22,-50 22,-93 20,-104 19,-83 39,-60 -41,-128 -98,-53 -18,-40 -73,-1 61,-164 63,-207 13,-118 -26,-22 -35,40 -36,61 -89,194 -80,160 -34,56 -11,-20 -24,-201 -47,-253 -31,-82 -19,-26 -25,-15 -19,17 -9,71 20,405 -2,131 -35,-16 -32,11 -10,15 -7,121 -15,106 55,-61 37,-50 -34,140 -19,94 7,91 -52,47 -23,6 -18,-11 -38,-12 -52,5 -39,24 -38,24 -11,-47 1,-124 44,-37 51,-48 47,-64 4,-25 -32,-120 -34,-69 -38,-43 -60,-24 -50,-35 -33,-30 -27,-68 -13.1,-148.1 -34.5,48.0 -61.2,68.8 -39.1,31.8 -70.5,26.0 -112.5,21.1 -24.1,-5.1 L 1882,693.5 c 12.5,-37.5 33.6,-43.4 -16.6,1.6 L 1859,714 l -10,39 -2,52 -6,73 z'/%3e%3cpath style='fill:url(%23linearGradient2501);' d='m 2021,1385 -65,40 -73,48 -116,56 -136,71 -39,15 -86,16 -74,37 -49,48 -45,63 -33,101 -12,72 26,102 44,66 52,48 41,22 17,153 21,114 81,177 19,44 9,79 -1,100 -26,181 14,234 -1,172 6,118 14,97 17,183 54,140 66,115 48,114 22,143 12,54 30,45 57,38 79,35 116,16 11,-3 -187,-276 -36,-52 49,-50 95,-58 109,-55 121,-21 108,4 178,47 200,69 137,41 74,14 46,-1 43,-17 44,-34 42,-66 42,-95 35,-108 14,-117 -2,-126 -22,-153 -101,-65 -131,-108 -59,-102 -89,-131 -80,-89 -100,-91 -127,-80 -68,-47 -35,-51 -20,-84 19,-117 52,-226 56,-174 89,-204 -42,7 -57,-42 -33,-41 -38,-17 -80,-2 v -118 l 17,-132 33,-105 49,-99 29,-44 -72,46 -31,53 -48,101 -33,101 -24,126 -9,83 -30,9 -127,-1 -146,-11 -150,-29 -116,-36 -114,-58 -23,-23 66,-26 96,-42 127,-75 94,-71 62,-56z'/%3e%3cpath style='fill:%23fcfcfc;' d='m 1877,793 c 0,0 7.0441,25.36407 13.1348,36.91914 5.0523,9.58517 10.5406,19.66291 19.1078,26.29648 C 1914.8395,860.54928 1929,864 1929,864 l 50,13 39,-3 c 0,0 14.3879,-14.50321 18.1937,-23.70942 6.4584,-15.62273 8.9744,-33.5605 6.5485,-50.29058 -2.0931,-14.43512 -8.4996,-30.75743 -8.4996,-30.75743 L 1973,727 l -54,16 -31,24 z m 407,12 c 0,0 -2.5563,35.05779 0.8063,52.09686 2.7623,13.99703 6.1617,29.18032 15.6453,39.83901 C 2309.8847,907.53776 2338,917 2338,917 l 41,11 39,-3 29,-8 23,-24 13,-55 -73,-57 -45,-8 z m -225,300 46,13 113,5 -24,33 -42,17 -38,-6 -28,-13 -24,-29 z m 1531,4666 50,19 66,-2 85,-29 64,-50 47,-60 34,-60 20,-91 -4,-90 80,110 115,200 166,305 101,157 84,117 77,91 66,93 66,117 45,111 34,136 8,87 -18,84 -32,39 -36,20 -56,-11 -30,-15 -52,-123 -45,-86 -100,-144 -63,-100 -82,-154 -40,-50 -108,-114 -130,-122 -222,-201 -194,-175 z m -1285,-1034 105,94 120,74 121,73 33,14 -20,32 -53,44 -50,16 -53,-5 -57,-26 -67,-60 -46,-91 -24,-113 z'/%3e%3cpath style='fill:%231d3362;' d='m 1427,1733 141,-52 55,44 127,55 150,35 156,19 137,8 87,-12 27,134 -152,9 -181,-1 -96,-7 -18,69 3,130 27,111 6,181 33,113 95,172 81,148 92,217 77,215 36,40 18,92 2,33 50,124 123,224 108,165 135,141 -202,-73 -82,-186 -115,-199 -92,-170 -41,-102 -12,-68 -25,-75 -91,-204 -94,-192 -56,-92 -75,-87 -21,-45 -47,-186 -29,-166 -12,-66 -20,-34 -9,-36 -8,-85 17,-93 11,-45 -160,-57 -97,-71z'/%3e%3cpath style='fill:%23a3a3a3;' d='m 1420,1723 16,-39 39,-39 44,-6 45,35 -8,23 -52,26 -54,14 -23,-2z m 340,165 5,-21 23,-25 74,-48 23,-21 22,8 1,16 -30,33 -53,57 -22,11 -27,4z m 563,72 23,-9 22,-45 7,-67 -13,-20 -40,-8 -44,14 -14,23 4,35 17,47 26,29z'/%3e%3cpath style='fill:url(%23linearGradient5184);' d='m 1376,762 38,-41 59,-43 67,-11 74,2 46,-7 31,-15 36,-32 59,-77 15,-17 23,-60 41,-65 39,-46 50,-43 55,-33 72,-32 83,-20 101,3 104,23 38,33 40,2 71,49 61,74 52,100 41,131 20,175 -14,190 -27,117 33,-36 46,-91 -54,46 7,-82 14,-152 40,-10 36,27 -13,-150 -36,-123 -56,-102 -77,-101 -59,-50 -61,-39 -85,-38 -100,-21 h -95 l -82,14 -73,28 -79,45 -92,79 -45,23 -60,-73 -81,-104 -34,-30 -80,-13 -132,12 -85,21 40,31 50,48 42,58 51,70 28,14 84,10 61,8 7,20 -61,4 -119,29 -53,36 -33,33 -32,52 -28,80 -13,76z'/%3e%3cpath style='fill:%236babeb;' d='m 2344,821 -7,31 16,54 29,18 27,-7 27,-31 17,-42 -8,-39 -35,-34 -39,4 -15,22 z m 74,-87 23,21 42,9 24,-59 10,-39 -24,-18 -36,-8 -24,52 -18,33 z m -444,-3 41,10 9,64 -5,36 -17,33 -52,-5 -20,-41 -4,-41 15,-33 18,-23 z'/%3e%3cpath style='fill:%23000;' d='m 4737,7291 c -18,-18.8 -57.9,-94.7 -96.2,-183.3 -95.2,-219.8 -112.4,-254 -161.4,-320.6 -82.7,-112.3 -81.6,-110.6 -167,-270.7 -60.9,-114.3 -120.2,-179.8 -347.3,-383.9 -31.6,-28.4 -80,-72.6 -107.5,-98 -53.4,-49.6 -145.7,-132.8 -195.7,-176.6 -104.1,-91 -193.6,-197.2 -261.6,-310 -25,-41.6 -33.6,-52.4 -51.2,-65.2 -46.9,-33.9 -76.2,-69.8 -88.5,-108.3 -2.9,-9.2 -31,-49 -70.7,-99.8 -132.1,-169.5 -191.7,-260.2 -230.5,-350.8 l -15.1,-35.2 -7.4,14.4 c -29.8,58.4 -97.3,93.4 -180,93.3 -29,0 -52.8,0.8 -52.8,1.8 0,1 8.4,13.5 18.6,27.8 36,49.8 36.8,55.3 21.5,145.5 -37.9,224.2 -85.9,256.7 -216.9,146.5 -163,-137.1 -166.9,-144.3 -188.2,-352.6 -17.4,-170.6 -35.9,-223.4 -103,-294.9 -25.1,-26.8 -60.1,-65.1 -77.6,-85.2 l -31.9,-36.4 -34.8,-4.5 c -187.9,-24.3 -273.3,-87.4 -284,-210.2 -10.1,-115.3 -38.2,-196.4 -108.7,-314 -66.5,-111 -82.5,-163 -89,-290.4 -1.9,-37.2 -7,-93.7 -11.4,-125.3 -14.9,-108.4 -16.2,-130.4 -14.4,-240.9 1.3,-86.4 0.3,-124 -5.4,-185.2 -9.5,-102.5 -9.1,-121.4 4.6,-217.4 28.2,-196.7 23,-258.1 -30.6,-364.3 -61,-120.8 -72.7,-155 -80.6,-238 -10.3,-108.8 -13,-132.9 -15.5,-139.7 -2.6,-7.3 -43.2,68.3 -145,270.7 -52.8,105.1 -69.7,128.2 -166.1,227.7 -43.2,44.7 -107.2,114.8 -142,155.8 -78,91.7 -108.5,126.4 -182.4,207.3 -98.9,108.2 -121.6,140.4 -149.2,211.5 -32.1,83 -46.7,99.4 -121.4,136.1 -64.8,31.9 -145.9,77.8 -145.9,82.6 0,1.6 1.9,4.2 4.2,5.6 7.1,4.4 22.5,41.2 22.6,54 0,27.2 -8.5,25.5 -58.6,-11.4 l -10.6,-7.8 -37.3,19.6 c -20.5,10.8 -45.1,21.8 -54.6,24.4 -9.5,2.6 -22.6,9.8 -29.3,16 -13.9,12.9 -27.7,13 -34.1,0.3 -3.9,-7.8 -4.6,-7.3 -13.2,8.8 -31.5,59.3 -50.6,28.7 -36.9,-59.1 8.8,-57 11.7,-85 10.3,-102.7 -0.3,-4.2 -6.4,6.6 -13.5,24.2 -21,52 -75,108.2 -103.8,108.2 -19.3,0 -17.9,-6.1 24.6,-109.2 17.3,-42 32.5,-82.2 33.6,-89.3 2.4,-15.1 12.1,-21 62.4,-37.5 81.5,-26.8 99.8,-37.5 184.1,-107.2 66,-54.6 122.5,-95.7 169,-122.9 44.6,-26.1 94.5,-94 234.3,-318.8 113.8,-183.1 200.8,-299.7 285.1,-382.3 l 37.4,-36.7 41.7,-90 c 39.8,-85.8 92.4,-195 147.7,-306.4 19.4,-39.1 25.4,-55.1 25.4,-67.7 0,-101.7 99.1,-261.3 173.8,-279.7 18.1,-4.4 46.4,-36.5 74.8,-85 104.8,-178.9 221.5,-233.1 364.7,-169.4 53.1,23.6 54.4,23.8 80.1,10 33.8,-18 39.3,-31.3 45.8,-109.9 l 2.6,-31.4 -27.8,-29.9 c -22.8,-24.5 -97.6,-121 -133.5,-172.4 -31,-44.4 -53.6,-109.2 -48.9,-140.8 1.9,-12.8 0.7,-19.6 -5.1,-29.8 -36.8,-63.6 -57.3,-222.1 -39.8,-308.6 6.1,-30.2 5.7,-30.1 -22.6,5.9 -58.2,74.1 -89.5,93.8 -145.2,91.4 -125.9,-5.2 -182.2,18.7 -235.1,100.3 -17.3,26.7 -18.2,21.7 -7,-35.6 35.9,-182.5 108.9,-256.4 272.5,-275.5 55.3,-6.4 61.4,-7.8 61.4,-13.4 0,-8.5 -10.7,-10.4 -75.2,-13.4 -85.3,-3.9 -85.1,-3.8 -135.1,-74.1 -68,-95.6 -109.6,-137.5 -151.7,-152.5 -35.4,-12.6 110.1,-42.4 205.9,-42.1 94.6,0.3 107.7,6.8 161,80.4 22.7,31.3 57.9,75.2 78.3,97.6 43,47.3 38.5,47.4 71.5,-1.5 109.2,-162.4 223.2,-242.7 384.3,-270.5 165.3,-28.6 408.7,42.7 488.8,143.2 l 15.7,19.8 2.3,-12.4 c 21.5,-114 110.1,24.4 127.1,198.7 2.5,25.9 26.7,165 31.3,180.2 1.2,4.1 6.8,44.7 12.4,90.2 5.6,45.5 11.8,82.6 13.9,82.4 5.1,-0.3 111.4,-214.1 163.2,-328 71.2,-156.7 121,-212.3 142.3,-158.4 13,33.1 -53.5,276.8 -122.8,449.4 -8.7,21.6 -15.8,40.3 -15.8,41.4 0,1 15.5,1.7 34.5,1.3 40.1,-0.7 43.6,1 49.8,26.8 4,16.8 6,19.1 22.4,26.5 90.3,40.3 78.5,27.7 104.7,112.5 l 18.8,61 -7.5,14.7 c -4.1,8.1 -11.6,19.7 -16.6,25.8 -20.6,25.1 -38,86.4 -51,180 -18.9,136 -51,199.6 -116.9,230.8 -9.4,4.4 -23,10.9 -30.2,14.4 -7.1,3.4 -18.5,6.2 -25.1,6.2 -19.7,0 -49.1,35 -75.4,90.1 -13.2,27.6 -19.2,35.7 -36.5,48.7 -11.3,8.5 -20.6,16.9 -20.6,18.6 0,5.2 -38.6,27.1 -80.8,45.8 -41.9,18.5 -89.2,46.9 -109.2,65.5 -6.3,5.8 -26.2,23.6 -44.1,39.4 -51,44.8 -80.2,82.5 -88.3,114 -2.4,9.5 -24.1,57.8 -48.1,107.5 -65.8,136 -80.3,179.3 -124.3,370.5 -12.6,54.9 -28.2,121.4 -34.7,147.8 -34.6,140.9 -10.3,220.3 83.6,273.1 188.1,105.5 327,244.7 432.4,433.2 17.1,30.7 33.7,59.9 36.8,64.9 15.2,24.5 164,140.1 210,163.3 19.6,9.8 28.3,16.4 29.6,22.5 3.8,17.9 17.2,110 21.6,148.6 4.2,37.8 3.2,107.9 -2.4,180.6 l -2.2,28.8 32.6,80.6 c 17.9,44.3 43.1,106.4 56,137.9 37.1,90.9 69.4,195.3 136.5,440.6 48,175.9 81,310.1 88.4,360.3 18.6,126.6 83.7,226.8 224.3,345.4 152.9,129 268.5,289.9 420.7,585.7 98.2,190.7 188,337.9 283.6,464.6 45.7,60.6 45.5,60.4 100,78.6 88.7,29.5 127.9,55.3 155.5,102.4 17.6,30 22.8,35.6 66.4,71 49.3,40.1 60.5,64.1 41.2,88.6 -8,10.2 -41.9,32 -47.3,30.4 -1.7,-0.5 -2.2,2.1 -1,5.8 1,3.7 5.7,18.9 10.2,33.6 5.2,17.2 13.9,34.4 24.5,48 47.3,61 79.1,118.1 89,160.2 3.3,14.2 7.8,32.1 9.9,39.7 8.8,32 -5.1,110.1 -33.4,185.8 -58,155.4 -116.4,227.5 -153.3,189 z m 43.7,-7.6 c 41.7,-40.5 116,-203.5 126.9,-278.6 16.4,-112.5 -1.5,-161.8 -113.8,-312.1 -32.5,-43.5 -59,-80.2 -59,-81.6 0,-7.5 9.6,0 24.8,19.5 9.4,12.1 19.9,25.5 23.3,29.7 l 6.2,7.6 -2.5,-7.6 c -1.4,-4.2 -10,-37.3 -19.2,-73.6 -22.3,-88.4 -31.5,-118.5 -37.8,-123.7 -2.8,-2.4 -6.2,-9.3 -7.4,-15.3 -3.2,-16 -40.8,-54.7 -66.7,-68.5 -27.6,-14.7 -113.8,-44.6 -110,-38.2 1.5,2.5 10,13.3 18.8,23.9 133.2,159.2 218.6,355.6 230.4,530 8.9,131.7 -53.1,208.9 -140.3,174.5 -10.7,-4.2 -20.1,-7.6 -20.9,-7.6 -8.1,0 88.7,196 108.1,218.7 16,18.7 22.6,19.2 39.4,3 z m -51,-225.9 c 132.6,-81.9 26.3,-458.6 -203.4,-720.4 -106.9,-121.8 -218.9,-299.5 -360.8,-572.2 -83,-159.6 -215.8,-371.6 -208.6,-333.1 37.7,202.3 -176.2,416 -353.2,352.7 -10.8,-3.8 8.9,16.4 58,59.4 44.6,39.1 131.9,118 215.2,194.5 27.5,25.3 84.9,77.6 127.4,116.1 135.8,123.1 217.3,205.6 251.4,254.4 l 6.6,9.5 -3.5,-10.3 c -1.9,-5.6 -8,-19 -13.4,-29.7 -7.2,-14.3 -8.4,-19.4 -4.5,-19.4 2.9,0 13.6,17.5 24,39.3 45,94.3 120.3,235.4 149.2,279.3 13.1,20 43.2,62.4 66.7,94 47.2,63.6 67.3,99.8 114.1,205.4 l 31.5,71 30.1,10.6 c 33.7,11.9 51.9,11.5 72.9,-1.3 z m -132.9,-496.1 c 0,-13.3 -25.9,-125.2 -32.2,-139.2 -16.8,-37.1 -45.5,-61 -87.1,-73 -32.4,-9.2 -41.8,-13.6 -41.8,-19.8 0,-3.9 2,-4.8 6.7,-2.9 3.6,1.5 19.1,6.6 34.3,11.4 71,22.3 98.1,56.6 115.8,146.8 9.6,48.9 12.5,77.8 7.9,77.8 -2,0 -3.6,-0.4 -3.6,-1 z m 213.1,46.1 c 39.2,-25.6 36,-44.3 -14.7,-86.7 -18,-15 -33.9,-29.1 -35.2,-31.2 -5.8,-9.5 -8.7,-2.4 -4.2,10.5 2.7,7.9 10.6,38.1 17.6,67.2 6.9,29 13.7,52.8 15,52.8 1.3,0 11,-5.6 21.5,-12.5 z m -1066.4,-837 c 141.6,-50.5 232.7,-209.1 200.7,-349.3 -7.9,-34.6 -74.6,-115.3 -146.9,-177.5 -122.4,-105.4 -180.8,-170 -218.1,-241 -17.6,-33.5 -18.1,-32 -9.9,28 6.5,47.8 7.3,76.1 2,70.7 -2,-2 -9.8,-51 -17.3,-109.2 -22,-169.8 -36.5,-236.7 -107.7,-494.2 -80.8,-292.5 -105.9,-369.9 -164.7,-507.5 -12.1,-28.3 -27.9,-67.1 -35.2,-86.4 -7.2,-19.2 -14.1,-37.5 -15.4,-40.6 -1.2,-3.1 -7.1,14 -13.2,38.2 -6,24.1 -10.1,44.7 -9.2,45.7 0.9,0.9 0.2,3.6 -1.6,5.9 -1.8,2.3 -9.8,20.6 -17.7,40.6 -78.8,200.8 -149.3,242.6 -321.3,190.8 -39.5,-11.9 -74.5,-20.6 -77.7,-19.4 -3.2,1.2 -12.3,-1.6 -20.2,-6.3 -12.5,-7.4 -63.1,-26.7 -70.1,-26.7 -1.3,0 9.1,22.8 23.3,50.8 94.8,186.9 191.4,441 203.2,534.7 2.3,19 7.7,47.2 12,62.6 4.2,15.4 8.9,44.8 10.5,65.2 4.3,55.3 40.5,131.9 114.3,241.3 50.3,74.6 177.9,241.7 177.9,232.9 0,-2 -5.1,-19.6 -11.3,-39.1 -11.9,-37.3 -21.6,-80.2 -18.6,-83.1 0.9,-0.9 14.3,37.5 29.7,85.5 48.7,152.2 62.2,167.7 226.9,261.2 26.3,14.9 51.2,29.7 55.5,33 32.8,25.1 -77.3,-29 -121.9,-60 -14.6,-10.2 -13.8,-8.1 15.2,38.3 130.4,208.2 206.2,258 327,214.9 z m -138.9,-302.3 c -1.2,-9.5 -3.2,-28.8 -4.2,-42.9 -1,-14 -5.6,-44.9 -10.1,-68.4 -8.1,-42.4 -7.9,-57.4 0.4,-36 13.7,35.2 25.1,120 19.7,147.4 l -3.4,17.2 z m -943,-107.3 c 33.6,-27.7 57.5,-96.6 76.4,-220.9 9.2,-60.4 9,-61 -25.1,-109.6 l -21.3,-30.3 -31.5,31.5 c -90.2,90.3 -198,70.6 -287.6,-52.6 -10.8,-14.9 -21,-28.7 -22.6,-30.5 -1.5,-1.8 -2.1,3.3 -1.2,11.5 22.9,212.7 22.5,212.1 178.2,344 87.4,74.1 105,81.5 134.8,56.9 z M 2599.7,5066 c 33.3,-15.6 86,-69.7 72.9,-74.9 -27.6,-10.9 -58.3,-27.2 -74.8,-39.8 -10.1,-7.7 -43.7,-27.9 -74.5,-44.7 -82.3,-44.9 -124.6,-75.2 -187.3,-134.1 -15.2,-14.2 -28.2,-25.9 -29,-25.9 -0.7,0 3.2,14.2 8.9,31.6 5.6,17.4 14.2,55.8 19.1,85.4 23.2,141.6 164.3,249.5 264.7,202.5 z m 215.1,-83.1 c 132.6,-34.6 154.1,-139.3 65.2,-316.8 -12.9,-25.9 -22.8,-47.8 -21.9,-48.7 3,-3 20.9,23.8 38.6,58.1 15.6,30.3 17.5,32.6 15.5,19.1 -6.6,-45.3 -24.8,-98.9 -88.8,-261 -46.2,-117.1 -134,-302.2 -146.5,-308.8 -16.5,-8.7 -117.4,-42.6 -121.8,-40.9 -2.7,1 -6,0.3 -7.2,-1.6 -2.9,-4.7 -79.6,-28.5 -131.3,-40.6 -149.9,-35.2 -335.6,16.3 -474.4,131.9 -45.9,38.2 -45.1,34.4 -14.5,73.4 14.3,18.2 49.5,70 78.3,115 79.8,125.2 117.7,173.2 244.4,309.7 98.2,105.8 165.3,162.5 247.3,208.9 66.7,37.8 66.7,34.8 -0.6,-23.6 -19.4,-16.9 -34.4,-32.3 -33.3,-34.2 3,-5 27.2,15 86.4,71.5 51.7,49.4 87.6,75.2 115.4,82.7 39.9,10.8 118.4,13.9 149.2,5.8 z M 2112,4533.4 c 0,-0.8 -13.4,-19.4 -29.8,-41.2 -16.3,-21.8 -41.5,-57.8 -55.9,-80 -72.3,-111.5 -103.1,-157 -117.3,-172.8 l -15.5,-17.2 -10.7,12.9 c -91.8,111 -74.4,201 49,254.4 59.9,25.8 180.2,55.2 180.2,44 z m -265.3,-263.7 c 73.7,-122 240.4,-222.7 415.8,-251 l 14.1,-2.2 -8.8,-20 c -24.6,-55.5 -54.5,-113.5 -82.8,-160.1 -17.2,-28.5 -55.6,-96.7 -85.3,-151.6 -29.6,-54.9 -67.3,-120.5 -83.6,-145.9 -16.3,-25.3 -39.4,-64 -51.4,-85.9 -23.5,-43.1 -45.4,-77.2 -66.5,-103.4 -15.4,-19.1 -19.8,-45.3 -27.5,-163.8 -14.5,-222.4 -38.6,-309.7 -120.1,-435.1 -75.8,-116.7 -93.1,-179.2 -127.9,-463.9 l -6.6,-54.2 -23,-2.6 c -12.7,-1.4 -43.1,-7.8 -67.5,-14.2 -24.4,-6.3 -48.1,-12.4 -52.6,-13.5 -7.7,-1.8 -7.9,-1 -4.8,18.5 1.7,11.2 6.8,58.1 11,104 13.1,138.5 36.7,197.2 166.1,413.7 39.4,65.9 70.3,125.6 66.8,129.1 -1,1 -11.9,-14.9 -24,-35.7 -38.6,-66.3 -83.3,-141.3 -86,-144.4 -1.4,-1.6 -0.3,7.8 2.4,21 5,23.9 7.2,119.1 3.3,147.6 -1,8 -7.4,52.7 -13.9,99.2 -10.9,77.7 -11.7,89.5 -9.3,147.8 3.5,89 10.8,147.4 16.5,133.8 12.8,-30.3 14.7,-16.9 3.8,26.2 -14.8,58.5 -10.2,329.3 5.8,345.4 0.8,0.8 2.7,-14.4 4,-34 5.3,-75.7 28.2,-186.8 37.3,-181.2 2.1,1.3 2.8,5.4 1.6,9.1 -63.9,201.5 -42.9,449 51.7,609 69.4,117.3 110.6,230.4 111.5,306.5 l 0.2,15.8 7.5,-19.5 c 4.1,-10.7 14.2,-30.5 22.4,-44.1 z m 1192.4,-84.2 c 51.2,-25.9 101.4,-95.5 138.9,-192.6 16.4,-42.6 17.3,-39.2 -12.9,-47.3 -96.7,-25.6 -186.6,-75.2 -304.5,-167.8 -22.2,-17.5 -68,-53.4 -101.7,-79.8 -86.4,-67.7 -141.3,-121.9 -165.2,-163.2 -10.3,-17.9 -38.5,-65.9 -62.6,-106.5 -60.3,-102 -81.7,-143.5 -130.9,-254.3 -23.4,-52.8 -57.7,-125.3 -76.3,-161.2 -84.1,-163 -104.3,-245.2 -115.7,-470.4 -2.3,-45.4 -6.6,-104.7 -9.7,-131.8 -3,-27.1 -5.5,-51.3 -5.5,-53.7 0,-3 -12.4,-4.5 -39.3,-4.8 -54.3,-0.6 -101.2,-11.8 -156.1,-37.5 -48.1,-22.5 -91.6,-40.6 -97.3,-40.6 -2.2,0 -2.9,33.7 -1.7,87.3 3,141.8 20.7,193.2 128.8,374.2 76.8,128.6 170.5,340.9 229.3,519.4 23.1,70.4 18.6,67.1 64.6,47.6 29.3,-12.4 29.3,-12.4 29.3,-7.9 0,4.1 -32,21.3 -51,27.3 l -14.5,4.6 17.1,18.3 c 19.6,21 23.7,32.9 29.2,86.4 2.1,20.8 4.3,38.2 4.8,38.6 5.1,4.3 47.9,23.1 83.3,36.6 24.2,9.2 41,17.3 37.4,18 -9.3,1.8 -45.3,-9 -82.7,-24.9 -17.5,-7.4 -32.6,-12.7 -33.6,-11.7 -12.6,12.6 125.4,284.1 215.2,423.4 58.7,91 148.8,191.4 203.5,226.7 7,4.5 141.2,46.3 176.7,55 29,7.1 82.1,3.3 103.3,-7.3 z m -900.2,-1510 c -34.9,-40.2 -68.6,-69.3 -97.9,-84.5 -15.9,-8.2 -20.9,-12.4 -16,-13.4 21,-4.5 90.1,49.6 123.2,96.7 31,44.1 28.3,44.5 -9.1,1.3 z m 575.8,1438.2 c -11,-9.9 -24.2,-21.3 -29.4,-25.4 -87.1,-68.5 -308.2,-433.8 -351.4,-580.6 -5.6,-19.2 -11.4,-31.3 -16.4,-34.3 -4.2,-2.5 -26.5,-16.1 -49.5,-30.3 -22.9,-14.1 -42.4,-25 -43.2,-24.2 -7.8,7.8 59.8,147.3 126.4,260.5 104.5,178 118,203.1 164.6,306.5 34.7,77.2 38,82.8 49.9,87.2 51,18.7 163.1,58.2 165.8,58.4 1.8,0.1 -5.7,-7.8 -16.7,-17.7 z M 2535.5,4056 c -1.3,-3.6 -19.1,-43.3 -39.6,-88 -36.1,-78.9 -59.4,-121.9 -153.9,-284.1 -60.4,-103.7 -107.9,-198.4 -122.5,-244.1 -8.6,-27 -14.2,-38.6 -20.3,-41.8 -4.6,-2.4 -38.6,-26 -75.5,-52.5 -36.9,-26.4 -88.8,-62.3 -115.2,-79.8 -63.6,-42.1 -62.8,-41.4 -61,-46.7 0.9,-2.7 20.5,7.6 49.5,26.1 82.5,52.8 120.8,69.9 175.4,78.6 l 16.1,2.5 -7.9,-28 c -12.5,-44.4 -124,-290.3 -181.6,-400.7 -38.7,-74.2 -62.2,-110 -103.1,-157.4 -49,-56.7 -49.9,-58.4 -73.6,-138.2 -35.1,-118.5 -52.7,-205.4 -63.2,-311 -6.6,-66.5 1.6,-59.5 -69.4,-59.5 -58.4,0 -61,0.3 -61,7.6 0,16.6 20,170 29,222.7 26.2,153.1 37.8,184.9 104.7,288 81.2,125.2 100.8,197.8 119.6,444.5 9.7,127.3 9.8,127.9 40.4,170.5 13.7,19 32.9,49.6 42.8,67.8 9.8,18.2 34.5,59.9 54.9,92.6 20.4,32.7 60.5,102.7 89.1,155.5 28.6,52.8 67,121 85.4,151.6 29.9,49.9 59.8,107.9 84.5,163.5 l 8.6,19.5 39.8,2 c 42.1,2.2 104.3,14.8 164.6,33.4 43.6,13.4 46.5,13.7 43.4,5 z m 672.1,-160.4 c 27.4,-126.1 29.4,-205.9 8.3,-340.5 -5.3,-34.1 -9.7,-64.3 -9.7,-67.1 0,-2.7 -10.8,-10.3 -24,-16.9 -40.9,-20.5 -81.5,-50.3 -170.8,-125.5 l -20,-16.9 18.8,39.9 c 33.6,71.3 75.6,185.8 72,196.5 -2.2,6.6 -8.3,-7.1 -29.8,-67 -109.4,-305.3 -301.8,-551.9 -527,-675.3 -86.6,-47.4 -123.3,-96 -129,-170.3 l -2.2,-30.3 -18.6,57 c -17.6,53.7 -25.4,71.9 -25.4,58.7 0,-8.6 13.8,-57.6 32.5,-114.9 22.9,-70.2 37.8,-124.6 54,-197.7 50.9,-228.8 65.8,-275.1 133.1,-413.8 44.4,-91.6 45.1,-93.7 27.9,-87.2 -14.2,5.4 -42.3,-3.8 -65.6,-21.6 l -17.2,-13.1 2.5,22.3 c 7.5,66.4 -25.4,213.1 -64.3,286 -30.6,57.4 -126.1,121.4 -217.1,145.5 -26.3,6.9 -31.6,9.6 -31.6,16 0,4.2 2.5,32.9 5.6,63.7 3,30.8 7.4,91.4 9.7,134.7 11,211.2 31,290.8 113.7,451.2 19.5,38 53.9,110.5 76.3,161.2 48,108.4 71,153.3 127.5,248.3 23,38.6 50.3,85.8 60.7,104.7 21.8,39.7 69.3,90.2 126.4,134.4 19,14.7 59.6,46.7 90.2,71.2 168.1,134.3 238.7,174.9 364.8,209.9 17.8,4.9 17.6,5.2 28.2,-43.1 z m -3027,-277.3 c 18.8,-29.7 60.1,-168.5 52.4,-176.2 -0.4,-0.4 -13.3,1 -28.6,3.5 l -27.8,4.3 v 19.3 c 0,10.6 -4.5,49.7 -10.1,87 -12.7,84.5 -9.4,99.1 14,61.9 z m 52.3,-14.7 c 7.3,-7.3 8.7,-11 5.5,-14.2 -7.5,-7.5 -4.7,-16.9 11.3,-37.3 16.7,-21 22.4,-43.3 22.6,-87.3 0,-15.3 1.4,-20.1 5.8,-20.1 3.1,0 5.7,2.7 5.7,6 0,7.1 9.8,0.8 39.5,-25.2 22.7,-20 21.7,-21.3 -6.9,-9.6 -12.4,5 -34.1,12.1 -48.2,15.8 l -25.5,6.6 -2.1,25.3 c -1.2,13.9 -6.4,39.9 -11.6,57.9 -19.1,66.5 -17.4,103.5 3.8,82.2 z m 76.1,-38 c 37.2,-18.7 78.7,-49.1 78.7,-57.9 0,-2.9 9,-9.9 20.1,-15.5 11,-5.6 29.6,-16.2 41.2,-23.6 11.5,-7.3 50.3,-27.9 86.1,-45.6 95.5,-47.2 127.2,-92.4 130,-185.3 1,-38.7 9.3,-48.4 11,-13.1 l 1,22.2 14.4,-24.8 c 22.8,-39.1 43,-64.2 118.2,-146.5 38.6,-42.3 92.5,-103 119.9,-135 114.5,-133.7 142.6,-165 214.4,-239 80.5,-82.9 113.1,-125.7 140,-184 14.8,-32 131,-259.4 153.4,-299.7 l 12.9,-23.5 -24.8,-14.5 c -66.5,-38.9 -115.4,-110.2 -129.8,-189.3 l -4.5,-24.9 -59.1,120.7 c -32.5,66.3 -78.6,162.9 -102.4,214.5 l -43.2,93.8 -27.2,24.6 c -76.1,68.8 -181,208.9 -302.4,403.9 -77.6,124.7 -109.2,172.6 -147.9,224.3 -18.8,25.2 -35.8,49.7 -37.6,54.4 -1.8,4.7 -6.4,10.3 -10.3,12.4 -3.8,2 -9.4,8.2 -12.3,13.6 -5.3,10 -13.7,13.1 -16.1,5.9 -2.9,-8.8 -105.3,63.8 -189.6,134.7 -64.7,54.4 -95.3,71.4 -178.3,99.1 -45.6,15.2 -43.6,13.7 -51.7,38.9 -3.7,11.6 -14.4,39.2 -23.8,61.4 -13.4,31.6 -16.2,41.7 -12.9,46.9 5.9,9.6 5.3,13 -7.3,37.9 -13.1,25.9 -12.7,26.4 8.8,11.4 32.8,-22.7 53.6,-53 72.1,-104.6 11,-31 18.7,-42.6 18.7,-28.2 0,17.1 115.5,-9.1 190.3,-43.3 30.6,-14 31,-14.4 48.7,-44.9 18.5,-32.1 39.1,-59 42.5,-55.6 7,6.8 -104.4,179 -140.8,217.6 -17.7,18.7 -25.5,29.9 -24,34 2.3,6.1 -7,28.5 -12.1,28.7 -1.5,0 -7.9,4.5 -14.3,9.9 l -11.5,9.8 13.4,-2.2 c 7.3,-1.2 28.9,-10 48,-19.6 z m 827.6,-1094.8 c 0,-5.4 16.5,-33.2 34.1,-57.3 19,-26 25.6,-28.7 13.6,-5.4 -11,21.4 -47.8,69.7 -47.8,62.8 z M 410.1,3539.7 c -11.2,-20.2 -13.9,-20.9 -29.7,-7.7 l -12.9,10.7 24.5,17.6 24.5,17.6 1.2,-11 c 0.7,-6.5 -2.5,-17.8 -7.6,-27.1 z m -137.3,11.9 c 6.8,-12.8 3.7,-12.7 -9.7,0.2 -7.3,7.1 -13.4,14.4 -13.4,16.2 0,4.8 19,-8.6 23.1,-16.4 z m -209.5,-9.7 c 8.2,-19.7 6.6,-25.6 -1.8,-7.2 -7.5,16.2 -8.8,21 -5.8,21 1,0 4.4,-6.2 7.6,-13.9 z m 231.9,-34.2 c 10.2,-11.7 11.9,-16.5 11.9,-35 v -21.4 l -12.4,9.5 c -11.3,8.7 -12.6,11.8 -14.4,35 -2.2,29.3 -1,30.2 14.9,11.8 z m 45.3,-56.5 c 47.1,-65.6 49.5,-76.1 8.1,-36.4 -27,25.9 -29.1,29.1 -31.5,47.9 -3.3,25.8 -3.5,25.9 23.3,-11.5 z m 1978.5,-28 c -4.5,-44.6 -12.7,-64.7 -33.6,-81.4 l -14.6,-11.7 -32.3,4 c -17.7,2.2 -32.8,4.4 -33.4,4.9 -1.3,1 13.2,59.5 15.2,61 17.8,13.5 100,64 101.7,62.4 0.5,-0.5 -0.7,-18.1 -2.8,-39.2 z m -114.9,-38.7 c 0,-26 -16.1,-51.3 -32.7,-51.4 -6.4,0 -21.7,-2.6 -34.1,-5.9 -31.4,-8.1 -30.6,-6.9 17.9,28.1 41,29.6 48.9,34.3 48.9,29.1 z m 60.1,-64.2 c 5.5,-5.5 -49.8,-157.2 -111.5,-305.3 -57.5,-138 -74.5,-172.6 -140,-283.8 C 1906,2550 1890,2502.2 1886.6,2354 c -1.3,-58.1 -3.3,-87.3 -6.3,-89.2 -9.8,-6.3 -77,-26.8 -96.9,-29.5 l -21.4,-2.9 2.1,13.8 c 1.2,7.5 4.8,38 8.1,67.5 10.9,99.4 24.5,163.8 59.2,281.5 24.9,84.6 23.5,82 74.1,140.1 39.5,45.5 63.7,82.5 102.7,157.4 55.9,107.4 166.9,352 180.9,398.7 4.6,15.4 9.2,29.6 10.3,31.5 1.7,3 61.4,0.5 64.7,-2.7 z M 2212.4,2337 c 181.8,-34.9 281.7,-164.1 293.9,-380.5 5.7,-102.1 -27.6,-142.8 -107.3,-130.8 l -17,2.5 -2.2,29.6 c -5.1,66.1 -26.7,104.9 -62.4,112 -58,11.5 -343.9,12.5 -418.9,1.5 -15.9,-2.3 -16,-2.2 -20.1,12.5 -12.2,43.5 -17.7,123.9 -8.6,126.7 3.5,1 11.6,4.4 17.9,7.4 l 11.5,5.4 -16.3,-1 -16.3,-1 0.2,19.3 c 0.1,10.6 1.4,25.8 2.8,33.7 l 2.6,14.4 48,16.6 c 45.2,15.6 99.3,40.2 89.6,40.6 -2.4,0.1 -32.3,-9.5 -66.3,-21.4 -70.4,-24.5 -69.1,-24.7 -59.7,6.2 8.4,27.8 6.5,26.2 51.8,44.1 20,7.9 48.5,20.4 63.2,27.8 68.9,34.5 146.6,46.8 213.8,33.9 z m -334.8,-87.7 c 0,-0.5 -3.2,-12.1 -7.1,-25.9 l -6.9,-24.9 -24.2,-6.5 c -30.6,-8.3 -99.5,-19.9 -102.2,-17.2 -7.8,7.8 12,44.9 25.1,47 43,6.7 62.1,11 82.8,18.9 21,8 32.8,11 32.5,8.7 z m -142,-32.4 c 0,-1.3 -2.9,-11.7 -6.4,-23 l -6.4,-20.4 -17.5,-0.1 c -16.2,-0.1 -16.9,-0.5 -10,-5.7 4,-3.1 11.6,-5.6 16.7,-5.6 7.3,0 8.7,-1.4 6.5,-6.7 -11.4,-28.3 -4.9,-128.8 11.7,-181.3 10.6,-33.6 12.7,-30.7 -30.9,-44 -126.6,-38.7 -216.1,-98.6 -271.7,-182 -14.8,-22.3 -14.2,-38.2 2.6,-64 10.9,-16.7 0.2,-10 -26.4,16.5 -92.8,92.5 -125.9,249.6 -75,356.2 42.9,89.9 98.5,125.9 247.6,160.4 12.2,2.8 159.3,2.9 159.3,0.1 z m 121.4,-49.8 c -1.3,-9.7 -2.4,-24.7 -2.4,-33.1 v -15.3 l -25.9,2.5 c -14.2,1.4 -35.2,3.6 -46.6,4.9 -14.1,1.6 -19.9,1 -18.2,-1.6 3.1,-5 31,-11.3 64.3,-14.4 l 25.3,-2.3 2.2,-42.9 c 1.2,-23.6 5.4,-55.3 9.3,-70.4 l 7.1,-27.4 -21.3,-2.5 c -11.7,-1.4 -37.4,-6 -57.1,-10.2 -19.7,-4.2 -38,-6.8 -40.6,-5.8 -20.2,7.7 -40.6,192.3 -23.2,209.6 2,2 20.9,6.4 42.1,9.7 21,3.3 47,8.4 57.6,11.3 30.2,8.3 30.1,8.3 27.4,-11.8 z m 424.6,-203.5 21.9,-2.3 -10.7,-10 c -13.1,-12.2 -32.5,-67.5 -32.6,-92.6 v -17.3 l -32.8,3.1 c -73.6,7 -250.5,-6.2 -330.4,-24.9 -2.6,-0.6 -17,13.2 -32.1,30.7 -34.2,39.7 -50.3,51.3 -74.8,53.6 -51.4,4.9 -45.2,-40.4 10.3,-75.8 31,-19.8 31.9,-21.2 15,-24.5 -70.5,-13.8 -175.4,-58.9 -225.2,-96.9 -14.9,-11.4 -27.2,-19.1 -27.2,-17.1 0,11.8 -85.1,50.2 -111.4,50.2 -18.8,0 -18.9,-0.3 1.5,26.2 33,42.8 78.7,79.7 131.2,105.7 77.7,38.5 150,61.7 245.5,78.7 42.7,7.5 108.3,14.8 157.4,17.3 38.1,1.9 268.2,-1 294.5,-4 z m 57.8,-16.7 c 22.7,-17.9 39.7,-113.3 21.8,-122.9 -24.6,-13.1 -88.8,6.8 -91.3,28.5 -6.3,55.3 39.6,117.8 69.5,94.4 z m 267.2,-40.4 c 6.3,-5.3 12.7,-13.5 14.2,-18.2 3.5,-11.6 32.8,-52.1 47.7,-66 6.7,-6.3 16.4,-17.9 21.4,-25.7 19.5,-30.5 110.7,-93.9 179.6,-124.8 50.7,-22.7 61,-29.2 38.3,-23.9 -16.9,3.9 -66.8,4.7 -75.9,1.3 -14.1,-5.4 -5.3,-10.1 14.6,-7.8 63.8,7.4 130.2,-25.7 152.4,-76.3 4.6,-10.5 18.6,-32.8 31,-49.4 22.7,-30.3 24.3,-39.7 5.9,-35.3 -3.6,0.8 -6.7,0.2 -6.7,-1.4 0,-3.4 15.7,-6.8 44.8,-9.5 50.9,-4.7 111.5,-46.9 135.7,-94.4 18.7,-36.7 21.2,-48 44.6,-197.5 3.2,-21 10,-51 14.9,-66.7 l 8.9,-28.3 -11.6,11 c -6.4,6 -25.4,27 -42.3,46.5 -47.1,54.5 -80.5,34.4 -71.5,-43.1 2,-17.6 2.6,-18.2 -17.4,16.6 -32,55.5 -46.4,65.2 -65.8,44.3 -23.8,-25.6 -27.7,-91.6 -8.7,-143.9 l 9.2,-25.3 -21.3,21.6 c -11.7,11.9 -39,32.6 -60.6,46 -36.1,22.4 -39.4,25.4 -41.3,38.1 -4.3,29.6 -21.4,117.1 -23.2,118.9 -7.1,7.1 -7.8,-9.5 -1.6,-37.9 10,-46.3 19.1,-110.5 19.1,-135.8 0,-17.3 1.2,-21.5 6.2,-21.5 5.2,0 5.9,3.8 4.6,24.7 l -1.5,24.7 13.6,-8.2 c 78.3,-47.3 103.3,-74.5 115.2,-124.9 5.6,-24 2.2,-39.9 -4.9,-23 -5.2,12.3 -39.3,39 -63.7,50 l -17,7.6 -7.1,-8.7 c -3.9,-4.8 -8.6,-11.4 -10.4,-14.6 -2.8,-5.1 -7.7,-4.5 -39.9,4.9 -48,14.1 -54.9,18.8 -83.6,56.5 -40.6,53.3 -95.7,108.1 -102.2,101.5 -1.3,-1.3 14.8,-20 36,-41.6 21,-21.6 49.3,-53.7 62.6,-71.4 27.3,-36.3 36.7,-41.9 100,-59.6 42.3,-11.8 92.1,-29.9 92.1,-33.3 0,-5.9 -84.1,-11.9 -131.2,-9.3 -32.4,1.7 -49.2,1.3 -49.2,-1 0,-10.6 115.9,-13.2 166.8,-3.6 36.6,6.8 43.4,5.5 47.1,-8.9 3.6,-14 10.9,-12.7 9.3,1.6 -0.6,5.9 0.8,13.2 3.3,16.3 5.5,6.6 5.4,34.6 0,49.2 -6.1,16.2 -5,16 10.9,-1.9 17.9,-20.1 25.8,-17.1 9.1,3.5 -30.9,38.4 -55.5,115.5 -48.3,151.3 l 2.2,11.2 10.5,-19.2 c 27.1,-49.5 56.9,-67 79,-46.1 l 8.6,8 25.7,-38.7 c 30.5,-45.8 30.3,-41.6 7.3,-140.6 -19,-82.2 -21.5,-87.9 -36.9,-84.8 -6.5,1.3 -22.6,2.3 -35.7,2.3 h -23.7 l -18.5,44.1 c -10.2,24.2 -20.9,46 -23.8,48.4 -8.4,7 -6.5,-4.9 4.6,-30 123.5,-275.5 207.7,-596 149.2,-568.1 -26,12.4 -46.2,46.2 -104.7,175.4 -37,81.8 -130.3,271.9 -151,307.8 l -17,29.4 3.6,29.1 c 2,16 2.4,30.3 0.9,31.8 -7.1,7.1 -9.1,-5.1 -29.3,-174.4 -4,-34.2 -9,-69.6 -11,-78.7 -9.9,-44.2 -27.9,-148.2 -32.9,-190.3 -17.3,-144.7 -72.4,-260.7 -98.7,-207.8 -19.8,39.9 -18.8,141.7 4.4,447 14.9,195.2 17,258.5 8.1,244.2 -4.5,-7.4 -6.2,-2.8 -15.2,41.8 -4.4,22.1 -15.9,68.8 -25.4,103.6 -50.2,184.1 -23.7,296.8 85.2,362 19.4,11.6 25.3,18.1 16.4,18.1 -21.4,0 -87.4,-60.5 -106.6,-97.9 -13.4,-26.1 -14.7,-24.6 -6.3,7.4 7.5,28.8 4.2,32.8 -3.9,4.7 -5.4,-18.7 -7.8,-33.7 -9.2,-57.2 -1.7,-30.4 -73.3,52 -73.3,84.5 0,18.4 22.6,50.8 49.5,70.8 16.9,12.6 22.2,18.3 16.8,18.3 -20.8,0 -63.6,-44.9 -72.8,-76.5 l -6.1,-21 -9.1,11.3 c -29.5,36.5 -35.7,111.2 -13.4,161.7 13.4,30.3 13.8,31.9 8.3,31.9 -5.1,0 -20.8,-31.7 -28.4,-57.3 -14.2,-47.9 0.5,-113.2 34.8,-154 5.9,-7 10.2,-15.9 9.5,-19.7 -0.6,-3.8 0.7,-6.9 3.1,-6.9 6.9,0 -17.1,-18.7 -32.2,-25 -109.3,-45.6 -237.4,208.8 -232,460.8 l 1,53.7 38.4,0.2 c 33,0.1 41.4,1.6 60.3,10.2 l 21.9,10 -7.5,-19.2 c -10.5,-26.8 -16.8,-38.3 -42.8,-79.3 -12.5,-19.7 -21.7,-36.8 -20.5,-38.1 6.9,-6.9 55.8,71.7 77.4,124.6 5.6,13.8 38.6,-21.2 70.8,-75.4 17.6,-29.6 17.8,-33.1 1.7,-26.9 -13.1,5 -17.3,1.8 -7.3,-5.5 14.1,-10.4 114.7,-45 137.5,-47.1 26.5,-2.5 27.5,4.3 1.3,8.7 -8.9,1.4 -35.3,9.4 -58.5,17.6 l -42.2,14.9 -13.4,25.5 c -17,32.4 -41.7,66.7 -65.7,91.4 l -18.7,19.2 8,15.2 c 23.3,44.2 70.1,66.7 95,45.8 z M 3032,1368 c -1.7,-2.7 -4.6,-26.3 -6.5,-52.5 -4.2,-59.9 -6.9,-66 -47.5,-105.4 -22.1,-21.4 -31.9,-33.5 -29.4,-36.1 4.2,-4.2 61,48.7 73.2,68.3 12.7,20.5 22.9,145.2 10.2,125.6 z m 20.4,-146.8 c 0,-11.2 73,-77.8 78.9,-72 1.9,1.9 -69.3,73.2 -75.2,75.2 -2,0.7 -3.6,-0.7 -3.6,-3.2 z m -1236.2,663.3 c 7,-4.7 24.6,-22.4 39,-39.3 27.4,-32.1 42.9,-55 22.7,-33.5 -13.6,14.5 -17.4,15.2 -24.8,4.7 -10,-14.4 -87.1,41.8 -87.1,63.6 0,16.4 28.6,19 50.1,4.5 z m 419,-51.3 c 37.9,-3.2 38.9,-5.1 49,-95.4 17.9,-159.6 112.5,-393.6 159.1,-393.6 3.5,0 2.8,-5.7 -2.6,-22 -6.5,-19.2 -7.2,-29.6 -5.7,-80.3 l 1.7,-58.2 -29.9,15 c -61.9,31 -164.3,68 -243.3,87.6 -62.7,15.5 -74,14.7 -102,-7.4 l -14.5,-11.4 -2.4,22.1 c -7.8,72.2 -43.8,196.7 -59.7,206.5 -6.3,3.9 -3.7,-8 9.1,-41.5 l 10,-26 -45,39.1 c -53.7,46.8 -51.2,41.9 -31.9,62.9 14,15.2 15.7,19.1 15.7,36.3 0,28.9 -10.9,21.7 -11.6,-7.5 -0.1,-5.5 -6.4,-16.4 -14.8,-25.7 l -14.6,-16.1 -41.9,27.6 c -76.9,50.8 -186.5,105.3 -253.9,126.3 -32.2,10 -32.4,10.3 -13.4,25.1 49.7,38.6 114.4,66.9 215,94.2 l 35.5,9.6 18.8,-14.9 c 10.3,-8.2 23,-14.9 28.2,-14.9 24.4,0 42.2,-47.6 31.3,-84 -5.1,-17 7.6,-6.7 13.2,10.7 l 5.2,16.3 17.7,-16.9 c 52.6,-50.2 61,-47.5 11.5,3.7 -40.4,41.8 -62.5,72.4 -58.7,81.4 6.5,15.7 6.1,19.3 -2.7,22.7 -20.4,7.8 55.7,19.9 181,28.6 34.8,2.4 118.6,2.4 146.6,0.1 z m -99.3,-222.9 c 2.2,-3.5 28.3,-9.7 60.2,-14.2 7.3,-1 18.6,0.3 24.9,3 10.8,4.6 9.5,5 -22.8,7.5 -18.9,1.4 -41.2,3.7 -49.5,5 -9.7,1.5 -14.2,1 -12.7,-1.4 z m -112.3,-23 c 0,-11.3 35,-55.6 53,-67 18.1,-11.5 51.8,-25.1 137,-55.4 27.4,-9.7 67.5,-25.5 89,-35 45.1,-19.9 66.9,-21.4 29.1,-2 -29.5,15.1 -66.4,29.8 -143.1,57.1 -104.9,37.2 -134.8,56.6 -154.7,100 -4.5,10 -10.3,11.4 -10.3,2.4 z m 312.4,218.6 23.5,2.2 -1.2,-37.2 c -4.6,-136.2 40.7,-313.6 104.2,-406.8 11.8,-17.4 20.2,-31.6 18.5,-31.6 -8.8,0 -35.7,29.8 -48.1,53.4 -19.9,37.9 -30.6,41.8 -13.9,5.1 9.7,-21.5 7.8,-20.5 -8.6,4.3 -64.6,97.4 -121.7,285.7 -121.7,401.7 v 15 l 11.9,-4.1 c 6.7,-2.3 22.2,-3.1 35.5,-1.9 z m -440.6,-15.5 c 11,2.1 12,-3 1.4,-8.7 -8.7,-4.7 -20.7,0 -24.4,9.5 -1.9,4.9 -0.9,5.2 5.7,1.6 4.4,-2.3 12.1,-3.5 17.1,-2.5 z m -426.1,-63.9 c 23.1,-6.1 64.1,-25.7 79.4,-37.9 l 10.8,-8.6 -7.9,-10.1 c -30.5,-38.8 -77.7,-31.3 -110.6,17.5 -24.8,36.9 -14.8,50.7 28.3,39.2 z m 158.8,-74 c 72.9,-26.8 197.7,-93.1 254.9,-135.3 44.7,-33 129,-108.8 129,-116 0,-6.8 -14.6,4.1 -52.5,39.3 -38.2,35.5 -69.3,59.4 -72.7,55.9 -1,-1 4.6,-7.8 12.7,-15.1 8,-7.2 21.5,-19.6 30,-27.4 l 15.3,-14.2 -23.8,15 c -13.1,8.2 -77.3,42.4 -142.7,76 -65.3,33.5 -118.2,61.5 -117.5,62.1 0.6,0.6 13.7,-3.2 29,-8.7 29.8,-10.7 41.2,-11.3 25.8,-1.2 -25.5,16.7 -114.3,40.6 -175.7,47.3 l -24.7,2.6 13.9,7.1 c 7.6,3.9 18.8,12.3 24.7,18.7 13.2,14 20.6,13.4 74.2,-6.3 z m -67.3,-36.1 c 39.9,-5.6 44.3,-7.6 187.2,-81.3 l 121.9,-62.9 -13.2,-15.5 c -17.9,-21 -12.2,-24.4 7.9,-4.6 l 16.1,15.8 36.9,-23.9 c 20.3,-13.1 36.4,-24.3 35.8,-24.8 -21.2,-17.5 -112.7,-44.1 -152,-44.1 -104.3,0 -165.9,48.2 -260.7,204.2 -6.8,11.2 -16.1,26 -20.6,33 l -8.2,12.6 9.1,-1.9 c 5,-1 22.9,-3.9 39.7,-6.3 z m 907.4,-286.5 c 5.7,-3.5 11,-7 12,-7.7 0.9,-0.6 -4.4,-7.6 -11.9,-15.5 -7.5,-7.8 -15.5,-17.7 -17.8,-22 -5.9,-10.8 -6,11.3 -0.1,34.7 4.9,19.5 4.1,19.1 17.9,10.5 z m 45.3,-27.8 c 31.9,-20.2 63.2,-23.1 99.6,-9.1 5.1,1.9 3.7,-1.9 -5.5,-15.3 -16,-23.3 -28.9,-52.6 -34.9,-79.6 l -4.8,-21.5 -35.5,18 c -19.5,9.9 -46.9,21 -60.9,24.9 l -25.4,6.8 v 14.3 c 0,44.5 38.7,79.8 67.5,61.5 z m 186.6,-36.7 c 7.7,-9.8 7.7,-13 0.6,-48.8 -4.2,-21.4 -45.4,-6.3 -52.7,19.2 -4.3,15.1 -10.1,16.2 -10,1.8 0.1,-19.4 28.8,-43.1 52.1,-43.1 h 11.9 l 2.5,-33.6 c 1.3,-18.4 5.8,-46.4 10,-62.2 9.2,-35.4 8.2,-36.5 -14.3,-15 -9.9,9.5 -26,23.5 -35.7,31 -9.6,7.6 -21.8,22.2 -27,32.4 -10.4,20.3 -26.3,28.2 -26.3,13 0,-9.8 -0.2,-9.8 -17,0.1 -25.5,15 -6.7,80.9 38,132.9 l 13.9,16.1 23.2,-17.1 c 12.7,-9.4 26.7,-21.5 30.9,-26.8 z m -536.4,11.5 c 184.8,-43 341.8,-129.4 403.2,-221.9 19.1,-28.7 19.5,-36.4 5.7,-92.6 -30,-122 -61.3,-179.2 -106.1,-193.7 -14.4,-4.6 -35.8,-15.2 -47.4,-23.6 -11.6,-8.3 -27.2,-18.4 -34.7,-22.5 -50.4,-27.4 -80.6,-98.6 -81.8,-192.8 l -0.5,-48.4 -9.2,13.8 c -27,40.6 -88.1,104.8 -113.7,119.5 -51.8,29.6 -213,67.3 -213,49.8 0,-2.1 -9.9,1 -22,7 -36,17.8 -65.7,28.5 -73.5,26.5 -5.8,-1.5 -8.3,1.5 -12.9,15.8 l -5.7,17.7 12,6.5 c 14.6,7.9 34.4,2.7 40.4,-4.4 56.9394,-48.25384 101.0702,-23.50625 138.6,28.2 4.2881,5.90783 -4.9,15.4 -9.5,15.4 -3.2,0 -5.4,8.9 -6.6,27.8 -1,15.6 -4.7,39.5 -8.5,46.8 -5.1,9.9 -11.1073,20.94305 -7.5073,23.24305 15.9285,13.01789 -44.3748,4.54966 -71.1927,-1.64305 -17.1,-7.7 -20.9,-15.4 -6.1,-12.6 l 9.3,1.7 -8.3,-15.7 c -11.9,-22.5 -11.8,-69.8 0.1,-90.1 11.5,-19.4 11.4,-19.5 -9.6,-8.7 -29.3,15 -32.4,18.6 -37.5,42.9 l -4.7,22.6 -10.4,-15 c -5.7,-11.6 -13.6,-27.1 -17.5,-34.5 l -7,-13.4 0.2,49.9 c 0.1,37 -1.8,60 -7.9,88.9 -9.3,44.7 -7.5,62.2 11,103.7 36.7,81.6 199.7,281.7 238,292.2 15.3,4.2 22.2,3.4 74.7,-8.8 z m -19.4,-105.2 c 0,-2.2 2.6,-4.1 5.9,-4.1 6.2,0 36.3,-14.2 36.3,-17.2 0,-0.9 -8.2,-4.3 -18.2,-7.5 l -18.2,-5.7 18.2,0.6 c 25.8,0.9 32.3,-7 8,-9.9 -37.9,-4.5 -103.2,-6.4 -94.8,-2.7 4.5,1.9 9.5,5.6 11,8.1 2.6,4.3 -1.6,3.6 -21.2,-3.2 -10.6,-3.7 8.8,14.9 26,25 18.8,11 18.8,15.3 -0.1,9 -14.8,-4.8 -41.2,-30.7 -50.7,-49.6 -8.3,-16.5 -5.8,-18.4 14.1,-10.8 24.4,9.2 84.1,15.2 128.7,13 43.7,-2.1 43,-2.5 30,14.3 -17.8,23.4 -75.2,54.5 -75.2,40.7 z m -46,-190.2 c -7.8,-18.8 -7.1,-23.5 6.8,-42.9 15.4,-21.4 18.1,-16 5,9.9 -9.2,18.3 -9.5,20.2 -4,30.8 6.9,13.3 7.1,15.5 1.8,15.5 -2.2,0 -6.5,-5.9 -9.6,-13.3 z M 2354,928.1 c -14.6,-5.2 -22.3,-16.5 -8.2,-12 l 8.2,2.6 -8.7,-16.6 c -12.6,-24 -12.5,-75.3 0,-96.7 l 8.7,-14.8 -10.6,2.5 c -5.8,1.4 -22.5,7 -37,12.4 -27.5,10.3 -32.9,9.2 -33.1,-6.9 0,-10.4 99.8959,-56.37564 149.1345,-41.07126 25.9435,8.06377 44.7195,40.7439 54.5785,56.03238 5.6,8.6 6.987,16.23888 25.287,16.23888 25.1,0 25.5,-1.4 -10,41.9 -30.8,37.6 -33.6,39.3 -27.4,16.9 5.8,-21 4.9,-32.6 -3.3,-43.4 l -7.3,-9.5 -2.4,11.4 c -5.7,26.3 -15.5,46.8 -28.9,60.3 -7.8,7.9 -11.9,14.3 -8.9,14.3 2.9,0 5.3,1.5 5.3,3.3 0,8.7 -43.3,10.6 -65,2.7 z m 62.9,-26.4 c 32,-33.4 37.5437,-77.37241 9.2437,-103.87241 -37.9,-35.5 -76.7437,-13.02759 -82.7437,45.27241 -6.6,64.2 35.7,98 73.5,58.6 z m -43.7,-14.9 c -16.9,-18.2 -13.2,-55.9 7.5,-76.7 13.4,-13.4 23.9,-13.8 33.9,-1 29.4,37.4 -10,111.6 -41.4,77.8 z M 2265.6,749.2 c 0,-3.6 27.7,-15.8 35.5,-15.6 6,0.1 -24.4,19 -30.7,19 -2.6,0 -4.8,-1.5 -4.8,-3.4 z M 2037,713.1 c -11,-21.9 -10.9,-23.1 1.7,-9.5 6.4,6.8 11.7,15.1 11.7,18.2 0,10 -6,6.1 -13.5,-8.7 z m 451.5,489 c 35.5,-12.9 114.7,-56.4 117.9,-64.7 2.3,-6.1 -14.5,-100.5 -18,-100.5 -1.2,0 -6.1,7.4 -11,16.6 -11.6,21.9 -52.2,63.4 -93.8,96 -19.9,15.5 -33.5,29 -33.5,33.1 0,3.7 -1,12.2 -2.4,18.8 -3,15.3 0.5,15.4 40.9,0.6 z m 745.5,-87.9 c 22.8,-25.3 23.7,-34 5,-47.4 -25.4,-18.2 -84.6,69.3 -62.7,92.8 l 8.3,8.9 13.7,-15 c 7.5,-8.2 23.6,-25.9 35.6,-39.3 z m -132.5,33 c 18.7,-20.6 51.5,-83.1 47.5,-90.6 -13.8,-25.8 -50,-1 -73.3,50.3 -15.8,34.9 3.3,64.9 25.8,40.3 z M 2659,1055.5 c 71.7,-296.8 -13,-634.6 -188.9,-752.2 -38,-25.4 -48.6,-25.5 -73.1,-0.8 -113,114.3 -108.9,391 6.1,414.1 14.2,2.8 22.6,-8.5 35.7,-48.4 12.7,-38.9 16,-40.6 50.6,-26.2 37.5,15.6 38.8,39.5 5.7,104.5 l -7.5,14.8 15.4,15.8 c 29.3,30.2 57.6,94 79.2,179 7.1,28 38.9,177.5 40.7,191.3 1.2,9.5 27.9,-58.7 35.9,-92 z m 542.9,14.9 c 22.5,-23.3 57.6,-18.5 58.3,8 0.2,8 39,-33.3 52.1,-55.6 l 9.3,-15.9 -17.5,-58.9 c -9.6,-32.4 -19.9,-62.5 -22.8,-66.8 -5.6,-8.5 -86.8,-45.6 -84.5,-38.5 27.2,82.8 27.3,132 0.3,172.4 -22,33 -33.1,62.7 -33.1,88.7 v 15.5 l 10.1,-15.2 c 5.5,-8.4 18,-23.4 27.6,-33.5 z m -504.6,-26.6 c 11.7,-20.4 21.3,-38.2 21.3,-39.4 0,-11 -46.5,47.5 -51.6,65.2 -3.3,11.4 -7,23.8 -8.3,27.6 -4.6,13.9 17.8,-17.2 38.6,-53.4 z m 40.6,-33.1 c 4.7,-18.2 9.4,-35.8 10.3,-39 0.8,-3.1 -8.4,14.1 -20.7,38.4 -12.3,24.3 -26.2,49.6 -30.9,56.2 -14.3,20.1 -9.6,19.3 12,-2.1 18.8,-18.6 21.3,-23.1 29.3,-53.6 z m -13.5,-39 c 50.7,-76.3 60.8,-141.3 25.2,-162.4 -24.3,-14.3 -54,-1.3 -54,23.6 v 14.9 l 16.9,-1.9 c 43.1,-4.8 47.4,49 7.9,100.4 -9.7,12.6 -9.6,4.6 0,-16.3 25.1,-54.2 24.3,-73.6 -3,-73.5 -20.7,0 -21.5,2 -27.7,67.3 -3.1,33.6 -7.5,70.6 -9.6,82 -2,11.4 -3.8,21.7 -3.8,22.7 0,6.4 27.3,-26 47.9,-57.1 z M 3020.5,945 c 42.7,-24.5 61,-50.5 22.1,-31.4 -12.4,6.1 -29.5,13.2 -37.9,15.9 -21.2,6.7 -21.3,6.7 -16.5,17.4 5.4,12 8.3,11.8 32.3,-1.8 z M 1837,852.9 c 3.2,-16.9 4.4,-39.9 3.2,-59.9 -4,-65.2 8,-97 65.6,-171.8 21.5,-28 43.3,-57.7 48.4,-66 5.1,-8.2 9.9,-12.9 10.8,-10.3 1.6,4.9 -19.4,43.1 -57.3,103.5 -12.3,19.7 -22.5,36.5 -22.5,37.3 0,7.2 112.7,-49.8 141.6,-71.7 11,-8.4 22.3,-14.6 24.7,-13.8 5.4,1.8 -14.2,20.8 -45.4,43.9 -20.1,14.9 -21.6,16.7 -11.5,14.9 6.3,-1 21,-3.2 32.6,-4.6 72.5,-8.7 153.5,-44.2 191,-83.8 58.5,-61.6 77.3,-90.4 102.9,-157.8 14.3,-37.6 49.2,-99.1 66.8,-117.5 44.8,-46.6 -154.1,-92 -269.4,-61.7 -272.2,71.4 -406.8,346.8 -302.2,618.2 14.2,36.9 13.9,36.9 20.7,1 z m 166,6.6 c 24,-22.3 22,-87.4 -3.4,-109.8 -15.8675,-26.92219 -40.8,-22.1 -57.3,9.4 -29.9,57.1 19,139.3 60.8,100.4 z m -44.4,-24.9 c -17.5,-22.2 -5,-76.5 18.2,-76.5 17.5,0 25.6,12.3 25.4,38.6 -0.2,36.6 -25.5,61 -43.7,37.8 z M 2758.7,710.4 C 2746.1,616.2 2710.9,526.8 2647.7,428.2 2518.8,227 2241.5,144 2035.2,244.9 c -59.3,29 -165.1,110.6 -165.1,127.5 0,2.6 15.2,-9.7 33.8,-27.3 142.1,-135 400.7,-175.7 498.1,-78.4 7.2,7.2 12.3,9.3 19.1,7.6 30.6,-7.6 106,51.6 157.8,123.9 59.3,83 99.3,210.8 112.5,359.5 4.2,48.1 3.7,47.1 19,39.2 15.2,-7.8 26.7,-7.6 40.8,1 l 11.5,7 1,-23.3 c 0.6,-12.8 -1.7,-44.9 -5.2,-71.3 z M 2485.8,742 c 8.5,-16.9 25.4,-66.3 25.4,-74.5 0,-4.2 -37.5,-22.3 -46.5,-22.4 -4.2,0 -9.5,9 -16.7,28.8 -5.7,15.8 -14.6,35 -19.7,42.5 -11.2,16.5 -10.4,17.9 17,32.1 28.7,14.8 29.7,14.6 40.5,-6.6 z M 1455.3,687.2 c 42.3,-28.6 131,-65.1 158.2,-65.1 14.8,0 2.3,6.6 -28.9,15.2 -16.5,4.5 -37.2,11.4 -46,15.1 l -16,6.8 63.7,2.8 c 83.1,3.7 98.3,-4.2 165.1,-86.7 35.3,-43.6 34.7,-41.5 14,-51 -18.5,-8.5 -45.7,-35.1 -52.3,-51 l -4.5,-10.9 -35.3,3.2 c -178.7,16.2 -259.7,89.2 -292,263 l -5.1,27.9 27.2,-26.2 c 14.9,-14.4 38.4,-33.8 52.2,-43.1 z m 113.1,-91.7 c 4.5,-7.2 35.3,-23.3 67,-34.9 59.6,-21.7 79.8,-35 75.9,-49.9 -1.3,-5 -0.4,-7.3 2.4,-6.4 28.8,9.6 -5.3,37.2 -85.7,69.2 -17.9,7.1 -39.2,15.9 -47.3,19.5 -8.1,3.5 -13.6,4.7 -12.2,2.5 z m 317,71.7 c 10.9,-16.6 12.4,-20.2 4.9,-11.8 -11.5,13 -25.9,35.8 -22.6,35.8 1,0 9,-10.8 17.7,-24 z m 869.8,-97.3 c -8.2,-106.2 -14,-251.4 -11.1,-285.4 10,-120.1 -295,-243.1 -502.4,-202.6 -156.8,30.7 -253.8,96.8 -359.5,245 -31.6,44.3 -30,45 11.8,4.7 188.2,-180.9 467.5,-187.1 671,-14.9 70.5,59.7 164,212.7 188.2,308 7.8,30.9 8.1,23.2 1.9,-55 z m -957.9,-58.1 c 8.6,-26.5 33.2,-76.5 49.1,-100.1 32.1,-47.2 15.2,-51 -28.4,-6.6 -26.9,27.4 -52.5,41.2 -81.2,43.5 -23.7,1.9 -25,5.4 -10.9,29.5 9.4,16.1 24.9,30 46.2,41.4 16.8,9 20,8 25.2,-7.9 z m -38.4,-75.9 c 61.7,-21.7 66.2,-40.1 21.8,-88.6 -19.5,-21.3 -50.2,-59.2 -68.1,-84.3 -45.6,-63.6 -58.6,-76.4 -83.2,-81.6 -64.6,-13.7 -153.2,-8.1 -269.7,17 -8.5,1.8 -7.5,3 10.7,13.5 34.7,19.8 78.8,68.9 136.5,152 38.9,56 40.3,56.7 126.5,62.1 45.2,2.8 67.3,5.7 72.9,9.6 10.5,7.3 31.8,7.4 52.4,0.1 z M 1708.8,389 c -56.3,-9.4 -179.3,-64.9 -168.4,-75.9 1.3,-1.3 9.9,2.5 19.2,8.5 49.9,32.7 162.9,69.6 185.9,60.8 12.7,-4.8 -21.9,-41.3 -71.9,-75.5 -18.6,-12.7 -33.8,-24.9 -33.8,-27 0,-2.1 2.1,-2.5 4.8,-0.9 115,69.6 146.7,123.9 64.3,110 z'/%3e%3cellipse style='fill:%23fff;' cx='2009' cy='797' rx='17' ry='18'/%3e%3cellipse style='fill:%23fff;' cx='2435' cy='847' rx='17' ry='18'/%3e%3cpath style='opacity:0.1;fill:%23040306;' d='m 2692,4128 112,36 122,30 75,6 49,-9 54,-47 51,-73 37,-99 c 0,0 1,141 -5,214 -6,69 -11,137 -16,206 -4,72 -17,145 -11,217 10,110 16,219 45,326 29,105 68,218 128,309 41,62 107,102 167,146 24,18 51,32 77,47 9,5 28,15 28,15 l 7,81 159,214 c 0,0 388,410 589,607 30,29 64,55 92,86 34,38 63,79 90,122 59,91 113,186 159,285 16,35 32,70 47,105 9,20 23,59 23,59 0,0 42,53 53,85 13,36 14,113 14,113 l -62,88 -41,-6 -54,-92 -82,-184 c 0,0 -27,-68 -43,-101 -15,-30 -49,-88 -49,-88 l -92,-126 -96,-171 -58,-96 -51,-64 -197,-195 -236,-217 -223,-208 -124,-156 -67,-97 -81,-77 -41,-81 -105,-135 -64,-84 -96,-156 -41,-107 -28,-184 -45,-144 -94,-221 -34,-71 c 0,0 -78,-25 -118,-34 -38,-9 -77,-17 -116,-19 -35,-1 -73,-5 -105,9 -23,10 -43,29 -56,51 -13,22 -18,48 -19,73 -2,41 9,82 21,122 12,41 36,77 52,116 15,36 26,75 43,111 23,47 52,90 79,135 29,49 88,146 88,146 l 30,28 62,24 47,77 v 84 l -37,150 -41,60 -37,7 -56,-30 -129,-105 -69,-77 -19,-69 -17,-171 -21,-111 -30,-92 -135,-150 -36,-34 -71,-7 -86,-21 -72,-37 -41,-31 -31,-69 12,-64 52,-84 36,-41 141,-98 158,-52 95,-14 104,14 121,34z M 1310,1859 c 0,0 18,79 36,114 24,46 52,92 93,123 36,27 83,36 126,48 47,13 96,18 144,24 33,4 99,9 99,9 l 156,48 c 0,0 69,46 108,60 35,12 74,15 111,18 38,3 114,0 114,0 l 33,-6 -69,42 -72,9 c 0,0 -99,7 -147,21 -46,14 -95,28 -132,60 -39,34 -64,84 -84,132 -19,46 -29,97 -33,147 -5,62 3,124 12,186 9,61 17,124 42,180 14,31 35,58 57,84 37,43 123,117 123,117 l 135,90 150,90 174,78 162,60 -180,-24 c 0,0 -158,-26 -237,-36 -62,-8 -125,-33 -186,-21 -30,6 -56,27 -81,45 -32,23 -64,49 -87,81 -21,29 -35,60 -45,99 -11,40 -1,84 -6,126 -7,62 -28,137 -33,183 -2,17 -15,129 -15,129 l -135,-258 -36,-189 3,-105 -21,-66 v -219 -123 l -15,-150 18,-138 15,-132 -18,-138 -63,-117 -30,-78 -24,-93 -18,-177 -78,-51 -51,-75 -27,-81 v -63z'/%3e%3c/svg%3e"),*/
no-repeat right bottom / 100% 100% linear-gradient(186deg, rgba(206,200,227,0) 0%, var(--base_b) 78%),
repeat 0 0 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3e%3cpath fill='rgba(255,255,255,.3)' d='M32,0L64,32,32,64,0,32Z'/%3e%3c/svg%3e"),
var(--base_b);
animation: bg-scrolling 4s infinite linear;
}
.logo{
text-align:center;
font-weight: bold;
text-shadow: 0px 8px 16px var(--base_b);
color:#fff;
}
.logo span{
font-size:78px;
white-space: nowrap;
text-decoration-line: underline;
text-decoration-thickness: 8px;
text-underline-offset: 8px;
}
:root:not(:has(:target)) .logo:after,
body:has(#en:target) .logo:after{
content:"visual novel engine";
white-space: nowrap;
font-size:46px;
}
body:has(#es:target) .logo:after{
content:"motor de novelas visuales";
white-space: nowrap;
font-size:34px;
}
body:has(#ru:target) .logo:after{
content:"движок визуальных новелл";
white-space: nowrap;
font-size:30px;
}
body:has(#ja:target) .logo:after{
content:"ビジュアルノベル・エンジン";
white-space: nowrap;
font-size:33px;
}
body:has(#zh:target) .logo:after{
content:"视觉小说引擎";
white-space: nowrap;
font-size:52px;
}
body:has(#ko:target) .logo:after{
content:"웹 비주얼 노벨 노블 엔진";
white-space: nowrap;
font-size:42px;
}
.lang_ru,
.lang_en,
.lang_es,
.lang_zh,
.lang_pt,
.lang_fr,
.lang_de,
.lang_ko,
.lang_ja{display:none}
body:has(#en:target) .lang_en,
body:has(#ru:target) .lang_ru,
body:has(#zh:target) .lang_zh,
body:has(#es:target) .lang_es,
body:has(#pt:target) .lang_pt,
body:has(#fr:target) .lang_fr,
body:has(#de:target) .lang_de,
body:has(#ko:target) .lang_ko,
body:has(#ja:target) .lang_ja{display:block}
:root:not(:has(:target)) .lang_en{display:block}
@supports not selector(:has(+ *)) {
.lang_en{display:block}
.logo:after{
content:"visual novel engine";
font-size:46px;
}
}
.top_menu{
position: fixed;
top: 0; right: 0;
pointer-events: none;
height: 256px;
width: 100%;
display: grid;
padding:16px 32px;
gap: 12px;
grid-template-columns:120px 120px 120px 120px 120px;
direction: rtl;
}
@supports not(mask:linear-gradient(186deg,rgba(0,0,0,1) 20%, rgba(0,0,0,0) 60%)){
.top_menu:before{content:"";
z-index:-10;
position: absolute;
pointer-events: none;
right: 0; top: 0;
width: 100%; height: 58px;
max-width: 720px;
background-color: var(--base_b);
box-shadow: 0px 4px 14px var(--base_a);
border-radius:0 0 0 16px;
}
}
@supports (mask:linear-gradient(186deg,rgba(0,0,0,1) 20%, rgba(0,0,0,0) 60%)){
.top_menu:before{content:"";
z-index:-10;
position: absolute;
pointer-events: none;
left: 0; top: 0;
width: 100%; height: 100%;
background-color:rgba(255,255,255,.2);
mask:linear-gradient(186deg,rgba(0,0,0,1) 20%, rgba(0,0,0,0) 60%);
backdrop-filter: blur(12px);
}
}
.button{
transition: 0.6s ease;
user-select:none;
pointer-events: auto;
cursor: pointer;
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 120px; height: 28px;
border-radius:8px;
background-color:var(--base_a);
box-shadow:0px 4px 8px var(--base_b);
}
.button:hover {
background-color:var(--base_c);
box-shadow:0px 4px 8px var(--base_c);
transition: 0.3s ease;
}
.button:hover:before {
position:absolute;
display:block;
content:"";
height:10px;
width:100%;
left:0px;
bottom:-10px;
}
.submenu {
position: absolute;left:50%;top:38px;
transform:translateX(-50%);
background-color: var(--base_a);
box-shadow:0px 4px 8px var(--base_a);
border-radius:8px;
width: 100%;
overflow:hidden;
height: 0px;
transition: 0.35s ease;
z-index: 1;
}
.submenu a {
display:flex;
align-items: center;
justify-content: center;
color:#fff;
cursor: pointer;
height: 32px;
}
.submenu > a > span {display:block; width: 100%;}
.submenu > a {
display: grid;
direction: ltr;
width: 100%;
grid-template-columns:minmax(max-content, 1fr) minmax(max-content, 1fr);
}
.submenu > a > span:nth-child(odd) {text-align: left; padding-left:8px;}
.submenu > a > span:nth-child(even) {text-align: right; padding-right:8px;}
.button:hover .submenu.download {height: 224px;}
.button:hover .submenu.lang {height: 160px;}
.submenu .marker {
position: absolute;
height: 0px;
width: 100%;
background-color: var(--base_c);
border-radius: 8px;
pointer-events: none;
transition: 0.3s ease;
top: 0px;
z-index: -10;
}
.button a:nth-child(1):hover ~ .marker {top:0px; height:32px;}
.button a:nth-child(2):hover ~ .marker {top:32px;height:32px;}
.button a:nth-child(3):hover ~ .marker {top:64px;height:32px;}
.button a:nth-child(4):hover ~ .marker {top:96px;height:32px;}
.button a:nth-child(5):hover ~ .marker {top:128px;height:32px;}
.button a:nth-child(6):hover ~ .marker {top:160px;height:32px;}
.button a:nth-child(7):hover ~ .marker {top:192px;height:32px;}
.button a:nth-child(8):hover ~ .marker {top:224px;height:32px;}
.text_block{
position: relative;
padding: 16px;
margin: 0 auto;
border-radius:16px;
backdrop-filter:blur(12px);
border-top:2px solid rgba(255,255,255,.7);
border-bottom:2px solid rgba(0,0,0,.15);
box-shadow: 0px 4px 14px var(--base_a);
width: 100%;
max-width: 640px;
}
.name_block{
position: absolute;
background-color: var(--base_a);
border-top:2px solid rgba(255,255,255,0.7);
border-radius: 8px;
left: 24px; top: -18px;
}
@supports (background-clip: text) {
.type_writer {
color: transparent;
background:no-repeat left top / calc(var(--n)*1ch) 100% linear-gradient(#fff);
background-clip: text;
animation: show_symbols calc(var(--n)*.02s) steps(var(--n)) forwards;
}
@keyframes show_symbols{from{background-size:0 100%}}
}
.anim_text::after {
content: "\00a0";
font-family: monospace;
animation: ascii_anim 1s linear infinite;
}
@keyframes ascii_anim {
0% { content: "\00a0"; }
20% { content: "\00a0•"; }
40% { content: "\00a0••"; }
60% { content: "\00a0•••"; }
80% { content: "\00a0\00a0••"; }
100% { content: "\00a0\00a0\00a0•"; }
}
@supports not selector(:has(+ *)){
.type_writer {
color: #fff;
}
}
@media screen and (max-height: 100vw){
.description{
max-width: 1200px;
width: 100%;
margin:0 auto;
}
.function {
display:grid;
width: 100%;
margin-top: 64px;
margin-bottom: 128px;
grid-template-columns:50% 50%;
align-items: center;
}
.description > .function > div{padding:32px;}
.description > .function:nth-child(even){direction: rtl;}
.description > .function img{
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
object-fit: contain;
border-radius: 6px;
box-shadow: 0px 4px 14px var(--base_a);
}
.description .specification{
max-width:480px;
text-align:left;
direction: ltr;
}
}
@media screen and (max-width: 100vh){
.description{
max-width: 640px;
margin:0 auto;
width: 100%;
}
.function {
width: 100%;
margin-top: 128px;
margin-bottom: 128px;
}
.description .specification{
padding:32px 0;
text-align:left;
direction: ltr;
}
.description > .function img{
width: 100%;
height: auto;
max-width: 640px;
object-fit: contain;
border-radius: 6px;
box-shadow: 0px 4px 14px var(--base_a);
}
.top_menu .hidden{display:none;}
}
.boke{
background:
repeat-y center top / 512px auto url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='512' height='512' viewBox='0 0 512 512'%3e%3ccircle fill='%23fff' cx='0' cy='0' r='12'%3e%3canimateTransform attributeName='transform' type='translate' values='256,0; 256,-256' begin='-2s' dur='7.4s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='0;.5;0;0' begin='-2s' dur='7.4s' repeatCount='indefinite'/%3e %3c/circle%3e%3ccircle fill='%23fff' cx='0' cy='0' r='12'%3e%3canimateTransform attributeName='transform' type='translate' values='256,512; 256,256' begin='-2s' dur='7.4s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='0;.5;0;0' begin='-2s' dur='7.4s' repeatCount='indefinite'/%3e%3c/circle%3e%3ccircle fill='%23fff' cx='0' cy='0' r='32' opacity='0'%3e%3canimateTransform attributeName='transform' type='translate' values='64,0; 64,-256' begin='3s' dur='4s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='0;.25;0' begin='3s' dur='4s' repeatCount='indefinite'/%3e%3c/circle%3e%3ccircle fill='%23fff' cx='0' cy='0' r='32' opacity='0'%3e%3canimateTransform attributeName='transform' type='translate' values='64,512; 64,256' begin='3s' dur='4s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='0;.25;0' begin='3s' dur='4s' repeatCount='indefinite'/%3e%3c/circle%3e%3ccircle fill='%23fff' cx='0' cy='0' r='18'%3e%3canimateTransform attributeName='transform' type='translate' values='448,0; 448,-256' begin='0s' dur='5.5s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='0;0;.5;0' begin='0s' dur='5.5s' repeatCount='indefinite'/%3e%3c/circle%3e%3ccircle fill='%23fff' cx='0' cy='0' r='18'%3e%3canimateTransform attributeName='transform' type='translate' values='448,512; 448,256' begin='0s' dur='5.5s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='0;0;.5;0' begin='0s' dur='5.5s' repeatCount='indefinite'/%3e%3c/circle%3e%3ccircle fill='%23fff' cx='0' cy='0' r='18'%3e%3canimateTransform attributeName='transform' type='translate' values='128,256; 128,24' begin='0s' dur='11s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='0;0;.5;0' begin='0s' dur='11s' repeatCount='indefinite'/%3e%3c/circle%3e%3ccircle fill='%23fff' cx='0' cy='0' r='32'%3e%3canimateTransform attributeName='transform' type='translate' values='248,256; 248,24' begin='0s' dur='11s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='0;.3;0;0' begin='0s' dur='11s' repeatCount='indefinite'/%3e%3c/circle%3e%3ccircle fill='%23fff' cx='0' cy='0' r='14'%3e%3canimateTransform attributeName='transform' type='translate' values='128,500; 128,288' begin='-2s' dur='7.4s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='0;0;.5;0' begin='-2s' dur='7.4s' repeatCount='indefinite'/%3e%3c/circle%3e%3ccircle fill='%23fff' cx='0' cy='0' r='14'%3e%3canimateTransform attributeName='transform' type='translate' values='340,480; 340,168' begin='0s' dur='7.4s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='.5;0;.3;0' begin='0s' dur='7.4s' repeatCount='indefinite'/%3e%3c/circle%3e%3ccircle fill='%23fff' cx='0' cy='0' r='22' opacity='0'%3e%3canimateTransform attributeName='transform' type='translate' values='306,480; 306,168' begin='2s' dur='16s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='0;.5;0;.4;0' begin='2s' dur='16s' repeatCount='indefinite'/%3e%3c/circle%3e%3ccircle fill='%23fff' cx='0' cy='0' r='28' opacity='0'%3e%3canimateTransform attributeName='transform' type='translate' values='206,480; 206,168' begin='8s' dur='12s' repeatCount='indefinite'/%3e%3canimate attributeName='opacity' values='0;.4;0;.5;0' begin='8s' dur='12s' repeatCount='indefinite'/%3e%3c/circle%3e%3c/svg%3e"),#b5add7;
}
</style>
</head>
<body>
<div style="display:none;">
<span id="ru" class="description"></span>
<span id="en" class="description"></span>
<span id="es" class="description"></span>
<span id="ja" class="description"></span>
<span id="ko" class="description"></span>
<span id="zh" class="description"></span>
</div>
<div class="title">
<div class="logo"><span>Tuesday JS</span><br></div>
</div>
<div style="display:block;width:100%;padding:0 16px;margin-top:-256px;">
<div class="text_block">
<a href="https://github.com/Kirilllive/tuesday-js/releases" target="_blank"><div class="name_block button">
<span>
<span class="lang_en">Download</span>
<span class="lang_es">Descargar</span>
<span class="lang_ja">ダウンロード</span>
<span class="lang_ru">Скачать</span>
<span class="lang_zh">下载</span>
<span class="lang_ko">다운로드</span>
</span>
</div></a>
<div class="lang_ru"><span class="type_writer anim_text" style="--n:461; font-size: 16px;">Простой и бесплатный веб-редактор визуальных новелл с открытым исходным кодом. Его можно использовать прямо в браузере. Он написан на JavaScript без использования сторонних библиотек и не требует установки дополнительного программного обеспечения. Движок использует стандартные элементы HTML-документа, такие как div и img. Это позволяет применять любой медиаформат, поддерживаемый браузерами, включая векторную графику SVG, GIF-анимацию и стили CSS</span></div>
<div class="lang_en"><span class="type_writer anim_text" style="--n:461; font-size: 16px;">Is a simple, free, and open-source web editor for visual novels that runs directly in your browser. It is written in pure JavaScript without any third-party libraries and requires no installation. The engine utilizes standard HTML5 document elements, such as div and img. This allows you to use any browser-supported media format, including SVG vector graphics, GIF animations, and CSS styles</span></div>
<div class="lang_es"><span class="type_writer anim_text" style="--n:461; font-size: 16px;">Es un editor de novelas visuales, sencillo y de código abierto, que puede ser utilizado en navegadores web. Está escrito en JavaScript sin la utilización de ninguna biblioteca de terceros, por lo tanto, no requiere de ninguna instalación de software adicional. El motor utiliza el estándar HTML5, por ejemplo, div e img. Eso permite utilizar cualquier formato multimedia soportado por los navegadores, incluidos gráficos vectoriales svg, animaciones gif y estilos css.</span></div>
<div class="lang_ja"><span class="type_writer anim_text" style="--n:461">Tuesday JS は無駄を排した作りの、無償かつオープンソースのビジュアルノベル作成ソフトウェアです。ゲームの制作もプレイもウェブブラウザ上で可能です。JavaScriptで開発したソフトウェアですが、サードパーティ製ライブラリーを一切使用していないので、他のソフトウェアをインストールする手間は不要です。divやimgといった標準HTML5文章でお馴染みのタグや要素でゲームのスクリプトを記述し、svg形式のベクターイメージ、gif形式のアニメーション、CSSスタイルシートなど、ブラウザが扱えるファイルなら何でも使用可能です。</span></div>
<div class="lang_zh"><span class="type_writer anim_text" style="--n:461">这是一款基于网络的简单、免费且开源的视觉小说编辑器,可在网络浏览器中使用。它是用 JavaScript 编写的,不使用任何第三方库,因此无需安装额外的软件。该引擎使用标准的 HTML5 文档元素,如 div 和 img。这使得它能够使用浏览器所支持的任何媒体格式,包括矢量图形 svg、gif 动画以及 css 样式。 还有一个版本的编辑器可作为独立应用程序,适用于安卓设备和桌面端。所有版本之间完全兼容,并且拥有相同的界面。</span></div>
<div class="lang_ko"><span class="type_writer anim_text" style="--n:461">튜즈데이JS(TuesdayJS)는 웹 브라우저에서 사용할 수 있는 간단한 웹 기반의 무료 오픈 소스 비주얼 노벨 노블 엔진이다. 타사 라이브러리를 사용하지 않고 자바스크립트(JavaScript)로 작성되어 별도의 추가 소프트웨어 설치가 필요없다. 엔진은 div 및 img와 같은 표준 HTML 문서 요소를 사용, 이를 통해 벡터 그래픽 svg, gif 애니메이션 및 CSS 스타일을 포함하여 브라우저에서 지원하는 모든 미디어 형식을 사용할 수 있다</span></div>
</div>
<!-- en -->
<div class="lang_en description">
<div class="function stamp_1">
<div>
<img src='screenshots/script_structure.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification ">
<p><b>Visualization</b></p><br>
<p>The editor displays the structure of the script with all elements such as dialog options and selection consequences. This makes it easier to navigate and edit the script.</p>
</div>
</div>
<div class="function stamp_2">
<div>
<img src='screenshots/scene_editor.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Scene editor</b></p><br>
<p>The scene editor can arrange all the elements in their places. It also shows how the scene will change on different screens. In the scene layout you can use standard HTML units in percentage pixels or centimeters to better adapt the scene to different screens.</p>
</div>
</div>
<div class="function stamp_3">
<div>
<img src='screenshots/translate_tool.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Translate tool</b></p><br>
<p>The built-in translation editing tool allows you to quickly add a new translation and edit all the texts in your project without leaving the editor. In addition, it displays the number of completed translations for each language.</p>
</div>
</div>
<div class="function stamp_4">
<div>
<img src='screenshots/json_edit.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>JSON</b></p><br>
<p>A story script has all the elements stored in a JSON structure. Almost any programming language can work with this format. This allows you to port your script to another engine or platform. The editor has a built-in tool to work with JSON. This will allow you to edit the entire contents of the script or just the selected element.</p>
</div>
</div>
<div class="function stamp_5">
<div>
<img src='screenshots/preview.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Preview</b></p><br>
<p>Preview allows you to start a project from a certain point in the script with the selected localization.</p>
</div>
</div>
<div class="function stamp_6">
<div>
<img src='screenshots/ascii_art.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>ASCII art</b></p><br>
<p>The engine is adapted to use ASCII graphics. With its help, you can diversify the texts with images and patterns made up of text characters.</p>
</div>
</div>
<div class="function stamp_7">
<div>
<img src='screenshots/localization.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Localization</b></p><br>
<p>Tuesday.JS provides an extensive adapt to localize stories into other languages. You can set the localized translation for almost any element of your project including text and graphics. The preview function allows you to run the project in the selected language. All language texts can also be exported to a table csv file for editing or adding localizations in another editor.</p>
</div>
</div>
</div>
<!-- es -->
<div class="lang_es description">
<div class="function stamp_1">
<div>
<img src='screenshots/script_structure.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Visualización</b></p><br>
<p>El editor muestra la estructura completa del guión con todos sus elementos, como diálogos con diferentes opciones y las consecuencias de dichas opciones. Esto hace que sea más fácil navegar por el proyecto y editar el guión.</p>
</div>
</div>
<div class="function stamp_2">
<div>
<img src='screenshots/scene_editor.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Editor de escenas</b></p><br>
<p>El editor de escenas permite ordenar todos los elementos en su lugar. También muestra cómo cambiará la escena en las diferentes pantallas. En la disposición de escenas puedes utilizar las unidades de medida estándar de HTML, porcentajes, píxeles o centímetros, para adaptar mejor la escena a las diferentes pantallas.</p>
</div>
</div>
<div class="function stamp_3">
<div>
<img src='screenshots/translate_tool.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Herramienta de Traducción</b></p><br>
<p>La herramienta de edición de traducciones te permite agregar rápidamente una nueva traducción y editar todo los textos en tu proyecto sin dejar el editor. <br>En adición, se muestra el numero de traducciones completadas por cada lenguaje.</p>
</div>
</div>
<div class="function stamp_4">
<div>
<img src='screenshots/json_edit.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>JSON</b></p><br>
<p>El editor de escenas permite ordenar todos los elementos en su lugar. También muestra cómo cambiará la escena en las diferentes pantallas. En la disposición de escenas puedes utilizar las unidades de medida estándar de HTML, porcentajes, píxeles o centímetros, para adaptar mejor la escena a las diferentes pantallas.</p>
</div>
</div>
<div class="function stamp_5">
<div>
<img src='screenshots/preview.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Vista previa</b></p><br>
<p>La función de vista previa te permite iniciar tu proyecto desde cierto punto en el script y con la localización seleccionada.</p>
</div>
</div>
<div class="function stamp_6">
<div>
<img src='screenshots/ascii_art.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>ASCII art</b></p><br>
<p>La herramienta es adaptada para usar graficos ASCII. Con su ayuda, tu puedes diversificar los textos con imagenes y patrones elaborados a partir de caracteres de texto.</p>
</div>
</div>
<div class="function stamp_7">
<div>
<img src='screenshots/localization.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Localización</b></p><br>
<p>Amplias oportunidades para localizar historias a otros lenguajes. Puedes seleccionar traducciones para prácticamente todos los elementos de tu proyecto, ya sean textos o gráficos. La función de vista previa te permite probar tu proyecto en el lenguaje seleccionado. Todos los textos pueden ser exportados a un archivo csv para editarlo y añadir las localizaciones en otro editor.</p>
</div>
</div>
</div>
<!-- ru -->
<div class="lang_ru description">
<div class="function stamp_1">
<div>
<img src='screenshots/script_structure.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Визуализация</b></p><br>
<p>Редактор отображает структуру сценария со всеми элементами, такими как параметры диалога и последствия выбора. Это облегчает навигацию и редактирование сценария.</p>
</div>
</div>
<div class="function stamp_2">
<div>
<img src='screenshots/scene_editor.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Редактор сцен</b></p><br>
<p>Позволяет расположить все элементы по своим местам. Он также показывает, как будет выглядеть сцена на разных экранах. В макете сцены вы можете использовать стандартные параметры HTML как проценты, пиксели или сантиметры, чтобы лучше адаптировать сцену к различным экранам.</p>
</div>
</div>
<div class="function stamp_3">
<div>
<img src='screenshots/translate_tool.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Инструмент для перевода</b></p><br>
<p>Встроенный инструмент редактирования перевода позволяет быстро добавлять новый перевод и отредактировать все тексты в вашем проекте, не выходя из редактора. Кроме того, он отображает количество выполненного переводова для каждого языка.</p>
</div>
</div>
<div class="function stamp_4">
<div>
<img src='screenshots/json_edit.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>JSON</b></p><br>
<p>Сценарий истории сохраняется в структуре JSON. Практически любой язык программирования может работать с этим форматом что позволяет вам перенести ваш сценарий на другой движок или платформу. Редактор имеет встроенный инструмент для работы с JSON это позволит вам отредактировать все содержимое истории или только выбранный элемент.</p>
</div>
</div>
<div class="function stamp_5">
<div>
<img src='screenshots/preview.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Предварительный просмотр</b></p><br>
<p>Предварительный просмотр позволяет запустить проект с определенной точки в сценарии с выбранной локализацией.</p>
</div>
</div>
<div class="function stamp_6">
<div>
<img src='screenshots/ascii_art.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>ASCII-графика</b></p><br>
<p>Движок адаптирован для использования ASCII-графики. С ее помощью вы сможете разнообразить тексты изображениями и узорами составленых из текстовых символов.</p>
</div>
</div>
<div class="function stamp_7">
<div>
<img src='screenshots/localization.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Локализация</b></p><br>
<p>Tuesday JS предоставляет обширные возможности для адаптации историй на другие языки. Вы можете локализировать перевод практически любого элемента проекта, включая текст и графику. Функция предварительного просмотра позволяет запускать проект на выбранном языке. Все тексты могут быть экспортированы в файл csv таблицы для редактирования или добавления локализаций в другом редакторе.</p>
</div>
</div>
</div>
<!-- ja -->
<div class="lang_ja description">
<div class="function stamp_1">
<div>
<img src='screenshots/script_structure.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>ビジュアライゼーション(制作工程を視覚化)</b></p><br>
<p>個々の選択肢や、選択の結果起こる結果などと併せてスクリプトの全体像を目で見て分かるように表示します。スクリプトの構造を簡単に把握でき、編集もしやすくなっています。</p>
</div>
</div>
<div class="function stamp_2">
<div>
<img src='screenshots/scene_editor.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>Tuesday JSには、翻訳版を制作するための機能も豊富です。</b></p><br>
<p>ゲームを構成するテキストやグラフィックといった要素一つ一つに翻訳版用ファイルを設定でき、プレビュー機能で用意した翻訳版の動作確認ができます。</p>
<p>CSV形式のテーブルデータとして出力できるので、他のテキストエディターで翻訳文章を編集したり追加したりすることもできます</p>
</div>
</div>
<div class="function stamp_3">
<div>
<img src='screenshots/translate_tool.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>内蔵翻訳支援ツール</b></p><br>
<p>Tuesday JSが内蔵する翻訳支援ツールなら、他の言語版用の翻訳文を、プロジェクトで使用している元のテキストを対訳表のように参照しながら追加していけるので、別のテキストエディターを起動する手間が省けます。また、翻訳の進捗率を言語ごとに確認できます。</p>
</div>
</div>
<div class="function stamp_4">
<div>
<img src='screenshots/json_edit.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>JSON</b></p><br>
<p>ゲームスクリプトは、全要素をJSON形式で保存します。JSONは、一部を除く全てのプログラム言語で扱えるので、他のゲームエンジンやコンピューターにTuesday JSで作成したスクリプトを移植できます。JSONを編集するツールを内蔵していおり、スクリプト全体をJSONとして編集することも、任意の箇所のみを編集することも可能です。</p>
</div>
</div>
<div class="function stamp_5">
<div>
<img src='screenshots/preview.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>プレビュー</b></p><br>
<p>各々の言語設定で、任意の時点から動作をテストできるプレビュー機能があります。</p>
</div>
</div>
<div class="function stamp_6">
<div>
<img src='screenshots/ascii_art.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>アスキーアート (AA)</b></p><br>
<p>Tuesday JSエンジンはアスキーアート(AA)を適切に表示できます。テキストで様々な絵や模様を作ることができます。</p>
</div>
</div>
<div class="function stamp_7">
<div>
<img src='screenshots/localization.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>ローカライゼーション(多言語対応)</b></p><br>
<p>Tuesday JSには、翻訳版を制作するための機能も豊富です。ゲームを構成するテキストやグラフィックといった要素一つ一つに翻訳版用ファイルを設定でき、プレビュー機能で用意した翻訳版の動作確認ができます。CSV形式のテーブルデータとして出力できるので、他のテキストエディターで翻訳文章を編集したり追加したりすることもできます。</p>
</div>
</div>
</div>
<!-- zh -->
<div class="lang_zh description">
<div class="function stamp_1">
<div>
<img src='screenshots/script_structure.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>直观的编辑体验</b></p><br>
<p>这款可视化编辑器让你无需任何编程知识就能创作图像小说或动态小说。如有必要,还可以使用 JavaScript 和 CSS 来扩展其基本功能。</p>
</div>
</div>
<div class="function stamp_2">
<div>
<img src='screenshots/scene_editor.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>场景编辑的灵活性</b></p><br>
<p>场景编辑器可以将所有元素放置在合适的位置。它还能展示该场景在不同屏幕上会如何变化。 在场景布局中,你可以使用以百分比、像素或厘米为单位的标准 HTML 度量单位,以便让场景更好地适配不同的屏幕。</p>
</div>
</div>
<div class="function stamp_3">
<div>
<img src='screenshots/translate_tool.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>翻译与本地化</b></p><br>
<p>内置的翻译编辑工具使你无需离开编辑器,就能快速添加新的翻译内容,并编辑项目中的所有文本。此外,它还会显示每种语言已完成的翻译数量。</p>
</div>
</div>
<div class="function stamp_4">
<div>
<img src='screenshots/json_edit.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>JSON脚本的可移植性</b></p><br>
<p>一个故事脚本的所有元素都存储在一个JSON结构中。几乎任何编程语言都可以处理这种格式。这使得你能够将脚本移植到另一个引擎或平台上。该编辑器有一个内置的用于处理JSON的工具。这能让你编辑脚本的全部内容,或者仅仅编辑所选的元素。</p>
</div>
</div>
<div class="function stamp_5">
<div>
<img src='screenshots/preview.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>媒体格式的多样性</b></p><br>
<p>预览功能可让你从脚本中的某个特定点开始,并以所选的本地化设置来启动项目。</p>
</div>
</div>
<div class="function stamp_6">
<div>
<img src='screenshots/ascii_art.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>ASCII艺术的支持</b></p><br>
<p>该引擎适用于使用ASCII图形。借助它,你可以用由文本字符组成的图像和图案来丰富文本内容。</p>
</div>
</div>
<div class="function stamp_7">
<div>
<img src='screenshots/localization.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>语言本地化</b></p><br>
<p>Tuesday JS也具备丰富的用于制作翻译版本的功能。 可以为构成游戏的文本、图形等每一个元素设置翻译版本的文件,并且能够通过预览功能来确认所准备的翻译版本的运行情况。 由于可以输出为CSV格式的表格数据,所以也能够在其他文本编辑器中编辑或添加翻译文本。</p>
</div>
</div>
</div>
<!-- ko -->
<div class="lang_ko description">
<div class="function stamp_1">
<div>
<img src='screenshots/script_structure.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>비주얼라이제이션</b></p><br>
<p>편집기는 대화 옵션 및 선택 결과와 같은 모든 요소와 함께 스크립트의 구조를 표시해 쉽게 탐색하고 편집할 수 있다.</p>
</div>
</div>
<div class="function stamp_2">
<div>
<img src='screenshots/scene_editor.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>씬 에디터</b></p><br>
<p>씬 에디터(장면 편집기)는 모든 요소를 제자리에 정렬할 수 있다. 다른 화면에서는 장면이 어떻게 변하는지 보여주며, 씬 레이아웃에서 백분율 픽셀 또는 센티미터 단위의 표준 HTML 단위를 사용하여 씬을 다른 화면에 더 잘 적응하도록 할 수 있다.</p>
</div>
</div>
<div class="function stamp_3">
<div>
<img src='screenshots/json_edit.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>JSON</b></p><br>
<p>스토리 스크립트에는 JSON 구조에 저장된 모든 요소가 있다. 거의 모든 프로그래밍 언어가 이 형식으로 작동할 수 있기 때문에, 이를 통해 스크립트를 다른 엔진이나 플랫폼으로 쉽게 이식할 수 있다. 편집기에는 JSON 작업을 위한 도구가 내장돼 있어 스크립트의 전체 내용을 편집하거나 선택한 요소만 편집 가능하다.</p>
</div>
</div>
<div class="function stamp_4">
<div>
<img src='screenshots/preview.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>프리뷰</b></p><br>
<p>미리보기를 사용하면 선택한 현지화로 스크립트의 특정 지점에서 프로젝트를 시작할 수 있다.</p>
</div>
</div>
<div class="function stamp_5">
<div>
<img src='screenshots/localization.jpg' alt="visualization structure script" title="visualization structure script">
</div>
<div class="specification">
<p><b>로컬라이제이션</b></p><br>
<p>튜즈데이JS(TuesdayJS)는 스토리를 다른 언어로 현지화하기 위한 광범위한 적응 기능을 제공한다.</p>
<p>텍스트 및 그래픽을 포함하여 프로젝트의 거의 모든 요소에 대해 현지화된 번역을 설정할 수 있다. 미리보기 기능을 사용하면 선택한 언어로 프로젝트를 실행할 수 있고, 다른 편집기에서 현지화를 편집하거나 추가하기 위해 모든 언어 텍스트를 csv 파일로 추출할 수 있다.</p>
</div>
</div>
</div>
</div>
<div class="top_menu">
<div class="button">
<span>Language</span>
<div class="submenu lang">
<a href='#en'><span>English</span><span>en</span></a>
<a href='#es'><span>Español</span><span>es</span></a>
<a href='#ru'><span>Русский</span><span>ru</span></a>
<a href='#ja'><span>日本語</span><span>ja</span></a>
<a href='#zh'><span>中文</span><span>ko</span></a>
<a href='#ko'><span>한국어</span><span>ko</span></a>
<div class="marker"></div>
</div>
</div>
<a class="hidden" href='https://github.com/Kirilllive/tuesday-js' target="_blank"><div class="button">GitHub</div></a>
<a href='doc_editor.html' target="_blank"><div class="button">
<span class="lang_en">Documentation</span>
<span class="lang_es">Documentación</span>
<span class="lang_ja">ユーザーガイド</span>
<span class="lang_ru">Документация</span>
<span class="lang_zh">使用教程</span>
<span class="lang_ko">선적 서류 비치</span>
</div></a>
<div class="button">
<span>
<span class="lang_en">Download</span>
<span class="lang_es">Descargar</span>
<span class="lang_ja">ダウンロード</span>
<span class="lang_ru">Скачать</span>
<span class="lang_zh">下载</span>
<span class="lang_ko">다운로드</span>
</span>
<div class="submenu download lang_en lang_ko">
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_web_EN.zip' target="_blank"><span>Browser</span><span>html</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_android_EN.apk' target="_blank"><span>Android</span><span>apk</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_win.msi' target="_blank"><span>Windows</span><span>msi</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_mac.dmg' target="_blank"><span>macOS</span><span>dmc</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.rpm' target="_blank"><span>Linux</span><span>rpm</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.deb ' target="_blank"><span>Linux</span><span>deb</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.AppImage' target="_blank"><span>Linux</span><span>AppImage</span></a>
<div class="marker"></div>
</div>
<div class="submenu download lang_ja">
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_web_JA.zip' target="_blank"><span>Browser</span><span>html</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_android_JA.apk' target="_blank"><span>Android</span><span>apk</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_win.msi' target="_blank"><span>Windows</span><span>msi</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_mac.dmg' target="_blank"><span>macOS</span><span>dmc</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.rpm' target="_blank"><span>Linux</span><span>rpm</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.deb ' target="_blank"><span>Linux</span><span>deb</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.AppImage' target="_blank"><span>Linux</span><span>AppImage</span></a>
<div class="marker"></div>
</div>
<div class="submenu download lang_ru">
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_web_RU.zip' target="_blank"><span>Browser</span><span>html</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_android_RU.apk' target="_blank"><span>Android</span><span>apk</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_win.msi' target="_blank"><span>Windows</span><span>msi</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_mac.dmg' target="_blank"><span>macOS</span><span>dmc</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.rpm' target="_blank"><span>Linux</span><span>rpm</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.deb ' target="_blank"><span>Linux</span><span>deb</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.AppImage' target="_blank"><span>Linux</span><span>AppImage</span></a>
<div class="marker"></div>
</div>
<div class="submenu download lang_zh">
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_web_ZH.zip' target="_blank"><span>Browser</span><span>html</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_android_ZH.apk' target="_blank"><span>Android</span><span>apk</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_win.msi' target="_blank"><span>Windows</span><span>msi</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_mac.dmg' target="_blank"><span>macOS</span><span>dmc</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.rpm' target="_blank"><span>Linux</span><span>rpm</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.deb' target="_blank"><span>Linux</span><span>deb</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.AppImage' target="_blank"><span>Linux</span><span>AppImage</span></a>
<div class="marker"></div>
</div>
<div class="submenu download lang_es">
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_web_ES.zip' target="_blank"><span>Browser</span><span>html</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_android_ES.apk' target="_blank"><span>Android</span><span>apk</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_win.msi' target="_blank"><span>Windows</span><span>msi</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_mac.dmg' target="_blank"><span>macOS</span><span>dmc</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.rpm' target="_blank"><span>Linux</span><span>rpm</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.deb' target="_blank"><span>Linux</span><span>deb</span></a>
<a href='https://github.com/Kirilllive/tuesday-js/releases/download/60.0.0/TuesdayJS_R60_linux.AppImage' target="_blank"><span>Linux</span><span>AppImage</span></a>
<div class="marker"></div>
</div>
</div>
<a class="lang_en" href='translate/en_tuesday_visual.html' target="_blank"><div class="button hidden"><span>Play</span></div></a>
<a class="lang_es" href='translate/es_tuesday_visual.html' target="_blank"><div class="button hidden"><span>Iniciar</span></div></a>
<a class="lang_ja" href='translate/ja_tuesday_visual.html' target="_blank"><div class="button hidden"><span>起動する</span></div></a>
<a class="lang_ru" href='translate/ru_tuesday_visual.html' target="_blank"><div class="button hidden"><span>Запустить</span></div></a>
<a class="lang_zh" href='translate/zh_tuesday_visual.html' target="_blank"><div class="button hidden"><span>运行</span></div></a>
<a class="lang_ko" href='translate/en_tuesday_visual.html' target="_blank"><div class="button hidden"><span>시작하기</span></div></a>
<div>
<script>
window.location.hash = (navigator.language || navigator.userLanguage).split('-')[0].toLowerCase();
</script>
</body>
</html>