SPARQL as output

Rules:
------
0	$start -> Query $end
1	Query -> Prologue _O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C
2	_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C -> SelectQuery
3	_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C -> ConstructQuery
4	_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C -> DescribeQuery
5	_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C -> AskQuery
6	Prologue -> _QBaseDecl_E_Opt _QPrefixDecl_E_Star
7	_QBaseDecl_E_Opt -> /* empty */
8	_QBaseDecl_E_Opt -> BaseDecl
9	_QPrefixDecl_E_Star -> /* empty */
10	_QPrefixDecl_E_Star -> _QPrefixDecl_E_Star PrefixDecl
11	BaseDecl -> IT_BASE IRI_REF
12	PrefixDecl -> IT_PREFIX PNAME_NS IRI_REF
13	SelectQuery -> IT_SELECT _Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt _O_QVar_E_Plus_Or_QGT_TIMES_E_C _QDatasetClause_E_Star WhereClause SolutionModifier
14	_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C -> IT_DISTINCT
15	_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C -> IT_REDUCED
16	_Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt -> /* empty */
17	_Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt -> _O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C
18	_QVar_E_Plus -> Var
19	_QVar_E_Plus -> _QVar_E_Plus Var
20	_O_QVar_E_Plus_Or_QGT_TIMES_E_C -> _QVar_E_Plus
21	_O_QVar_E_Plus_Or_QGT_TIMES_E_C -> GT_TIMES
22	_QDatasetClause_E_Star -> /* empty */
23	_QDatasetClause_E_Star -> _QDatasetClause_E_Star DatasetClause
24	ConstructQuery -> IT_CONSTRUCT ConstructTemplate _QDatasetClause_E_Star WhereClause SolutionModifier
25	DescribeQuery -> IT_DESCRIBE _O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C _QDatasetClause_E_Star _QWhereClause_E_Opt SolutionModifier
26	_QVarOrIRIref_E_Plus -> VarOrIRIref
27	_QVarOrIRIref_E_Plus -> _QVarOrIRIref_E_Plus VarOrIRIref
28	_O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C -> _QVarOrIRIref_E_Plus
29	_O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C -> GT_TIMES
30	_QWhereClause_E_Opt -> /* empty */
31	_QWhereClause_E_Opt -> WhereClause
32	AskQuery -> IT_ASK _QDatasetClause_E_Star WhereClause
33	DatasetClause -> IT_FROM _O_QDefaultGraphClause_E_Or_QNamedGraphClause_E_C
34	_O_QDefaultGraphClause_E_Or_QNamedGraphClause_E_C -> DefaultGraphClause
35	_O_QDefaultGraphClause_E_Or_QNamedGraphClause_E_C -> NamedGraphClause
36	DefaultGraphClause -> SourceSelector
37	NamedGraphClause -> IT_NAMED SourceSelector
38	SourceSelector -> IRIref
39	WhereClause -> _QIT_WHERE_E_Opt GroupGraphPattern
40	_QIT_WHERE_E_Opt -> /* empty */
41	_QIT_WHERE_E_Opt -> IT_WHERE
42	SolutionModifier -> _QOrderClause_E_Opt _QLimitOffsetClauses_E_Opt
43	_QOrderClause_E_Opt -> /* empty */
44	_QOrderClause_E_Opt -> OrderClause
45	_QLimitOffsetClauses_E_Opt -> /* empty */
46	_QLimitOffsetClauses_E_Opt -> LimitOffsetClauses
47	LimitOffsetClauses -> _O_QLimitClause_E_S_QOffsetClause_E_Opt_Or_QOffsetClause_E_S_QLimitClause_E_Opt_C
48	_QOffsetClause_E_Opt -> /* empty */
49	_QOffsetClause_E_Opt -> OffsetClause
50	_QLimitClause_E_Opt -> /* empty */
51	_QLimitClause_E_Opt -> LimitClause
52	_O_QLimitClause_E_S_QOffsetClause_E_Opt_Or_QOffsetClause_E_S_QLimitClause_E_Opt_C -> LimitClause _QOffsetClause_E_Opt
53	_O_QLimitClause_E_S_QOffsetClause_E_Opt_Or_QOffsetClause_E_S_QLimitClause_E_Opt_C -> OffsetClause _QLimitClause_E_Opt
54	OrderClause -> IT_ORDER IT_BY _QOrderCondition_E_Plus
55	_QOrderCondition_E_Plus -> OrderCondition
56	_QOrderCondition_E_Plus -> _QOrderCondition_E_Plus OrderCondition
57	OrderCondition -> _O_QIT_ASC_E_Or_QIT_DESC_E_S_QBrackettedExpression_E_C
58	OrderCondition -> _O_QConstraint_E_Or_QVar_E_C
59	_O_QIT_ASC_E_Or_QIT_DESC_E_C -> IT_ASC
60	_O_QIT_ASC_E_Or_QIT_DESC_E_C -> IT_DESC
61	_O_QIT_ASC_E_Or_QIT_DESC_E_S_QBrackettedExpression_E_C -> _O_QIT_ASC_E_Or_QIT_DESC_E_C BrackettedExpression
62	_O_QConstraint_E_Or_QVar_E_C -> Constraint
63	_O_QConstraint_E_Or_QVar_E_C -> Var
64	LimitClause -> IT_LIMIT INTEGER
65	OffsetClause -> IT_OFFSET INTEGER
66	GroupGraphPattern -> GT_LCURLEY _QTriplesBlock_E_Opt _Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star GT_RCURLEY
67	_QTriplesBlock_E_Opt -> /* empty */
68	_QTriplesBlock_E_Opt -> TriplesBlock
69	_O_QGraphPatternNotTriples_E_Or_QFilter_E_C -> GraphPatternNotTriples
70	_O_QGraphPatternNotTriples_E_Or_QFilter_E_C -> Filter
71	_QGT_DOT_E_Opt -> /* empty */
72	_QGT_DOT_E_Opt -> GT_DOT
73	_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C -> _O_QGraphPatternNotTriples_E_Or_QFilter_E_C _QGT_DOT_E_Opt _QTriplesBlock_E_Opt
74	_Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star -> /* empty */
75	_Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star -> _Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star _O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C
76	TriplesBlock -> TriplesSameSubject _Q_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C_E_Opt
77	_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C -> GT_DOT _QTriplesBlock_E_Opt
78	_Q_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C_E_Opt -> /* empty */
79	_Q_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C_E_Opt -> _O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C
80	GraphPatternNotTriples -> OptionalGraphPattern
81	GraphPatternNotTriples -> GroupOrUnionGraphPattern
82	GraphPatternNotTriples -> GraphGraphPattern
83	OptionalGraphPattern -> IT_OPTIONAL GroupGraphPattern
84	GraphGraphPattern -> IT_GRAPH VarOrIRIref GroupGraphPattern
85	GroupOrUnionGraphPattern -> GroupGraphPattern _Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star
86	_O_QIT_UNION_E_S_QGroupGraphPattern_E_C -> IT_UNION GroupGraphPattern
87	_Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star -> /* empty */
88	_Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star -> _Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star _O_QIT_UNION_E_S_QGroupGraphPattern_E_C
89	Filter -> IT_FILTER Constraint
90	Constraint -> BrackettedExpression
91	Constraint -> BuiltInCall
92	Constraint -> FunctionCall
93	FunctionCall -> IRIref ArgList
94	ArgList -> _O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C
95	_O_QGT_COMMA_E_S_QExpression_E_C -> GT_COMMA Expression
96	_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star -> /* empty */
97	_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star -> _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star _O_QGT_COMMA_E_S_QExpression_E_C
98	_O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C -> NIL
99	_O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C -> GT_LPAREN Expression _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star GT_RPAREN
100	ConstructTemplate -> GT_LCURLEY _QConstructTriples_E_Opt GT_RCURLEY
101	_QConstructTriples_E_Opt -> /* empty */
102	_QConstructTriples_E_Opt -> ConstructTriples
103	ConstructTriples -> TriplesSameSubject _Q_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C_E_Opt
104	_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C -> GT_DOT _QConstructTriples_E_Opt
105	_Q_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C_E_Opt -> /* empty */
106	_Q_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C_E_Opt -> _O_QGT_DOT_E_S_QConstructTriples_E_Opt_C
107	TriplesSameSubject -> VarOrTerm PropertyListNotEmpty
108	TriplesSameSubject -> TriplesNode PropertyList
109	PropertyListNotEmpty -> Verb ObjectList _Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star
110	_O_QVerb_E_S_QObjectList_E_C -> Verb ObjectList
111	_Q_O_QVerb_E_S_QObjectList_E_C_E_Opt -> /* empty */
112	_Q_O_QVerb_E_S_QObjectList_E_C_E_Opt -> _O_QVerb_E_S_QObjectList_E_C
113	_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C -> GT_SEMI _Q_O_QVerb_E_S_QObjectList_E_C_E_Opt
114	_Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star -> /* empty */
115	_Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star -> _Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star _O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C
116	PropertyList -> _QPropertyListNotEmpty_E_Opt
117	_QPropertyListNotEmpty_E_Opt -> /* empty */
118	_QPropertyListNotEmpty_E_Opt -> PropertyListNotEmpty
119	ObjectList -> Object _Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star
120	_O_QGT_COMMA_E_S_QObject_E_C -> GT_COMMA Object
121	_Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star -> /* empty */
122	_Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star -> _Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star _O_QGT_COMMA_E_S_QObject_E_C
123	Object -> GraphNode
124	Verb -> VarOrIRIref
125	Verb -> IT_a
126	TriplesNode -> Collection
127	TriplesNode -> BlankNodePropertyList
128	BlankNodePropertyList -> GT_LBRACKET PropertyListNotEmpty GT_RBRACKET
129	Collection -> GT_LPAREN _QGraphNode_E_Plus GT_RPAREN
130	_QGraphNode_E_Plus -> GraphNode
131	_QGraphNode_E_Plus -> _QGraphNode_E_Plus GraphNode
132	GraphNode -> VarOrTerm
133	GraphNode -> TriplesNode
134	VarOrTerm -> Var
135	VarOrTerm -> GraphTerm
136	VarOrIRIref -> Var
137	VarOrIRIref -> IRIref
138	Var -> VAR1
139	Var -> VAR2
140	GraphTerm -> IRIref
141	GraphTerm -> RDFLiteral
142	GraphTerm -> NumericLiteral
143	GraphTerm -> BooleanLiteral
144	GraphTerm -> BlankNode
145	GraphTerm -> NIL
146	Expression -> ConditionalOrExpression
147	ConditionalOrExpression -> ConditionalAndExpression _Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star
148	_O_QGT_OR_E_S_QConditionalAndExpression_E_C -> GT_OR ConditionalAndExpression
149	_Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star -> /* empty */
150	_Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star -> _Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star _O_QGT_OR_E_S_QConditionalAndExpression_E_C
151	ConditionalAndExpression -> ValueLogical _Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star
152	_O_QGT_AND_E_S_QValueLogical_E_C -> GT_AND ValueLogical
153	_Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star -> /* empty */
154	_Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star -> _Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star _O_QGT_AND_E_S_QValueLogical_E_C
155	ValueLogical -> RelationalExpression
156	RelationalExpression -> NumericExpression _Q_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C_E_Opt
157	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_EQUAL NumericExpression
158	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_NEQUAL NumericExpression
159	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_LT NumericExpression
160	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_GT NumericExpression
161	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_LE NumericExpression
162	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_GE NumericExpression
163	_Q_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C_E_Opt -> /* empty */
164	_Q_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C_E_Opt -> _O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C
165	NumericExpression -> AdditiveExpression
166	AdditiveExpression -> MultiplicativeExpression _Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star
167	_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C -> GT_PLUS MultiplicativeExpression
168	_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C -> GT_MINUS MultiplicativeExpression
169	_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C -> NumericLiteralPositive
170	_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C -> NumericLiteralNegative
171	_Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star -> /* empty */
172	_Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star -> _Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star _O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C
173	MultiplicativeExpression -> UnaryExpression _Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star
174	_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C -> GT_TIMES UnaryExpression
175	_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C -> GT_DIVIDE UnaryExpression
176	_Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star -> /* empty */
177	_Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star -> _Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star _O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C
178	UnaryExpression -> GT_NOT PrimaryExpression
179	UnaryExpression -> GT_PLUS PrimaryExpression
180	UnaryExpression -> GT_MINUS PrimaryExpression
181	UnaryExpression -> PrimaryExpression
182	PrimaryExpression -> BrackettedExpression
183	PrimaryExpression -> BuiltInCall
184	PrimaryExpression -> IRIrefOrFunction
185	PrimaryExpression -> RDFLiteral
186	PrimaryExpression -> NumericLiteral
187	PrimaryExpression -> BooleanLiteral
188	PrimaryExpression -> Var
189	BrackettedExpression -> GT_LPAREN Expression GT_RPAREN
190	BuiltInCall -> IT_STR GT_LPAREN Expression GT_RPAREN
191	BuiltInCall -> IT_LANG GT_LPAREN Expression GT_RPAREN
192	BuiltInCall -> IT_LANGMATCHES GT_LPAREN Expression GT_COMMA Expression GT_RPAREN
193	BuiltInCall -> IT_DATATYPE GT_LPAREN Expression GT_RPAREN
194	BuiltInCall -> IT_BOUND GT_LPAREN Var GT_RPAREN
195	BuiltInCall -> IT_sameTerm GT_LPAREN Expression GT_COMMA Expression GT_RPAREN
196	BuiltInCall -> IT_isIRI GT_LPAREN Expression GT_RPAREN
197	BuiltInCall -> IT_isURI GT_LPAREN Expression GT_RPAREN
198	BuiltInCall -> IT_isBLANK GT_LPAREN Expression GT_RPAREN
199	BuiltInCall -> IT_isLITERAL GT_LPAREN Expression GT_RPAREN
200	BuiltInCall -> RegexExpression
201	RegexExpression -> IT_REGEX GT_LPAREN Expression GT_COMMA Expression _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt GT_RPAREN
202	_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt -> /* empty */
203	_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt -> _O_QGT_COMMA_E_S_QExpression_E_C
204	IRIrefOrFunction -> IRIref _QArgList_E_Opt
205	_QArgList_E_Opt -> /* empty */
206	_QArgList_E_Opt -> ArgList
207	RDFLiteral -> String _Q_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C_E_Opt
208	_O_QGT_DTYPE_E_S_QIRIref_E_C -> GT_DTYPE IRIref
209	_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C -> LANGTAG
210	_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C -> _O_QGT_DTYPE_E_S_QIRIref_E_C
211	_Q_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C_E_Opt -> /* empty */
212	_Q_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C_E_Opt -> _O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C
213	NumericLiteral -> NumericLiteralUnsigned
214	NumericLiteral -> NumericLiteralPositive
215	NumericLiteral -> NumericLiteralNegative
216	NumericLiteralUnsigned -> INTEGER
217	NumericLiteralUnsigned -> DECIMAL
218	NumericLiteralUnsigned -> DOUBLE
219	NumericLiteralPositive -> INTEGER_POSITIVE
220	NumericLiteralPositive -> DECIMAL_POSITIVE
221	NumericLiteralPositive -> DOUBLE_POSITIVE
222	NumericLiteralNegative -> INTEGER_NEGATIVE
223	NumericLiteralNegative -> DECIMAL_NEGATIVE
224	NumericLiteralNegative -> DOUBLE_NEGATIVE
225	BooleanLiteral -> IT_true
226	BooleanLiteral -> IT_false
227	String -> STRING_LITERAL1
228	String -> STRING_LITERAL2
229	String -> STRING_LITERAL_LONG1
230	String -> STRING_LITERAL_LONG2
231	IRIref -> IRI_REF
232	IRIref -> PrefixedName
233	PrefixedName -> PNAME_LN
234	PrefixedName -> PNAME_NS
235	BlankNode -> BLANK_NODE_LABEL
236	BlankNode -> ANON

