linny-r 1.4.2 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +162 -74
- package/package.json +1 -1
- package/server.js +145 -49
- package/static/images/check-off-not-same-changed.png +0 -0
- package/static/images/check-off-not-same-not-changed.png +0 -0
- package/static/images/check-off-same-changed.png +0 -0
- package/static/images/check-off-same-not-changed.png +0 -0
- package/static/images/check-on-not-same-changed.png +0 -0
- package/static/images/check-on-not-same-not-changed.png +0 -0
- package/static/images/check-on-same-changed.png +0 -0
- package/static/images/check-on-same-not-changed.png +0 -0
- package/static/images/eq-not-same-changed.png +0 -0
- package/static/images/eq-not-same-not-changed.png +0 -0
- package/static/images/eq-same-changed.png +0 -0
- package/static/images/eq-same-not-changed.png +0 -0
- package/static/images/ne-not-same-changed.png +0 -0
- package/static/images/ne-not-same-not-changed.png +0 -0
- package/static/images/ne-same-changed.png +0 -0
- package/static/images/ne-same-not-changed.png +0 -0
- package/static/images/octaeder.svg +993 -0
- package/static/images/sort-asc-lead.png +0 -0
- package/static/images/sort-asc.png +0 -0
- package/static/images/sort-desc-lead.png +0 -0
- package/static/images/sort-desc.png +0 -0
- package/static/images/sort-not.png +0 -0
- package/static/index.html +72 -647
- package/static/linny-r.css +199 -417
- package/static/scripts/linny-r-gui-actor-manager.js +340 -0
- package/static/scripts/linny-r-gui-chart-manager.js +944 -0
- package/static/scripts/linny-r-gui-constraint-editor.js +681 -0
- package/static/scripts/linny-r-gui-controller.js +4005 -0
- package/static/scripts/linny-r-gui-dataset-manager.js +1176 -0
- package/static/scripts/linny-r-gui-documentation-manager.js +739 -0
- package/static/scripts/linny-r-gui-equation-manager.js +307 -0
- package/static/scripts/linny-r-gui-experiment-manager.js +1944 -0
- package/static/scripts/linny-r-gui-expression-editor.js +449 -0
- package/static/scripts/linny-r-gui-file-manager.js +392 -0
- package/static/scripts/linny-r-gui-finder.js +727 -0
- package/static/scripts/linny-r-gui-model-autosaver.js +230 -0
- package/static/scripts/linny-r-gui-monitor.js +448 -0
- package/static/scripts/linny-r-gui-paper.js +2789 -0
- package/static/scripts/linny-r-gui-receiver.js +323 -0
- package/static/scripts/linny-r-gui-repository-browser.js +819 -0
- package/static/scripts/linny-r-gui-scale-unit-manager.js +244 -0
- package/static/scripts/linny-r-gui-sensitivity-analysis.js +778 -0
- package/static/scripts/linny-r-gui-undo-redo.js +560 -0
- package/static/scripts/linny-r-model.js +27 -11
- package/static/scripts/linny-r-utils.js +17 -2
- package/static/scripts/linny-r-vm.js +31 -12
- package/static/scripts/linny-r-gui.js +0 -16761
package/static/linny-r.css
CHANGED
@@ -288,6 +288,11 @@ img.blink {
|
|
288
288
|
animation: blink 1s step-start 0s infinite;
|
289
289
|
}
|
290
290
|
|
291
|
+
#stop-btn.blink {
|
292
|
+
cursor: default;
|
293
|
+
pointer-events: none;
|
294
|
+
}
|
295
|
+
|
291
296
|
img.mbtn {
|
292
297
|
width: 21px;
|
293
298
|
height: 21px;
|
@@ -308,42 +313,59 @@ img.sbtn.senab:hover {
|
|
308
313
|
filter: brightness(150%);
|
309
314
|
}
|
310
315
|
|
311
|
-
|
312
|
-
|
316
|
+
/* Bounds button indicates whether LB = UB */
|
317
|
+
div.bbtn {
|
313
318
|
background-size: contain;
|
314
319
|
background-repeat: no-repeat;
|
315
320
|
cursor: pointer;
|
316
321
|
}
|
317
322
|
|
318
|
-
div.
|
319
|
-
|
323
|
+
div.bbtn.eq {
|
324
|
+
background-image: url('images/eq.png');
|
325
|
+
}
|
326
|
+
|
327
|
+
div.bbtn.eq:hover {
|
320
328
|
filter: brightness(120%);
|
321
329
|
}
|
322
330
|
|
323
|
-
div.
|
331
|
+
div.bbtn.eq.same-changed {
|
332
|
+
background-image: url('images/eq-same-changed.png');
|
333
|
+
}
|
334
|
+
|
335
|
+
div.bbtn.eq.same-not-changed {
|
336
|
+
background-image: url('images/eq-same-not-changed.png');
|
337
|
+
}
|
338
|
+
|
339
|
+
div.bbtn.eq.not-same-changed {
|
340
|
+
background-image: url('images/eq-not-same-changed.png');
|
341
|
+
}
|
342
|
+
|
343
|
+
div.bbtn.eq.not-same-not-changed {
|
344
|
+
background-image: url('images/eq-not-same-not-changed.png');
|
345
|
+
}
|
346
|
+
|
347
|
+
div.bbtn.ne {
|
324
348
|
background-image: url('images/ne.png');
|
325
|
-
background-size: contain;
|
326
|
-
background-repeat: no-repeat;
|
327
|
-
cursor: pointer;
|
328
349
|
}
|
329
350
|
|
330
|
-
div.
|
331
|
-
div.contbtn:hover {
|
351
|
+
div.bbtn.ne:hover {
|
332
352
|
filter: brightness(110%);
|
333
353
|
}
|
334
354
|
|
335
|
-
div.
|
336
|
-
background-image: url('images/
|
337
|
-
background-size: contain;
|
338
|
-
background-repeat: no-repeat;
|
339
|
-
cursor: pointer;
|
355
|
+
div.bbtn.ne.same-changed {
|
356
|
+
background-image: url('images/ne-same-changed.png');
|
340
357
|
}
|
341
358
|
|
342
|
-
div.
|
343
|
-
background-image: url('images/
|
344
|
-
|
345
|
-
|
346
|
-
|
359
|
+
div.bbtn.ne.same-not-changed {
|
360
|
+
background-image: url('images/ne-same-not-changed.png');
|
361
|
+
}
|
362
|
+
|
363
|
+
div.bbtn.ne.not-same-changed {
|
364
|
+
background-image: url('images/ne-not-same-changed.png');
|
365
|
+
}
|
366
|
+
|
367
|
+
div.bbtn.ne.not-same-not-changed {
|
368
|
+
background-image: url('images/ne-not-same-not-changed.png');
|
347
369
|
}
|
348
370
|
|
349
371
|
input {
|
@@ -361,7 +383,44 @@ input[type="password"] {
|
|
361
383
|
}
|
362
384
|
|
363
385
|
input[type="text"]:disabled {
|
364
|
-
|
386
|
+
color: gray;
|
387
|
+
background-color: #f4f0f2;
|
388
|
+
}
|
389
|
+
|
390
|
+
input[type="text"].same-not-changed {
|
391
|
+
color: #5060b0;
|
392
|
+
background-color: #f4f8ff;
|
393
|
+
}
|
394
|
+
|
395
|
+
input[type="text"].not-same-not-changed {
|
396
|
+
color: #b06050;
|
397
|
+
background-color: #fff6f4;
|
398
|
+
}
|
399
|
+
|
400
|
+
input[type="text"].same-changed {
|
401
|
+
color: #0000e0;
|
402
|
+
background-color: #c0e0ff;
|
403
|
+
}
|
404
|
+
|
405
|
+
input[type="text"].not-same-changed {
|
406
|
+
color: #e00000;
|
407
|
+
background-color: #ffd0c0;
|
408
|
+
}
|
409
|
+
|
410
|
+
select.same-not-changed {
|
411
|
+
color: #5060b0;
|
412
|
+
}
|
413
|
+
|
414
|
+
select.not-same-not-changed {
|
415
|
+
color: #b06050;
|
416
|
+
}
|
417
|
+
|
418
|
+
select.same-changed {
|
419
|
+
color: #0000e0;
|
420
|
+
}
|
421
|
+
|
422
|
+
select.not-same-changed {
|
423
|
+
color: #e00000;
|
365
424
|
}
|
366
425
|
|
367
426
|
textarea {
|
@@ -614,6 +673,21 @@ img.inline-cancel-btn:hover {
|
|
614
673
|
filter: brightness(120%);
|
615
674
|
}
|
616
675
|
|
676
|
+
#actor-group,
|
677
|
+
#constraint-group,
|
678
|
+
#cluster-group,
|
679
|
+
#link-group,
|
680
|
+
#process-group,
|
681
|
+
#product-group {
|
682
|
+
position: absolute;
|
683
|
+
right: 45px;
|
684
|
+
top: 5px;
|
685
|
+
font-size: 10px;
|
686
|
+
color: #8000a0;
|
687
|
+
background-color: inherit;
|
688
|
+
animation: blink 1s step-start 0s infinite;
|
689
|
+
}
|
690
|
+
|
617
691
|
/* CHECK BOX styles
|
618
692
|
NOTE: separate style names `abox` and `vbox` so that different events can be
|
619
693
|
bound dynamically to actor check boxes */
|
@@ -635,26 +709,59 @@ div.vbox:hover {
|
|
635
709
|
filter: brightness(105%);
|
636
710
|
}
|
637
711
|
|
712
|
+
div.crossed {
|
713
|
+
background-size: contain;
|
714
|
+
background-image: url('images/check-x.png');
|
715
|
+
}
|
716
|
+
|
717
|
+
div.disab {
|
718
|
+
background-size: contain;
|
719
|
+
background-image: url('images/check-disab.png');
|
720
|
+
}
|
721
|
+
|
638
722
|
div.clear {
|
639
723
|
background-size: contain;
|
640
724
|
background-image: url('images/check-off.png');
|
641
725
|
}
|
642
726
|
|
727
|
+
div.clear.same-changed {
|
728
|
+
background-image: url('images/check-off-same-changed.png');
|
729
|
+
}
|
730
|
+
|
731
|
+
div.clear.same-not-changed {
|
732
|
+
background-image: url('images/check-off-same-not-changed.png');
|
733
|
+
}
|
734
|
+
|
735
|
+
div.clear.not-same-changed {
|
736
|
+
background-image: url('images/check-off-not-same-changed.png');
|
737
|
+
}
|
738
|
+
|
739
|
+
div.clear.not-same-not-changed {
|
740
|
+
background-image: url('images/check-off-not-same-not-changed.png');
|
741
|
+
}
|
742
|
+
|
643
743
|
div.checked {
|
644
744
|
background-size: contain;
|
645
745
|
background-image: url('images/check-on.png');
|
646
746
|
}
|
647
747
|
|
648
|
-
div.
|
649
|
-
background-
|
650
|
-
background-image: url('images/check-x.png');
|
748
|
+
div.checked.same-changed {
|
749
|
+
background-image: url('images/check-on-same-changed.png');
|
651
750
|
}
|
652
751
|
|
653
|
-
div.
|
654
|
-
background-
|
655
|
-
background-image: url('images/check-disab.png');
|
752
|
+
div.checked.same-not-changed {
|
753
|
+
background-image: url('images/check-on-same-not-changed.png');
|
656
754
|
}
|
657
755
|
|
756
|
+
div.checked.not-same-changed {
|
757
|
+
background-image: url('images/check-on-not-same-changed.png');
|
758
|
+
}
|
759
|
+
|
760
|
+
div.checked.not-same-not-changed {
|
761
|
+
background-image: url('images/check-on-not-same-not-changed.png');
|
762
|
+
}
|
763
|
+
|
764
|
+
|
658
765
|
/* NOTE: the name of the focal cluster is displayed to the right of
|
659
766
|
the top bar buttons */
|
660
767
|
#focal-cluster {
|
@@ -1288,11 +1395,11 @@ td.export {
|
|
1288
1395
|
white-space: nowrap;
|
1289
1396
|
}
|
1290
1397
|
|
1291
|
-
#process-
|
1398
|
+
#process-LCF {
|
1292
1399
|
width: 77px;
|
1293
1400
|
}
|
1294
1401
|
|
1295
|
-
#process-
|
1402
|
+
#process-LCF-x {
|
1296
1403
|
margin-bottom: 5px;
|
1297
1404
|
}
|
1298
1405
|
|
@@ -1587,12 +1694,24 @@ td.export {
|
|
1587
1694
|
height: min-content;
|
1588
1695
|
}
|
1589
1696
|
|
1697
|
+
#link-x-y {
|
1698
|
+
display: inline-block;
|
1699
|
+
white-space: nowrap;
|
1700
|
+
margin-right: 3px;
|
1701
|
+
}
|
1702
|
+
|
1703
|
+
#link-arrow-1 {
|
1704
|
+
padding: 0 1px;
|
1705
|
+
}
|
1706
|
+
|
1707
|
+
#link-arrow-2 {
|
1708
|
+
padding: 0 2px;
|
1709
|
+
}
|
1710
|
+
|
1590
1711
|
#link-from-name,
|
1591
1712
|
#link-to-name {
|
1592
1713
|
display: inline-block;
|
1593
|
-
max-width:
|
1594
|
-
margin-left: 2px;
|
1595
|
-
margin-right: 2px;
|
1714
|
+
max-width: 135px;
|
1596
1715
|
white-space: nowrap;
|
1597
1716
|
overflow: hidden;
|
1598
1717
|
text-overflow: ellipsis;
|
@@ -1754,18 +1873,18 @@ div.menu-item:hover {
|
|
1754
1873
|
height: 436px;
|
1755
1874
|
}
|
1756
1875
|
|
1757
|
-
#
|
1876
|
+
#constraint-button-bar {
|
1758
1877
|
margin-top: 1px;
|
1759
1878
|
margin-left: 2px;
|
1760
1879
|
}
|
1761
1880
|
|
1762
|
-
#
|
1881
|
+
#constraint-container {
|
1763
1882
|
position: absolute;
|
1764
1883
|
top: 45px;
|
1765
1884
|
left: 20px;
|
1766
1885
|
}
|
1767
1886
|
|
1768
|
-
#
|
1887
|
+
#constraint-y-label {
|
1769
1888
|
position: absolute;
|
1770
1889
|
bottom: 75px;
|
1771
1890
|
left: 8px;
|
@@ -1778,7 +1897,7 @@ div.menu-item:hover {
|
|
1778
1897
|
white-space: nowrap;
|
1779
1898
|
}
|
1780
1899
|
|
1781
|
-
#
|
1900
|
+
#constraint-x-label {
|
1782
1901
|
position: absolute;
|
1783
1902
|
top: 374px;
|
1784
1903
|
left: 45px;
|
@@ -1786,21 +1905,21 @@ div.menu-item:hover {
|
|
1786
1905
|
text-align: center;
|
1787
1906
|
}
|
1788
1907
|
|
1789
|
-
#
|
1908
|
+
#constraint-pos-x {
|
1790
1909
|
position: absolute;
|
1791
1910
|
top: 393px;
|
1792
1911
|
left: 4px;
|
1793
1912
|
width: 54px;
|
1794
1913
|
}
|
1795
1914
|
|
1796
|
-
#
|
1915
|
+
#constraint-pos-y {
|
1797
1916
|
position: absolute;
|
1798
1917
|
top: 393px;
|
1799
1918
|
left: 55px;
|
1800
1919
|
width: 54px;
|
1801
1920
|
}
|
1802
1921
|
|
1803
|
-
#
|
1922
|
+
#constraint-point {
|
1804
1923
|
position: absolute;
|
1805
1924
|
top: 393px;
|
1806
1925
|
left: 160px;
|
@@ -1808,7 +1927,7 @@ div.menu-item:hover {
|
|
1808
1927
|
text-align: center;
|
1809
1928
|
}
|
1810
1929
|
|
1811
|
-
#
|
1930
|
+
#constraint-equation {
|
1812
1931
|
position: absolute;
|
1813
1932
|
top: 393px;
|
1814
1933
|
right: 4px;
|
@@ -1816,14 +1935,14 @@ div.menu-item:hover {
|
|
1816
1935
|
text-align: right;
|
1817
1936
|
}
|
1818
1937
|
|
1819
|
-
#
|
1938
|
+
#constraint {
|
1820
1939
|
width: 330px;
|
1821
1940
|
height: 320px;
|
1822
1941
|
transform-origin: top left;
|
1823
1942
|
}
|
1824
1943
|
|
1825
|
-
#
|
1826
|
-
#
|
1944
|
+
#constraint-from-name,
|
1945
|
+
#constraint-to-name {
|
1827
1946
|
display: inline-block;
|
1828
1947
|
max-width: 190px;
|
1829
1948
|
white-space: nowrap;
|
@@ -1832,7 +1951,7 @@ div.menu-item:hover {
|
|
1832
1951
|
font-weight: 700;
|
1833
1952
|
}
|
1834
1953
|
|
1835
|
-
#
|
1954
|
+
#constraint-from-name {
|
1836
1955
|
vertical-align: bottom;
|
1837
1956
|
}
|
1838
1957
|
|
@@ -1852,7 +1971,7 @@ div.menu-item:hover {
|
|
1852
1971
|
width: 126px;
|
1853
1972
|
}
|
1854
1973
|
|
1855
|
-
#
|
1974
|
+
#constraint-bottom-div {
|
1856
1975
|
position: absolute;
|
1857
1976
|
bottom: 4px;
|
1858
1977
|
left: 4px;
|
@@ -1861,31 +1980,31 @@ div.menu-item:hover {
|
|
1861
1980
|
border-top: 1px solid silver;
|
1862
1981
|
}
|
1863
1982
|
|
1864
|
-
#
|
1983
|
+
#constraint-no-slack-div {
|
1865
1984
|
position: absolute;
|
1866
1985
|
left: -2px;
|
1867
1986
|
bottom: -1px;
|
1868
1987
|
width: 100px;
|
1869
1988
|
}
|
1870
1989
|
|
1871
|
-
#
|
1990
|
+
#constraint-no-slack-lbl {
|
1872
1991
|
display: inline-block;
|
1873
1992
|
vertical-align: top;
|
1874
1993
|
padding-top: 4px;
|
1875
1994
|
}
|
1876
1995
|
|
1877
|
-
#
|
1996
|
+
#constraint-soc-direct {
|
1878
1997
|
height: 19px;
|
1879
1998
|
font-size: 12px;
|
1880
1999
|
}
|
1881
2000
|
|
1882
|
-
#
|
2001
|
+
#constraint-share-of-cost {
|
1883
2002
|
width: 45px;
|
1884
2003
|
max-height: 18px;
|
1885
2004
|
margin: 3px 1px 0 3px;
|
1886
2005
|
}
|
1887
2006
|
|
1888
|
-
#
|
2007
|
+
#constraint-soc {
|
1889
2008
|
position: absolute;
|
1890
2009
|
right: 0px;
|
1891
2010
|
}
|
@@ -2642,7 +2761,7 @@ td.equation-expression {
|
|
2642
2761
|
position: absolute;
|
2643
2762
|
top: 113px;
|
2644
2763
|
width: 200px;
|
2645
|
-
height: calc(100% -
|
2764
|
+
height: calc(100% - 117px);
|
2646
2765
|
overflow-y: auto;
|
2647
2766
|
}
|
2648
2767
|
|
@@ -4269,6 +4388,17 @@ img.finder {
|
|
4269
4388
|
width: 50%;
|
4270
4389
|
}
|
4271
4390
|
|
4391
|
+
/* NOTE: Finder buttons are initially invisible */
|
4392
|
+
|
4393
|
+
#finder-edit-btn {
|
4394
|
+
position: absolute;
|
4395
|
+
height: 16px;
|
4396
|
+
width: 16px;
|
4397
|
+
bottom: 1px;
|
4398
|
+
right: calc(50% + 24px);
|
4399
|
+
display: none;
|
4400
|
+
}
|
4401
|
+
|
4272
4402
|
#finder-copy-btn {
|
4273
4403
|
position: absolute;
|
4274
4404
|
height: 16px;
|
@@ -4734,7 +4864,7 @@ div.call-stack-expr {
|
|
4734
4864
|
overflow: auto;
|
4735
4865
|
}
|
4736
4866
|
|
4737
|
-
#
|
4867
|
+
#move-buttons,
|
4738
4868
|
#confirm-load-from-repo-buttons,
|
4739
4869
|
#confirm-delete-from-repo-buttons,
|
4740
4870
|
#check-update-buttons {
|
@@ -4745,7 +4875,7 @@ div.call-stack-expr {
|
|
4745
4875
|
white-space: nowrap;
|
4746
4876
|
}
|
4747
4877
|
|
4748
|
-
#
|
4878
|
+
#move-buttons > img,
|
4749
4879
|
#confirm-load-from-repo-buttons > img,
|
4750
4880
|
#confirm-delete-from-repo-buttons > img,
|
4751
4881
|
#check-update-buttons > img {
|
@@ -4756,372 +4886,24 @@ div.call-stack-expr {
|
|
4756
4886
|
padding-bottom: 3px;
|
4757
4887
|
}
|
4758
4888
|
|
4759
|
-
/*
|
4760
|
-
|
4761
|
-
#fr00 {
|
4762
|
-
visibility: hidden;
|
4763
|
-
animation: 3s show infinite;
|
4764
|
-
animation-delay: 0.05s;
|
4765
|
-
}
|
4766
|
-
|
4767
|
-
#fr01 {
|
4768
|
-
visibility: hidden;
|
4769
|
-
animation: 3s show infinite;
|
4770
|
-
animation-delay: 0.1s;
|
4771
|
-
}
|
4772
|
-
|
4773
|
-
#fr02 {
|
4774
|
-
visibility: hidden;
|
4775
|
-
animation: 3s show infinite;
|
4776
|
-
animation-delay: 0.15s;
|
4777
|
-
}
|
4778
|
-
|
4779
|
-
#fr03 {
|
4780
|
-
visibility: hidden;
|
4781
|
-
animation: 3s show infinite;
|
4782
|
-
animation-delay: 0.2s;
|
4783
|
-
}
|
4784
|
-
|
4785
|
-
#fr04 {
|
4786
|
-
visibility: hidden;
|
4787
|
-
animation: 3s show infinite;
|
4788
|
-
animation-delay: 0.25s;
|
4789
|
-
}
|
4889
|
+
/* The UPDATING modal notifies that update is in progress */
|
4790
4890
|
|
4791
|
-
#
|
4792
|
-
|
4793
|
-
|
4794
|
-
animation-delay: 0.3s;
|
4891
|
+
#updating-dlg {
|
4892
|
+
width: 325px;
|
4893
|
+
height: 85px;
|
4795
4894
|
}
|
4796
4895
|
|
4797
|
-
#
|
4798
|
-
|
4799
|
-
|
4800
|
-
|
4801
|
-
|
4802
|
-
|
4803
|
-
#fr07 {
|
4804
|
-
visibility: hidden;
|
4805
|
-
animation: 3s show infinite;
|
4806
|
-
animation-delay: 0.4s;
|
4807
|
-
}
|
4808
|
-
|
4809
|
-
#fr08 {
|
4810
|
-
visibility: hidden;
|
4811
|
-
animation: 3s show infinite;
|
4812
|
-
animation-delay: 0.45s;
|
4813
|
-
}
|
4814
|
-
|
4815
|
-
#fr09 {
|
4816
|
-
visibility: hidden;
|
4817
|
-
animation: 3s show infinite;
|
4818
|
-
animation-delay: 0.5s;
|
4819
|
-
}
|
4820
|
-
|
4821
|
-
#fr10 {
|
4822
|
-
visibility: hidden;
|
4823
|
-
animation: 3s show infinite;
|
4824
|
-
animation-delay: 0.55s;
|
4825
|
-
}
|
4826
|
-
|
4827
|
-
#fr11 {
|
4828
|
-
visibility: hidden;
|
4829
|
-
animation: 3s show infinite;
|
4830
|
-
animation-delay: 0.6s;
|
4831
|
-
}
|
4832
|
-
|
4833
|
-
#fr12 {
|
4834
|
-
visibility: hidden;
|
4835
|
-
animation: 3s show infinite;
|
4836
|
-
animation-delay: 0.65s;
|
4837
|
-
}
|
4838
|
-
|
4839
|
-
#fr13 {
|
4840
|
-
visibility: hidden;
|
4841
|
-
animation: 3s show infinite;
|
4842
|
-
animation-delay: 0.7s;
|
4843
|
-
}
|
4844
|
-
|
4845
|
-
#fr14 {
|
4846
|
-
visibility: hidden;
|
4847
|
-
animation: 3s show infinite;
|
4848
|
-
animation-delay: 0.75s;
|
4849
|
-
}
|
4850
|
-
|
4851
|
-
#fr15 {
|
4852
|
-
visibility: hidden;
|
4853
|
-
animation: 3s show infinite;
|
4854
|
-
animation-delay: 0.8s;
|
4855
|
-
}
|
4856
|
-
|
4857
|
-
#fr16 {
|
4858
|
-
visibility: hidden;
|
4859
|
-
animation: 3s show infinite;
|
4860
|
-
animation-delay: 0.85s;
|
4861
|
-
}
|
4862
|
-
|
4863
|
-
#fr17 {
|
4864
|
-
visibility: hidden;
|
4865
|
-
animation: 3s show infinite;
|
4866
|
-
animation-delay: 0.9s;
|
4867
|
-
}
|
4868
|
-
|
4869
|
-
#fr18 {
|
4870
|
-
visibility: hidden;
|
4871
|
-
animation: 3s show infinite;
|
4872
|
-
animation-delay: 0.95s;
|
4873
|
-
}
|
4874
|
-
|
4875
|
-
#fr19 {
|
4876
|
-
visibility: hidden;
|
4877
|
-
animation: 3s show infinite;
|
4878
|
-
animation-delay: 1s;
|
4879
|
-
}
|
4880
|
-
|
4881
|
-
#fr20 {
|
4882
|
-
visibility: hidden;
|
4883
|
-
animation: 3s show infinite;
|
4884
|
-
animation-delay: 1.05s;
|
4885
|
-
}
|
4886
|
-
|
4887
|
-
#fr21 {
|
4888
|
-
visibility: hidden;
|
4889
|
-
animation: 3s show infinite;
|
4890
|
-
animation-delay: 1.1s;
|
4891
|
-
}
|
4892
|
-
|
4893
|
-
#fr22 {
|
4894
|
-
visibility: hidden;
|
4895
|
-
animation: 3s show infinite;
|
4896
|
-
animation-delay: 1.15s;
|
4897
|
-
}
|
4898
|
-
|
4899
|
-
#fr23 {
|
4900
|
-
visibility: hidden;
|
4901
|
-
animation: 3s show infinite;
|
4902
|
-
animation-delay: 1.2s;
|
4903
|
-
}
|
4904
|
-
|
4905
|
-
#fr24 {
|
4906
|
-
visibility: hidden;
|
4907
|
-
animation: 3s show infinite;
|
4908
|
-
animation-delay: 1.25s;
|
4909
|
-
}
|
4910
|
-
|
4911
|
-
#fr25 {
|
4912
|
-
visibility: hidden;
|
4913
|
-
animation: 3s show infinite;
|
4914
|
-
animation-delay: 1.3s;
|
4915
|
-
}
|
4916
|
-
|
4917
|
-
#fr26 {
|
4918
|
-
visibility: hidden;
|
4919
|
-
animation: 3s show infinite;
|
4920
|
-
animation-delay: 1.35s;
|
4921
|
-
}
|
4922
|
-
|
4923
|
-
#fr27 {
|
4924
|
-
visibility: hidden;
|
4925
|
-
animation: 3s show infinite;
|
4926
|
-
animation-delay: 1.4s;
|
4927
|
-
}
|
4928
|
-
|
4929
|
-
#fr28 {
|
4930
|
-
visibility: hidden;
|
4931
|
-
animation: 3s show infinite;
|
4932
|
-
animation-delay: 1.45s;
|
4933
|
-
}
|
4934
|
-
|
4935
|
-
#fr29 {
|
4936
|
-
visibility: hidden;
|
4937
|
-
animation: 3s show infinite;
|
4938
|
-
animation-delay: 1.5s;
|
4939
|
-
}
|
4940
|
-
|
4941
|
-
#fr30 {
|
4942
|
-
visibility: hidden;
|
4943
|
-
animation: 3s show infinite;
|
4944
|
-
animation-delay: 1.55s;
|
4945
|
-
}
|
4946
|
-
|
4947
|
-
#fr31 {
|
4948
|
-
visibility: hidden;
|
4949
|
-
animation: 3s show infinite;
|
4950
|
-
animation-delay: 1.6s;
|
4951
|
-
}
|
4952
|
-
|
4953
|
-
#fr32 {
|
4954
|
-
visibility: hidden;
|
4955
|
-
animation: 3s show infinite;
|
4956
|
-
animation-delay: 1.65s;
|
4957
|
-
}
|
4958
|
-
|
4959
|
-
#fr33 {
|
4960
|
-
visibility: hidden;
|
4961
|
-
animation: 3s show infinite;
|
4962
|
-
animation-delay: 1.7s;
|
4963
|
-
}
|
4964
|
-
|
4965
|
-
#fr34 {
|
4966
|
-
visibility: hidden;
|
4967
|
-
animation: 3s show infinite;
|
4968
|
-
animation-delay: 1.75s;
|
4969
|
-
}
|
4970
|
-
|
4971
|
-
#fr35 {
|
4972
|
-
visibility: hidden;
|
4973
|
-
animation: 3s show infinite;
|
4974
|
-
animation-delay: 1.8s;
|
4975
|
-
}
|
4976
|
-
|
4977
|
-
#fr36 {
|
4978
|
-
visibility: hidden;
|
4979
|
-
animation: 3s show infinite;
|
4980
|
-
animation-delay: 1.85s;
|
4981
|
-
}
|
4982
|
-
|
4983
|
-
#fr37 {
|
4984
|
-
visibility: hidden;
|
4985
|
-
animation: 3s show infinite;
|
4986
|
-
animation-delay: 1.9s;
|
4987
|
-
}
|
4988
|
-
|
4989
|
-
#fr38 {
|
4990
|
-
visibility: hidden;
|
4991
|
-
animation: 3s show infinite;
|
4992
|
-
animation-delay: 1.95s;
|
4993
|
-
}
|
4994
|
-
|
4995
|
-
#fr39 {
|
4996
|
-
visibility: hidden;
|
4997
|
-
animation: 3s show infinite;
|
4998
|
-
animation-delay: 2s;
|
4999
|
-
}
|
5000
|
-
|
5001
|
-
#fr40 {
|
5002
|
-
visibility: hidden;
|
5003
|
-
animation: 3s show infinite;
|
5004
|
-
animation-delay: 2.05s;
|
5005
|
-
}
|
5006
|
-
|
5007
|
-
#fr41 {
|
5008
|
-
visibility: hidden;
|
5009
|
-
animation: 3s show infinite;
|
5010
|
-
animation-delay: 2.1s;
|
5011
|
-
}
|
5012
|
-
|
5013
|
-
#fr42 {
|
5014
|
-
visibility: hidden;
|
5015
|
-
animation: 3s show infinite;
|
5016
|
-
animation-delay: 2.15s;
|
5017
|
-
}
|
5018
|
-
|
5019
|
-
#fr43 {
|
5020
|
-
visibility: hidden;
|
5021
|
-
animation: 3s show infinite;
|
5022
|
-
animation-delay: 2.2s;
|
5023
|
-
}
|
5024
|
-
|
5025
|
-
#fr44 {
|
5026
|
-
visibility: hidden;
|
5027
|
-
animation: 3s show infinite;
|
5028
|
-
animation-delay: 2.25s;
|
5029
|
-
}
|
5030
|
-
|
5031
|
-
#fr45 {
|
5032
|
-
visibility: hidden;
|
5033
|
-
animation: 3s show infinite;
|
5034
|
-
animation-delay: 2.3s;
|
5035
|
-
}
|
5036
|
-
|
5037
|
-
#fr46 {
|
5038
|
-
visibility: hidden;
|
5039
|
-
animation: 3s show infinite;
|
5040
|
-
animation-delay: 2.35s;
|
5041
|
-
}
|
5042
|
-
|
5043
|
-
#fr47 {
|
5044
|
-
visibility: hidden;
|
5045
|
-
animation: 3s show infinite;
|
5046
|
-
animation-delay: 2.4s;
|
5047
|
-
}
|
5048
|
-
|
5049
|
-
#fr48 {
|
5050
|
-
visibility: hidden;
|
5051
|
-
animation: 3s show infinite;
|
5052
|
-
animation-delay: 2.45s;
|
5053
|
-
}
|
5054
|
-
|
5055
|
-
#fr49 {
|
5056
|
-
visibility: hidden;
|
5057
|
-
animation: 3s show infinite;
|
5058
|
-
animation-delay: 2.5s;
|
5059
|
-
}
|
5060
|
-
|
5061
|
-
#fr50 {
|
5062
|
-
visibility: hidden;
|
5063
|
-
animation: 3s show infinite;
|
5064
|
-
animation-delay: 2.55s;
|
5065
|
-
}
|
5066
|
-
|
5067
|
-
#fr51 {
|
5068
|
-
visibility: hidden;
|
5069
|
-
animation: 3s show infinite;
|
5070
|
-
animation-delay: 2.6s;
|
5071
|
-
}
|
5072
|
-
|
5073
|
-
#fr52 {
|
5074
|
-
visibility: hidden;
|
5075
|
-
animation: 3s show infinite;
|
5076
|
-
animation-delay: 2.65s;
|
5077
|
-
}
|
5078
|
-
|
5079
|
-
#fr53 {
|
5080
|
-
visibility: hidden;
|
5081
|
-
animation: 3s show infinite;
|
5082
|
-
animation-delay: 2.7s;
|
5083
|
-
}
|
5084
|
-
|
5085
|
-
#fr54 {
|
5086
|
-
visibility: hidden;
|
5087
|
-
animation: 3s show infinite;
|
5088
|
-
animation-delay: 2.75s;
|
5089
|
-
}
|
5090
|
-
|
5091
|
-
#fr55 {
|
5092
|
-
visibility: hidden;
|
5093
|
-
animation: 3s show infinite;
|
5094
|
-
animation-delay: 2.8s;
|
5095
|
-
}
|
5096
|
-
|
5097
|
-
#fr56 {
|
5098
|
-
visibility: hidden;
|
5099
|
-
animation: 3s show infinite;
|
5100
|
-
animation-delay: 2.85s;
|
5101
|
-
}
|
5102
|
-
|
5103
|
-
#fr57 {
|
5104
|
-
visibility: hidden;
|
5105
|
-
animation: 3s show infinite;
|
5106
|
-
animation-delay: 2.9s;
|
5107
|
-
}
|
5108
|
-
|
5109
|
-
#fr58 {
|
5110
|
-
visibility: hidden;
|
5111
|
-
animation: 3s show infinite;
|
5112
|
-
animation-delay: 2.95s;
|
5113
|
-
}
|
5114
|
-
|
5115
|
-
#fr59 {
|
5116
|
-
visibility: hidden;
|
5117
|
-
animation: 3s show infinite;
|
5118
|
-
animation-delay: 3s;
|
5119
|
-
}
|
5120
|
-
|
5121
|
-
@keyframes show {
|
5122
|
-
0% { visibility: visible;}
|
5123
|
-
1.666% { visibility: visible; }
|
5124
|
-
1.667% { visibility: hidden; }
|
5125
|
-
100% { visibility: hidden; }
|
4896
|
+
#updating-msg {
|
4897
|
+
position: absolute;
|
4898
|
+
top: 29px;
|
4899
|
+
left: 68px;
|
4900
|
+
font-size: 13px;
|
5126
4901
|
}
|
5127
4902
|
|
4903
|
+
#updating-icon {
|
4904
|
+
position: absolute;
|
4905
|
+
top: 26px;
|
4906
|
+
left: 7px;
|
4907
|
+
width: 60px;
|
4908
|
+
height: 60px;
|
4909
|
+
}
|