forked from IvarK/IvarK.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2752 lines (2683 loc) · 192 KB
/
index.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>
<title>Antimatter Dimensions</title>
<link rel="icon" type="image/png" href="icon.png">
<meta name="Antimatter Dimensions" content="A game about huge numbers and watching them go up." charset="utf-8"/>
<h1 id="hiddenheader" style="display: none">Antimatter Dimensions</h1>
<script type="text/javascript" src='https://cdn1.kongregate.com/javascripts/kongregate_api.js'></script>
<script type="text/javascript" src="javascripts/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="javascripts/notify.js"></script>
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css?3">
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-77268961-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<img id="loading" src="images/Loading.png">
<div id="snow" style="display: none; "></div>
<body id="body" style="height: 95vh; ">
<div id="container" class="container" style="color:#4F5957; font-family: Typewriter; text-align:center; font-size: 11px; display:none">
<div id='game'>
<div id='news'>.</div>
</div>
<div id="matter"></div>
<div style="position: relative"><div class="IP" id="infinityPoints2"></div></div>
<div style="position: relative"><div class="EP" id="eternityPoints2"></div></div>
<div>
<p>You have <span id="coinAmount" style="font-size:25px; color: black">0</span> antimatter.</p>
</div>
<div style="position: relative">
<button id="postInfinityButton" class="postinfcrunch">Big Crunch for x Infinity Points</button>
<button id="newDimensionButton" class="newdim" onclick="newDimension()">Get x antimatter to unlock a new Dimension.</button>
<button id="eternitybtn" class="eternitybtn" onclick="eternity()">Other times await.. I need to become Eternal</button>
</div>
<div id="coinsPerSec">You are getting 0 antimatter per second.</div>
<tr id="tickSpeedRow" style="visibility: hidden">
<div id="tickLabel" style="visibility: hidden">Make the game 10% faster.</div>
<button id="tickSpeed" style="color:black; visibility: hidden; height: 25px;width: 170px; font-size: 12px" class="storebtn">Cost: 1000</button>
<button id="tickSpeedMax" onclick="buyMaxTickSpeed()" style="color:black; visibility: hidden; height: 25px; font-size: 12px" class="storebtn">Buy Max</button>
<div id="tickSpeedAmount" style="visibility: hidden">Tickspeed: 1000</div>
</tr>
<p></p>
<div style="position:absolute; left: 0; right: 0; margin-left: auto; margin-right: auto; width: 360px; top: 19px">
<button id="bigcrunch" style="font-family: Typewriter; font-size: 50px; width: 360px; height: 100px;" class="tabbtn">Big Crunch</button>
</div>
<div>
<button id="dimensionsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Dimensions</button>
<button id="optionsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Options</button>
<button id="statisticsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Statistics</button>
<button id="achievementsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Achievements</button>
<button id="challengesbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Challenges</button>
<button id="infinitybtn" style="font-family: Typewriter; font-size: 20px; display: none" class="infinitybtn">Infinity</button>
<button id="eternitystorebtn" style="font-family: Typewriter; font-size: 20px; display: none" class="eternitytabbtn">Eternity</button>
<button id="shopbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Shop</button>
</div>
<div id="emptiness" class="tab" style="font-size: 150%">
<br> The world has collapsed on itself due to excess of antimatter.
<br>
<br>
</div>
<div id="shop" class="tab" style="font-size: 15px" >
<div align="center">
<br>
<span id="kongip"> Double your IP gain from all sources. Forever. </span><br>
<button class="greedbtn" onclick="kong.purchaseIP()">40 Kreds</button>
<br><br><br>
<span id="kongep"> Double your EP gain from all sources. Forever. </span><br>
<button class="greedbtn" onclick="kong.purchaseEP()">50 Kreds</button>
<br><br><br>
<span id="kongdim"> Double all your dimension multipliers (dimensions 1-8). Forever. </span><br>
<button class="greedbtn" onclick="kong.purchaseDimMult()">30 Kreds</button>
<br><br><br>
<span id="kongalldim"> Double ALL the dimension multipliers (Normal, Infinity and Time). Forever. </span><br>
<button class="greedbtn" onclick="kong.purchaseAllDimMult()">60 Kreds</button>
<br><br><br>
<span>Get 6 hours worth of offline production. (Doesn't work for autobuyers)</span><br>
<button class="greedbtn" onclick="kong.purchaseTimeSkip()">10 Kreds</button>
<br><br><br>
<span style="font-size: 12px"><b>Disclaimer: These are not required to progress in the game, they are just to help and support the developer.</b></span>
</div>
</div>
<div id="eternitystore" class="tab" style="font-size: 15px; margin: 0 auto; display: none" align="center">
<table class="table" align="center" style="margin: auto">
<tr>
<td><button class="secondarytabbtn" onclick="showEternityTab('timestudies')">Time studies</button></td>
<td><button class="secondarytabbtn" onclick="showEternityTab('eternityupgrades')">Eternity upgrades</button></td>
<td><button class="secondarytabbtn" onclick="showEternityTab('milestones')">Eternity milestones</button></td>
<td><button class="secondarytabbtn" onclick="showEternityTab('dilation')" id="dilationTabbtn">Time dilation</button></td>
</tr>
</table>
<div class="eternitytab" id="timestudies" style="font-size: 15px">
<div style="display: none;"><textarea id="treeExportOutput" style="color:black; width: 200px; height: 55px;"></textarea></div>
<canvas id="studyTreeCanvas"></canvas>
<tr>
<td><button class="storebtn" onclick="exportStudyTree()" style="width:150px; height: 40px; font-size: 10px; margin: auto">Export tree</button><td>
<td><button class="storebtn" onclick="respecToggle()" id="respec" style="width:150px; height: 40px; font-size: 10px; margin: auto">Respec time studies on next Eternity</button><td>
<td><button class="storebtn" onclick="importStudyTree()" style="width:150px; height: 40px; font-size: 10px; margin: auto">Import tree</button><td>
</tr>
<table class="table" id="studytable">
<tr>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
<td><button class="timestudylocked" id="11" onclick="buyTimeStudy(11, 1)">Tickspeed affects 1st Time Dimension with reduced effect<span id="11desc">Currently: 1x</span>Cost: 1 Time Theorem</button></td>
<td><button class="timestudybought" id="secretstudy" style="opacity: 0; cursor: pointer; transition-duration: 2s;">Unlock a secret achievement<span>Cost: 0 Time Theorems</button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy" id="21" onclick="buyTimeStudy(21, 3)">Replicanti multiplier formula is better (log2(x)^2 -> x^0.032)<span>Cost: 3 Time Theorems</button></td>
<td><button class="timestudy" id="22" onclick="buyTimeStudy(22, 2)">Replicanti interval limit 50ms -> 1ms<span>Cost: 2 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy" id="33" onclick="buyTimeStudy(33, 2)">You keep half of your replicanti galaxies on infinity<span>Cost: 2 Time Theorems</button></td>
<td><button class="timestudy" id="31" onclick="buyTimeStudy(31, 3)">Powers up bonuses that are based on your infinitied stat (to the power of 4)<span>Cost: 3 Time Theorems</button></td>
<td><button class="timestudy" id="32" onclick="buyTimeStudy(32, 2)"><span id="32desc">You gain x1 more infinitied stat (based on dimension boosts)</span>Cost: 2 Time Theorems</button></td>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy" id="41" onclick="buyTimeStudy(41, 4)">Each galaxy gives a 1.2x multiplier on IP gained. <span>Cost: 4 Time Theorems</button></td>
<td><button class="timestudy" id="42" onclick="buyTimeStudy(42, 6)">Galaxy requirement goes up 52 8ths instead of 60.<span>Cost: 6 Time Theorems</button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
<td><button class="timestudy" id="51" onclick="buyTimeStudy(51, 3)"><span id=51desc>You gain 1e15 times more IP</span>Cost: 3 Time Theorems</button></td>
<td><button class="eternitychallengestudy" id="ec5unl">Eternity Challenge 5<span>Requirement: 200 galaxies<span>Cost: 100 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
<td><button class="timestudy" id="61" onclick="buyTimeStudy(61, 3)">You gain 10x more EP<span>Cost: 3 Time Theorems</button></td>
<td><button class="timestudy" id="62" onclick="buyTimeStudy(62, 3)">You gain replicanti 3 times faster<span>Cost: 3 Time Theorems</button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy normaldimstudy" id="71" onclick="buyTimeStudy(71, 4)">Sacrifice affects all other normal dimensions with reduced effect<span id="71desc">Currently: 1x</span>Cost: 4 Time Theorems</button></td>
<td><button class="timestudy infdimstudy" id="72" onclick="buyTimeStudy(72, 6)">Sacrifice affects 4th Infinity Dimension with greatly reduced effect<span id="72desc">Currently: 1x</span>Cost: 6 Time Theorems</button></td>
<td><button class="timestudy timedimstudy" id="73" onclick="buyTimeStudy(73, 5)">Sacrifice affects 3rd Time Dimension with greatly reduced effect<span id="73desc">Currently: 1x</span>Cost: 5 Time Theorems</button></td>
</tr>
<tr>
<td><button class="timestudy normaldimstudy" id="81" onclick="buyTimeStudy(81, 4)">Dimensional boost power becomes 10x<span>Cost: 4 Time Theorems</button></td>
<td><button class="timestudy infdimstudy" id="82" onclick="buyTimeStudy(82, 6)">Dimensional boosts affect Infinity Dimensions<span id="82desc">Currently: 1x</span>Cost: 6 Time Theorems</button></td>
<td><button class="timestudy timedimstudy" id="83" onclick="buyTimeStudy(83, 5)">Dimensional boosts are 0.04% more effective for each tick upgrade gained from Time Dimensions<span>Cost: 5 Time Theorems</button></td>
</tr>
<tr>
<td><button class="timestudy normaldimstudy" id="91" onclick="buyTimeStudy(91, 4)">Normal dimensions gain a multiplier based on time spent this eternity<span id="91desc">Currently: 1x</span>Cost: 4 Time Theorems</button></td>
<td><button class="timestudy infdimstudy" id="92" onclick="buyTimeStudy(92, 5)">Infinity dimensions gain a multiplier based on fastest eternity time<span id="92desc">Currently: 1x</span>Cost: 5 Time Theorems</button></td>
<td><button class="timestudy timedimstudy" id="93" onclick="buyTimeStudy(93, 7)">Time dimensions gain a multiplier based on tick upgrades gained<span id="93desc">Currently: 1x</span>Cost: 7 Time Theorems</button></td>
</tr>
<tr>
<td><button class="timestudy normaldimstudy" id="101" onclick="buyTimeStudy(101, 4)">Replicantis give multiplier to normal dims equal to their amount.<span>Cost: 4 Time Theorems</button></td>
<td><button class="timestudy infdimstudy" id="102" onclick="buyTimeStudy(102, 6)">Replicanti galaxies power replicanti multiplier<span>Cost: 6 Time Theorems</button></td>
<td><button class="timestudy timedimstudy" id="103" onclick="buyTimeStudy(103, 6)">Time dimensions gain a multiplier equal to replicanti galaxy amount<span>Cost: 6 Time Theorems</p></button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td><button class="eternitychallengestudy" id="ec7unl">Eternity Challenge 7<span>Requirement: 1e550,000 antimatter<span>Cost: 115 Time Theorems</button></td>
<td><button class="timestudy" id="111" onclick="buyTimeStudy(111, 12)">Make the IP formula better<span>Cost: 12 Time Theorems</button></td>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy activestudy" id="121" onclick="buyTimeStudy(121, 9)">The worse your average EP/min is, the more EP you get<span id="121desc">Currently: 1x</span>Cost: 9 Time Theorems</button></td>
<td><button class="timestudy passivestudy" id="122" onclick="buyTimeStudy(122, 9)">You gain 35x more EP<span>Cost: 9 Time Theorems</button></td>
<td><button class="timestudy idlestudy" id="123" onclick="buyTimeStudy(123, 9)">You gain more EP based on time spent this eternity<span id="123desc">Currently: 1x</span>Cost: 9 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="eternitychallengestudy" id="ec6unl">Eternity Challenge 6<span>Requirement: 40 replicanti galaxies<span>Cost: 100 Time Theorems</button></td>
<td><button class="timestudy activestudy" id="131" onclick="buyTimeStudy(131, 5)">Automatic replicanti galaxies are disabled, but you can get 50% more<span>Cost: 5 Time Theorems</button></td>
<td><button class="timestudy passivestudy" id="132" onclick="buyTimeStudy(132, 5)">Replicanti galaxies are 40% more effective<span>Cost: 5 Time Theorems</button></td>
<td><button class="timestudy idlestudy" id="133" onclick="buyTimeStudy(133, 5)">Replicanti are 10x slower until infinity, but their galaxies are 50% stronger<span>Cost: 5 Time Theorems</button></td>
<td><button class="eternitychallengestudy" id="ec8unl">Eternity Challenge 8<span>Cost: 100 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy activestudy" id="141" onclick="buyTimeStudy(141, 4)">Multiplier to IP, decaying over this infinity<span id="141desc">Currently 1x</span>Cost: 4 Time Theorems</button></td>
<td><button class="timestudy passivestudy" id="142" onclick="buyTimeStudy(142, 4)"><span id="142desc">You gain 1e25x more IP</span>Cost: 4 Time Theorems</button></td>
<td><button class="timestudy idlestudy" id="143" onclick="buyTimeStudy(143, 4)">Multiplier to IP, increasing over this infinity<span id="143desc">Currently 1x</span>Cost: 4 Time Theorems</button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
<td><button class="eternitychallengestudy" id="ec9unl">Eternity Challenge 9<span>Requirement: 1e6000 infinity power<span>Cost: 100 Time Theorems</button></td>
<td><button class="timestudy" id="151" onclick="buyTimeStudy(151, 8)"><span id="151desc">1e4x multiplier on all Time Dimensions</span>Cost: 8 Time Theorems</button></td>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
<td><button class="eternitychallengestudy" id="ec4unl">Eternity Challenge 4<span>Requirement: 100,000,000 infinities<span>Cost: 85 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy" id="161" onclick="buyTimeStudy(161, 7)"><span id="161desc">1e616x multiplier on all normal dimensions</span>Cost: 7 Time Theorems</button></td>
<td><button class="timestudy" id="162" onclick="buyTimeStudy(162, 7)"><span id="162desc">1e11x multiplier on all Infinity Dimensions</span>Cost: 7 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy" id="171" onclick="buyTimeStudy(171, 15)">Time shard requirement for the next tickspeed upgrade goes up slower<span>Cost: 15 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="eternitychallengestudy" id="ec1unl">Eternity Challenge 1<span>Requirement: 25,000 Eternities<span>Cost: 20 Time Theorems</button></td>
<td><button class="eternitychallengestudy" id="ec2unl" style="font-size: 10px;">Eternity Challenge 2<span>Requirement: 1,300 Time upgrades gained from time dimensions<span>Cost: 25 Time Theorems</button></td>
<td><button class="eternitychallengestudy" id="ec3unl">Eternity Challenge 3<span>Requirement: 30 dicks in your ass<span>Cost: 30 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy" id="181" onclick="buyTimeStudy(181, 200)">You gain 1% of your IP gained on crunch each second.<span>Cost: 200 Time Theorems</button></td>
</tr>
<tr>
<td><button class="eternitychallengestudy" id="ec10unl">Eternity Challenge 10<span>Requirement: 1e100 EP<span>Cost: 200 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy" id="191" onclick="buyTimeStudy(191, 400)">After eternity you permanently keep 5% of your infinities<span>Cost: 400 Time Theorems</button></td>
<td><button class="timestudy" id="192" onclick="buyTimeStudy(192, 730)" style="font-size: 10px;"><span id="192desc">You can get beyond 1.8e308 replicantis, but the interval is increased the more you have</span>Cost: 730 Time Theorems</button></td>
<td><button class="timestudy" id="193" onclick="buyTimeStudy(193, 300)">Normal dimension boost based on eternities<span id="193desc">Currently: 1x</span>Cost: 300 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy" id="201" onclick="buyTimeStudy(201, 900)">Pick another path from the first split<span>Cost: 900 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy" id="211" onclick="buyTimeStudy(211, 120)">Dimensional boost requirement scaling is reduced by 5<span>Cost: 120 Time Theorems</button></td>
<td><button class="timestudy" id="212" onclick="buyTimeStudy(212, 150)">Galaxies are more effective based on your timeshards<span id="212desc">Currently: 1x</span>Cost: 150 Time Theorems</button></td>
<td><button class="timestudy" id="213" onclick="buyTimeStudy(213, 200)">You gain replicanti 20 times faster<span>Cost: 200 Time Theorems</button></td>
<td><button class="timestudy" id="214" onclick="buyTimeStudy(214, 120)">Sacrifice boosts the 8th dimension even more<span id="214desc">Currently: 1x</span>Cost: 120 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr class="wideRow">
<td><button class="timestudy darkstudy" style="margin: 1px; width: 120px; font-size: 0.55rem; padding: 3px;" id="221" onclick="buyTimeStudy(221, 900)">Dimensional boosts affect time dimensions with reduced power.<span>Cost: 900 Time Theorems</button></td>
<td><button class="timestudy lightstudy" style="margin: 1px; width: 120px; font-size: 0.55rem; padding: 3px;" id="222" onclick="buyTimeStudy(222, 900)">Dimensional boost costs scale by another 2 less.<span>Cost: 900 Time Theorems</button></td>
<td><button class="timestudy darkstudy" style="margin: 1px; width: 120px; font-size: 0.55rem; padding: 3px;" id="223" onclick="buyTimeStudy(223, 900)">Galaxy cost scaling starts 7 galaxies later.<span>Cost: 900 Time Theorems</button></td>
<td><button class="timestudy lightstudy" style="margin: 1px; width: 120px; font-size: 0.55rem; padding: 3px;" id="224" onclick="buyTimeStudy(224, 900)">Galaxy cost scaling starts 1 galaxy later for every 2000 dimensional boosts.<span>Cost: 900 Time Theorems</button></td>
<td><button class="timestudy darkstudy" style="margin: 1px; width: 120px; font-size: 0.55rem; padding: 3px;" id="225" onclick="buyTimeStudy(225, 900)">You gain extra RGs based on how high above infinity your replicanti are.<span>Cost: 900 Time Theorems</button></td>
<td><button class="timestudy lightstudy" style="margin: 1px; width: 120px; font-size: 0.55rem; padding: 3px;" id="226" onclick="buyTimeStudy(226, 900)">You gain extra RGs based on your max RGs.<span>Cost: 900 Time Theorems</button></td>
<td><button class="timestudy darkstudy" style="margin: 1px; width: 120px; font-size: 0.55rem; padding: 3px;" id="227" onclick="buyTimeStudy(227, 900)">Sacrifice affects the 4th Time Dimension with reduced effect.<span>Cost: 900 Time Theorems</button></td>
<td><button class="timestudy lightstudy" style="margin: 1px; width: 120px; font-size: 0.55rem; padding: 3px;" id="228" onclick="buyTimeStudy(228, 900)">Sacrifice scales better.<span>Cost: 900 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudy darkstudy" id="231" onclick="buyTimeStudy(231, 500)">Dimensional boosts are more effective based on their amount.<span>Cost: 500 Time Theorems</button></td>
<td><button class="timestudy lightstudy" id="232" onclick="buyTimeStudy(232, 500)">Galaxies are more effective based on non-replicated galaxies.<span>Cost: 500 Time Theorems</button></td>
<td><button class="timestudy darkstudy" id="233" onclick="buyTimeStudy(233, 500)">Max replicanti galaxy upgrade cost is reduced based on replicanti amount.<span>Cost: 500 Time Theorems</button></td>
<td><button class="timestudy lightstudy" id="234" onclick="buyTimeStudy(234, 500)">Sacrifice boosts First Dimension.<span>Cost: 500 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="eternitychallengestudy" id="ec11unl">Eternity Challenge 11<span>Requirement: Use only the Normal Dimension path<span>Cost: 1 Time Theorem</button></td>
<td><button class="eternitychallengestudy" id="ec12unl">Eternity Challenge 12<span>Requirement: Use only the Infinity Dimension path<span>Cost: 1 Time Theorem</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="dilstudy1" onclick="buyDilationStudy(1, 5000)">Unlock time dilation<span>Requirement: 5 Eternity Challenge 11 and 12 completions<span>Cost: 5000 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="dilstudy2" onclick="buyDilationStudy(2, 1000000)">Unlock the 5th Time Dimension<span>Cost: 1,000,000 Time Theorems</button></td>
<td><button class="timestudylocked" id="dilstudy3" onclick="buyDilationStudy(3, 1e7)">Unlock the 6th Time Dimension<span>Cost: 10,000,000 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="dilstudy4" onclick="buyDilationStudy(4, 1e8)">Unlock the 7th Time Dimension<span>Cost: 100,000,000 Time Theorems</button></td>
<td><button class="timestudylocked" id="dilstudy5" onclick="buyDilationStudy(5, 1e9)">Unlock the 8th Time Dimension<span>Cost: 1,000,000,000 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="dilstudy6">To be continued...</button></td>
</tr>
</table>
<div style="height: 60px;"></div>
<div>
<table id="footer">
<tr>
<td>
<div style="text-align:center">
<a href="howto.html" target="_newtab">How to play </a> |
<a href="about.html" target="_newtab" onclick="giveAchievement('A sound financial decision')">Donate </a> |
<a href="changelog.html" target="_newtab">Changelog </a> |
<a href="https://discord.gg/ST9NaXa" target="_newtab">Discord</a> |
<a href="https://www.reddit.com/r/AntimatterDimensions/" target="_newtab">Subreddit</a> | <a href="https://ivark.github.io/savefixer/index.html" target="_newtab">Savefixer</a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="eternitytab" id="eternityupgrades">
<br>
<table class="table" style="margin: 0 auto">
<tr>
<td>
<button id="eter1" class="eternityupbtn" onclick="buyEternityUpgrade(1, 5)">Infinity Dimensions multiplier equal to unspent EP to the power of 5.<br>Currently: x<br>Cost: 5 EP</button>
</td>
<td>
<button id="eter2" class="eternityupbtn" onclick="buyEternityUpgrade(2, 10)">You gain Infinity Dimension multiplier based on eternities (x^log4(2x))<br>Currently: x<br>Cost: 10 EP</button>
</td>
<td>
<button id="eter3" class="eternityupbtn" onclick="buyEternityUpgrade(3, 50e3)">Infinity Dimensions multiplier based on sum of Infinity Challenge times<br>Currently: Xx<br>Cost: 50 K EP</button>
</td>
</tr>
<tr>
<td>
<button id="eter4" class="eternityupbtn" onclick="buyEternityUpgrade(4, 1e16)">Your achievement bonus affects Time Dimensions<br>Cost: 1e16 EP</button>
</td>
<td>
<button id="eter5" class="eternityupbtn" onclick="buyEternityUpgrade(5, 1e40)">Time Dimensions are multiplied by your unspent time theorems<br>Cost: 1e40 EP</button>
</td>
<td>
<button id="eter6" class="eternityupbtn" onclick="buyEternityUpgrade(6, 1e50)">Time Dimensions are multiplied by days played<br>Cost: 1e50 EP</button>
</td>
</tr>
<tr>
<td>
<div class="eternityupbtnbought" style="opacity: 0"></div>
</td>
<td>
<button id="epmult" class="eternityupbtn" onclick="buyEPMult()">You gain 5 times more EP<p>Cost: 500 EP</button>
</td>
<td>
<div class="eternityupbtnbought" style="opacity: 0"></div>
</td>
</tr>
</table>
<div><button class="storebtn" onclick="buyMaxEPMult()" style="height: 25px; width: 190px; font-size:10px; margin-top: -3px;">Max EP mult</button></div>
<div id="footercontainer">
<table id="footer">
<tr>
<td>
<div style="text-align:center">
<a href="howto.html" target="_newtab">How to play </a> |
<a href="about.html" target="_newtab" onclick="giveAchievement('A sound financial decision')">Donate </a> |
<a href="changelog.html" target="_newtab">Changelog </a> |
<a href="https://discord.gg/ST9NaXa" target="_newtab">Discord</a> |
<a href="https://www.reddit.com/r/AntimatterDimensions/" target="_newtab">Subreddit</a> | <a href="https://ivark.github.io/savefixer/index.html" target="_newtab">Savefixer</a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="eternitytab" id="milestones">
<table class="table" align="center" style="margin: auto" id="milestones">
<tr>
<td class="milestoneText">1 Eternity:</td>
<td class="milestoneText">2 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward0">Unlock IP multiplier autobuyer</button></td>
<td><button class="milestonerewardlocked" id="reward1">You keep your autobuyers on Eternity</button></td>
</tr>
<tr>
<td class="milestoneText">3 Eternities:</td>
<td class="milestoneText">4 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward2">Unlock replicanti galaxy autobuyer</button></td>
<td><button class="milestonerewardlocked" id="reward3">You keep your infinity upgrades on Eternity</button></td>
</tr>
<tr>
<td class="milestoneText">5 Eternities:</td>
<td class="milestoneText">7 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward4" style="font-size: 12px">Unlock more big crunch autobuyer options.</button></td>
<td><button class="milestonerewardlocked" id="reward5" style="font-size: 10px">You complete Infinity Challenges as soon as you unlock them (you get sacrifice autobuyer immediately)</button></td>
</tr>
<tr>
<td class="milestoneText">9 Eternities:</td>
<td class="milestoneText">10 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward6">Unlock autobuy max galaxies</button></td>
<td><button class="milestonerewardlocked" id="reward7">Unlock autobuy max Dimensional Boosts</button></td>
</tr>
<tr>
<td class="milestoneText">11 Eternities:</td>
<td class="milestoneText">12 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward8">Unlock autobuyer for First Infinity Dimension</button></td>
<td><button class="milestonerewardlocked" id="reward9">Unlock autobuyer for Second Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">13 Eternities:</td>
<td class="milestoneText">14 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward10">Unlock autobuyer for Third Infinity Dimension</button></td>
<td><button class="milestonerewardlocked" id="reward11">Unlock autobuyer for Fourth Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">15 Eternities:</td>
<td class="milestoneText">16 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward12">Unlock autobuyer for Fifth Infinity Dimension</button></td>
<td><button class="milestonerewardlocked" id="reward13">Unlock autobuyer for Sixth Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">17 Eternities:</td>
<td class="milestoneText">18 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward14">Unlock autobuyer for Seventh Infinity Dimension</button></td>
<td><button class="milestonerewardlocked" id="reward15">Unlock autobuyer for Eighth Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">20 Eternities:</td>
<td class="milestoneText">25 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward16">You keep your Breaking infinity upgrades on Eternity</button></td>
<td><button class="milestonerewardlocked" id="reward17">You automatically unlock Infinity Dimensions upon reaching them</button></td>
</tr>
<tr>
<td class="milestoneText">30 Eternities:</td>
<td class="milestoneText">40 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward18">Start with all normal dimensions available for purchase</button></td>
<td><button class="milestonerewardlocked" id="reward19">Unlock autobuyer for replicanti chance upgrade</button></td>
</tr>
<tr>
<td class="milestoneText">50 Eternities:</td>
<td class="milestoneText">60 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward20">You start with replicanti unlocked</button></td>
<td><button class="milestonerewardlocked" id="reward21">Unlock autobuyer for replicanti interval upgrade</button></td>
</tr>
<tr>
<td class="milestoneText">80 Eternities:</td>
<td class="milestoneText">100 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward22">Unlock autobuyer for replicanti galaxy upgrade</button></td>
<td><button class="milestonerewardlocked" id="reward23">Unlock autobuyer for Eternities</button></td>
</tr>
</table>
<div>
<table id="footer">
<tr>
<td>
<div style="text-align:center">
<a href="howto.html" target="_newtab">How to play </a> |
<a href="about.html" target="_newtab" onclick="giveAchievement('A sound financial decision')">Donate </a> |
<a href="changelog.html" target="_newtab">Changelog </a> |
<a href="https://discord.gg/ST9NaXa" target="_newtab">Discord</a> |
<a href="https://www.reddit.com/r/AntimatterDimensions/" target="_newtab">Subreddit</a> | <a href="https://ivark.github.io/savefixer/index.html" target="_newtab">Savefixer</a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="eternitytab" id="dilation" style="font-size: 11px">
<canvas id="dilationCanvas"></canvas>
<div>
<p>You have <span id="tachyonParticleAmount" style="font-size:35px; color: black">0</span> tachyon particles.</p>
</div>
<button id="enabledilation" class="dilationbtn" onclick="startDilatedEternity()">Dilate time.</button>
<p>You have <span id="dilatedTimeAmount" style="font-size:35px; color: black">0</span> dilated time <span id="dilatedTimePerSecond" style="font-size:25px; color: black">0</span></p>
<p>Next free galaxy at <span id="galaxyThreshold" style="font-size:25px; color: black">1000</span> dilated time, gained total of <span id="dilatedGalaxies" style="font-size:25px; color: black">0</span></p>
<table>
<tr>
<td>
<button class="timestudy" id="dil1" onclick="buyDilationUpgrade(1)">Double time dilation gain.<br><span id="dil1cost">Cost: 1e5 dilated time</span></button>
</td>
<td>
<button class="timestudy" id="dil2" onclick="buyDilationUpgrade(2)">Decrease the galaxy threshold multiplier, but resets free galaxies and dilated time.<br><span id="dil2cost">Cost: 1e6 dilated time</span></button>
</td>
<td>
<button class="timestudy" id="dil3" onclick="buyDilationUpgrade(3)">Triple the amount of Tachyon Particles gained.<br><span id="dil3cost">Cost: 1e7 dilated time</span></button>
</td>
</tr>
<tr>
<td>
<button class="timestudy" id="dil4" onclick="buyDilationUpgrade(4)">Gain twice as many free galaxies.<br><span id="dil4cost">Cost: 5e6 dilated time</span></button>
</td>
<td>
<button class="timestudy" id="dil5" onclick="buyDilationUpgrade(5)">Time Dimensions are affected by replicanti multiplier ^ 0.1.<br><span id="dil5cost">Cost: 1e9 dilated time</span></button>
</td>
<td>
<button class="timestudy" id="dil6" onclick="buyDilationUpgrade(6)">Normal dimensions gain a multiplier based on dilated time, unaffected by time dilation.<br><span id="dil6cost">Cost: 5e7 dilated time</span></button>
</td>
</tr>
<tr>
<td>
<button class="timestudy" id="dil7" onclick="buyDilationUpgrade(7)">Gain a multiplier to IP based on dilated time.<br><span id="dil7desc"></span><br><span id="dil7cost"></span></button>
</td>
<td>
<button class="timestudy" id="dil8" onclick="buyDilationUpgrade(8)">Pick all the study paths from the first split.<br><span id="dil8cost"></span></button>
</td>
<td>
<button class="timestudy" id="dil9" onclick="buyDilationUpgrade(9)">Reduce the dilation penalty. (^ 1.05 after reduction)<br><span id="dil9cost"></span></button>
</td>
</tr>
<tr>
<td>
<button class="timestudybought" style="opacity: 0;"></button>
</td>
<td>
<button class="timestudy" id="dil10" onclick="buyDilationUpgrade(10)">Generate time theorems based on tachyon particles.<br><span id="dil10desc"></span><br><span id="dil10cost"></span></button>
</td>
<td>
<button class="timestudybought" style="opacity: 0;"></button>
</td>
</tr>
</table>
<div>
<table id="footer">
<tr>
<td>
<div style="text-align:center">
<a href="howto.html" target="_newtab">How to play </a> |
<a href="about.html" target="_newtab" onclick="giveAchievement('A sound financial decision')">Donate </a> |
<a href="changelog.html" target="_newtab">Changelog </a> |
<a href="https://discord.gg/ST9NaXa" target="_newtab">Discord</a> |
<a href="https://www.reddit.com/r/AntimatterDimensions/" target="_newtab">Subreddit</a> | <a href="https://ivark.github.io/savefixer/index.html" target="_newtab">Savefixer</a>
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="dimensions" class="tab">
<table class="table" align="center" style="margin: auto" id="dimTabButtons">
<tr>
<td id="dtabbtn"><button class="secondarytabbtn" onclick="showDimTab('antimatterdimensions')">Dimensions</button></td>
<td id="idtabbtn"><button class="secondarytabbtn" onclick="showDimTab('infinitydimensions')">Infinity Dimensions</button></td>
<td id="tdtabbtn"><button class="secondarytabbtn" onclick="showDimTab('timedimensions')">Time Dimensions</button></td>
<td id="prodtabbtn"><button class="secondarytabbtn" onclick="showDimTab('production')">Production</button></td>
</tr>
</table>
<div id="antimatterdimensions" class="dimtab">
<p></p>
<input id="confirmation" type="checkbox" style="width:20px; height: 18px; display: none" ach-tooltip="No confirmation when doing Dimensional Sacrifice" onchange="sacrificeConf()">
<button id="sacrifice" class="storebtn" style="font-size:12px; width: 320px; display: none" ach-tooltip="">Dimensional Sacrifice</button>
<button id="maxall" class="storebtn" style="font-size: 12px">Max all (M)</Button>
<span id="chall2Pow"></span>
<span id="chall3Pow"></span>
<table class="table" >
<tbody id="parent">
<tr style="font-size: 15px" id="firstRow">
<td id="firstD" width="32%" class="rel">
First Dimension x1
</td>
<td>
<div id="firstAmount">0 (0)</div>
</td>
<td align="right" width="10%">
<button id="first" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn" align="right">Cost: 10</button>
</td>
<td align="right" width="10%">
<button id="firstMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn" align="right">Cost: 10</button>
</td>
</tr>
<tr id="secondRow" style="display: none; font-size: 15px">
<td id="secondD" class="rel">
Second Dimension
</td>
<td>
<div id="secondAmount" align="left">0 (0)</div>
</td>
<td><button id="second" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 100</button>
</td>
<td>
<button id="secondMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="thirdRow" style="display: none; font-size: 15px">
<td id="thirdD" class="rel">
Third Dimension
</td>
<td>
<div id="thirdAmount" align="left">0 (0)</div>
</td>
<td>
<button id="third" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 10000</button>
</td>
<td>
<button id="thirdMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="fourthRow" style="display: none; font-size: 15px">
<td id="fourthD" class="rel">
Fourth Dimension
</td>
<td>
<div id="fourthAmount" align="left">0 (0)</div>
</td>
<td>
<button id="fourth" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 1000000</button>
</td>
<td>
<button id="fourthMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="fifthRow" style="display: none; font-size: 15px">
<td id="fifthD" class="rel">
Fifth Dimension
</td>
<td>
<div id="fifthAmount" align="left">0 (0)</div>
</td>
<td>
<button id="fifth" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 1000000</button>
</td>
<td>
<button id="fifthMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="sixthRow" style="display: none; font-size: 15px">
<td id="sixthD" class="rel">
Sixth Dimension
</td>
<td>
<div id="sixthAmount" align="left">0 (0)</div>
</td>
<td>
<button id="sixth" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 1000000</button>
</td>
<td>
<button id="sixthMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="seventhRow" style="display: none; font-size: 15px">
<td id="seventhD" class="rel">
Seventh Dimension
</td>
<td>
<div id="seventhAmount" align="left">0 (0)</div>
</td>
<td>
<button id="seventh" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 1000000</button>
</td>
<td>
<button id="seventhMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="eightRow" style="display: none; font-size: 15px">
<td id="eightD" class="rel">
Eight Dimension
</td>
<td>
<div id="eightAmount" align="left">0 (0)</div>
</td>
<td>
<button id="eight" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 1000000</button>
</td>
<td>
<button id="eightMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
</tbody>
</table>
<table style="width: 100%">
<tr style="font-size: 15px">
<td id="resetLabel">
Dimension Shift: requires 20 Fourth Dimension
</td>
<td>
<button id="softReset" style="color:black; width: 200px; height: 25px; font-size: 9px" class="storebtn">Reset the game for a new Dimension</button>
</td>
</tr>
<tr style="font-size: 15px">
<td id="secondResetLabel">
Antimatter Galaxies: requires 80 Eight Dimension
</td>
<td>
<button id="secondSoftReset" style="color:black; width: 200px; height: 35px; font-size: 9px" class="storebtn">Lose all your previous progress, but get a tickspeed boost</button>
</td>
</tr>
</table>
<button id="quickReset" style="color:black; width: 200px; height: 50px; font-size: 12px; display: none" class="storebtn">Lose a reset, returning to the start of the reset</button>
</div>
<div id="infinitydimensions" class="dimtab">
<span id="EC12Pow"></span>
<div>
<p>You have <span id="infPowAmount" style="font-size:35px; color: black">0</span> infinity power. translated to <span id="infDimMultAmount" style="font-size:35px; color: black">0</span>x multiplier on all dimensions</p>
</div>
<div id="infPowPerSec">You are getting 0 antimatter per second.</div>
<table class="table" >
<tr style="font-size: 16px" id="infRow1">
<td id="infD1" width="41%">
First Infinity Dimension x1
</td>
<td>
<div id="infAmount1">0 (0)</div>
</td>
<td>
<button id="infauto1" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(1)" class="storebtn">Auto: ON</button>
</td>
<td align="right" width="10%">
<button id="infMax1" style="color:black; width:195px; height:30px" class="storebtn" align="right" onclick="buyManyInfinityDimension(1)">Cost: 10</button>
</td>
</tr>
<tr id="infRow2" style="display: none; font-size: 16px">
<td id="infD2">
Second Infinity Dimension x1
</td>
<td>
<div id="infAmount2" align="left">0 (0)</div>
</td>
<td>
<button id="infauto2" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(2)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax2" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(2)">Cost: 10</button>
</td>
</tr>
<tr id="infRow3" style="display: none; font-size: 16px">
<td id="infD3">
Third Infinity Dimension x1
</td>
<td>
<div id="infAmount3" align="left">0 (0)</div>
</td>
<td>
<button id="infauto3" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(3)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax3" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(3)">Cost: 10</button>
</td>
</tr>
<tr id="infRow4" style="display: none; font-size: 16px">
<td id="infD4">
Fourth Infinity Dimension x1
</td>
<td>
<div id="infAmount4" align="left">0 (0)</div>
</td>
<td>
<button id="infauto4" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(4)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax4" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(4)">Cost: 10</button>
</td>
</tr>
<tr id="infRow5" style="display: none; font-size: 16px">
<td id="infD5">
Fourth Infinity Dimension x1
</td>
<td>
<div id="infAmount5" align="left">0 (0)</div>
</td>
<td>
<button id="infauto5" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(5)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax5" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(5)">Cost: 10</button>
</td>
</tr>
<tr id="infRow6" style="display: none; font-size: 16px">
<td id="infD6">
Fourth Infinity Dimension x1
</td>
<td>
<div id="infAmount6" align="left">0 (0)</div>
</td>
<td>
<button id="infauto6" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(6)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax6" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(6)">Cost: 10</button>
</td>
</tr>
<tr id="infRow7" style="display: none; font-size: 16px">
<td id="infD7">
Fourth Infinity Dimension x1
</td>
<td>
<div id="infAmount7" align="left">0 (0)</div>
</td>
<td>
<button id="infauto7" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(7)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax7" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(7)">Cost: 10</button>
</td>
</tr>
<tr id="infRow8" style="display: none; font-size: 16px">
<td id="infD8">
Fourth Infinity Dimension x1
</td>
<td>
<div id="infAmount8" align="left">0 (0)</div>
</td>
<td>
<button id="infauto8" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(8)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax8" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(8)">Cost: 10</button>
</td>
</tr>
</table>
<div id="eterc8ids" style="display: none;"></div>
<button id="toggleallinfdims"style="width:140px; height: 30px; font-size: 12px; visibility: hidden" onclick="toggleAllInfDims()" class="storebtn">Toggle all ON/OFF</button>
</div>
<div id="timedimensions" class="dimtab">
<div>
<p id="totaltickgained">You've gained 0 tickspeed upgrades.</p>
<p>You have <span id="timeShardAmount" style="font-size:35px; color: black">0</span> time shards. Next tickspeed upgrade at <span id="tickThreshold" style="font-size:35px; color: black">0</span></p>
</div>
<div id="timeShardsPerSec">You are getting 0 Timeshards per second.</div>
<button id="maxTimeDimensions" class="storebtn" style="font-size: 12px" onclick="buyMaxTimeDimensions()">Max all</Button>
<table class="table" >
<tr style="font-size: 17px" id="timeRow1">
<td id="timeD1" width="43%">
First Time Dimension x1
</td>
<td>
<div id="timeAmount1">0 (0)</div>
</td>
<td align="right" width="10%">
<button id="timeMax1" style="color:black; width:195px; height:30px" class="storebtn" align="right" onclick="buyTimeDimension(1)">Cost: 10</button>
</td>
</tr>
<tr id="timeRow2" style="font-size: 17px">
<td id="timeD2">
Second Time Dimension x1
</td>
<td>
<div id="timeAmount2" align="left">0 (0)</div>
<td>
<button id="timeMax2" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyTimeDimension(2)">Cost: 10</button>
</td>
</tr>
<tr id="timeRow3" style="font-size: 17px">
<td id="timeD3">
Third Time Dimension x1
</td>
<td>
<div id="timeAmount3" align="left">0 (0)</div>
</td>
<td>
<button id="timeMax3" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyTimeDimension(3)">Cost: 10</button>
</td>
</tr>
<tr id="timeRow4" style="font-size: 17px">
<td id="timeD4">
Fourth Time Dimension x1
</td>
<td>
<div id="timeAmount4" align="left">0 (0)</div>
</td>
<td>
<button id="timeMax4" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyTimeDimension(4)">Cost: 10</button>
</td>
</tr>
<tr id="timeRow5" style="font-size: 17px">
<td id="timeD5">
Fifth Time Dimension x1
</td>
<td>
<div id="timeAmount5" align="left">0 (0)</div>
</td>
<td>
<button id="timeMax5" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyTimeDimension(5)">Cost: 10</button>
</td>
</tr>
<tr id="timeRow6" style="font-size: 17px">
<td id="timeD6">
Sixth Time Dimension x1
</td>
<td>
<div id="timeAmount6" align="left">0 (0)</div>
</td>
<td>
<button id="timeMax6" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyTimeDimension(6)">Cost: 10</button>
</td>
</tr>
<tr id="timeRow7" style="font-size: 17px">
<td id="timeD7">
Seventh Time Dimension x1
</td>
<td>
<div id="timeAmount7" align="left">0 (0)</div>
</td>
<td>
<button id="timeMax7" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyTimeDimension(7)">Cost: 10</button>
</td>
</tr>
<tr id="timeRow8" style="font-size: 17px">
<td id="timeD8">
Eighth Time Dimension x1
</td>
<td>
<div id="timeAmount8" align="left">0 (0)</div>
</td>
<td>
<button id="timeMax8" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyTimeDimension(8)">Cost: 10</button>
</td>
</tr>
</table>
</div>
<div id="production" class="dimtab">
<b>seconds of history:</b>
<input type="number" value="10" onchange="updateChartValues()" id="chartDurationInput"></input>
<b>update rate (in ms):</b>
<input type="number" value="1000" onchange="updateChartValues()" id="chartUpdateRateInput"></input>
<b>enabled:</b>
<input id="chartOnOff" type="checkbox" onchange="enableChart()"></input>
<b>dips:</b>
<input id="chartDipsOnOff" type="checkbox" onchange="enableChartDips()"></input>
<canvas id="normalDimChart" width="1500" height="500" style="user-select: none;"></canvas>
<b>Exponents of antimatter per second</b>
</div>
<div id="footercontainer">
<table id="footer">
<tr>
<td>
<div style="text-align:center">
<a href="howto.html" target="_newtab">How to play </a> |
<a href="about.html" target="_newtab" onclick="giveAchievement('A sound financial decision')">Donate </a> |
<a href="changelog.html" target="_newtab">Changelog </a> |
<a href="https://discord.gg/ST9NaXa" target="_newtab">Discord</a> |
<a href="https://www.reddit.com/r/AntimatterDimensions/" target="_newtab">Subreddit</a> | <a href="https://ivark.github.io/savefixer/index.html" target="_newtab">Savefixer</a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div id="options" class="tab" align="center">
<br>
<table>
<tr>
<td><div><button id="theme" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 20px">Current theme: Normal</button></div></td>
<td><div><button id="notation" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Notation: Standard</button></div></td>
<td><div><button id="newsbtn" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Hide/show the news</button></div></td>
</tr>
<tr>
<td><div><button id="retry" onclick="toggleChallengeRetry()" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Automatically retry challenges</button></div></td>
<td><div><button id="exportbtn" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 20px">Export</button></div></td>
<td><div><button id="importbtn" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 20px">Import</button></div></td>
</tr>
<tr>
<td><div><button id="challengeconfirmation" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 15px">Challenge confirmation ON</button></div></td>
<td><div><button id="save" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 20px">Save</button></div></td>
<td><div><button id="load" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 20px">Load</button></div></td>
</tr>
<tr id="cloudOptions">
<td><div><button onclick="playFabSaveCheck()" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Cloud save</button></div></td>
<td><div><button onclick="playFabLoadCheck()" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Cloud load</button></div></td>
<td><div><button id="cloud" onclick="toggleCloud()" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Toggle automatic cloud saving/loading</button></div></td>