States:
-------
State 0:

	$start -> . Query $end	(Rule 0)

	IT_BASE	shift, and go to state 1

	$default	reduce using rule 7 (_QBaseDecl_E_Opt)

	Query	go to state 3
	Prologue	go to state 2
	BaseDecl	go to state 4
	_QBaseDecl_E_Opt	go to state 5

State 1:

	BaseDecl -> IT_BASE . IRI_REF	(Rule 11)

	IRI_REF	shift, and go to state 6

State 2:

	Query -> Prologue . _O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C	(Rule 1)

	IT_ASK	shift, and go to state 7
	IT_CONSTRUCT	shift, and go to state 12
	IT_DESCRIBE	shift, and go to state 15
	IT_SELECT	shift, and go to state 8

	_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C	go to state 10
	DescribeQuery	go to state 9
	AskQuery	go to state 11
	SelectQuery	go to state 13
	ConstructQuery	go to state 14

State 3:

	$start -> Query . $end	(Rule 0)

	$end	shift, and go to state 16

State 4:

	_QBaseDecl_E_Opt -> BaseDecl .	(Rule 8)

	$default	reduce using rule 8 (_QBaseDecl_E_Opt)

State 5:

	Prologue -> _QBaseDecl_E_Opt . _QPrefixDecl_E_Star	(Rule 6)

	$default	reduce using rule 9 (_QPrefixDecl_E_Star)

	_QPrefixDecl_E_Star	go to state 17

State 6:

	BaseDecl -> IT_BASE IRI_REF .	(Rule 11)

	$default	reduce using rule 11 (BaseDecl)

State 7:

	AskQuery -> IT_ASK . _QDatasetClause_E_Star WhereClause	(Rule 32)

	$default	reduce using rule 22 (_QDatasetClause_E_Star)

	_QDatasetClause_E_Star	go to state 18

State 8:

	SelectQuery -> IT_SELECT . _Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt _O_QVar_E_Plus_Or_QGT_TIMES_E_C _QDatasetClause_E_Star WhereClause SolutionModifier	(Rule 13)

	IT_DISTINCT	shift, and go to state 20
	IT_REDUCED	shift, and go to state 21

	$default	reduce using rule 16 (_Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt)

	_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C	go to state 19
	_Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt	go to state 22

State 9:

	_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C -> DescribeQuery .	(Rule 4)

	$default	reduce using rule 4 (_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C)

State 10:

	Query -> Prologue _O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C .	(Rule 1)

	$default	reduce using rule 1 (Query)

State 11:

	_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C -> AskQuery .	(Rule 5)

	$default	reduce using rule 5 (_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C)

State 12:

	ConstructQuery -> IT_CONSTRUCT . ConstructTemplate _QDatasetClause_E_Star WhereClause SolutionModifier	(Rule 24)

	GT_LCURLEY	shift, and go to state 24

	ConstructTemplate	go to state 23

State 13:

	_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C -> SelectQuery .	(Rule 2)

	$default	reduce using rule 2 (_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C)

State 14:

	_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C -> ConstructQuery .	(Rule 3)

	$default	reduce using rule 3 (_O_QSelectQuery_E_Or_QConstructQuery_E_Or_QDescribeQuery_E_Or_QAskQuery_E_C)

State 15:

	DescribeQuery -> IT_DESCRIBE . _O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C _QDatasetClause_E_Star _QWhereClause_E_Opt SolutionModifier	(Rule 25)

	GT_TIMES	shift, and go to state 34
	IRI_REF	shift, and go to state 31
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	_O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C	go to state 29
	_QVarOrIRIref_E_Plus	go to state 25
	IRIref	go to state 33
	VarOrIRIref	go to state 32
	Var	go to state 35
	PrefixedName	go to state 26

State 16:

	$start -> Query $end .	(Rule 0)

	$default	accept

State 17:

	Prologue -> _QBaseDecl_E_Opt _QPrefixDecl_E_Star .	(Rule 6)
	_QPrefixDecl_E_Star -> _QPrefixDecl_E_Star . PrefixDecl	(Rule 10)

	IT_PREFIX	shift, and go to state 38

	$default	reduce using rule 6 (Prologue)

	PrefixDecl	go to state 37

State 18:

	_QDatasetClause_E_Star -> _QDatasetClause_E_Star . DatasetClause	(Rule 23)
	AskQuery -> IT_ASK _QDatasetClause_E_Star . WhereClause	(Rule 32)

	IT_FROM	shift, and go to state 41
	IT_WHERE	shift, and go to state 39

	$default	reduce using rule 40 (_QIT_WHERE_E_Opt)

	_QIT_WHERE_E_Opt	go to state 40
	WhereClause	go to state 43
	DatasetClause	go to state 42

State 19:

	_Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt -> _O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C .	(Rule 17)

	$default	reduce using rule 17 (_Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt)

State 20:

	_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C -> IT_DISTINCT .	(Rule 14)

	$default	reduce using rule 14 (_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C)

State 21:

	_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C -> IT_REDUCED .	(Rule 15)

	$default	reduce using rule 15 (_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C)

State 22:

	SelectQuery -> IT_SELECT _Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt . _O_QVar_E_Plus_Or_QGT_TIMES_E_C _QDatasetClause_E_Star WhereClause SolutionModifier	(Rule 13)

	GT_TIMES	shift, and go to state 45
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	_QVar_E_Plus	go to state 44
	_O_QVar_E_Plus_Or_QGT_TIMES_E_C	go to state 46
	Var	go to state 47

State 23:

	ConstructQuery -> IT_CONSTRUCT ConstructTemplate . _QDatasetClause_E_Star WhereClause SolutionModifier	(Rule 24)

	$default	reduce using rule 22 (_QDatasetClause_E_Star)

	_QDatasetClause_E_Star	go to state 48

State 24:

	ConstructTemplate -> GT_LCURLEY . _QConstructTriples_E_Opt GT_RCURLEY	(Rule 100)

	ANON	shift, and go to state 62
	BLANK_NODE_LABEL	shift, and go to state 80
	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LBRACKET	shift, and go to state 82
	GT_LPAREN	shift, and go to state 71
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_false	shift, and go to state 85
	IT_true	shift, and go to state 52
	NIL	shift, and go to state 74
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	$default	reduce using rule 101 (_QConstructTriples_E_Opt)

	BooleanLiteral	go to state 49
	NumericLiteralPositive	go to state 69
	String	go to state 51
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	TriplesSameSubject	go to state 75
	_QConstructTriples_E_Opt	go to state 57
	NumericLiteral	go to state 58
	Var	go to state 59
	VarOrTerm	go to state 77
	TriplesNode	go to state 83
	PrefixedName	go to state 26
	GraphTerm	go to state 81
	BlankNode	go to state 84
	ConstructTriples	go to state 65
	Collection	go to state 66
	BlankNodePropertyList	go to state 67
	IRIref	go to state 68
	RDFLiteral	go to state 86

State 25:

	_QVarOrIRIref_E_Plus -> _QVarOrIRIref_E_Plus . VarOrIRIref	(Rule 27)
	_O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C -> _QVarOrIRIref_E_Plus .	(Rule 28)

	IRI_REF	shift, and go to state 31
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	$default	reduce using rule 28 (_O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C)

	VarOrIRIref	go to state 87
	IRIref	go to state 33
	PrefixedName	go to state 26
	Var	go to state 35

State 26:

	IRIref -> PrefixedName .	(Rule 232)

	$default	reduce using rule 232 (IRIref)

State 27:

	Var -> VAR1 .	(Rule 138)

	$default	reduce using rule 138 (Var)

State 28:

	PrefixedName -> PNAME_LN .	(Rule 233)

	$default	reduce using rule 233 (PrefixedName)

State 29:

	DescribeQuery -> IT_DESCRIBE _O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C . _QDatasetClause_E_Star _QWhereClause_E_Opt SolutionModifier	(Rule 25)

	$default	reduce using rule 22 (_QDatasetClause_E_Star)

	_QDatasetClause_E_Star	go to state 88

State 30:

	PrefixedName -> PNAME_NS .	(Rule 234)

	$default	reduce using rule 234 (PrefixedName)

State 31:

	IRIref -> IRI_REF .	(Rule 231)

	$default	reduce using rule 231 (IRIref)

State 32:

	_QVarOrIRIref_E_Plus -> VarOrIRIref .	(Rule 26)

	$default	reduce using rule 26 (_QVarOrIRIref_E_Plus)

State 33:

	VarOrIRIref -> IRIref .	(Rule 137)

	$default	reduce using rule 137 (VarOrIRIref)

State 34:

	_O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C -> GT_TIMES .	(Rule 29)

	$default	reduce using rule 29 (_O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C)

State 35:

	VarOrIRIref -> Var .	(Rule 136)

	$default	reduce using rule 136 (VarOrIRIref)

State 36:

	Var -> VAR2 .	(Rule 139)

	$default	reduce using rule 139 (Var)

State 37:

	_QPrefixDecl_E_Star -> _QPrefixDecl_E_Star PrefixDecl .	(Rule 10)

	$default	reduce using rule 10 (_QPrefixDecl_E_Star)

State 38:

	PrefixDecl -> IT_PREFIX . PNAME_NS IRI_REF	(Rule 12)

	PNAME_NS	shift, and go to state 89

