postcss-calc 7.0.1 → 7.0.2
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/CHANGELOG.md +15 -0
- package/dist/index.js +12 -3
- package/dist/lib/convertUnit.js +157 -0
- package/dist/lib/reducer.js +225 -153
- package/dist/lib/stringifier.js +17 -4
- package/dist/lib/transform.js +14 -5
- package/dist/parser.js +280 -231
- package/package.json +10 -8
- package/dist/lib/convert.js +0 -46
package/dist/parser.js
CHANGED
|
@@ -610,35 +610,36 @@ symbols_: {
|
|
|
610
610
|
"$accept": 0,
|
|
611
611
|
"$end": 1,
|
|
612
612
|
"ADD": 6,
|
|
613
|
-
"ANGLE":
|
|
613
|
+
"ANGLE": 12,
|
|
614
614
|
"CALC": 3,
|
|
615
615
|
"CHS": 19,
|
|
616
616
|
"DIV": 9,
|
|
617
617
|
"EMS": 17,
|
|
618
618
|
"EOF": 1,
|
|
619
619
|
"EXS": 18,
|
|
620
|
-
"FREQ":
|
|
621
|
-
"FUNCTION":
|
|
622
|
-
"LENGTH":
|
|
620
|
+
"FREQ": 14,
|
|
621
|
+
"FUNCTION": 10,
|
|
622
|
+
"LENGTH": 11,
|
|
623
623
|
"LPAREN": 4,
|
|
624
624
|
"MUL": 8,
|
|
625
|
-
"NUMBER":
|
|
625
|
+
"NUMBER": 26,
|
|
626
626
|
"PERCENTAGE": 25,
|
|
627
627
|
"REMS": 20,
|
|
628
|
-
"RES":
|
|
628
|
+
"RES": 15,
|
|
629
629
|
"RPAREN": 5,
|
|
630
630
|
"SUB": 7,
|
|
631
|
-
"TIME":
|
|
631
|
+
"TIME": 13,
|
|
632
|
+
"UNKNOWN_DIMENSION": 16,
|
|
632
633
|
"VHS": 21,
|
|
633
634
|
"VMAXS": 24,
|
|
634
635
|
"VMINS": 23,
|
|
635
636
|
"VWS": 22,
|
|
636
|
-
"
|
|
637
|
+
"dimension": 30,
|
|
637
638
|
"error": 2,
|
|
638
|
-
"expression":
|
|
639
|
+
"expression": 27,
|
|
639
640
|
"function": 29,
|
|
640
|
-
"math_expression":
|
|
641
|
-
"
|
|
641
|
+
"math_expression": 28,
|
|
642
|
+
"number": 31
|
|
642
643
|
},
|
|
643
644
|
terminals_: {
|
|
644
645
|
1: "EOF",
|
|
@@ -650,13 +651,13 @@ terminals_: {
|
|
|
650
651
|
7: "SUB",
|
|
651
652
|
8: "MUL",
|
|
652
653
|
9: "DIV",
|
|
653
|
-
10: "
|
|
654
|
-
11: "
|
|
655
|
-
12: "
|
|
656
|
-
13: "
|
|
657
|
-
14: "
|
|
658
|
-
15: "
|
|
659
|
-
16: "
|
|
654
|
+
10: "FUNCTION",
|
|
655
|
+
11: "LENGTH",
|
|
656
|
+
12: "ANGLE",
|
|
657
|
+
13: "TIME",
|
|
658
|
+
14: "FREQ",
|
|
659
|
+
15: "RES",
|
|
660
|
+
16: "UNKNOWN_DIMENSION",
|
|
660
661
|
17: "EMS",
|
|
661
662
|
18: "EXS",
|
|
662
663
|
19: "CHS",
|
|
@@ -665,7 +666,8 @@ terminals_: {
|
|
|
665
666
|
22: "VWS",
|
|
666
667
|
23: "VMINS",
|
|
667
668
|
24: "VMAXS",
|
|
668
|
-
25: "PERCENTAGE"
|
|
669
|
+
25: "PERCENTAGE",
|
|
670
|
+
26: "NUMBER"
|
|
669
671
|
},
|
|
670
672
|
TERROR: 2,
|
|
671
673
|
EOF: 1,
|
|
@@ -771,14 +773,14 @@ TERROR: 2,
|
|
|
771
773
|
},
|
|
772
774
|
productions_: bp({
|
|
773
775
|
pop: u([
|
|
774
|
-
|
|
776
|
+
27,
|
|
775
777
|
s,
|
|
776
|
-
[
|
|
777
|
-
28,
|
|
778
|
-
28,
|
|
778
|
+
[28, 9],
|
|
779
779
|
29,
|
|
780
780
|
s,
|
|
781
|
-
[30,
|
|
781
|
+
[30, 17],
|
|
782
|
+
s,
|
|
783
|
+
[31, 3]
|
|
782
784
|
]),
|
|
783
785
|
rule: u([
|
|
784
786
|
2,
|
|
@@ -786,11 +788,11 @@ productions_: bp({
|
|
|
786
788
|
s,
|
|
787
789
|
[3, 5],
|
|
788
790
|
s,
|
|
789
|
-
[1,
|
|
791
|
+
[1, 19],
|
|
790
792
|
2,
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
793
|
+
2,
|
|
794
|
+
c,
|
|
795
|
+
[3, 3]
|
|
794
796
|
])
|
|
795
797
|
}),
|
|
796
798
|
performAction: function parser__PerformAction(yystate /* action[1] */, yysp, yyvstack) {
|
|
@@ -847,180 +849,203 @@ case 6:
|
|
|
847
849
|
case 8:
|
|
848
850
|
/*! Production:: math_expression : function */
|
|
849
851
|
case 9:
|
|
850
|
-
/*! Production:: math_expression :
|
|
852
|
+
/*! Production:: math_expression : dimension */
|
|
851
853
|
case 10:
|
|
852
|
-
/*! Production:: math_expression :
|
|
854
|
+
/*! Production:: math_expression : number */
|
|
853
855
|
|
|
854
856
|
this.$ = yyvstack[yysp];
|
|
855
857
|
break;
|
|
856
858
|
|
|
857
859
|
case 11:
|
|
858
|
-
/*! Production::
|
|
860
|
+
/*! Production:: function : FUNCTION */
|
|
859
861
|
|
|
860
|
-
this.$ = { type: '
|
|
862
|
+
this.$ = { type: 'Function', value: yyvstack[yysp] };
|
|
861
863
|
break;
|
|
862
864
|
|
|
863
865
|
case 12:
|
|
864
|
-
/*! Production::
|
|
866
|
+
/*! Production:: dimension : LENGTH */
|
|
865
867
|
|
|
866
|
-
this.$ = { type: '
|
|
868
|
+
this.$ = { type: 'LengthValue', value: parseFloat(yyvstack[yysp]), unit: /[a-z]+$/i.exec(yyvstack[yysp])[0] };
|
|
867
869
|
break;
|
|
868
870
|
|
|
869
871
|
case 13:
|
|
870
|
-
/*! Production::
|
|
872
|
+
/*! Production:: dimension : ANGLE */
|
|
871
873
|
|
|
872
|
-
this.$ = { type: '
|
|
874
|
+
this.$ = { type: 'AngleValue', value: parseFloat(yyvstack[yysp]), unit: /[a-z]+$/i.exec(yyvstack[yysp])[0] };
|
|
873
875
|
break;
|
|
874
876
|
|
|
875
877
|
case 14:
|
|
876
|
-
/*! Production::
|
|
878
|
+
/*! Production:: dimension : TIME */
|
|
877
879
|
|
|
878
|
-
this.$ = { type: '
|
|
880
|
+
this.$ = { type: 'TimeValue', value: parseFloat(yyvstack[yysp]), unit: /[a-z]+$/i.exec(yyvstack[yysp])[0] };
|
|
879
881
|
break;
|
|
880
882
|
|
|
881
883
|
case 15:
|
|
882
|
-
/*! Production::
|
|
884
|
+
/*! Production:: dimension : FREQ */
|
|
883
885
|
|
|
884
|
-
this.$ = { type: '
|
|
886
|
+
this.$ = { type: 'FrequencyValue', value: parseFloat(yyvstack[yysp]), unit: /[a-z]+$/i.exec(yyvstack[yysp])[0] };
|
|
885
887
|
break;
|
|
886
888
|
|
|
887
889
|
case 16:
|
|
888
|
-
/*! Production::
|
|
890
|
+
/*! Production:: dimension : RES */
|
|
889
891
|
|
|
890
|
-
this.$ = { type: '
|
|
892
|
+
this.$ = { type: 'ResolutionValue', value: parseFloat(yyvstack[yysp]), unit: /[a-z]+$/i.exec(yyvstack[yysp])[0] };
|
|
891
893
|
break;
|
|
892
894
|
|
|
893
895
|
case 17:
|
|
894
|
-
/*! Production::
|
|
896
|
+
/*! Production:: dimension : UNKNOWN_DIMENSION */
|
|
895
897
|
|
|
896
|
-
this.$ = { type: '
|
|
898
|
+
this.$ = { type: 'UnknownDimension', value: parseFloat(yyvstack[yysp]), unit: /[a-z]+$/i.exec(yyvstack[yysp])[0] };
|
|
897
899
|
break;
|
|
898
900
|
|
|
899
901
|
case 18:
|
|
900
|
-
/*! Production::
|
|
902
|
+
/*! Production:: dimension : EMS */
|
|
901
903
|
|
|
902
|
-
this.$ = { type: '
|
|
904
|
+
this.$ = { type: 'EmValue', value: parseFloat(yyvstack[yysp]), unit: 'em' };
|
|
903
905
|
break;
|
|
904
906
|
|
|
905
907
|
case 19:
|
|
906
|
-
/*! Production::
|
|
908
|
+
/*! Production:: dimension : EXS */
|
|
907
909
|
|
|
908
|
-
this.$ = { type: '
|
|
910
|
+
this.$ = { type: 'ExValue', value: parseFloat(yyvstack[yysp]), unit: 'ex' };
|
|
909
911
|
break;
|
|
910
912
|
|
|
911
913
|
case 20:
|
|
912
|
-
/*! Production::
|
|
914
|
+
/*! Production:: dimension : CHS */
|
|
913
915
|
|
|
914
|
-
this.$ = { type: '
|
|
916
|
+
this.$ = { type: 'ChValue', value: parseFloat(yyvstack[yysp]), unit: 'ch' };
|
|
915
917
|
break;
|
|
916
918
|
|
|
917
919
|
case 21:
|
|
918
|
-
/*! Production::
|
|
920
|
+
/*! Production:: dimension : REMS */
|
|
919
921
|
|
|
920
|
-
this.$ = { type: '
|
|
922
|
+
this.$ = { type: 'RemValue', value: parseFloat(yyvstack[yysp]), unit: 'rem' };
|
|
921
923
|
break;
|
|
922
924
|
|
|
923
925
|
case 22:
|
|
924
|
-
/*! Production::
|
|
926
|
+
/*! Production:: dimension : VHS */
|
|
925
927
|
|
|
926
|
-
this.$ = { type: '
|
|
928
|
+
this.$ = { type: 'VhValue', value: parseFloat(yyvstack[yysp]), unit: 'vh' };
|
|
927
929
|
break;
|
|
928
930
|
|
|
929
931
|
case 23:
|
|
930
|
-
/*! Production::
|
|
932
|
+
/*! Production:: dimension : VWS */
|
|
931
933
|
|
|
932
|
-
this.$ = { type: '
|
|
934
|
+
this.$ = { type: 'VwValue', value: parseFloat(yyvstack[yysp]), unit: 'vw' };
|
|
933
935
|
break;
|
|
934
936
|
|
|
935
937
|
case 24:
|
|
936
|
-
/*! Production::
|
|
938
|
+
/*! Production:: dimension : VMINS */
|
|
937
939
|
|
|
938
|
-
this.$ = { type: '
|
|
940
|
+
this.$ = { type: 'VminValue', value: parseFloat(yyvstack[yysp]), unit: 'vmin' };
|
|
939
941
|
break;
|
|
940
942
|
|
|
941
943
|
case 25:
|
|
942
|
-
/*! Production::
|
|
944
|
+
/*! Production:: dimension : VMAXS */
|
|
943
945
|
|
|
944
|
-
this.$ = { type: '
|
|
946
|
+
this.$ = { type: 'VmaxValue', value: parseFloat(yyvstack[yysp]), unit: 'vmax' };
|
|
945
947
|
break;
|
|
946
948
|
|
|
947
949
|
case 26:
|
|
948
|
-
/*! Production::
|
|
950
|
+
/*! Production:: dimension : PERCENTAGE */
|
|
949
951
|
|
|
950
|
-
this.$ = { type: '
|
|
952
|
+
this.$ = { type: 'PercentageValue', value: parseFloat(yyvstack[yysp]), unit: '%' };
|
|
951
953
|
break;
|
|
952
954
|
|
|
953
955
|
case 27:
|
|
954
|
-
/*! Production::
|
|
956
|
+
/*! Production:: dimension : ADD dimension */
|
|
955
957
|
|
|
956
|
-
|
|
958
|
+
var prev = yyvstack[yysp]; this.$ = prev;
|
|
957
959
|
break;
|
|
958
960
|
|
|
959
961
|
case 28:
|
|
960
|
-
/*! Production::
|
|
962
|
+
/*! Production:: dimension : SUB dimension */
|
|
961
963
|
|
|
962
964
|
var prev = yyvstack[yysp]; prev.value *= -1; this.$ = prev;
|
|
963
965
|
break;
|
|
964
966
|
|
|
967
|
+
case 29:
|
|
968
|
+
/*! Production:: number : NUMBER */
|
|
969
|
+
case 30:
|
|
970
|
+
/*! Production:: number : ADD NUMBER */
|
|
971
|
+
|
|
972
|
+
this.$ = { type: 'Number', value: parseFloat(yyvstack[yysp]) };
|
|
973
|
+
break;
|
|
974
|
+
|
|
975
|
+
case 31:
|
|
976
|
+
/*! Production:: number : SUB NUMBER */
|
|
977
|
+
|
|
978
|
+
this.$ = { type: 'Number', value: parseFloat(yyvstack[yysp]) * -1 };
|
|
979
|
+
break;
|
|
980
|
+
|
|
965
981
|
}
|
|
966
982
|
},
|
|
967
983
|
table: bt({
|
|
968
984
|
len: u([
|
|
969
|
-
|
|
985
|
+
26,
|
|
970
986
|
1,
|
|
971
987
|
5,
|
|
972
988
|
1,
|
|
973
|
-
|
|
989
|
+
25,
|
|
974
990
|
s,
|
|
975
|
-
[0,
|
|
976
|
-
|
|
991
|
+
[0, 19],
|
|
992
|
+
19,
|
|
993
|
+
19,
|
|
977
994
|
0,
|
|
978
995
|
0,
|
|
979
996
|
s,
|
|
980
|
-
[
|
|
997
|
+
[25, 5],
|
|
981
998
|
5,
|
|
982
999
|
0,
|
|
983
1000
|
0,
|
|
984
|
-
|
|
1001
|
+
18,
|
|
1002
|
+
18,
|
|
1003
|
+
0,
|
|
1004
|
+
0,
|
|
985
1005
|
6,
|
|
986
1006
|
6,
|
|
987
1007
|
0,
|
|
988
1008
|
0,
|
|
989
1009
|
c,
|
|
990
|
-
[
|
|
1010
|
+
[11, 3]
|
|
991
1011
|
]),
|
|
992
1012
|
symbol: u([
|
|
993
1013
|
3,
|
|
994
1014
|
4,
|
|
1015
|
+
6,
|
|
995
1016
|
7,
|
|
996
1017
|
s,
|
|
997
|
-
[10,
|
|
1018
|
+
[10, 22, 1],
|
|
998
1019
|
1,
|
|
999
1020
|
1,
|
|
1000
1021
|
s,
|
|
1001
1022
|
[6, 4, 1],
|
|
1002
1023
|
4,
|
|
1003
1024
|
c,
|
|
1004
|
-
[
|
|
1025
|
+
[33, 21],
|
|
1005
1026
|
c,
|
|
1006
|
-
[
|
|
1027
|
+
[32, 4],
|
|
1028
|
+
6,
|
|
1007
1029
|
7,
|
|
1008
|
-
10,
|
|
1009
1030
|
c,
|
|
1010
|
-
[
|
|
1031
|
+
[22, 16],
|
|
1011
1032
|
30,
|
|
1012
1033
|
c,
|
|
1013
|
-
[
|
|
1034
|
+
[19, 19],
|
|
1014
1035
|
c,
|
|
1015
|
-
[
|
|
1036
|
+
[63, 25],
|
|
1037
|
+
c,
|
|
1038
|
+
[25, 100],
|
|
1016
1039
|
s,
|
|
1017
1040
|
[5, 5, 1],
|
|
1018
|
-
7,
|
|
1019
1041
|
c,
|
|
1020
|
-
[
|
|
1042
|
+
[149, 17],
|
|
1043
|
+
c,
|
|
1044
|
+
[167, 18],
|
|
1045
|
+
30,
|
|
1021
1046
|
1,
|
|
1022
1047
|
c,
|
|
1023
|
-
[
|
|
1048
|
+
[42, 5],
|
|
1024
1049
|
c,
|
|
1025
1050
|
[6, 6],
|
|
1026
1051
|
c,
|
|
@@ -1028,52 +1053,57 @@ table: bt({
|
|
|
1028
1053
|
]),
|
|
1029
1054
|
type: u([
|
|
1030
1055
|
s,
|
|
1031
|
-
[2,
|
|
1056
|
+
[2, 21],
|
|
1032
1057
|
s,
|
|
1033
1058
|
[0, 5],
|
|
1034
1059
|
1,
|
|
1035
1060
|
s,
|
|
1036
|
-
[2,
|
|
1061
|
+
[2, 27],
|
|
1037
1062
|
s,
|
|
1038
1063
|
[0, 4],
|
|
1039
1064
|
c,
|
|
1040
|
-
[
|
|
1065
|
+
[22, 19],
|
|
1066
|
+
c,
|
|
1067
|
+
[19, 37],
|
|
1068
|
+
c,
|
|
1069
|
+
[63, 25],
|
|
1041
1070
|
c,
|
|
1042
|
-
[
|
|
1071
|
+
[25, 103],
|
|
1043
1072
|
c,
|
|
1044
|
-
[
|
|
1073
|
+
[148, 19],
|
|
1045
1074
|
c,
|
|
1046
|
-
[
|
|
1075
|
+
[18, 18]
|
|
1047
1076
|
]),
|
|
1048
1077
|
state: u([
|
|
1049
1078
|
1,
|
|
1050
1079
|
2,
|
|
1051
|
-
7,
|
|
1052
1080
|
5,
|
|
1053
1081
|
6,
|
|
1054
|
-
|
|
1082
|
+
7,
|
|
1083
|
+
33,
|
|
1055
1084
|
c,
|
|
1056
1085
|
[4, 3],
|
|
1057
|
-
|
|
1058
|
-
|
|
1086
|
+
34,
|
|
1087
|
+
38,
|
|
1088
|
+
40,
|
|
1059
1089
|
c,
|
|
1060
|
-
[
|
|
1061
|
-
|
|
1090
|
+
[6, 3],
|
|
1091
|
+
41,
|
|
1062
1092
|
c,
|
|
1063
1093
|
[4, 3],
|
|
1064
|
-
|
|
1094
|
+
42,
|
|
1065
1095
|
c,
|
|
1066
1096
|
[4, 3],
|
|
1067
|
-
|
|
1097
|
+
43,
|
|
1068
1098
|
c,
|
|
1069
1099
|
[4, 3],
|
|
1070
|
-
|
|
1100
|
+
44,
|
|
1071
1101
|
c,
|
|
1072
|
-
[
|
|
1102
|
+
[22, 5]
|
|
1073
1103
|
]),
|
|
1074
1104
|
mode: u([
|
|
1075
1105
|
s,
|
|
1076
|
-
[1,
|
|
1106
|
+
[1, 228],
|
|
1077
1107
|
s,
|
|
1078
1108
|
[2, 4],
|
|
1079
1109
|
c,
|
|
@@ -1084,64 +1114,70 @@ table: bt({
|
|
|
1084
1114
|
goto: u([
|
|
1085
1115
|
3,
|
|
1086
1116
|
4,
|
|
1087
|
-
23,
|
|
1088
1117
|
24,
|
|
1118
|
+
25,
|
|
1089
1119
|
s,
|
|
1090
|
-
[8,
|
|
1120
|
+
[8, 16, 1],
|
|
1091
1121
|
s,
|
|
1092
|
-
[
|
|
1122
|
+
[26, 7, 1],
|
|
1093
1123
|
c,
|
|
1094
|
-
[
|
|
1095
|
-
|
|
1096
|
-
|
|
1124
|
+
[27, 21],
|
|
1125
|
+
36,
|
|
1126
|
+
37,
|
|
1127
|
+
c,
|
|
1128
|
+
[18, 15],
|
|
1129
|
+
35,
|
|
1097
1130
|
c,
|
|
1098
|
-
[
|
|
1131
|
+
[18, 17],
|
|
1132
|
+
39,
|
|
1099
1133
|
c,
|
|
1100
|
-
[
|
|
1134
|
+
[57, 21],
|
|
1101
1135
|
c,
|
|
1102
|
-
[
|
|
1103
|
-
|
|
1136
|
+
[21, 84],
|
|
1137
|
+
45,
|
|
1104
1138
|
c,
|
|
1105
|
-
[
|
|
1106
|
-
|
|
1139
|
+
[168, 4],
|
|
1140
|
+
c,
|
|
1141
|
+
[128, 17],
|
|
1107
1142
|
c,
|
|
1108
|
-
[
|
|
1143
|
+
[17, 17],
|
|
1109
1144
|
s,
|
|
1110
|
-
[3,
|
|
1111
|
-
|
|
1112
|
-
|
|
1145
|
+
[3, 4],
|
|
1146
|
+
30,
|
|
1147
|
+
31,
|
|
1113
1148
|
s,
|
|
1114
1149
|
[4, 4],
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1150
|
+
30,
|
|
1151
|
+
31,
|
|
1152
|
+
46,
|
|
1118
1153
|
c,
|
|
1119
|
-
[
|
|
1154
|
+
[51, 4]
|
|
1120
1155
|
])
|
|
1121
1156
|
}),
|
|
1122
1157
|
defaultActions: bda({
|
|
1123
1158
|
idx: u([
|
|
1124
1159
|
s,
|
|
1125
|
-
[5,
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
37,
|
|
1160
|
+
[5, 19, 1],
|
|
1161
|
+
26,
|
|
1162
|
+
27,
|
|
1163
|
+
34,
|
|
1164
|
+
35,
|
|
1131
1165
|
38,
|
|
1132
|
-
|
|
1133
|
-
|
|
1166
|
+
39,
|
|
1167
|
+
42,
|
|
1168
|
+
43,
|
|
1169
|
+
45,
|
|
1170
|
+
46
|
|
1134
1171
|
]),
|
|
1135
1172
|
goto: u([
|
|
1136
|
-
8,
|
|
1137
|
-
9,
|
|
1138
|
-
10,
|
|
1139
1173
|
s,
|
|
1140
|
-
[
|
|
1141
|
-
|
|
1174
|
+
[8, 19, 1],
|
|
1175
|
+
29,
|
|
1142
1176
|
1,
|
|
1177
|
+
27,
|
|
1178
|
+
30,
|
|
1143
1179
|
28,
|
|
1144
|
-
|
|
1180
|
+
31,
|
|
1145
1181
|
5,
|
|
1146
1182
|
6,
|
|
1147
1183
|
7,
|
|
@@ -1185,7 +1221,7 @@ parse: function parse(input) {
|
|
|
1185
1221
|
var TERROR = this.TERROR;
|
|
1186
1222
|
var EOF = this.EOF;
|
|
1187
1223
|
var ERROR_RECOVERY_TOKEN_DISCARD_COUNT = (this.options.errorRecoveryTokenDiscardCount | 0) || 3;
|
|
1188
|
-
var NO_ACTION = [0,
|
|
1224
|
+
var NO_ACTION = [0, 47 /* === table.length :: ensures that anyone using this new state will fail dramatically! */];
|
|
1189
1225
|
|
|
1190
1226
|
var lexer;
|
|
1191
1227
|
if (this.__lexer__) {
|
|
@@ -3473,7 +3509,8 @@ EOF: 1,
|
|
|
3473
3509
|
},
|
|
3474
3510
|
|
|
3475
3511
|
options: {
|
|
3476
|
-
trackPosition: true
|
|
3512
|
+
trackPosition: true,
|
|
3513
|
+
caseInsensitive: true
|
|
3477
3514
|
},
|
|
3478
3515
|
|
|
3479
3516
|
JisonLexerError: JisonLexerError,
|
|
@@ -3501,7 +3538,7 @@ EOF: 1,
|
|
|
3501
3538
|
|
|
3502
3539
|
/*! Conditions:: INITIAL */
|
|
3503
3540
|
/*! Rule:: [a-z][a-z0-9-]*\s*\((?:(?:"(?:\\.|[^\"\\])*"|'(?:\\.|[^\'\\])*')|\([^)]*\)|[^\(\)]*)*\) */
|
|
3504
|
-
2:
|
|
3541
|
+
2: 10,
|
|
3505
3542
|
|
|
3506
3543
|
/*! Conditions:: INITIAL */
|
|
3507
3544
|
/*! Rule:: \* */
|
|
@@ -3520,164 +3557,174 @@ EOF: 1,
|
|
|
3520
3557
|
6: 7,
|
|
3521
3558
|
|
|
3522
3559
|
/*! Conditions:: INITIAL */
|
|
3523
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3524
|
-
7:
|
|
3560
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)em\b */
|
|
3561
|
+
7: 17,
|
|
3562
|
+
|
|
3563
|
+
/*! Conditions:: INITIAL */
|
|
3564
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)ex\b */
|
|
3565
|
+
8: 18,
|
|
3566
|
+
|
|
3567
|
+
/*! Conditions:: INITIAL */
|
|
3568
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)ch\b */
|
|
3569
|
+
9: 19,
|
|
3525
3570
|
|
|
3526
3571
|
/*! Conditions:: INITIAL */
|
|
3527
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3528
|
-
|
|
3572
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)rem\b */
|
|
3573
|
+
10: 20,
|
|
3529
3574
|
|
|
3530
3575
|
/*! Conditions:: INITIAL */
|
|
3531
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3532
|
-
|
|
3576
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)vw\b */
|
|
3577
|
+
11: 22,
|
|
3533
3578
|
|
|
3534
3579
|
/*! Conditions:: INITIAL */
|
|
3535
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3536
|
-
|
|
3580
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)vh\b */
|
|
3581
|
+
12: 21,
|
|
3537
3582
|
|
|
3538
3583
|
/*! Conditions:: INITIAL */
|
|
3539
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3540
|
-
|
|
3584
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)vmin\b */
|
|
3585
|
+
13: 23,
|
|
3541
3586
|
|
|
3542
3587
|
/*! Conditions:: INITIAL */
|
|
3543
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3544
|
-
|
|
3588
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)vmax\b */
|
|
3589
|
+
14: 24,
|
|
3545
3590
|
|
|
3546
3591
|
/*! Conditions:: INITIAL */
|
|
3547
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3548
|
-
|
|
3592
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)cm\b */
|
|
3593
|
+
15: 11,
|
|
3549
3594
|
|
|
3550
3595
|
/*! Conditions:: INITIAL */
|
|
3551
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3552
|
-
|
|
3596
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)mm\b */
|
|
3597
|
+
16: 11,
|
|
3553
3598
|
|
|
3554
3599
|
/*! Conditions:: INITIAL */
|
|
3555
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3556
|
-
|
|
3600
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)Q\b */
|
|
3601
|
+
17: 11,
|
|
3557
3602
|
|
|
3558
3603
|
/*! Conditions:: INITIAL */
|
|
3559
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3560
|
-
|
|
3604
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)in\b */
|
|
3605
|
+
18: 11,
|
|
3561
3606
|
|
|
3562
3607
|
/*! Conditions:: INITIAL */
|
|
3563
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3564
|
-
|
|
3608
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)pt\b */
|
|
3609
|
+
19: 11,
|
|
3565
3610
|
|
|
3566
3611
|
/*! Conditions:: INITIAL */
|
|
3567
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3568
|
-
|
|
3612
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)pc\b */
|
|
3613
|
+
20: 11,
|
|
3569
3614
|
|
|
3570
3615
|
/*! Conditions:: INITIAL */
|
|
3571
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3572
|
-
|
|
3616
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)px\b */
|
|
3617
|
+
21: 11,
|
|
3573
3618
|
|
|
3574
3619
|
/*! Conditions:: INITIAL */
|
|
3575
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3576
|
-
|
|
3620
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)deg\b */
|
|
3621
|
+
22: 12,
|
|
3577
3622
|
|
|
3578
3623
|
/*! Conditions:: INITIAL */
|
|
3579
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3580
|
-
|
|
3624
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)grad\b */
|
|
3625
|
+
23: 12,
|
|
3581
3626
|
|
|
3582
3627
|
/*! Conditions:: INITIAL */
|
|
3583
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3584
|
-
|
|
3628
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)rad\b */
|
|
3629
|
+
24: 12,
|
|
3585
3630
|
|
|
3586
3631
|
/*! Conditions:: INITIAL */
|
|
3587
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3588
|
-
|
|
3632
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)turn\b */
|
|
3633
|
+
25: 12,
|
|
3589
3634
|
|
|
3590
3635
|
/*! Conditions:: INITIAL */
|
|
3591
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3592
|
-
|
|
3636
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)s\b */
|
|
3637
|
+
26: 13,
|
|
3593
3638
|
|
|
3594
3639
|
/*! Conditions:: INITIAL */
|
|
3595
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3596
|
-
|
|
3640
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)ms\b */
|
|
3641
|
+
27: 13,
|
|
3597
3642
|
|
|
3598
3643
|
/*! Conditions:: INITIAL */
|
|
3599
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3600
|
-
|
|
3644
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)Hz\b */
|
|
3645
|
+
28: 14,
|
|
3601
3646
|
|
|
3602
3647
|
/*! Conditions:: INITIAL */
|
|
3603
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3604
|
-
|
|
3648
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)kHz\b */
|
|
3649
|
+
29: 14,
|
|
3605
3650
|
|
|
3606
3651
|
/*! Conditions:: INITIAL */
|
|
3607
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3608
|
-
|
|
3652
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)dpi\b */
|
|
3653
|
+
30: 15,
|
|
3609
3654
|
|
|
3610
3655
|
/*! Conditions:: INITIAL */
|
|
3611
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3612
|
-
|
|
3656
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)dpcm\b */
|
|
3657
|
+
31: 15,
|
|
3613
3658
|
|
|
3614
3659
|
/*! Conditions:: INITIAL */
|
|
3615
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3616
|
-
|
|
3660
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)dppx\b */
|
|
3661
|
+
32: 15,
|
|
3617
3662
|
|
|
3618
3663
|
/*! Conditions:: INITIAL */
|
|
3619
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3620
|
-
|
|
3664
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)% */
|
|
3665
|
+
33: 25,
|
|
3621
3666
|
|
|
3622
3667
|
/*! Conditions:: INITIAL */
|
|
3623
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)
|
|
3624
|
-
|
|
3668
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)\b */
|
|
3669
|
+
34: 26,
|
|
3625
3670
|
|
|
3626
3671
|
/*! Conditions:: INITIAL */
|
|
3627
|
-
/*! Rule:: ([0-9]+(\.[0-9]+)?|\.[0-9]+)\b */
|
|
3628
|
-
|
|
3672
|
+
/*! Rule:: (([0-9]+(\.[0-9]+)?|\.[0-9]+)(e(\+|-)[0-9]+)?)-?([a-zA-Z_]|[\240-\377]|(\\[0-9a-fA-F]{1,6}(\r\n|[ \t\r\n\f])?|\\[^\r\n\f0-9a-fA-F]))([a-zA-Z0-9_-]|[\240-\377]|(\\[0-9a-fA-F]{1,6}(\r\n|[ \t\r\n\f])?|\\[^\r\n\f0-9a-fA-F]))*\b */
|
|
3673
|
+
35: 16,
|
|
3629
3674
|
|
|
3630
3675
|
/*! Conditions:: INITIAL */
|
|
3631
3676
|
/*! Rule:: \( */
|
|
3632
|
-
|
|
3677
|
+
36: 4,
|
|
3633
3678
|
|
|
3634
3679
|
/*! Conditions:: INITIAL */
|
|
3635
3680
|
/*! Rule:: \) */
|
|
3636
|
-
|
|
3681
|
+
37: 5,
|
|
3637
3682
|
|
|
3638
3683
|
/*! Conditions:: INITIAL */
|
|
3639
3684
|
/*! Rule:: $ */
|
|
3640
|
-
|
|
3685
|
+
38: 1
|
|
3641
3686
|
},
|
|
3642
3687
|
|
|
3643
3688
|
rules: [
|
|
3644
|
-
/* 0: */ /^(?:\s+)
|
|
3645
|
-
/* 1: */ /^(?:(-(webkit|moz)-)?calc\b)
|
|
3646
|
-
/* 2: */ /^(?:[a-z][\d\-a-z]*\s*\((?:(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*')|\([^)]*\)|[^()]*)*\))
|
|
3647
|
-
/* 3: */ /^(?:\*)
|
|
3648
|
-
/* 4: */ /^(?:\/)
|
|
3649
|
-
/* 5: */ /^(?:\+)
|
|
3650
|
-
/* 6: */ /^(?:-)
|
|
3651
|
-
/* 7: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3652
|
-
/* 8: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3653
|
-
/* 9: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3654
|
-
/* 10: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3655
|
-
/* 11: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3656
|
-
/* 12: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3657
|
-
/* 13: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3658
|
-
/* 14: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3659
|
-
/* 15: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3660
|
-
/* 16: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3661
|
-
/* 17: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3662
|
-
/* 18: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3663
|
-
/* 19: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3664
|
-
/* 20: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3665
|
-
/* 21: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3666
|
-
/* 22: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3667
|
-
/* 23: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3668
|
-
/* 24: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3669
|
-
/* 25: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3670
|
-
/* 26: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3671
|
-
/* 27: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3672
|
-
/* 28: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3673
|
-
/* 29: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3674
|
-
/* 30: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3675
|
-
/* 31: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3676
|
-
/* 32: */ /^(?:(\d+(\.\d+)?|\.\d+)
|
|
3677
|
-
/* 33: */ /^(?:(\d+(\.\d+)?|\.\d+)\
|
|
3678
|
-
/* 34: */ /^(
|
|
3679
|
-
/* 35: */ /^(
|
|
3680
|
-
/* 36: */ /^(
|
|
3689
|
+
/* 0: */ /^(?:\s+)/i,
|
|
3690
|
+
/* 1: */ /^(?:(-(webkit|moz)-)?calc\b)/i,
|
|
3691
|
+
/* 2: */ /^(?:[a-z][\d\-a-z]*\s*\((?:(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*')|\([^)]*\)|[^()]*)*\))/i,
|
|
3692
|
+
/* 3: */ /^(?:\*)/i,
|
|
3693
|
+
/* 4: */ /^(?:\/)/i,
|
|
3694
|
+
/* 5: */ /^(?:\+)/i,
|
|
3695
|
+
/* 6: */ /^(?:-)/i,
|
|
3696
|
+
/* 7: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)em\b)/i,
|
|
3697
|
+
/* 8: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)ex\b)/i,
|
|
3698
|
+
/* 9: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)ch\b)/i,
|
|
3699
|
+
/* 10: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)rem\b)/i,
|
|
3700
|
+
/* 11: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)vw\b)/i,
|
|
3701
|
+
/* 12: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)vh\b)/i,
|
|
3702
|
+
/* 13: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)vmin\b)/i,
|
|
3703
|
+
/* 14: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)vmax\b)/i,
|
|
3704
|
+
/* 15: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)cm\b)/i,
|
|
3705
|
+
/* 16: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)mm\b)/i,
|
|
3706
|
+
/* 17: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)Q\b)/i,
|
|
3707
|
+
/* 18: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)in\b)/i,
|
|
3708
|
+
/* 19: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)pt\b)/i,
|
|
3709
|
+
/* 20: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)pc\b)/i,
|
|
3710
|
+
/* 21: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)px\b)/i,
|
|
3711
|
+
/* 22: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)deg\b)/i,
|
|
3712
|
+
/* 23: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)grad\b)/i,
|
|
3713
|
+
/* 24: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)rad\b)/i,
|
|
3714
|
+
/* 25: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)turn\b)/i,
|
|
3715
|
+
/* 26: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)s\b)/i,
|
|
3716
|
+
/* 27: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)ms\b)/i,
|
|
3717
|
+
/* 28: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)Hz\b)/i,
|
|
3718
|
+
/* 29: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)kHz\b)/i,
|
|
3719
|
+
/* 30: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)dpi\b)/i,
|
|
3720
|
+
/* 31: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)dpcm\b)/i,
|
|
3721
|
+
/* 32: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)dppx\b)/i,
|
|
3722
|
+
/* 33: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)%)/i,
|
|
3723
|
+
/* 34: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)\b)/i,
|
|
3724
|
+
/* 35: */ /^(?:((\d+(\.\d+)?|\.\d+)(e(\+|-)\d+)?)-?([^\W\d]|[ -ÿ]|(\\[\dA-Fa-f]{1,6}(\r\n|[\t\n\f\r ])?|\\[^\d\n\f\rA-Fa-f]))([\w\-]|[ -ÿ]|(\\[\dA-Fa-f]{1,6}(\r\n|[\t\n\f\r ])?|\\[^\d\n\f\rA-Fa-f]))*\b)/i,
|
|
3725
|
+
/* 36: */ /^(?:\()/i,
|
|
3726
|
+
/* 37: */ /^(?:\))/i,
|
|
3727
|
+
/* 38: */ /^(?:$)/i
|
|
3681
3728
|
],
|
|
3682
3729
|
|
|
3683
3730
|
conditions: {
|
|
@@ -3719,7 +3766,9 @@ EOF: 1,
|
|
|
3719
3766
|
33,
|
|
3720
3767
|
34,
|
|
3721
3768
|
35,
|
|
3722
|
-
36
|
|
3769
|
+
36,
|
|
3770
|
+
37,
|
|
3771
|
+
38
|
|
3723
3772
|
],
|
|
3724
3773
|
|
|
3725
3774
|
inclusive: true
|