State 39:

	_QIT_WHERE_E_Opt -> IT_WHERE .	(Rule 41)

	$default	reduce using rule 41 (_QIT_WHERE_E_Opt)

State 40:

	WhereClause -> _QIT_WHERE_E_Opt . GroupGraphPattern	(Rule 39)

	GT_LCURLEY	shift, and go to state 90

	GroupGraphPattern	go to state 91

State 41:

	DatasetClause -> IT_FROM . _O_QDefaultGraphClause_E_Or_QNamedGraphClause_E_C	(Rule 33)

	IRI_REF	shift, and go to state 31
	IT_NAMED	shift, and go to state 96
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30

	NamedGraphClause	go to state 97
	DefaultGraphClause	go to state 94
	IRIref	go to state 95
	SourceSelector	go to state 92
	_O_QDefaultGraphClause_E_Or_QNamedGraphClause_E_C	go to state 93
	PrefixedName	go to state 26

State 42:

	_QDatasetClause_E_Star -> _QDatasetClause_E_Star DatasetClause .	(Rule 23)

	$default	reduce using rule 23 (_QDatasetClause_E_Star)

State 43:

	AskQuery -> IT_ASK _QDatasetClause_E_Star WhereClause .	(Rule 32)

	$default	reduce using rule 32 (AskQuery)

State 44:

	_QVar_E_Plus -> _QVar_E_Plus . Var	(Rule 19)
	_O_QVar_E_Plus_Or_QGT_TIMES_E_C -> _QVar_E_Plus .	(Rule 20)

	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	$default	reduce using rule 20 (_O_QVar_E_Plus_Or_QGT_TIMES_E_C)

	Var	go to state 98

State 45:

	_O_QVar_E_Plus_Or_QGT_TIMES_E_C -> GT_TIMES .	(Rule 21)

	$default	reduce using rule 21 (_O_QVar_E_Plus_Or_QGT_TIMES_E_C)

State 46:

	SelectQuery -> IT_SELECT _Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt _O_QVar_E_Plus_Or_QGT_TIMES_E_C . _QDatasetClause_E_Star WhereClause SolutionModifier	(Rule 13)

	$default	reduce using rule 22 (_QDatasetClause_E_Star)

	_QDatasetClause_E_Star	go to state 99

State 47:

	_QVar_E_Plus -> Var .	(Rule 18)

	$default	reduce using rule 18 (_QVar_E_Plus)

State 48:

	_QDatasetClause_E_Star -> _QDatasetClause_E_Star . DatasetClause	(Rule 23)
	ConstructQuery -> IT_CONSTRUCT ConstructTemplate _QDatasetClause_E_Star . WhereClause SolutionModifier	(Rule 24)

	IT_FROM	shift, and go to state 41
	IT_WHERE	shift, and go to state 39

	$default	reduce using rule 40 (_QIT_WHERE_E_Opt)

	_QIT_WHERE_E_Opt	go to state 40
	WhereClause	go to state 100
	DatasetClause	go to state 42

State 49:

	GraphTerm -> BooleanLiteral .	(Rule 143)

	$default	reduce using rule 143 (GraphTerm)

State 50:

	String -> STRING_LITERAL_LONG2 .	(Rule 230)

	$default	reduce using rule 230 (String)

State 51:

	RDFLiteral -> String . _Q_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C_E_Opt	(Rule 207)

	GT_DTYPE	shift, and go to state 105
	LANGTAG	shift, and go to state 101

	$default	reduce using rule 211 (_Q_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C_E_Opt)

	_Q_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C_E_Opt	go to state 104
	_O_QGT_DTYPE_E_S_QIRIref_E_C	go to state 102
	_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C	go to state 103

State 52:

	BooleanLiteral -> IT_true .	(Rule 225)

	$default	reduce using rule 225 (BooleanLiteral)

State 53:

	NumericLiteralNegative -> INTEGER_NEGATIVE .	(Rule 222)

	$default	reduce using rule 222 (NumericLiteralNegative)

State 54:

	String -> STRING_LITERAL_LONG1 .	(Rule 229)

	$default	reduce using rule 229 (String)

State 55:

	String -> STRING_LITERAL2 .	(Rule 228)

	$default	reduce using rule 228 (String)

State 56:

	NumericLiteralUnsigned -> DECIMAL .	(Rule 217)

	$default	reduce using rule 217 (NumericLiteralUnsigned)

State 57:

	ConstructTemplate -> GT_LCURLEY _QConstructTriples_E_Opt . GT_RCURLEY	(Rule 100)

	GT_RCURLEY	shift, and go to state 106

State 58:

	GraphTerm -> NumericLiteral .	(Rule 142)

	$default	reduce using rule 142 (GraphTerm)

State 59:

	VarOrTerm -> Var .	(Rule 134)

	$default	reduce using rule 134 (VarOrTerm)

State 60:

	NumericLiteralUnsigned -> INTEGER .	(Rule 216)

	$default	reduce using rule 216 (NumericLiteralUnsigned)

State 61:

	String -> STRING_LITERAL1 .	(Rule 227)

	$default	reduce using rule 227 (String)

State 62:

	BlankNode -> ANON .	(Rule 236)

	$default	reduce using rule 236 (BlankNode)

State 63:

	NumericLiteralPositive -> DECIMAL_POSITIVE .	(Rule 220)

	$default	reduce using rule 220 (NumericLiteralPositive)

State 64:

	NumericLiteralNegative -> DOUBLE_NEGATIVE .	(Rule 224)

	$default	reduce using rule 224 (NumericLiteralNegative)

State 65:

	_QConstructTriples_E_Opt -> ConstructTriples .	(Rule 102)

	$default	reduce using rule 102 (_QConstructTriples_E_Opt)

State 66:

	TriplesNode -> Collection .	(Rule 126)

	$default	reduce using rule 126 (TriplesNode)

State 67:

	TriplesNode -> BlankNodePropertyList .	(Rule 127)

	$default	reduce using rule 127 (TriplesNode)

State 68:

	GraphTerm -> IRIref .	(Rule 140)

	$default	reduce using rule 140 (GraphTerm)

State 69:

	NumericLiteral -> NumericLiteralPositive .	(Rule 214)

	$default	reduce using rule 214 (NumericLiteral)

State 70:

	NumericLiteralPositive -> DOUBLE_POSITIVE .	(Rule 221)

	$default	reduce using rule 221 (NumericLiteralPositive)

State 71:

	Collection -> GT_LPAREN . _QGraphNode_E_Plus GT_RPAREN	(Rule 129)

	ANON	shift, and go to state 62
	BLANK_NODE_LABEL	shift, and go to state 80
	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LBRACKET	shift, and go to state 82
	GT_LPAREN	shift, and go to state 71
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_false	shift, and go to state 85
	IT_true	shift, and go to state 52
	NIL	shift, and go to state 74
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	GraphNode	go to state 108
	BooleanLiteral	go to state 49
	NumericLiteralPositive	go to state 69
	String	go to state 51
	NumericLiteralNegative	go to state 72
	_QGraphNode_E_Plus	go to state 107
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 58
	Var	go to state 59
	VarOrTerm	go to state 109
	PrefixedName	go to state 26
	GraphTerm	go to state 81
	TriplesNode	go to state 110
	BlankNode	go to state 84
	BlankNodePropertyList	go to state 67
	IRIref	go to state 68
	Collection	go to state 66
	RDFLiteral	go to state 86

State 72:

	NumericLiteral -> NumericLiteralNegative .	(Rule 215)

	$default	reduce using rule 215 (NumericLiteral)

State 73:

	NumericLiteral -> NumericLiteralUnsigned .	(Rule 213)

	$default	reduce using rule 213 (NumericLiteral)

State 74:

	GraphTerm -> NIL .	(Rule 145)

	$default	reduce using rule 145 (GraphTerm)

State 75:

	ConstructTriples -> TriplesSameSubject . _Q_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C_E_Opt	(Rule 103)

	GT_DOT	shift, and go to state 112

	$default	reduce using rule 105 (_Q_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C_E_Opt)

	_Q_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C_E_Opt	go to state 113
	_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C	go to state 111

State 76:

	NumericLiteralNegative -> DECIMAL_NEGATIVE .	(Rule 223)

	$default	reduce using rule 223 (NumericLiteralNegative)

State 77:

	TriplesSameSubject -> VarOrTerm . PropertyListNotEmpty	(Rule 107)

	IRI_REF	shift, and go to state 31
	IT_a	shift, and go to state 117
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	PropertyListNotEmpty	go to state 114
	VarOrIRIref	go to state 116
	IRIref	go to state 33
	Verb	go to state 115
	PrefixedName	go to state 26
	Var	go to state 35

State 78:

	NumericLiteralUnsigned -> DOUBLE .	(Rule 218)

	$default	reduce using rule 218 (NumericLiteralUnsigned)

State 79:

	NumericLiteralPositive -> INTEGER_POSITIVE .	(Rule 219)

	$default	reduce using rule 219 (NumericLiteralPositive)

State 80:

	BlankNode -> BLANK_NODE_LABEL .	(Rule 235)

	$default	reduce using rule 235 (BlankNode)

State 81:

	VarOrTerm -> GraphTerm .	(Rule 135)

	$default	reduce using rule 135 (VarOrTerm)

State 82:

	BlankNodePropertyList -> GT_LBRACKET . PropertyListNotEmpty GT_RBRACKET	(Rule 128)

	IRI_REF	shift, and go to state 31
	IT_a	shift, and go to state 117
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	PropertyListNotEmpty	go to state 118
	VarOrIRIref	go to state 116
	IRIref	go to state 33
	Verb	go to state 115
	PrefixedName	go to state 26
	Var	go to state 35

State 83:

	TriplesSameSubject -> TriplesNode . PropertyList	(Rule 108)

	IRI_REF	shift, and go to state 31
	IT_a	shift, and go to state 117
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	$default	reduce using rule 117 (_QPropertyListNotEmpty_E_Opt)

	_QPropertyListNotEmpty_E_Opt	go to state 120
	Verb	go to state 115
	PrefixedName	go to state 26
	PropertyListNotEmpty	go to state 119
	PropertyList	go to state 121
	IRIref	go to state 33
	VarOrIRIref	go to state 116
	Var	go to state 35

State 84:

	GraphTerm -> BlankNode .	(Rule 144)

	$default	reduce using rule 144 (GraphTerm)

State 85:

	BooleanLiteral -> IT_false .	(Rule 226)

	$default	reduce using rule 226 (BooleanLiteral)

State 86:

	GraphTerm -> RDFLiteral .	(Rule 141)

	$default	reduce using rule 141 (GraphTerm)

State 87:

	_QVarOrIRIref_E_Plus -> _QVarOrIRIref_E_Plus VarOrIRIref .	(Rule 27)

	$default	reduce using rule 27 (_QVarOrIRIref_E_Plus)

State 88:

	_QDatasetClause_E_Star -> _QDatasetClause_E_Star . DatasetClause	(Rule 23)
	DescribeQuery -> IT_DESCRIBE _O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C _QDatasetClause_E_Star . _QWhereClause_E_Opt SolutionModifier	(Rule 25)

	IT_FROM	shift, and go to state 41
	IT_WHERE	shift, and go to state 39

	GT_LCURLEY	reduce using rule 40 (_QIT_WHERE_E_Opt)
	$default	reduce using rule 30 (_QWhereClause_E_Opt)

	_QWhereClause_E_Opt	go to state 123
	_QIT_WHERE_E_Opt	go to state 40
	DatasetClause	go to state 42
	WhereClause	go to state 122

State 89:

	PrefixDecl -> IT_PREFIX PNAME_NS . IRI_REF	(Rule 12)

	IRI_REF	shift, and go to state 124

State 90:

	GroupGraphPattern -> GT_LCURLEY . _QTriplesBlock_E_Opt _Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star GT_RCURLEY	(Rule 66)

	ANON	shift, and go to state 62
	BLANK_NODE_LABEL	shift, and go to state 80
	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LBRACKET	shift, and go to state 82
	GT_LPAREN	shift, and go to state 71
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_false	shift, and go to state 85
	IT_true	shift, and go to state 52
	NIL	shift, and go to state 74
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	$default	reduce using rule 67 (_QTriplesBlock_E_Opt)

	BooleanLiteral	go to state 49
	NumericLiteralPositive	go to state 69
	String	go to state 51
	_QTriplesBlock_E_Opt	go to state 125
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	TriplesSameSubject	go to state 127
	TriplesBlock	go to state 126
	NumericLiteral	go to state 58
	Var	go to state 59
	VarOrTerm	go to state 77
	TriplesNode	go to state 83
	PrefixedName	go to state 26
	GraphTerm	go to state 81
	BlankNode	go to state 84
	BlankNodePropertyList	go to state 67
	IRIref	go to state 68
	Collection	go to state 66
	RDFLiteral	go to state 86

State 91:

	WhereClause -> _QIT_WHERE_E_Opt GroupGraphPattern .	(Rule 39)

	$default	reduce using rule 39 (WhereClause)

State 92:

	DefaultGraphClause -> SourceSelector .	(Rule 36)

	$default	reduce using rule 36 (DefaultGraphClause)

State 93:

	DatasetClause -> IT_FROM _O_QDefaultGraphClause_E_Or_QNamedGraphClause_E_C .	(Rule 33)

	$default	reduce using rule 33 (DatasetClause)

State 94:

	_O_QDefaultGraphClause_E_Or_QNamedGraphClause_E_C -> DefaultGraphClause .	(Rule 34)

	$default	reduce using rule 34 (_O_QDefaultGraphClause_E_Or_QNamedGraphClause_E_C)

State 95:

	SourceSelector -> IRIref .	(Rule 38)

	$default	reduce using rule 38 (SourceSelector)

State 96:

	NamedGraphClause -> IT_NAMED . SourceSelector	(Rule 37)

	IRI_REF	shift, and go to state 31
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30

	IRIref	go to state 95
	SourceSelector	go to state 128
	PrefixedName	go to state 26

State 97:

	_O_QDefaultGraphClause_E_Or_QNamedGraphClause_E_C -> NamedGraphClause .	(Rule 35)

	$default	reduce using rule 35 (_O_QDefaultGraphClause_E_Or_QNamedGraphClause_E_C)

State 98:

	_QVar_E_Plus -> _QVar_E_Plus Var .	(Rule 19)

	$default	reduce using rule 19 (_QVar_E_Plus)

State 99:

	SelectQuery -> IT_SELECT _Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt _O_QVar_E_Plus_Or_QGT_TIMES_E_C _QDatasetClause_E_Star . WhereClause SolutionModifier	(Rule 13)
	_QDatasetClause_E_Star -> _QDatasetClause_E_Star . DatasetClause	(Rule 23)

	IT_FROM	shift, and go to state 41
	IT_WHERE	shift, and go to state 39

	$default	reduce using rule 40 (_QIT_WHERE_E_Opt)

	_QIT_WHERE_E_Opt	go to state 40
	WhereClause	go to state 129
	DatasetClause	go to state 42

State 100:

	ConstructQuery -> IT_CONSTRUCT ConstructTemplate _QDatasetClause_E_Star WhereClause . SolutionModifier	(Rule 24)

	IT_ORDER	shift, and go to state 133

	$default	reduce using rule 43 (_QOrderClause_E_Opt)

	SolutionModifier	go to state 131
	_QOrderClause_E_Opt	go to state 130
	OrderClause	go to state 132

State 101:

	_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C -> LANGTAG .	(Rule 209)

	$default	reduce using rule 209 (_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C)

State 102:

	_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C -> _O_QGT_DTYPE_E_S_QIRIref_E_C .	(Rule 210)

	$default	reduce using rule 210 (_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C)

State 103:

	_Q_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C_E_Opt -> _O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C .	(Rule 212)

	$default	reduce using rule 212 (_Q_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C_E_Opt)

State 104:

	RDFLiteral -> String _Q_O_QLANGTAG_E_Or_QGT_DTYPE_E_S_QIRIref_E_C_E_Opt .	(Rule 207)

	$default	reduce using rule 207 (RDFLiteral)

State 105:

	_O_QGT_DTYPE_E_S_QIRIref_E_C -> GT_DTYPE . IRIref	(Rule 208)

	IRI_REF	shift, and go to state 31
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30

	IRIref	go to state 134
	PrefixedName	go to state 26

State 106:

	ConstructTemplate -> GT_LCURLEY _QConstructTriples_E_Opt GT_RCURLEY .	(Rule 100)

	$default	reduce using rule 100 (ConstructTemplate)

State 107:

	Collection -> GT_LPAREN _QGraphNode_E_Plus . GT_RPAREN	(Rule 129)
	_QGraphNode_E_Plus -> _QGraphNode_E_Plus . GraphNode	(Rule 131)

	ANON	shift, and go to state 62
	BLANK_NODE_LABEL	shift, and go to state 80
	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LBRACKET	shift, and go to state 82
	GT_LPAREN	shift, and go to state 71
	GT_RPAREN	shift, and go to state 135
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_false	shift, and go to state 85
	IT_true	shift, and go to state 52
	NIL	shift, and go to state 74
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	GraphNode	go to state 136
	BooleanLiteral	go to state 49
	NumericLiteralPositive	go to state 69
	String	go to state 51
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 58
	Var	go to state 59
	VarOrTerm	go to state 109
	PrefixedName	go to state 26
	GraphTerm	go to state 81
	TriplesNode	go to state 110
	BlankNode	go to state 84
	Collection	go to state 66
	BlankNodePropertyList	go to state 67
	IRIref	go to state 68
	RDFLiteral	go to state 86

State 108:

	_QGraphNode_E_Plus -> GraphNode .	(Rule 130)

	$default	reduce using rule 130 (_QGraphNode_E_Plus)

State 109:

	GraphNode -> VarOrTerm .	(Rule 132)

	$default	reduce using rule 132 (GraphNode)

State 110:

	GraphNode -> TriplesNode .	(Rule 133)

	$default	reduce using rule 133 (GraphNode)

State 111:

	_Q_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C_E_Opt -> _O_QGT_DOT_E_S_QConstructTriples_E_Opt_C .	(Rule 106)

	$default	reduce using rule 106 (_Q_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C_E_Opt)

State 112:

	_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C -> GT_DOT . _QConstructTriples_E_Opt	(Rule 104)

	ANON	shift, and go to state 62
	BLANK_NODE_LABEL	shift, and go to state 80
	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LBRACKET	shift, and go to state 82
	GT_LPAREN	shift, and go to state 71
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_false	shift, and go to state 85
	IT_true	shift, and go to state 52
	NIL	shift, and go to state 74
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	$default	reduce using rule 101 (_QConstructTriples_E_Opt)

	BooleanLiteral	go to state 49
	NumericLiteralPositive	go to state 69
	String	go to state 51
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	TriplesSameSubject	go to state 75
	_QConstructTriples_E_Opt	go to state 137
	NumericLiteral	go to state 58
	Var	go to state 59
	VarOrTerm	go to state 77
	TriplesNode	go to state 83
	PrefixedName	go to state 26
	GraphTerm	go to state 81
	BlankNode	go to state 84
	ConstructTriples	go to state 65
	IRIref	go to state 68
	BlankNodePropertyList	go to state 67
	Collection	go to state 66
	RDFLiteral	go to state 86

State 113:

	ConstructTriples -> TriplesSameSubject _Q_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C_E_Opt .	(Rule 103)

	$default	reduce using rule 103 (ConstructTriples)

State 114:

	TriplesSameSubject -> VarOrTerm PropertyListNotEmpty .	(Rule 107)

	$default	reduce using rule 107 (TriplesSameSubject)

State 115:

	PropertyListNotEmpty -> Verb . ObjectList _Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star	(Rule 109)

	ANON	shift, and go to state 62
	BLANK_NODE_LABEL	shift, and go to state 80
	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LBRACKET	shift, and go to state 82
	GT_LPAREN	shift, and go to state 71
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_false	shift, and go to state 85
	IT_true	shift, and go to state 52
	NIL	shift, and go to state 74
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	GraphNode	go to state 139
	BooleanLiteral	go to state 49
	NumericLiteralPositive	go to state 69
	String	go to state 51
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	Object	go to state 140
	NumericLiteral	go to state 58
	Var	go to state 59
	VarOrTerm	go to state 109
	ObjectList	go to state 138
	TriplesNode	go to state 110
	PrefixedName	go to state 26
	GraphTerm	go to state 81
	BlankNode	go to state 84
	BlankNodePropertyList	go to state 67
	IRIref	go to state 68
	Collection	go to state 66
	RDFLiteral	go to state 86

State 116:

	Verb -> VarOrIRIref .	(Rule 124)

	$default	reduce using rule 124 (Verb)

State 117:

	Verb -> IT_a .	(Rule 125)

	$default	reduce using rule 125 (Verb)

State 118:

	BlankNodePropertyList -> GT_LBRACKET PropertyListNotEmpty . GT_RBRACKET	(Rule 128)

	GT_RBRACKET	shift, and go to state 141

State 119:

	_QPropertyListNotEmpty_E_Opt -> PropertyListNotEmpty .	(Rule 118)

	$default	reduce using rule 118 (_QPropertyListNotEmpty_E_Opt)

State 120:

	PropertyList -> _QPropertyListNotEmpty_E_Opt .	(Rule 116)

	$default	reduce using rule 116 (PropertyList)

State 121:

	TriplesSameSubject -> TriplesNode PropertyList .	(Rule 108)

	$default	reduce using rule 108 (TriplesSameSubject)

State 122:

	_QWhereClause_E_Opt -> WhereClause .	(Rule 31)

	$default	reduce using rule 31 (_QWhereClause_E_Opt)

State 123:

	DescribeQuery -> IT_DESCRIBE _O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C _QDatasetClause_E_Star _QWhereClause_E_Opt . SolutionModifier	(Rule 25)

	IT_ORDER	shift, and go to state 133

	$default	reduce using rule 43 (_QOrderClause_E_Opt)

	SolutionModifier	go to state 142
	_QOrderClause_E_Opt	go to state 130
	OrderClause	go to state 132

State 124:

	PrefixDecl -> IT_PREFIX PNAME_NS IRI_REF .	(Rule 12)

	$default	reduce using rule 12 (PrefixDecl)

State 125:

	GroupGraphPattern -> GT_LCURLEY _QTriplesBlock_E_Opt . _Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star GT_RCURLEY	(Rule 66)

	$default	reduce using rule 74 (_Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star)

	_Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star	go to state 143

State 126:

	_QTriplesBlock_E_Opt -> TriplesBlock .	(Rule 68)

	$default	reduce using rule 68 (_QTriplesBlock_E_Opt)

State 127:

	TriplesBlock -> TriplesSameSubject . _Q_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C_E_Opt	(Rule 76)

	GT_DOT	shift, and go to state 145

	$default	reduce using rule 78 (_Q_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C_E_Opt)

	_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C	go to state 144
	_Q_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C_E_Opt	go to state 146

State 128:

	NamedGraphClause -> IT_NAMED SourceSelector .	(Rule 37)

	$default	reduce using rule 37 (NamedGraphClause)

State 129:

	SelectQuery -> IT_SELECT _Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt _O_QVar_E_Plus_Or_QGT_TIMES_E_C _QDatasetClause_E_Star WhereClause . SolutionModifier	(Rule 13)

	IT_ORDER	shift, and go to state 133

	$default	reduce using rule 43 (_QOrderClause_E_Opt)

	SolutionModifier	go to state 147
	_QOrderClause_E_Opt	go to state 130
	OrderClause	go to state 132

State 130:

	SolutionModifier -> _QOrderClause_E_Opt . _QLimitOffsetClauses_E_Opt	(Rule 42)

	IT_LIMIT	shift, and go to state 154
	IT_OFFSET	shift, and go to state 148

	$default	reduce using rule 45 (_QLimitOffsetClauses_E_Opt)

	LimitOffsetClauses	go to state 151
	LimitClause	go to state 152
	_O_QLimitClause_E_S_QOffsetClause_E_Opt_Or_QOffsetClause_E_S_QLimitClause_E_Opt_C	go to state 153
	_QLimitOffsetClauses_E_Opt	go to state 149
	OffsetClause	go to state 150

State 131:

	ConstructQuery -> IT_CONSTRUCT ConstructTemplate _QDatasetClause_E_Star WhereClause SolutionModifier .	(Rule 24)

	$default	reduce using rule 24 (ConstructQuery)

State 132:

	_QOrderClause_E_Opt -> OrderClause .	(Rule 44)

	$default	reduce using rule 44 (_QOrderClause_E_Opt)

State 133:

	OrderClause -> IT_ORDER . IT_BY _QOrderCondition_E_Plus	(Rule 54)

	IT_BY	shift, and go to state 155

State 134:

	_O_QGT_DTYPE_E_S_QIRIref_E_C -> GT_DTYPE IRIref .	(Rule 208)

	$default	reduce using rule 208 (_O_QGT_DTYPE_E_S_QIRIref_E_C)

State 135:

	Collection -> GT_LPAREN _QGraphNode_E_Plus GT_RPAREN .	(Rule 129)

	$default	reduce using rule 129 (Collection)

State 136:

	_QGraphNode_E_Plus -> _QGraphNode_E_Plus GraphNode .	(Rule 131)

	$default	reduce using rule 131 (_QGraphNode_E_Plus)

State 137:

	_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C -> GT_DOT _QConstructTriples_E_Opt .	(Rule 104)

	$default	reduce using rule 104 (_O_QGT_DOT_E_S_QConstructTriples_E_Opt_C)

State 138:

	PropertyListNotEmpty -> Verb ObjectList . _Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star	(Rule 109)

	$default	reduce using rule 114 (_Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star)

	_Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star	go to state 156

State 139:

	Object -> GraphNode .	(Rule 123)

	$default	reduce using rule 123 (Object)

State 140:

	ObjectList -> Object . _Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star	(Rule 119)

	$default	reduce using rule 121 (_Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star)

	_Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star	go to state 157

State 141:

	BlankNodePropertyList -> GT_LBRACKET PropertyListNotEmpty GT_RBRACKET .	(Rule 128)

	$default	reduce using rule 128 (BlankNodePropertyList)

State 142:

	DescribeQuery -> IT_DESCRIBE _O_QVarOrIRIref_E_Plus_Or_QGT_TIMES_E_C _QDatasetClause_E_Star _QWhereClause_E_Opt SolutionModifier .	(Rule 25)

	$default	reduce using rule 25 (DescribeQuery)

State 143:

	GroupGraphPattern -> GT_LCURLEY _QTriplesBlock_E_Opt _Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star . GT_RCURLEY	(Rule 66)
	_Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star -> _Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star . _O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C	(Rule 75)

	GT_LCURLEY	shift, and go to state 90
	GT_RCURLEY	shift, and go to state 168
	IT_FILTER	shift, and go to state 163
	IT_GRAPH	shift, and go to state 164
	IT_OPTIONAL	shift, and go to state 160

	Filter	go to state 166
	_O_QGraphPatternNotTriples_E_Or_QFilter_E_C	go to state 162
	GroupGraphPattern	go to state 161
	OptionalGraphPattern	go to state 158
	GroupOrUnionGraphPattern	go to state 169
	_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C	go to state 167
	GraphPatternNotTriples	go to state 159
	GraphGraphPattern	go to state 165

State 144:

	_Q_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C_E_Opt -> _O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C .	(Rule 79)

	$default	reduce using rule 79 (_Q_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C_E_Opt)

State 145:

	_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C -> GT_DOT . _QTriplesBlock_E_Opt	(Rule 77)

	ANON	shift, and go to state 62
	BLANK_NODE_LABEL	shift, and go to state 80
	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LBRACKET	shift, and go to state 82
	GT_LPAREN	shift, and go to state 71
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_false	shift, and go to state 85
	IT_true	shift, and go to state 52
	NIL	shift, and go to state 74
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	$default	reduce using rule 67 (_QTriplesBlock_E_Opt)

	BooleanLiteral	go to state 49
	NumericLiteralPositive	go to state 69
	String	go to state 51
	_QTriplesBlock_E_Opt	go to state 170
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	TriplesSameSubject	go to state 127
	TriplesBlock	go to state 126
	NumericLiteral	go to state 58
	Var	go to state 59
	VarOrTerm	go to state 77
	TriplesNode	go to state 83
	PrefixedName	go to state 26
	GraphTerm	go to state 81
	BlankNode	go to state 84
	BlankNodePropertyList	go to state 67
	IRIref	go to state 68
	Collection	go to state 66
	RDFLiteral	go to state 86

State 146:

	TriplesBlock -> TriplesSameSubject _Q_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C_E_Opt .	(Rule 76)

	$default	reduce using rule 76 (TriplesBlock)

State 147:

	SelectQuery -> IT_SELECT _Q_O_QIT_DISTINCT_E_Or_QIT_REDUCED_E_C_E_Opt _O_QVar_E_Plus_Or_QGT_TIMES_E_C _QDatasetClause_E_Star WhereClause SolutionModifier .	(Rule 13)

	$default	reduce using rule 13 (SelectQuery)

State 148:

	OffsetClause -> IT_OFFSET . INTEGER	(Rule 65)

	INTEGER	shift, and go to state 171

State 149:

	SolutionModifier -> _QOrderClause_E_Opt _QLimitOffsetClauses_E_Opt .	(Rule 42)

	$default	reduce using rule 42 (SolutionModifier)

State 150:

	_O_QLimitClause_E_S_QOffsetClause_E_Opt_Or_QOffsetClause_E_S_QLimitClause_E_Opt_C -> OffsetClause . _QLimitClause_E_Opt	(Rule 53)

	IT_LIMIT	shift, and go to state 154

	$default	reduce using rule 50 (_QLimitClause_E_Opt)

	LimitClause	go to state 173
	_QLimitClause_E_Opt	go to state 172

State 151:

	_QLimitOffsetClauses_E_Opt -> LimitOffsetClauses .	(Rule 46)

	$default	reduce using rule 46 (_QLimitOffsetClauses_E_Opt)

State 152:

	_O_QLimitClause_E_S_QOffsetClause_E_Opt_Or_QOffsetClause_E_S_QLimitClause_E_Opt_C -> LimitClause . _QOffsetClause_E_Opt	(Rule 52)

	IT_OFFSET	shift, and go to state 148

	$default	reduce using rule 48 (_QOffsetClause_E_Opt)

	_QOffsetClause_E_Opt	go to state 174
	OffsetClause	go to state 175

State 153:

	LimitOffsetClauses -> _O_QLimitClause_E_S_QOffsetClause_E_Opt_Or_QOffsetClause_E_S_QLimitClause_E_Opt_C .	(Rule 47)

	$default	reduce using rule 47 (LimitOffsetClauses)

State 154:

	LimitClause -> IT_LIMIT . INTEGER	(Rule 64)

	INTEGER	shift, and go to state 176

State 155:

	OrderClause -> IT_ORDER IT_BY . _QOrderCondition_E_Plus	(Rule 54)

	GT_LPAREN	shift, and go to state 195
	IRI_REF	shift, and go to state 31
	IT_ASC	shift, and go to state 180
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_DESC	shift, and go to state 179
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	_O_QConstraint_E_Or_QVar_E_C	go to state 185
	RegexExpression	go to state 192
	_O_QIT_ASC_E_Or_QIT_DESC_E_C	go to state 194
	BrackettedExpression	go to state 186
	PrefixedName	go to state 26
	Constraint	go to state 197
	FunctionCall	go to state 196
	BuiltInCall	go to state 188
	OrderCondition	go to state 201
	IRIref	go to state 189
	_O_QIT_ASC_E_Or_QIT_DESC_E_S_QBrackettedExpression_E_C	go to state 190
	Var	go to state 182
	_QOrderCondition_E_Plus	go to state 183

State 156:

	PropertyListNotEmpty -> Verb ObjectList _Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star .	(Rule 109)
	_Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star -> _Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star . _O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C	(Rule 115)

	GT_SEMI	shift, and go to state 203

	$default	reduce using rule 109 (PropertyListNotEmpty)

	_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C	go to state 204

State 157:

	ObjectList -> Object _Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star .	(Rule 119)
	_Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star -> _Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star . _O_QGT_COMMA_E_S_QObject_E_C	(Rule 122)

	GT_COMMA	shift, and go to state 205

	$default	reduce using rule 119 (ObjectList)

	_O_QGT_COMMA_E_S_QObject_E_C	go to state 206

State 158:

	GraphPatternNotTriples -> OptionalGraphPattern .	(Rule 80)

	$default	reduce using rule 80 (GraphPatternNotTriples)

State 159:

	_O_QGraphPatternNotTriples_E_Or_QFilter_E_C -> GraphPatternNotTriples .	(Rule 69)

	$default	reduce using rule 69 (_O_QGraphPatternNotTriples_E_Or_QFilter_E_C)

State 160:

	OptionalGraphPattern -> IT_OPTIONAL . GroupGraphPattern	(Rule 83)

	GT_LCURLEY	shift, and go to state 90

	GroupGraphPattern	go to state 207

State 161:

	GroupOrUnionGraphPattern -> GroupGraphPattern . _Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star	(Rule 85)

	$default	reduce using rule 87 (_Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star)

	_Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star	go to state 208

State 162:

	_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C -> _O_QGraphPatternNotTriples_E_Or_QFilter_E_C . _QGT_DOT_E_Opt _QTriplesBlock_E_Opt	(Rule 73)

	GT_DOT	shift, and go to state 209

	$default	reduce using rule 71 (_QGT_DOT_E_Opt)

	_QGT_DOT_E_Opt	go to state 210

State 163:

	Filter -> IT_FILTER . Constraint	(Rule 89)

	GT_LPAREN	shift, and go to state 195
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30

	RegexExpression	go to state 192
	Constraint	go to state 211
	FunctionCall	go to state 196
	BuiltInCall	go to state 188
	IRIref	go to state 189
	BrackettedExpression	go to state 186
	PrefixedName	go to state 26

State 164:

	GraphGraphPattern -> IT_GRAPH . VarOrIRIref GroupGraphPattern	(Rule 84)

	IRI_REF	shift, and go to state 31
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	VarOrIRIref	go to state 212
	IRIref	go to state 33
	PrefixedName	go to state 26
	Var	go to state 35

State 165:

	GraphPatternNotTriples -> GraphGraphPattern .	(Rule 82)

	$default	reduce using rule 82 (GraphPatternNotTriples)

State 166:

	_O_QGraphPatternNotTriples_E_Or_QFilter_E_C -> Filter .	(Rule 70)

	$default	reduce using rule 70 (_O_QGraphPatternNotTriples_E_Or_QFilter_E_C)

State 167:

	_Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star -> _Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star _O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C .	(Rule 75)

	$default	reduce using rule 75 (_Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star)

State 168:

	GroupGraphPattern -> GT_LCURLEY _QTriplesBlock_E_Opt _Q_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C_E_Star GT_RCURLEY .	(Rule 66)

	$default	reduce using rule 66 (GroupGraphPattern)

State 169:

	GraphPatternNotTriples -> GroupOrUnionGraphPattern .	(Rule 81)

	$default	reduce using rule 81 (GraphPatternNotTriples)

State 170:

	_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C -> GT_DOT _QTriplesBlock_E_Opt .	(Rule 77)

	$default	reduce using rule 77 (_O_QGT_DOT_E_S_QTriplesBlock_E_Opt_C)

State 171:

	OffsetClause -> IT_OFFSET INTEGER .	(Rule 65)

	$default	reduce using rule 65 (OffsetClause)

State 172:

	_O_QLimitClause_E_S_QOffsetClause_E_Opt_Or_QOffsetClause_E_S_QLimitClause_E_Opt_C -> OffsetClause _QLimitClause_E_Opt .	(Rule 53)

	$default	reduce using rule 53 (_O_QLimitClause_E_S_QOffsetClause_E_Opt_Or_QOffsetClause_E_S_QLimitClause_E_Opt_C)

State 173:

	_QLimitClause_E_Opt -> LimitClause .	(Rule 51)

	$default	reduce using rule 51 (_QLimitClause_E_Opt)

State 174:

	_O_QLimitClause_E_S_QOffsetClause_E_Opt_Or_QOffsetClause_E_S_QLimitClause_E_Opt_C -> LimitClause _QOffsetClause_E_Opt .	(Rule 52)

	$default	reduce using rule 52 (_O_QLimitClause_E_S_QOffsetClause_E_Opt_Or_QOffsetClause_E_S_QLimitClause_E_Opt_C)

State 175:

	_QOffsetClause_E_Opt -> OffsetClause .	(Rule 49)

	$default	reduce using rule 49 (_QOffsetClause_E_Opt)

State 176:

	LimitClause -> IT_LIMIT INTEGER .	(Rule 64)

	$default	reduce using rule 64 (LimitClause)

State 177:

	BuiltInCall -> IT_LANG . GT_LPAREN Expression GT_RPAREN	(Rule 191)

	GT_LPAREN	shift, and go to state 213

State 178:

	BuiltInCall -> IT_DATATYPE . GT_LPAREN Expression GT_RPAREN	(Rule 193)

	GT_LPAREN	shift, and go to state 214

State 179:

	_O_QIT_ASC_E_Or_QIT_DESC_E_C -> IT_DESC .	(Rule 60)

	$default	reduce using rule 60 (_O_QIT_ASC_E_Or_QIT_DESC_E_C)

State 180:

	_O_QIT_ASC_E_Or_QIT_DESC_E_C -> IT_ASC .	(Rule 59)

	$default	reduce using rule 59 (_O_QIT_ASC_E_Or_QIT_DESC_E_C)

State 181:

	BuiltInCall -> IT_isLITERAL . GT_LPAREN Expression GT_RPAREN	(Rule 199)

	GT_LPAREN	shift, and go to state 215

State 182:

	_O_QConstraint_E_Or_QVar_E_C -> Var .	(Rule 63)

	$default	reduce using rule 63 (_O_QConstraint_E_Or_QVar_E_C)

State 183:

	OrderClause -> IT_ORDER IT_BY _QOrderCondition_E_Plus .	(Rule 54)
	_QOrderCondition_E_Plus -> _QOrderCondition_E_Plus . OrderCondition	(Rule 56)

	GT_LPAREN	shift, and go to state 195
	IRI_REF	shift, and go to state 31
	IT_ASC	shift, and go to state 180
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_DESC	shift, and go to state 179
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	$default	reduce using rule 54 (OrderClause)

	_O_QConstraint_E_Or_QVar_E_C	go to state 185
	RegexExpression	go to state 192
	_O_QIT_ASC_E_Or_QIT_DESC_E_C	go to state 194
	BrackettedExpression	go to state 186
	PrefixedName	go to state 26
	Constraint	go to state 197
	FunctionCall	go to state 196
	BuiltInCall	go to state 188
	OrderCondition	go to state 216
	IRIref	go to state 189
	_O_QIT_ASC_E_Or_QIT_DESC_E_S_QBrackettedExpression_E_C	go to state 190
	Var	go to state 182

State 184:

	RegexExpression -> IT_REGEX . GT_LPAREN Expression GT_COMMA Expression _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt GT_RPAREN	(Rule 201)

	GT_LPAREN	shift, and go to state 217

State 185:

	OrderCondition -> _O_QConstraint_E_Or_QVar_E_C .	(Rule 58)

	$default	reduce using rule 58 (OrderCondition)

State 186:

	Constraint -> BrackettedExpression .	(Rule 90)

	$default	reduce using rule 90 (Constraint)

State 187:

	BuiltInCall -> IT_isBLANK . GT_LPAREN Expression GT_RPAREN	(Rule 198)

	GT_LPAREN	shift, and go to state 218

State 188:

	Constraint -> BuiltInCall .	(Rule 91)

	$default	reduce using rule 91 (Constraint)

State 189:

	FunctionCall -> IRIref . ArgList	(Rule 93)

	GT_LPAREN	shift, and go to state 221
	NIL	shift, and go to state 222

	ArgList	go to state 219
	_O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C	go to state 220

State 190:

	OrderCondition -> _O_QIT_ASC_E_Or_QIT_DESC_E_S_QBrackettedExpression_E_C .	(Rule 57)

	$default	reduce using rule 57 (OrderCondition)

State 191:

	BuiltInCall -> IT_BOUND . GT_LPAREN Var GT_RPAREN	(Rule 194)

	GT_LPAREN	shift, and go to state 223

State 192:

	BuiltInCall -> RegexExpression .	(Rule 200)

	$default	reduce using rule 200 (BuiltInCall)

State 193:

	BuiltInCall -> IT_LANGMATCHES . GT_LPAREN Expression GT_COMMA Expression GT_RPAREN	(Rule 192)

	GT_LPAREN	shift, and go to state 224

State 194:

	_O_QIT_ASC_E_Or_QIT_DESC_E_S_QBrackettedExpression_E_C -> _O_QIT_ASC_E_Or_QIT_DESC_E_C . BrackettedExpression	(Rule 61)

	GT_LPAREN	shift, and go to state 195

	BrackettedExpression	go to state 225

State 195:

	BrackettedExpression -> GT_LPAREN . Expression GT_RPAREN	(Rule 189)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 243
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 196:

	Constraint -> FunctionCall .	(Rule 92)

	$default	reduce using rule 92 (Constraint)

State 197:

	_O_QConstraint_E_Or_QVar_E_C -> Constraint .	(Rule 62)

	$default	reduce using rule 62 (_O_QConstraint_E_Or_QVar_E_C)

State 198:

	BuiltInCall -> IT_sameTerm . GT_LPAREN Expression GT_COMMA Expression GT_RPAREN	(Rule 195)

	GT_LPAREN	shift, and go to state 247

State 199:

	BuiltInCall -> IT_isURI . GT_LPAREN Expression GT_RPAREN	(Rule 197)

	GT_LPAREN	shift, and go to state 248

State 200:

	BuiltInCall -> IT_STR . GT_LPAREN Expression GT_RPAREN	(Rule 190)

	GT_LPAREN	shift, and go to state 249

State 201:

	_QOrderCondition_E_Plus -> OrderCondition .	(Rule 55)

	$default	reduce using rule 55 (_QOrderCondition_E_Plus)

State 202:

	BuiltInCall -> IT_isIRI . GT_LPAREN Expression GT_RPAREN	(Rule 196)

	GT_LPAREN	shift, and go to state 250

State 203:

	_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C -> GT_SEMI . _Q_O_QVerb_E_S_QObjectList_E_C_E_Opt	(Rule 113)

	IRI_REF	shift, and go to state 31
	IT_a	shift, and go to state 117
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	$default	reduce using rule 111 (_Q_O_QVerb_E_S_QObjectList_E_C_E_Opt)

	_Q_O_QVerb_E_S_QObjectList_E_C_E_Opt	go to state 251
	_O_QVerb_E_S_QObjectList_E_C	go to state 253
	VarOrIRIref	go to state 116
	IRIref	go to state 33
	Verb	go to state 252
	PrefixedName	go to state 26
	Var	go to state 35

State 204:

	_Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star -> _Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star _O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C .	(Rule 115)

	$default	reduce using rule 115 (_Q_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C_E_Star)

State 205:

	_O_QGT_COMMA_E_S_QObject_E_C -> GT_COMMA . Object	(Rule 120)

	ANON	shift, and go to state 62
	BLANK_NODE_LABEL	shift, and go to state 80
	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LBRACKET	shift, and go to state 82
	GT_LPAREN	shift, and go to state 71
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_false	shift, and go to state 85
	IT_true	shift, and go to state 52
	NIL	shift, and go to state 74
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	GraphNode	go to state 139
	BooleanLiteral	go to state 49
	NumericLiteralPositive	go to state 69
	String	go to state 51
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	Object	go to state 254
	NumericLiteral	go to state 58
	Var	go to state 59
	VarOrTerm	go to state 109
	PrefixedName	go to state 26
	GraphTerm	go to state 81
	TriplesNode	go to state 110
	BlankNode	go to state 84
	Collection	go to state 66
	BlankNodePropertyList	go to state 67
	IRIref	go to state 68
	RDFLiteral	go to state 86

State 206:

	_Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star -> _Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star _O_QGT_COMMA_E_S_QObject_E_C .	(Rule 122)

	$default	reduce using rule 122 (_Q_O_QGT_COMMA_E_S_QObject_E_C_E_Star)

State 207:

	OptionalGraphPattern -> IT_OPTIONAL GroupGraphPattern .	(Rule 83)

	$default	reduce using rule 83 (OptionalGraphPattern)

State 208:

	GroupOrUnionGraphPattern -> GroupGraphPattern _Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star .	(Rule 85)
	_Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star -> _Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star . _O_QIT_UNION_E_S_QGroupGraphPattern_E_C	(Rule 88)

	IT_UNION	shift, and go to state 255

	$default	reduce using rule 85 (GroupOrUnionGraphPattern)

	_O_QIT_UNION_E_S_QGroupGraphPattern_E_C	go to state 256

State 209:

	_QGT_DOT_E_Opt -> GT_DOT .	(Rule 72)

	$default	reduce using rule 72 (_QGT_DOT_E_Opt)

State 210:

	_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C -> _O_QGraphPatternNotTriples_E_Or_QFilter_E_C _QGT_DOT_E_Opt . _QTriplesBlock_E_Opt	(Rule 73)

	ANON	shift, and go to state 62
	BLANK_NODE_LABEL	shift, and go to state 80
	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LBRACKET	shift, and go to state 82
	GT_LPAREN	shift, and go to state 71
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_false	shift, and go to state 85
	IT_true	shift, and go to state 52
	NIL	shift, and go to state 74
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	$default	reduce using rule 67 (_QTriplesBlock_E_Opt)

	BooleanLiteral	go to state 49
	NumericLiteralPositive	go to state 69
	String	go to state 51
	_QTriplesBlock_E_Opt	go to state 257
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	TriplesSameSubject	go to state 127
	TriplesBlock	go to state 126
	NumericLiteral	go to state 58
	Var	go to state 59
	VarOrTerm	go to state 77
	TriplesNode	go to state 83
	PrefixedName	go to state 26
	GraphTerm	go to state 81
	BlankNode	go to state 84
	BlankNodePropertyList	go to state 67
	IRIref	go to state 68
	Collection	go to state 66
	RDFLiteral	go to state 86

State 211:

	Filter -> IT_FILTER Constraint .	(Rule 89)

	$default	reduce using rule 89 (Filter)

State 212:

	GraphGraphPattern -> IT_GRAPH VarOrIRIref . GroupGraphPattern	(Rule 84)

	GT_LCURLEY	shift, and go to state 90

	GroupGraphPattern	go to state 258

State 213:

	BuiltInCall -> IT_LANG GT_LPAREN . Expression GT_RPAREN	(Rule 191)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 259
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 214:

	BuiltInCall -> IT_DATATYPE GT_LPAREN . Expression GT_RPAREN	(Rule 193)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 260
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 215:

	BuiltInCall -> IT_isLITERAL GT_LPAREN . Expression GT_RPAREN	(Rule 199)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 261
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 216:

	_QOrderCondition_E_Plus -> _QOrderCondition_E_Plus OrderCondition .	(Rule 56)

	$default	reduce using rule 56 (_QOrderCondition_E_Plus)

State 217:

	RegexExpression -> IT_REGEX GT_LPAREN . Expression GT_COMMA Expression _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt GT_RPAREN	(Rule 201)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 262
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 218:

	BuiltInCall -> IT_isBLANK GT_LPAREN . Expression GT_RPAREN	(Rule 198)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 263
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 219:

	FunctionCall -> IRIref ArgList .	(Rule 93)

	$default	reduce using rule 93 (FunctionCall)

State 220:

	ArgList -> _O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C .	(Rule 94)

	$default	reduce using rule 94 (ArgList)

State 221:

	_O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C -> GT_LPAREN . Expression _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star GT_RPAREN	(Rule 99)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 264
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 222:

	_O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C -> NIL .	(Rule 98)

	$default	reduce using rule 98 (_O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C)

State 223:

	BuiltInCall -> IT_BOUND GT_LPAREN . Var GT_RPAREN	(Rule 194)

	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	Var	go to state 265

State 224:

	BuiltInCall -> IT_LANGMATCHES GT_LPAREN . Expression GT_COMMA Expression GT_RPAREN	(Rule 192)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 266
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 225:

	_O_QIT_ASC_E_Or_QIT_DESC_E_S_QBrackettedExpression_E_C -> _O_QIT_ASC_E_Or_QIT_DESC_E_C BrackettedExpression .	(Rule 61)

	$default	reduce using rule 61 (_O_QIT_ASC_E_Or_QIT_DESC_E_S_QBrackettedExpression_E_C)

State 226:

	PrimaryExpression -> BooleanLiteral .	(Rule 187)

	$default	reduce using rule 187 (PrimaryExpression)

State 227:

	ValueLogical -> RelationalExpression .	(Rule 155)

	$default	reduce using rule 155 (ValueLogical)

State 228:

	ConditionalAndExpression -> ValueLogical . _Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star	(Rule 151)

	$default	reduce using rule 153 (_Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star)

	_Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star	go to state 267

State 229:

	AdditiveExpression -> MultiplicativeExpression . _Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star	(Rule 166)

	$default	reduce using rule 171 (_Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star)

	_Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star	go to state 268

State 230:

	UnaryExpression -> GT_NOT . PrimaryExpression	(Rule 178)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	BrackettedExpression	go to state 236
	NumericLiteralNegative	go to state 72
	PrefixedName	go to state 26
	NumericLiteralUnsigned	go to state 73
	PrimaryExpression	go to state 269
	BuiltInCall	go to state 238
	IRIref	go to state 240
	RDFLiteral	go to state 246
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	Var	go to state 234

State 231:

	PrimaryExpression -> NumericLiteral .	(Rule 186)

	$default	reduce using rule 186 (PrimaryExpression)

State 232:

	PrimaryExpression -> IRIrefOrFunction .	(Rule 184)

	$default	reduce using rule 184 (PrimaryExpression)

State 233:

	RelationalExpression -> NumericExpression . _Q_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C_E_Opt	(Rule 156)

	GT_EQUAL	shift, and go to state 275
	GT_GE	shift, and go to state 271
	GT_GT	shift, and go to state 270
	GT_LE	shift, and go to state 276
	GT_LT	shift, and go to state 273
	GT_NEQUAL	shift, and go to state 274

	$default	reduce using rule 163 (_Q_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C_E_Opt)

	_Q_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C_E_Opt	go to state 272
	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C	go to state 277

State 234:

	PrimaryExpression -> Var .	(Rule 188)

	$default	reduce using rule 188 (PrimaryExpression)

State 235:

	UnaryExpression -> GT_PLUS . PrimaryExpression	(Rule 179)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	BrackettedExpression	go to state 236
	NumericLiteralNegative	go to state 72
	PrefixedName	go to state 26
	NumericLiteralUnsigned	go to state 73
	PrimaryExpression	go to state 278
	BuiltInCall	go to state 238
	IRIref	go to state 240
	RDFLiteral	go to state 246
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	Var	go to state 234

State 236:

	PrimaryExpression -> BrackettedExpression .	(Rule 182)

	$default	reduce using rule 182 (PrimaryExpression)

State 237:

	UnaryExpression -> PrimaryExpression .	(Rule 181)

	$default	reduce using rule 181 (UnaryExpression)

State 238:

	PrimaryExpression -> BuiltInCall .	(Rule 183)

	$default	reduce using rule 183 (PrimaryExpression)

State 239:

	MultiplicativeExpression -> UnaryExpression . _Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star	(Rule 173)

	$default	reduce using rule 176 (_Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star)

	_Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star	go to state 279

State 240:

	IRIrefOrFunction -> IRIref . _QArgList_E_Opt	(Rule 204)

	GT_LPAREN	shift, and go to state 221
	NIL	shift, and go to state 222

	$default	reduce using rule 205 (_QArgList_E_Opt)

	ArgList	go to state 281
	_O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C	go to state 220
	_QArgList_E_Opt	go to state 280

State 241:

	UnaryExpression -> GT_MINUS . PrimaryExpression	(Rule 180)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	BrackettedExpression	go to state 236
	NumericLiteralNegative	go to state 72
	PrefixedName	go to state 26
	NumericLiteralUnsigned	go to state 73
	PrimaryExpression	go to state 282
	BuiltInCall	go to state 238
	IRIref	go to state 240
	RDFLiteral	go to state 246
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	Var	go to state 234

State 242:

	Expression -> ConditionalOrExpression .	(Rule 146)

	$default	reduce using rule 146 (Expression)

State 243:

	BrackettedExpression -> GT_LPAREN Expression . GT_RPAREN	(Rule 189)

	GT_RPAREN	shift, and go to state 283

State 244:

	ConditionalOrExpression -> ConditionalAndExpression . _Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star	(Rule 147)

	$default	reduce using rule 149 (_Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star)

	_Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star	go to state 284

State 245:

	NumericExpression -> AdditiveExpression .	(Rule 165)

	$default	reduce using rule 165 (NumericExpression)

State 246:

	PrimaryExpression -> RDFLiteral .	(Rule 185)

	$default	reduce using rule 185 (PrimaryExpression)

State 247:

	BuiltInCall -> IT_sameTerm GT_LPAREN . Expression GT_COMMA Expression GT_RPAREN	(Rule 195)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 285
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 248:

	BuiltInCall -> IT_isURI GT_LPAREN . Expression GT_RPAREN	(Rule 197)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 286
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 249:

	BuiltInCall -> IT_STR GT_LPAREN . Expression GT_RPAREN	(Rule 190)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 287
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 250:

	BuiltInCall -> IT_isIRI GT_LPAREN . Expression GT_RPAREN	(Rule 196)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 288
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 251:

	_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C -> GT_SEMI _Q_O_QVerb_E_S_QObjectList_E_C_E_Opt .	(Rule 113)

	$default	reduce using rule 113 (_O_QGT_SEMI_E_S_QVerb_E_S_QObjectList_E_Opt_C)

State 252:

	_O_QVerb_E_S_QObjectList_E_C -> Verb . ObjectList	(Rule 110)

	ANON	shift, and go to state 62
	BLANK_NODE_LABEL	shift, and go to state 80
	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LBRACKET	shift, and go to state 82
	GT_LPAREN	shift, and go to state 71
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_false	shift, and go to state 85
	IT_true	shift, and go to state 52
	NIL	shift, and go to state 74
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	GraphNode	go to state 139
	BooleanLiteral	go to state 49
	NumericLiteralPositive	go to state 69
	String	go to state 51
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	Object	go to state 140
	NumericLiteral	go to state 58
	Var	go to state 59
	VarOrTerm	go to state 109
	ObjectList	go to state 289
	TriplesNode	go to state 110
	PrefixedName	go to state 26
	GraphTerm	go to state 81
	BlankNode	go to state 84
	BlankNodePropertyList	go to state 67
	IRIref	go to state 68
	Collection	go to state 66
	RDFLiteral	go to state 86

State 253:

	_Q_O_QVerb_E_S_QObjectList_E_C_E_Opt -> _O_QVerb_E_S_QObjectList_E_C .	(Rule 112)

	$default	reduce using rule 112 (_Q_O_QVerb_E_S_QObjectList_E_C_E_Opt)

State 254:

	_O_QGT_COMMA_E_S_QObject_E_C -> GT_COMMA Object .	(Rule 120)

	$default	reduce using rule 120 (_O_QGT_COMMA_E_S_QObject_E_C)

State 255:

	_O_QIT_UNION_E_S_QGroupGraphPattern_E_C -> IT_UNION . GroupGraphPattern	(Rule 86)

	GT_LCURLEY	shift, and go to state 90

	GroupGraphPattern	go to state 290

State 256:

	_Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star -> _Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star _O_QIT_UNION_E_S_QGroupGraphPattern_E_C .	(Rule 88)

	$default	reduce using rule 88 (_Q_O_QIT_UNION_E_S_QGroupGraphPattern_E_C_E_Star)

State 257:

	_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C -> _O_QGraphPatternNotTriples_E_Or_QFilter_E_C _QGT_DOT_E_Opt _QTriplesBlock_E_Opt .	(Rule 73)

	$default	reduce using rule 73 (_O_QGraphPatternNotTriples_E_Or_QFilter_E_S_QGT_DOT_E_Opt_S_QTriplesBlock_E_Opt_C)

State 258:

	GraphGraphPattern -> IT_GRAPH VarOrIRIref GroupGraphPattern .	(Rule 84)

	$default	reduce using rule 84 (GraphGraphPattern)

State 259:

	BuiltInCall -> IT_LANG GT_LPAREN Expression . GT_RPAREN	(Rule 191)

	GT_RPAREN	shift, and go to state 291

State 260:

	BuiltInCall -> IT_DATATYPE GT_LPAREN Expression . GT_RPAREN	(Rule 193)

	GT_RPAREN	shift, and go to state 292

State 261:

	BuiltInCall -> IT_isLITERAL GT_LPAREN Expression . GT_RPAREN	(Rule 199)

	GT_RPAREN	shift, and go to state 293

State 262:

	RegexExpression -> IT_REGEX GT_LPAREN Expression . GT_COMMA Expression _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt GT_RPAREN	(Rule 201)

	GT_COMMA	shift, and go to state 294

State 263:

	BuiltInCall -> IT_isBLANK GT_LPAREN Expression . GT_RPAREN	(Rule 198)

	GT_RPAREN	shift, and go to state 295

State 264:

	_O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C -> GT_LPAREN Expression . _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star GT_RPAREN	(Rule 99)

	$default	reduce using rule 96 (_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star)

	_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star	go to state 296

State 265:

	BuiltInCall -> IT_BOUND GT_LPAREN Var . GT_RPAREN	(Rule 194)

	GT_RPAREN	shift, and go to state 297

State 266:

	BuiltInCall -> IT_LANGMATCHES GT_LPAREN Expression . GT_COMMA Expression GT_RPAREN	(Rule 192)

	GT_COMMA	shift, and go to state 298

State 267:

	ConditionalAndExpression -> ValueLogical _Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star .	(Rule 151)
	_Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star -> _Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star . _O_QGT_AND_E_S_QValueLogical_E_C	(Rule 154)

	GT_AND	shift, and go to state 299

	$default	reduce using rule 151 (ConditionalAndExpression)

	_O_QGT_AND_E_S_QValueLogical_E_C	go to state 300

State 268:

	AdditiveExpression -> MultiplicativeExpression _Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star .	(Rule 166)
	_Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star -> _Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star . _O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C	(Rule 172)

	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_MINUS	shift, and go to state 305
	GT_PLUS	shift, and go to state 302
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79

	$default	reduce using rule 166 (AdditiveExpression)

	NumericLiteralPositive	go to state 303
	_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C	go to state 301
	NumericLiteralNegative	go to state 304

State 269:

	UnaryExpression -> GT_NOT PrimaryExpression .	(Rule 178)

	$default	reduce using rule 178 (UnaryExpression)

State 270:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_GT . NumericExpression	(Rule 160)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 306
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 271:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_GE . NumericExpression	(Rule 162)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 307
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 272:

	RelationalExpression -> NumericExpression _Q_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C_E_Opt .	(Rule 156)

	$default	reduce using rule 156 (RelationalExpression)

State 273:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_LT . NumericExpression	(Rule 159)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 308
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 274:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_NEQUAL . NumericExpression	(Rule 158)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 309
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 275:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_EQUAL . NumericExpression	(Rule 157)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 310
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 276:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_LE . NumericExpression	(Rule 161)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 311
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 277:

	_Q_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C_E_Opt -> _O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C .	(Rule 164)

	$default	reduce using rule 164 (_Q_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C_E_Opt)

State 278:

	UnaryExpression -> GT_PLUS PrimaryExpression .	(Rule 179)

	$default	reduce using rule 179 (UnaryExpression)

State 279:

	MultiplicativeExpression -> UnaryExpression _Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star .	(Rule 173)
	_Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star -> _Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star . _O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C	(Rule 177)

	GT_DIVIDE	shift, and go to state 313
	GT_TIMES	shift, and go to state 312

	$default	reduce using rule 173 (MultiplicativeExpression)

	_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C	go to state 314

State 280:

	IRIrefOrFunction -> IRIref _QArgList_E_Opt .	(Rule 204)

	$default	reduce using rule 204 (IRIrefOrFunction)

State 281:

	_QArgList_E_Opt -> ArgList .	(Rule 206)

	$default	reduce using rule 206 (_QArgList_E_Opt)

State 282:

	UnaryExpression -> GT_MINUS PrimaryExpression .	(Rule 180)

	$default	reduce using rule 180 (UnaryExpression)

State 283:

	BrackettedExpression -> GT_LPAREN Expression GT_RPAREN .	(Rule 189)

	$default	reduce using rule 189 (BrackettedExpression)

State 284:

	ConditionalOrExpression -> ConditionalAndExpression _Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star .	(Rule 147)
	_Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star -> _Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star . _O_QGT_OR_E_S_QConditionalAndExpression_E_C	(Rule 150)

	GT_OR	shift, and go to state 316

	$default	reduce using rule 147 (ConditionalOrExpression)

	_O_QGT_OR_E_S_QConditionalAndExpression_E_C	go to state 315

State 285:

	BuiltInCall -> IT_sameTerm GT_LPAREN Expression . GT_COMMA Expression GT_RPAREN	(Rule 195)

	GT_COMMA	shift, and go to state 317

State 286:

	BuiltInCall -> IT_isURI GT_LPAREN Expression . GT_RPAREN	(Rule 197)

	GT_RPAREN	shift, and go to state 318

State 287:

	BuiltInCall -> IT_STR GT_LPAREN Expression . GT_RPAREN	(Rule 190)

	GT_RPAREN	shift, and go to state 319

State 288:

	BuiltInCall -> IT_isIRI GT_LPAREN Expression . GT_RPAREN	(Rule 196)

	GT_RPAREN	shift, and go to state 320

State 289:

	_O_QVerb_E_S_QObjectList_E_C -> Verb ObjectList .	(Rule 110)

	$default	reduce using rule 110 (_O_QVerb_E_S_QObjectList_E_C)

State 290:

	_O_QIT_UNION_E_S_QGroupGraphPattern_E_C -> IT_UNION GroupGraphPattern .	(Rule 86)

	$default	reduce using rule 86 (_O_QIT_UNION_E_S_QGroupGraphPattern_E_C)

State 291:

	BuiltInCall -> IT_LANG GT_LPAREN Expression GT_RPAREN .	(Rule 191)

	$default	reduce using rule 191 (BuiltInCall)

State 292:

	BuiltInCall -> IT_DATATYPE GT_LPAREN Expression GT_RPAREN .	(Rule 193)

	$default	reduce using rule 193 (BuiltInCall)

State 293:

	BuiltInCall -> IT_isLITERAL GT_LPAREN Expression GT_RPAREN .	(Rule 199)

	$default	reduce using rule 199 (BuiltInCall)

State 294:

	RegexExpression -> IT_REGEX GT_LPAREN Expression GT_COMMA . Expression _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt GT_RPAREN	(Rule 201)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 321
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 295:

	BuiltInCall -> IT_isBLANK GT_LPAREN Expression GT_RPAREN .	(Rule 198)

	$default	reduce using rule 198 (BuiltInCall)

State 296:

	_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star -> _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star . _O_QGT_COMMA_E_S_QExpression_E_C	(Rule 97)
	_O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C -> GT_LPAREN Expression _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star . GT_RPAREN	(Rule 99)

	GT_COMMA	shift, and go to state 323
	GT_RPAREN	shift, and go to state 322

	_O_QGT_COMMA_E_S_QExpression_E_C	go to state 324

State 297:

	BuiltInCall -> IT_BOUND GT_LPAREN Var GT_RPAREN .	(Rule 194)

	$default	reduce using rule 194 (BuiltInCall)

State 298:

	BuiltInCall -> IT_LANGMATCHES GT_LPAREN Expression GT_COMMA . Expression GT_RPAREN	(Rule 192)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 325
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 299:

	_O_QGT_AND_E_S_QValueLogical_E_C -> GT_AND . ValueLogical	(Rule 152)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 326
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 300:

	_Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star -> _Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star _O_QGT_AND_E_S_QValueLogical_E_C .	(Rule 154)

	$default	reduce using rule 154 (_Q_O_QGT_AND_E_S_QValueLogical_E_C_E_Star)

State 301:

	_Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star -> _Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star _O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C .	(Rule 172)

	$default	reduce using rule 172 (_Q_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C_E_Star)

State 302:

	_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C -> GT_PLUS . MultiplicativeExpression	(Rule 167)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	MultiplicativeExpression	go to state 327
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 303:

	_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C -> NumericLiteralPositive .	(Rule 169)

	$default	reduce using rule 169 (_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C)

State 304:

	_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C -> NumericLiteralNegative .	(Rule 170)

	$default	reduce using rule 170 (_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C)

State 305:

	_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C -> GT_MINUS . MultiplicativeExpression	(Rule 168)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	MultiplicativeExpression	go to state 328
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 306:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_GT NumericExpression .	(Rule 160)

	$default	reduce using rule 160 (_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C)

State 307:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_GE NumericExpression .	(Rule 162)

	$default	reduce using rule 162 (_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C)

State 308:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_LT NumericExpression .	(Rule 159)

	$default	reduce using rule 159 (_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C)

State 309:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_NEQUAL NumericExpression .	(Rule 158)

	$default	reduce using rule 158 (_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C)

State 310:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_EQUAL NumericExpression .	(Rule 157)

	$default	reduce using rule 157 (_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C)

State 311:

	_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C -> GT_LE NumericExpression .	(Rule 161)

	$default	reduce using rule 161 (_O_QGT_EQUAL_E_S_QNumericExpression_E_Or_QGT_NEQUAL_E_S_QNumericExpression_E_Or_QGT_LT_E_S_QNumericExpression_E_Or_QGT_GT_E_S_QNumericExpression_E_Or_QGT_LE_E_S_QNumericExpression_E_Or_QGT_GE_E_S_QNumericExpression_E_C)

State 312:

	_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C -> GT_TIMES . UnaryExpression	(Rule 174)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 329
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 313:

	_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C -> GT_DIVIDE . UnaryExpression	(Rule 175)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	String	go to state 51
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 330
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 314:

	_Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star -> _Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star _O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C .	(Rule 177)

	$default	reduce using rule 177 (_Q_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C_E_Star)

State 315:

	_Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star -> _Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star _O_QGT_OR_E_S_QConditionalAndExpression_E_C .	(Rule 150)

	$default	reduce using rule 150 (_Q_O_QGT_OR_E_S_QConditionalAndExpression_E_C_E_Star)

State 316:

	_O_QGT_OR_E_S_QConditionalAndExpression_E_C -> GT_OR . ConditionalAndExpression	(Rule 148)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	Var	go to state 234
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 331
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 317:

	BuiltInCall -> IT_sameTerm GT_LPAREN Expression GT_COMMA . Expression GT_RPAREN	(Rule 195)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 332
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 318:

	BuiltInCall -> IT_isURI GT_LPAREN Expression GT_RPAREN .	(Rule 197)

	$default	reduce using rule 197 (BuiltInCall)

State 319:

	BuiltInCall -> IT_STR GT_LPAREN Expression GT_RPAREN .	(Rule 190)

	$default	reduce using rule 190 (BuiltInCall)

State 320:

	BuiltInCall -> IT_isIRI GT_LPAREN Expression GT_RPAREN .	(Rule 196)

	$default	reduce using rule 196 (BuiltInCall)

State 321:

	RegexExpression -> IT_REGEX GT_LPAREN Expression GT_COMMA Expression . _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt GT_RPAREN	(Rule 201)

	GT_COMMA	shift, and go to state 323

	$default	reduce using rule 202 (_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt)

	_O_QGT_COMMA_E_S_QExpression_E_C	go to state 334
	_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt	go to state 333

State 322:

	_O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C -> GT_LPAREN Expression _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star GT_RPAREN .	(Rule 99)

	$default	reduce using rule 99 (_O_QNIL_E_Or_QGT_LPAREN_E_S_QExpression_E_S_QGT_COMMA_E_S_QExpression_E_Star_S_QGT_RPAREN_E_C)

State 323:

	_O_QGT_COMMA_E_S_QExpression_E_C -> GT_COMMA . Expression	(Rule 95)

	DECIMAL	shift, and go to state 56
	DECIMAL_NEGATIVE	shift, and go to state 76
	DECIMAL_POSITIVE	shift, and go to state 63
	DOUBLE	shift, and go to state 78
	DOUBLE_NEGATIVE	shift, and go to state 64
	DOUBLE_POSITIVE	shift, and go to state 70
	GT_LPAREN	shift, and go to state 195
	GT_MINUS	shift, and go to state 241
	GT_NOT	shift, and go to state 230
	GT_PLUS	shift, and go to state 235
	INTEGER	shift, and go to state 60
	INTEGER_NEGATIVE	shift, and go to state 53
	INTEGER_POSITIVE	shift, and go to state 79
	IRI_REF	shift, and go to state 31
	IT_BOUND	shift, and go to state 191
	IT_DATATYPE	shift, and go to state 178
	IT_LANG	shift, and go to state 177
	IT_LANGMATCHES	shift, and go to state 193
	IT_REGEX	shift, and go to state 184
	IT_STR	shift, and go to state 200
	IT_false	shift, and go to state 85
	IT_isBLANK	shift, and go to state 187
	IT_isIRI	shift, and go to state 202
	IT_isLITERAL	shift, and go to state 181
	IT_isURI	shift, and go to state 199
	IT_sameTerm	shift, and go to state 198
	IT_true	shift, and go to state 52
	PNAME_LN	shift, and go to state 28
	PNAME_NS	shift, and go to state 30
	STRING_LITERAL1	shift, and go to state 61
	STRING_LITERAL2	shift, and go to state 55
	STRING_LITERAL_LONG1	shift, and go to state 54
	STRING_LITERAL_LONG2	shift, and go to state 50
	VAR1	shift, and go to state 27
	VAR2	shift, and go to state 36

	BooleanLiteral	go to state 226
	RegexExpression	go to state 192
	NumericLiteralPositive	go to state 69
	RelationalExpression	go to state 227
	ValueLogical	go to state 228
	String	go to state 51
	MultiplicativeExpression	go to state 229
	NumericLiteralNegative	go to state 72
	NumericLiteralUnsigned	go to state 73
	NumericLiteral	go to state 231
	IRIrefOrFunction	go to state 232
	NumericExpression	go to state 233
	ConditionalOrExpression	go to state 242
	Var	go to state 234
	Expression	go to state 335
	BrackettedExpression	go to state 236
	PrefixedName	go to state 26
	ConditionalAndExpression	go to state 244
	PrimaryExpression	go to state 237
	BuiltInCall	go to state 238
	UnaryExpression	go to state 239
	AdditiveExpression	go to state 245
	IRIref	go to state 240
	RDFLiteral	go to state 246

State 324:

	_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star -> _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star _O_QGT_COMMA_E_S_QExpression_E_C .	(Rule 97)

	$default	reduce using rule 97 (_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Star)

State 325:

	BuiltInCall -> IT_LANGMATCHES GT_LPAREN Expression GT_COMMA Expression . GT_RPAREN	(Rule 192)

	GT_RPAREN	shift, and go to state 336

State 326:

	_O_QGT_AND_E_S_QValueLogical_E_C -> GT_AND ValueLogical .	(Rule 152)

	$default	reduce using rule 152 (_O_QGT_AND_E_S_QValueLogical_E_C)

State 327:

	_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C -> GT_PLUS MultiplicativeExpression .	(Rule 167)

	$default	reduce using rule 167 (_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C)

State 328:

	_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C -> GT_MINUS MultiplicativeExpression .	(Rule 168)

	$default	reduce using rule 168 (_O_QGT_PLUS_E_S_QMultiplicativeExpression_E_Or_QGT_MINUS_E_S_QMultiplicativeExpression_E_Or_QNumericLiteralPositive_E_Or_QNumericLiteralNegative_E_C)

State 329:

	_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C -> GT_TIMES UnaryExpression .	(Rule 174)

	$default	reduce using rule 174 (_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C)

State 330:

	_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C -> GT_DIVIDE UnaryExpression .	(Rule 175)

	$default	reduce using rule 175 (_O_QGT_TIMES_E_S_QUnaryExpression_E_Or_QGT_DIVIDE_E_S_QUnaryExpression_E_C)

State 331:

	_O_QGT_OR_E_S_QConditionalAndExpression_E_C -> GT_OR ConditionalAndExpression .	(Rule 148)

	$default	reduce using rule 148 (_O_QGT_OR_E_S_QConditionalAndExpression_E_C)

State 332:

	BuiltInCall -> IT_sameTerm GT_LPAREN Expression GT_COMMA Expression . GT_RPAREN	(Rule 195)

	GT_RPAREN	shift, and go to state 337

State 333:

	RegexExpression -> IT_REGEX GT_LPAREN Expression GT_COMMA Expression _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt . GT_RPAREN	(Rule 201)

	GT_RPAREN	shift, and go to state 338

State 334:

	_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt -> _O_QGT_COMMA_E_S_QExpression_E_C .	(Rule 203)

	$default	reduce using rule 203 (_Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt)

State 335:

	_O_QGT_COMMA_E_S_QExpression_E_C -> GT_COMMA Expression .	(Rule 95)

	$default	reduce using rule 95 (_O_QGT_COMMA_E_S_QExpression_E_C)

State 336:

	BuiltInCall -> IT_LANGMATCHES GT_LPAREN Expression GT_COMMA Expression GT_RPAREN .	(Rule 192)

	$default	reduce using rule 192 (BuiltInCall)

State 337:

	BuiltInCall -> IT_sameTerm GT_LPAREN Expression GT_COMMA Expression GT_RPAREN .	(Rule 195)

	$default	reduce using rule 195 (BuiltInCall)

State 338:

	RegexExpression -> IT_REGEX GT_LPAREN Expression GT_COMMA Expression _Q_O_QGT_COMMA_E_S_QExpression_E_C_E_Opt GT_RPAREN .	(Rule 201)

	$default	reduce using rule 201 (RegexExpression)


Summary:
--------
Number of rules         : 237
Number of terminals     : 81
Number of non-terminals : 130
Number of states        : 339

Try out this parser.

Edit this grammar.


Eric Prud'hommeaux <eric+yacker@w3.org>
$Id: yacker,v 1.82 2008/04/12 04:10:11 eric Exp $
$Id: Presenter.pm,v 1.39 2007/12/21 09:35:46 eric Exp $

Valid XHTML 1.0!