diff --git a/CHANGELOG.md b/CHANGELOG.md index bee241435..f2629b735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed ### Deprecated ### Removed + +- The long deprecated union types have been removed, in favor of the new sum + types (#1245). + ### Fixed ### Security diff --git a/README.md b/README.md index 0b7d6d309..493f7d4b4 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,7 @@ Visit the [Tutorials][] page. - [Cheatsheet](./doc/quint-cheatsheet.pdf) - [Reference API documentation for built-in operators](./doc/builtin.md) - [Syntax documentation](./doc/lang.md) +- [Frequently asked questions](./doc/faq.md) ### Examples :musical_score: diff --git a/doc/faq.md b/doc/faq.md new file mode 100644 index 000000000..9f6e1f790 --- /dev/null +++ b/doc/faq.md @@ -0,0 +1,106 @@ +# Frequently Asked Questions + +Here you can find answers to the questions that are often asked by people who +would like to start with Quint. + +### What are spells? + +Spells are simply Quint modules that contain often-used definitions. There is +nothing special about these definitions. They are probably a bit more +thought-out than a definition someone would write on the spot. Check the page +on [Spells][]. + +### Difference between `pure def` and `def` + +Definitions that are tagged as `pure def` are not allowed to read state +variables (that is, the names declared with `var`). Definitions that are tagged +with `def` are allowed to read state variables, though they do not have to. + +Pure definitions have the following important property: A **pure definition +always returns the same result for the same parameter values**. + +Consider the following operator definition: + +```bluespec +pure def min(x, y) = if (x < y) x else y +``` + +Whenever we call `min(2, 3)`, we get `2` as a result, no matter what the values of state variables are. + +Impure definitions have the following important property: +**An impure definition may produce different results for the same parameter +values**. An impure definition **may read** the values of state variables, which +may effect in different results. + +Consider the following definitions: + +```bluespec +var limit: int + +def minWithLimit(x, y) = min(min(x, y), limit) +``` + +In the above example, `minWithLimit(10, 20)` produces the value `10`, when +`limit == 100`, whereas `minWithLimit(10, 20)` produces the value `5`, when +`limit == 5`. + +### Difference between `val` and `def` + +The definitions that have at least one parameter should be tagged with `def`, +whereas the definitions that have no parameters should be tagged with `val`. We +could say that `val`'s are nullary `def`'s. + +As a result, a `pure val` is never changing its value in an execution. For example: + +```bluespec +pure val avogadro = 602214076^(23 - 8) +``` + +Note that an impure `val` may still depend on the value of a state variable. +For example: + +```bluespec +var time: int +var velocity: int + +val distance = velocity * time +``` + +In the above example, `distance` does not need any parameters, as it only +depends on the state variables. However, the value of `distance` is still +changing with the values of `time` and `velocity`. + +### Difference between `pure val` and `const` + +A value that is defined via `pure val` is constant in the sense that it never +changes in an execution. A `const` definition also declares a constant value. +However, the value of `const` is not fixed at the time of specification writing, +but it has to be fixed by instantiating the module. + +Here is an example that illustrates the difference between `pure val` and `const`: + +```bluespec +module fixed { + // this module is written for N=4, e.g., for N processes + pure val N = 4 + + pure val procs = 1.to(N) + // etc. +} + +module parameterized { + // this module is written for a parameter N + const N: int + + pure val procs = 1.to(N) + // etc. +} + +module instance4 { + import parameterized(N = 4) as I + + pure val procs = 1.to(I::N) +} +``` + +[Spells]: https://github.com/informalsystems/quint/tree/main/examples/spells \ No newline at end of file diff --git a/doc/lang.md b/doc/lang.md index b7b29dcf0..9dec39e9a 100644 --- a/doc/lang.md +++ b/doc/lang.md @@ -51,8 +51,8 @@ Table of Contents * [Other set operators](#other-set-operators) * [Maps (aka Functions)](#maps-aka-functions) * [Records](#records) - * [Discriminated unions](#discriminated-unions) * [Tuples](#tuples) + * [Sum Types](#sum-types) * [Lists (aka Sequences)](#lists-aka-sequences) * [Integers](#integers) * [Nested operator definitions](#nested-operator-definitions) @@ -142,8 +142,7 @@ expressions). ### Type System 1.2 -This is the same type system as in Apalache, except we have added discriminated -unions: +This is the same type system as in Apalache: A type is one of the following: @@ -167,13 +166,8 @@ A type is one of the following: - Operator: `(T_1, ..., T_n) => R` for `n >= 0` argument types `T_1, ..., T_n` and result type `R`. - - **Work in progress:** Discriminated union: - ``` - | { tag: string_1, : T_1_1, ..., : T_1_n_1} - ... - | { tag: string_k, : T_k_1, ..., : T_k_n_k} - ``` - for `n >= 1` types `T_1_1`, ..., `T_k_n_k`. + - Sum Types: `type T = L_1(T_1) | ... | L_n(T_n) ` for `n >= 1`, argument types + `T_1`, ..., `T_n`, and a type alais `T`. - Type in parentheses: `(T)` for a type `T`. @@ -1290,8 +1284,7 @@ with(r, "f", e) Note that we are using the syntax `{ name_1: value_1, ..., name_n: value_n }` for records, similar to Python and JavaScript. We have removed the syntax for sets of records: (1) It often confuses beginners, (2) It can be expressed with -`map` and a record constructor. Moreover, sets of records do not combine well -with discriminated unions. +`map` and a record constructor. *Mode:* Stateless, State. Other modes are not allowed. @@ -1326,6 +1319,46 @@ of items. *Mode:* Stateless, State. Other modes are not allowed. +### Sum Types + +Exclusive disjunction of different possible data types is expressed via sum +types, also known as tagged unions, discriminated unions, or variants. TLA+, +being untyped, doesn't have a strict correlate, but it is common to use records +with a discriminator field for this purpose. + +```scala +// Declaration +type T = L_1(T_1) | ... | L_n(T_n) +// variant constructor +// where +// - 1 =< k <= n for the declared sum type's variants L_1(T_1) | ... | L_n(T_n) +// - x : T_k +L_k(x) +variant("L_k", x) +// variant eliminator: "match expression" +// where +// - x_1 : T_1, ..., x_n : T_n +// - e_1 : S, ..., e_n : S, and S will be the resulting type of the expression +match L_k(x) { + | L_1(x_1) => e_1 + | ... + | L_n(x_n) => e_n +} +matchVariant(L_k(x), "L_1", (x_1) => e_1, ..., (x_n) => e_n) +``` + +E.g., to form and operate on a heterogeneous set containing both integer and +string values, you might find: + +```scala +type Elem = S(str) | I(int) +val mySet: Set[Elem] = Set(S("Foo"), I(1), S("Bar"), I(2)) +val transformMySet: Set[Str] = mySet.map(e => match e { S(s) => s | I(_) => "An int"}) +``` + +*Mode:* Stateless, State. Other modes are not allowed. + + ### Lists (aka Sequences) In contrast to TLA+, there is no special module for lists. They are built diff --git a/examples/classic/distributed/Paxos/Paxos.qnt b/examples/classic/distributed/Paxos/Paxos.qnt index d9947ab0b..1857e7811 100644 --- a/examples/classic/distributed/Paxos/Paxos.qnt +++ b/examples/classic/distributed/Paxos/Paxos.qnt @@ -34,15 +34,41 @@ module Paxos { var maxVal: str -> int // ballot number cast by a; it equals <<-1, None>> if // a has not cast any vote. - // A union type for records representing messages. + // Particular message types we need to refer to later: + type Msg1bT = { acceptor: str, bal: int, mbal: int, mval: int } + type Msg2aT = { bal: int, value: int } + + // A union type for records representing different types of messages. type MSG = - | { tag: "1a", bal: int } - | { tag: "1b", acceptor: str, bal: int, mbal: int, mval: int } - | { tag: "2a", bal: int, value: int } - | { tag: "2b", acc: str, bal: int, value: int } + | Msg1a({ bal: int }) + | Msg1b(Msg1bT) + | Msg2a(Msg2aT) + | Msg2b({ acc: str, bal: int, value: int }) var msgs: Set[MSG] // The set of all messages that have been sent. + // Access the balance of a message, irrespictive of the message variant + def balance(m: MSG): int = match m { + | Msg1a(mm) => mm.bal + | Msg1b(mm) => mm.bal + | Msg2a(mm) => mm.bal + | Msg2b(mm) => mm.bal + } + + // Filter a set of messager into just 1b messages + def filterMsg1b(ms: Set[MSG]): Set[Msg1bT] = + ms.fold(Set(), (acc, m) => match m { + | Msg1b(m1b) => acc.union(Set(m1b)) + | _ => acc + }) + + // Filter a set of messager into just 2a messages + def filterMsg2a(ms: Set[MSG]): Set[Msg2aT] = + ms.fold(Set(), (acc, m) => match m { + | Msg2a(m2a) => acc.union(Set(m2a)) + | _ => acc + }) + /***************************************************************************) (* NOTE: *) (* The algorithm is easier to understand in terms of the set msgs of all *) @@ -87,7 +113,7 @@ module Paxos { (* The actions. We begin with the subaction (an action that will be used *) (* to define the actions that make up the next-state action. *) (***************************************************************************/ - action Send(m) = { + action Send(m: MSG): bool = { msgs' = msgs.union(Set(m)) } @@ -98,7 +124,7 @@ module Paxos { (* m with m.type = "1a") that begins ballot b. *) (***************************************************************************/ action Phase1a(b) = all { - Send({ tag: "1a", bal: b }), + Send(Msg1a({ bal: b })), maxVBal' = maxVBal, maxVal' = maxVal, } @@ -110,12 +136,11 @@ module Paxos { (* maxVBal[a] and maxVal[a]. *) (***************************************************************************/ action Phase1b(a) = { - nondet m = msgs.filter(m2 => m2.tag == "1a").oneOf() + nondet m = msgs.filter(m2 => match m2 { Msg1a(_) => true | _ => false }).oneOf() all { - m.bal > maxBal.get(a), - Send({ tag: "1b", acc: a, bal: m.bal, - mbal: maxVBal.get(a), mval: maxVal.get(a) }), - maxBal' = maxBal.set(a, m.bal), + m.balance() > maxBal.get(a), + Send(Msg1b({ acceptor: a, bal: m.balance(), mbal: maxVBal.get(a), mval: maxVal.get(a) })), + maxBal' = maxBal.set(a, m.balance()), maxVBal' = maxVBal, maxVal' = maxVal, } @@ -142,14 +167,13 @@ module Paxos { (* greater than b (thereby promising not to vote in ballot b). *) (***************************************************************************/ action Phase2a(b, v) = all { - not(msgs.filter(m => m.tag == "2a") - .exists(m => m.bal == b)), + not(msgs.exists(m => match m { Msg2a(m2a) => m2a.bal == b | _ => false })), Quorum.exists(Q => - val Q1b = msgs.filter(m => m.tag == "1b") - .filter(m => (m.acc.in(Q)) and (m.bal == b)) + val Q1b = msgs.filterMsg1b() + .filter(m => (m.acceptor.in(Q)) and (m.bal == b)) val Q1bv = Q1b.filter(m => m.mbal >= 0) and { - Q.forall(a => Q1b.exists(m => m.acc == a)), + Q.forall(a => Q1b.exists(m => m.acceptor == a)), or { Q1bv == Set(), Q1bv.exists(m => or { @@ -159,7 +183,7 @@ module Paxos { } } ), - Send({ tag: "2a", bal: b, value: v }), + Send(Msg2a({ bal: b, value: v })), maxVBal' = maxVBal, maxVal' = maxVal, } @@ -174,10 +198,10 @@ module Paxos { (* message's. ballot number *) (***************************************************************************/ action Phase2b(a) = { - nondet m = msgs.filter(m2 => m2.tag == "2a").oneOf() + nondet m = msgs.filterMsg2a().oneOf() all { m.bal >= maxBal.get(a), - Send({ tag: "2b", acc: a, bal: m.bal, value: m.value }), + Send(Msg2b({ acc: a, bal: m.bal, value: m.value })), maxBal' = maxBal.set(a, m.bal), maxVBal' = maxVBal.set(a, m.bal), maxVal' = maxVal.set(a, m.value), @@ -221,11 +245,13 @@ module Paxos { (* the array `votes' describing the votes cast by the acceptors is defined *) (* as follows. *) (***************************************************************************/ - val votes = Acceptor.mapBy( a => - msgs.filter(mm => mm.tag == "2b") - .filter(mm => mm.acc == a) - .map(m => (m.bal, m.value)) - ) + val votes = + Acceptor.mapBy(a => + msgs.fold(Set(), (acc, mm) => + match mm { + | Msg2b(m) => if (m.acc == a) acc.union(Set((m.bal, m.value))) else acc + | _ => acc })) + /***************************************************************************) (* We now instantiate module Voting, substituting the constants Value, *) (* Acceptor, and Quorum declared in this module for the corresponding *) @@ -251,11 +277,11 @@ module Paxos { maxVal.get(a) == None else (maxVBal.get(a), maxVal.get(a)).in(votes.get(a)) ), - msgs.filter(m => m.tag == "1b") + msgs.filterMsg1b() .forall(m => - (maxBal.get(m.acc) >= m.bal - and ((m.mbal >= 0) implies (m.mbal, m.mval).in(votes.get(m.acc))))), - val M2as = msgs.filter( m => m.tag == "2a" ) + (maxBal.get(m.acceptor) >= m.bal + and ((m.mbal >= 0) implies (m.mbal, m.mval).in(votes.get(m.acceptor))))), + val M2as = msgs.filterMsg2a() M2as.forall(m => and { Quorum.exists(Q => V::ShowsSafeAt(Q, m.bal, m.value)), M2as.forall(mm => diff --git a/quint/src/generated/Quint.g4 b/quint/src/generated/Quint.g4 index 6c7c445e4..c0a15396f 100644 --- a/quint/src/generated/Quint.g4 +++ b/quint/src/generated/Quint.g4 @@ -95,7 +95,7 @@ name: qualId; qualifiedName : qualId; fromSource: STRING; -// Types in Type System 1.2 of Apalache, which supports discriminated unions +// Types in Type System 1.2 of Apalache type : type '->' type # typeFun | type '=>' type # typeOper | '(' (type (',' type)*)? ','? ')' '=>' type # typeOper @@ -103,7 +103,6 @@ type : type '->' type # typeFun | LIST '[' type ']' # typeList | '(' type ',' type (',' type)* ','? ')' # typeTuple | '{' row '}' # typeRec - | typeUnionRecOne+ # typeUnionRec | 'int' # typeInt | 'str' # typeStr | 'bool' # typeBool @@ -111,9 +110,6 @@ type : type '->' type # typeFun | '(' type ')' # typeParen ; -typeUnionRecOne : '|' '{' qualId ':' STRING (',' row)? ','? '}' - ; - row : (rowLabel ':' type ',')* ((rowLabel ':' type) (',' | '|' (rowVar=IDENTIFIER))?)? | '|' (rowVar=IDENTIFIER) ; diff --git a/quint/src/generated/Quint.interp b/quint/src/generated/Quint.interp index 4b92d158c..08276dcf9 100644 --- a/quint/src/generated/Quint.interp +++ b/quint/src/generated/Quint.interp @@ -160,7 +160,6 @@ name qualifiedName fromSource type -typeUnionRecOne row rowLabel expr @@ -185,4 +184,4 @@ simpleId atn: -[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 3, 71, 774, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 3, 2, 6, 2, 82, 10, 2, 13, 2, 14, 2, 83, 3, 2, 3, 2, 3, 3, 7, 3, 89, 10, 3, 12, 3, 14, 3, 92, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 98, 10, 3, 12, 3, 14, 3, 101, 11, 3, 3, 3, 3, 3, 3, 4, 7, 4, 106, 10, 4, 12, 4, 14, 4, 109, 11, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 133, 10, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 7, 6, 141, 10, 6, 12, 6, 14, 6, 144, 11, 6, 5, 6, 146, 10, 6, 3, 6, 3, 6, 3, 6, 5, 6, 151, 10, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 7, 6, 164, 10, 6, 12, 6, 14, 6, 167, 11, 6, 3, 6, 3, 6, 3, 6, 3, 6, 5, 6, 173, 10, 6, 3, 6, 3, 6, 5, 6, 177, 10, 6, 3, 6, 5, 6, 180, 10, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 193, 10, 7, 3, 7, 3, 7, 3, 7, 7, 7, 198, 10, 7, 12, 7, 14, 7, 201, 11, 7, 5, 7, 203, 10, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 5, 8, 210, 10, 8, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 216, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 221, 10, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 232, 10, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 240, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 246, 10, 11, 3, 11, 3, 11, 5, 11, 250, 10, 11, 5, 11, 252, 10, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 5, 12, 263, 10, 12, 5, 12, 265, 10, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 7, 13, 278, 10, 13, 12, 13, 14, 13, 281, 11, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 288, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 7, 13, 301, 10, 13, 12, 13, 14, 13, 304, 11, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 311, 10, 13, 5, 13, 313, 10, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 7, 18, 328, 10, 18, 12, 18, 14, 18, 331, 11, 18, 5, 18, 333, 10, 18, 3, 18, 5, 18, 336, 10, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 7, 18, 357, 10, 18, 12, 18, 14, 18, 360, 11, 18, 3, 18, 5, 18, 363, 10, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 6, 18, 372, 10, 18, 13, 18, 14, 18, 373, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 384, 10, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 7, 18, 392, 10, 18, 12, 18, 14, 18, 395, 11, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 5, 19, 404, 10, 19, 3, 19, 5, 19, 407, 10, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 7, 20, 416, 10, 20, 12, 20, 14, 20, 419, 11, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 5, 20, 428, 10, 20, 5, 20, 430, 10, 20, 3, 20, 3, 20, 5, 20, 434, 10, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 5, 22, 443, 10, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 459, 10, 22, 12, 22, 14, 22, 462, 11, 22, 3, 22, 5, 22, 465, 10, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 474, 10, 22, 12, 22, 14, 22, 477, 11, 22, 3, 22, 5, 22, 480, 10, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 490, 10, 22, 12, 22, 14, 22, 493, 11, 22, 3, 22, 5, 22, 496, 10, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 505, 10, 22, 12, 22, 14, 22, 508, 11, 22, 3, 22, 5, 22, 511, 10, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 5, 22, 519, 10, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 527, 10, 22, 12, 22, 14, 22, 530, 11, 22, 3, 22, 5, 22, 533, 10, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 541, 10, 22, 12, 22, 14, 22, 544, 11, 22, 3, 22, 5, 22, 547, 10, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 555, 10, 22, 12, 22, 14, 22, 558, 11, 22, 5, 22, 560, 10, 22, 3, 22, 5, 22, 563, 10, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 5, 22, 588, 10, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 5, 22, 627, 10, 22, 3, 22, 5, 22, 630, 10, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 637, 10, 22, 12, 22, 14, 22, 640, 11, 22, 3, 23, 3, 23, 3, 23, 3, 23, 5, 23, 646, 10, 23, 3, 23, 3, 23, 3, 23, 7, 23, 651, 10, 23, 12, 23, 14, 23, 654, 11, 23, 3, 23, 3, 23, 3, 24, 3, 24, 5, 24, 660, 10, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 669, 10, 25, 3, 25, 5, 25, 672, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 5, 26, 683, 10, 26, 3, 27, 3, 27, 5, 27, 687, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 697, 10, 28, 12, 28, 14, 28, 700, 11, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 706, 10, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 6, 29, 713, 10, 29, 13, 29, 14, 29, 714, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 5, 30, 724, 10, 30, 3, 31, 3, 31, 3, 32, 3, 32, 5, 32, 730, 10, 32, 3, 33, 3, 33, 3, 33, 7, 33, 735, 10, 33, 12, 33, 14, 33, 738, 11, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 746, 10, 34, 3, 35, 3, 35, 5, 35, 750, 10, 35, 3, 36, 3, 36, 5, 36, 754, 10, 36, 3, 37, 3, 37, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 7, 39, 763, 10, 39, 12, 39, 14, 39, 766, 11, 39, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 772, 10, 40, 3, 40, 2, 2, 4, 34, 42, 41, 2, 2, 4, 2, 6, 2, 8, 2, 10, 2, 12, 2, 14, 2, 16, 2, 18, 2, 20, 2, 22, 2, 24, 2, 26, 2, 28, 2, 30, 2, 32, 2, 34, 2, 36, 2, 38, 2, 40, 2, 42, 2, 44, 2, 46, 2, 48, 2, 50, 2, 52, 2, 54, 2, 56, 2, 58, 2, 60, 2, 62, 2, 64, 2, 66, 2, 68, 2, 70, 2, 72, 2, 74, 2, 76, 2, 78, 2, 2, 9, 3, 2, 55, 57, 3, 2, 53, 54, 3, 2, 58, 63, 3, 2, 45, 51, 3, 2, 45, 48, 5, 2, 33, 33, 45, 48, 53, 63, 3, 2, 42, 44, 2, 873, 2, 81, 3, 2, 2, 2, 4, 90, 3, 2, 2, 2, 6, 107, 3, 2, 2, 2, 8, 132, 3, 2, 2, 2, 10, 134, 3, 2, 2, 2, 12, 202, 3, 2, 2, 2, 14, 204, 3, 2, 2, 2, 16, 211, 3, 2, 2, 2, 18, 231, 3, 2, 2, 2, 20, 251, 3, 2, 2, 2, 22, 264, 3, 2, 2, 2, 24, 312, 3, 2, 2, 2, 26, 314, 3, 2, 2, 2, 28, 316, 3, 2, 2, 2, 30, 318, 3, 2, 2, 2, 32, 320, 3, 2, 2, 2, 34, 383, 3, 2, 2, 2, 36, 396, 3, 2, 2, 2, 38, 433, 3, 2, 2, 2, 40, 435, 3, 2, 2, 2, 42, 587, 3, 2, 2, 2, 44, 641, 3, 2, 2, 2, 46, 659, 3, 2, 2, 2, 48, 664, 3, 2, 2, 2, 50, 682, 3, 2, 2, 2, 52, 686, 3, 2, 2, 2, 54, 705, 3, 2, 2, 2, 56, 707, 3, 2, 2, 2, 58, 723, 3, 2, 2, 2, 60, 725, 3, 2, 2, 2, 62, 729, 3, 2, 2, 2, 64, 731, 3, 2, 2, 2, 66, 745, 3, 2, 2, 2, 68, 749, 3, 2, 2, 2, 70, 753, 3, 2, 2, 2, 72, 755, 3, 2, 2, 2, 74, 757, 3, 2, 2, 2, 76, 759, 3, 2, 2, 2, 78, 771, 3, 2, 2, 2, 80, 82, 5, 4, 3, 2, 81, 80, 3, 2, 2, 2, 82, 83, 3, 2, 2, 2, 83, 81, 3, 2, 2, 2, 83, 84, 3, 2, 2, 2, 84, 85, 3, 2, 2, 2, 85, 86, 7, 2, 2, 3, 86, 3, 3, 2, 2, 2, 87, 89, 7, 68, 2, 2, 88, 87, 3, 2, 2, 2, 89, 92, 3, 2, 2, 2, 90, 88, 3, 2, 2, 2, 90, 91, 3, 2, 2, 2, 91, 93, 3, 2, 2, 2, 92, 90, 3, 2, 2, 2, 93, 94, 7, 3, 2, 2, 94, 95, 5, 76, 39, 2, 95, 99, 7, 4, 2, 2, 96, 98, 5, 6, 4, 2, 97, 96, 3, 2, 2, 2, 98, 101, 3, 2, 2, 2, 99, 97, 3, 2, 2, 2, 99, 100, 3, 2, 2, 2, 100, 102, 3, 2, 2, 2, 101, 99, 3, 2, 2, 2, 102, 103, 7, 5, 2, 2, 103, 5, 3, 2, 2, 2, 104, 106, 7, 68, 2, 2, 105, 104, 3, 2, 2, 2, 106, 109, 3, 2, 2, 2, 107, 105, 3, 2, 2, 2, 107, 108, 3, 2, 2, 2, 108, 110, 3, 2, 2, 2, 109, 107, 3, 2, 2, 2, 110, 111, 5, 8, 5, 2, 111, 7, 3, 2, 2, 2, 112, 113, 7, 6, 2, 2, 113, 114, 5, 76, 39, 2, 114, 115, 7, 7, 2, 2, 115, 116, 5, 34, 18, 2, 116, 133, 3, 2, 2, 2, 117, 118, 7, 8, 2, 2, 118, 119, 5, 76, 39, 2, 119, 120, 7, 7, 2, 2, 120, 121, 5, 34, 18, 2, 121, 133, 3, 2, 2, 2, 122, 123, 7, 9, 2, 2, 123, 124, 5, 58, 30, 2, 124, 125, 7, 64, 2, 2, 125, 126, 5, 42, 22, 2, 126, 133, 3, 2, 2, 2, 127, 133, 5, 24, 13, 2, 128, 133, 5, 10, 6, 2, 129, 133, 5, 12, 7, 2, 130, 133, 5, 20, 11, 2, 131, 133, 5, 22, 12, 2, 132, 112, 3, 2, 2, 2, 132, 117, 3, 2, 2, 2, 132, 122, 3, 2, 2, 2, 132, 127, 3, 2, 2, 2, 132, 128, 3, 2, 2, 2, 132, 129, 3, 2, 2, 2, 132, 130, 3, 2, 2, 2, 132, 131, 3, 2, 2, 2, 133, 9, 3, 2, 2, 2, 134, 135, 5, 18, 10, 2, 135, 172, 5, 68, 35, 2, 136, 145, 7, 65, 2, 2, 137, 142, 5, 60, 31, 2, 138, 139, 7, 10, 2, 2, 139, 141, 5, 60, 31, 2, 140, 138, 3, 2, 2, 2, 141, 144, 3, 2, 2, 2, 142, 140, 3, 2, 2, 2, 142, 143, 3, 2, 2, 2, 143, 146, 3, 2, 2, 2, 144, 142, 3, 2, 2, 2, 145, 137, 3, 2, 2, 2, 145, 146, 3, 2, 2, 2, 146, 147, 3, 2, 2, 2, 147, 150, 7, 66, 2, 2, 148, 149, 7, 7, 2, 2, 149, 151, 5, 34, 18, 2, 150, 148, 3, 2, 2, 2, 150, 151, 3, 2, 2, 2, 151, 173, 3, 2, 2, 2, 152, 153, 7, 7, 2, 2, 153, 173, 5, 34, 18, 2, 154, 155, 7, 65, 2, 2, 155, 156, 5, 60, 31, 2, 156, 157, 7, 7, 2, 2, 157, 165, 5, 34, 18, 2, 158, 159, 7, 10, 2, 2, 159, 160, 5, 60, 31, 2, 160, 161, 7, 7, 2, 2, 161, 162, 5, 34, 18, 2, 162, 164, 3, 2, 2, 2, 163, 158, 3, 2, 2, 2, 164, 167, 3, 2, 2, 2, 165, 163, 3, 2, 2, 2, 165, 166, 3, 2, 2, 2, 166, 168, 3, 2, 2, 2, 167, 165, 3, 2, 2, 2, 168, 169, 7, 66, 2, 2, 169, 170, 7, 7, 2, 2, 170, 171, 5, 34, 18, 2, 171, 173, 3, 2, 2, 2, 172, 136, 3, 2, 2, 2, 172, 152, 3, 2, 2, 2, 172, 154, 3, 2, 2, 2, 172, 173, 3, 2, 2, 2, 173, 176, 3, 2, 2, 2, 174, 175, 7, 64, 2, 2, 175, 177, 5, 42, 22, 2, 176, 174, 3, 2, 2, 2, 176, 177, 3, 2, 2, 2, 177, 179, 3, 2, 2, 2, 178, 180, 7, 11, 2, 2, 179, 178, 3, 2, 2, 2, 179, 180, 3, 2, 2, 2, 180, 11, 3, 2, 2, 2, 181, 182, 7, 12, 2, 2, 182, 203, 5, 76, 39, 2, 183, 184, 7, 12, 2, 2, 184, 185, 5, 76, 39, 2, 185, 186, 7, 64, 2, 2, 186, 187, 5, 34, 18, 2, 187, 203, 3, 2, 2, 2, 188, 189, 7, 12, 2, 2, 189, 190, 5, 76, 39, 2, 190, 192, 7, 64, 2, 2, 191, 193, 7, 13, 2, 2, 192, 191, 3, 2, 2, 2, 192, 193, 3, 2, 2, 2, 193, 194, 3, 2, 2, 2, 194, 199, 5, 14, 8, 2, 195, 196, 7, 13, 2, 2, 196, 198, 5, 14, 8, 2, 197, 195, 3, 2, 2, 2, 198, 201, 3, 2, 2, 2, 199, 197, 3, 2, 2, 2, 199, 200, 3, 2, 2, 2, 200, 203, 3, 2, 2, 2, 201, 199, 3, 2, 2, 2, 202, 181, 3, 2, 2, 2, 202, 183, 3, 2, 2, 2, 202, 188, 3, 2, 2, 2, 203, 13, 3, 2, 2, 2, 204, 209, 5, 78, 40, 2, 205, 206, 7, 65, 2, 2, 206, 207, 5, 34, 18, 2, 207, 208, 7, 66, 2, 2, 208, 210, 3, 2, 2, 2, 209, 205, 3, 2, 2, 2, 209, 210, 3, 2, 2, 2, 210, 15, 3, 2, 2, 2, 211, 212, 7, 14, 2, 2, 212, 215, 5, 76, 39, 2, 213, 214, 7, 7, 2, 2, 214, 216, 5, 34, 18, 2, 215, 213, 3, 2, 2, 2, 215, 216, 3, 2, 2, 2, 216, 217, 3, 2, 2, 2, 217, 218, 7, 64, 2, 2, 218, 220, 5, 42, 22, 2, 219, 221, 7, 11, 2, 2, 220, 219, 3, 2, 2, 2, 220, 221, 3, 2, 2, 2, 221, 17, 3, 2, 2, 2, 222, 232, 7, 15, 2, 2, 223, 232, 7, 16, 2, 2, 224, 225, 7, 17, 2, 2, 225, 232, 7, 15, 2, 2, 226, 227, 7, 17, 2, 2, 227, 232, 7, 16, 2, 2, 228, 232, 7, 18, 2, 2, 229, 232, 7, 19, 2, 2, 230, 232, 7, 20, 2, 2, 231, 222, 3, 2, 2, 2, 231, 223, 3, 2, 2, 2, 231, 224, 3, 2, 2, 2, 231, 226, 3, 2, 2, 2, 231, 228, 3, 2, 2, 2, 231, 229, 3, 2, 2, 2, 231, 230, 3, 2, 2, 2, 232, 19, 3, 2, 2, 2, 233, 234, 7, 21, 2, 2, 234, 235, 5, 28, 15, 2, 235, 236, 7, 22, 2, 2, 236, 239, 5, 62, 32, 2, 237, 238, 7, 23, 2, 2, 238, 240, 5, 32, 17, 2, 239, 237, 3, 2, 2, 2, 239, 240, 3, 2, 2, 2, 240, 252, 3, 2, 2, 2, 241, 242, 7, 21, 2, 2, 242, 245, 5, 28, 15, 2, 243, 244, 7, 24, 2, 2, 244, 246, 5, 28, 15, 2, 245, 243, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 249, 3, 2, 2, 2, 247, 248, 7, 23, 2, 2, 248, 250, 5, 32, 17, 2, 249, 247, 3, 2, 2, 2, 249, 250, 3, 2, 2, 2, 250, 252, 3, 2, 2, 2, 251, 233, 3, 2, 2, 2, 251, 241, 3, 2, 2, 2, 252, 21, 3, 2, 2, 2, 253, 254, 7, 25, 2, 2, 254, 255, 5, 28, 15, 2, 255, 256, 7, 22, 2, 2, 256, 257, 5, 62, 32, 2, 257, 265, 3, 2, 2, 2, 258, 259, 7, 25, 2, 2, 259, 262, 5, 28, 15, 2, 260, 261, 7, 24, 2, 2, 261, 263, 5, 28, 15, 2, 262, 260, 3, 2, 2, 2, 262, 263, 3, 2, 2, 2, 263, 265, 3, 2, 2, 2, 264, 253, 3, 2, 2, 2, 264, 258, 3, 2, 2, 2, 265, 23, 3, 2, 2, 2, 266, 267, 7, 21, 2, 2, 267, 268, 5, 26, 14, 2, 268, 269, 7, 65, 2, 2, 269, 270, 5, 28, 15, 2, 270, 271, 7, 64, 2, 2, 271, 279, 5, 42, 22, 2, 272, 273, 7, 10, 2, 2, 273, 274, 5, 28, 15, 2, 274, 275, 7, 64, 2, 2, 275, 276, 5, 42, 22, 2, 276, 278, 3, 2, 2, 2, 277, 272, 3, 2, 2, 2, 278, 281, 3, 2, 2, 2, 279, 277, 3, 2, 2, 2, 279, 280, 3, 2, 2, 2, 280, 282, 3, 2, 2, 2, 281, 279, 3, 2, 2, 2, 282, 283, 7, 66, 2, 2, 283, 284, 7, 22, 2, 2, 284, 287, 7, 55, 2, 2, 285, 286, 7, 23, 2, 2, 286, 288, 5, 32, 17, 2, 287, 285, 3, 2, 2, 2, 287, 288, 3, 2, 2, 2, 288, 313, 3, 2, 2, 2, 289, 290, 7, 21, 2, 2, 290, 291, 5, 26, 14, 2, 291, 292, 7, 65, 2, 2, 292, 293, 5, 28, 15, 2, 293, 294, 7, 64, 2, 2, 294, 302, 5, 42, 22, 2, 295, 296, 7, 10, 2, 2, 296, 297, 5, 28, 15, 2, 297, 298, 7, 64, 2, 2, 298, 299, 5, 42, 22, 2, 299, 301, 3, 2, 2, 2, 300, 295, 3, 2, 2, 2, 301, 304, 3, 2, 2, 2, 302, 300, 3, 2, 2, 2, 302, 303, 3, 2, 2, 2, 303, 305, 3, 2, 2, 2, 304, 302, 3, 2, 2, 2, 305, 306, 7, 66, 2, 2, 306, 307, 7, 24, 2, 2, 307, 310, 5, 30, 16, 2, 308, 309, 7, 23, 2, 2, 309, 311, 5, 32, 17, 2, 310, 308, 3, 2, 2, 2, 310, 311, 3, 2, 2, 2, 311, 313, 3, 2, 2, 2, 312, 266, 3, 2, 2, 2, 312, 289, 3, 2, 2, 2, 313, 25, 3, 2, 2, 2, 314, 315, 5, 76, 39, 2, 315, 27, 3, 2, 2, 2, 316, 317, 5, 76, 39, 2, 317, 29, 3, 2, 2, 2, 318, 319, 5, 76, 39, 2, 319, 31, 3, 2, 2, 2, 320, 321, 7, 42, 2, 2, 321, 33, 3, 2, 2, 2, 322, 323, 8, 18, 1, 2, 323, 332, 7, 65, 2, 2, 324, 329, 5, 34, 18, 2, 325, 326, 7, 10, 2, 2, 326, 328, 5, 34, 18, 2, 327, 325, 3, 2, 2, 2, 328, 331, 3, 2, 2, 2, 329, 327, 3, 2, 2, 2, 329, 330, 3, 2, 2, 2, 330, 333, 3, 2, 2, 2, 331, 329, 3, 2, 2, 2, 332, 324, 3, 2, 2, 2, 332, 333, 3, 2, 2, 2, 333, 335, 3, 2, 2, 2, 334, 336, 7, 10, 2, 2, 335, 334, 3, 2, 2, 2, 335, 336, 3, 2, 2, 2, 336, 337, 3, 2, 2, 2, 337, 338, 7, 66, 2, 2, 338, 339, 7, 27, 2, 2, 339, 384, 5, 34, 18, 13, 340, 341, 7, 49, 2, 2, 341, 342, 7, 28, 2, 2, 342, 343, 5, 34, 18, 2, 343, 344, 7, 29, 2, 2, 344, 384, 3, 2, 2, 2, 345, 346, 7, 50, 2, 2, 346, 347, 7, 28, 2, 2, 347, 348, 5, 34, 18, 2, 348, 349, 7, 29, 2, 2, 349, 384, 3, 2, 2, 2, 350, 351, 7, 65, 2, 2, 351, 352, 5, 34, 18, 2, 352, 353, 7, 10, 2, 2, 353, 358, 5, 34, 18, 2, 354, 355, 7, 10, 2, 2, 355, 357, 5, 34, 18, 2, 356, 354, 3, 2, 2, 2, 357, 360, 3, 2, 2, 2, 358, 356, 3, 2, 2, 2, 358, 359, 3, 2, 2, 2, 359, 362, 3, 2, 2, 2, 360, 358, 3, 2, 2, 2, 361, 363, 7, 10, 2, 2, 362, 361, 3, 2, 2, 2, 362, 363, 3, 2, 2, 2, 363, 364, 3, 2, 2, 2, 364, 365, 7, 66, 2, 2, 365, 384, 3, 2, 2, 2, 366, 367, 7, 4, 2, 2, 367, 368, 5, 38, 20, 2, 368, 369, 7, 5, 2, 2, 369, 384, 3, 2, 2, 2, 370, 372, 5, 36, 19, 2, 371, 370, 3, 2, 2, 2, 372, 373, 3, 2, 2, 2, 373, 371, 3, 2, 2, 2, 373, 374, 3, 2, 2, 2, 374, 384, 3, 2, 2, 2, 375, 384, 7, 30, 2, 2, 376, 384, 7, 31, 2, 2, 377, 384, 7, 32, 2, 2, 378, 384, 5, 76, 39, 2, 379, 380, 7, 65, 2, 2, 380, 381, 5, 34, 18, 2, 381, 382, 7, 66, 2, 2, 382, 384, 3, 2, 2, 2, 383, 322, 3, 2, 2, 2, 383, 340, 3, 2, 2, 2, 383, 345, 3, 2, 2, 2, 383, 350, 3, 2, 2, 2, 383, 366, 3, 2, 2, 2, 383, 371, 3, 2, 2, 2, 383, 375, 3, 2, 2, 2, 383, 376, 3, 2, 2, 2, 383, 377, 3, 2, 2, 2, 383, 378, 3, 2, 2, 2, 383, 379, 3, 2, 2, 2, 384, 393, 3, 2, 2, 2, 385, 386, 12, 15, 2, 2, 386, 387, 7, 26, 2, 2, 387, 392, 5, 34, 18, 15, 388, 389, 12, 14, 2, 2, 389, 390, 7, 27, 2, 2, 390, 392, 5, 34, 18, 14, 391, 385, 3, 2, 2, 2, 391, 388, 3, 2, 2, 2, 392, 395, 3, 2, 2, 2, 393, 391, 3, 2, 2, 2, 393, 394, 3, 2, 2, 2, 394, 35, 3, 2, 2, 2, 395, 393, 3, 2, 2, 2, 396, 397, 7, 13, 2, 2, 397, 398, 7, 4, 2, 2, 398, 399, 5, 76, 39, 2, 399, 400, 7, 7, 2, 2, 400, 403, 7, 42, 2, 2, 401, 402, 7, 10, 2, 2, 402, 404, 5, 38, 20, 2, 403, 401, 3, 2, 2, 2, 403, 404, 3, 2, 2, 2, 404, 406, 3, 2, 2, 2, 405, 407, 7, 10, 2, 2, 406, 405, 3, 2, 2, 2, 406, 407, 3, 2, 2, 2, 407, 408, 3, 2, 2, 2, 408, 409, 7, 5, 2, 2, 409, 37, 3, 2, 2, 2, 410, 411, 5, 40, 21, 2, 411, 412, 7, 7, 2, 2, 412, 413, 5, 34, 18, 2, 413, 414, 7, 10, 2, 2, 414, 416, 3, 2, 2, 2, 415, 410, 3, 2, 2, 2, 416, 419, 3, 2, 2, 2, 417, 415, 3, 2, 2, 2, 417, 418, 3, 2, 2, 2, 418, 429, 3, 2, 2, 2, 419, 417, 3, 2, 2, 2, 420, 421, 5, 40, 21, 2, 421, 422, 7, 7, 2, 2, 422, 423, 5, 34, 18, 2, 423, 427, 3, 2, 2, 2, 424, 428, 7, 10, 2, 2, 425, 426, 7, 13, 2, 2, 426, 428, 7, 67, 2, 2, 427, 424, 3, 2, 2, 2, 427, 425, 3, 2, 2, 2, 427, 428, 3, 2, 2, 2, 428, 430, 3, 2, 2, 2, 429, 420, 3, 2, 2, 2, 429, 430, 3, 2, 2, 2, 430, 434, 3, 2, 2, 2, 431, 432, 7, 13, 2, 2, 432, 434, 7, 67, 2, 2, 433, 417, 3, 2, 2, 2, 433, 431, 3, 2, 2, 2, 434, 39, 3, 2, 2, 2, 435, 436, 5, 78, 40, 2, 436, 41, 3, 2, 2, 2, 437, 438, 8, 22, 1, 2, 438, 588, 5, 52, 27, 2, 439, 440, 5, 68, 35, 2, 440, 442, 7, 65, 2, 2, 441, 443, 5, 64, 33, 2, 442, 441, 3, 2, 2, 2, 442, 443, 3, 2, 2, 2, 443, 444, 3, 2, 2, 2, 444, 445, 7, 66, 2, 2, 445, 588, 3, 2, 2, 2, 446, 447, 7, 54, 2, 2, 447, 588, 5, 42, 22, 27, 448, 449, 5, 76, 39, 2, 449, 450, 7, 34, 2, 2, 450, 451, 7, 64, 2, 2, 451, 452, 5, 42, 22, 23, 452, 588, 3, 2, 2, 2, 453, 454, 7, 45, 2, 2, 454, 455, 7, 4, 2, 2, 455, 460, 5, 42, 22, 2, 456, 457, 7, 10, 2, 2, 457, 459, 5, 42, 22, 2, 458, 456, 3, 2, 2, 2, 459, 462, 3, 2, 2, 2, 460, 458, 3, 2, 2, 2, 460, 461, 3, 2, 2, 2, 461, 464, 3, 2, 2, 2, 462, 460, 3, 2, 2, 2, 463, 465, 7, 10, 2, 2, 464, 463, 3, 2, 2, 2, 464, 465, 3, 2, 2, 2, 465, 466, 3, 2, 2, 2, 466, 467, 7, 5, 2, 2, 467, 588, 3, 2, 2, 2, 468, 469, 7, 46, 2, 2, 469, 470, 7, 4, 2, 2, 470, 475, 5, 42, 22, 2, 471, 472, 7, 10, 2, 2, 472, 474, 5, 42, 22, 2, 473, 471, 3, 2, 2, 2, 474, 477, 3, 2, 2, 2, 475, 473, 3, 2, 2, 2, 475, 476, 3, 2, 2, 2, 476, 479, 3, 2, 2, 2, 477, 475, 3, 2, 2, 2, 478, 480, 7, 10, 2, 2, 479, 478, 3, 2, 2, 2, 479, 480, 3, 2, 2, 2, 480, 481, 3, 2, 2, 2, 481, 482, 7, 5, 2, 2, 482, 588, 3, 2, 2, 2, 483, 588, 5, 44, 23, 2, 484, 485, 7, 35, 2, 2, 485, 486, 7, 4, 2, 2, 486, 491, 5, 42, 22, 2, 487, 488, 7, 10, 2, 2, 488, 490, 5, 42, 22, 2, 489, 487, 3, 2, 2, 2, 490, 493, 3, 2, 2, 2, 491, 489, 3, 2, 2, 2, 491, 492, 3, 2, 2, 2, 492, 495, 3, 2, 2, 2, 493, 491, 3, 2, 2, 2, 494, 496, 7, 10, 2, 2, 495, 494, 3, 2, 2, 2, 495, 496, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 498, 7, 5, 2, 2, 498, 588, 3, 2, 2, 2, 499, 500, 7, 36, 2, 2, 500, 501, 7, 4, 2, 2, 501, 506, 5, 42, 22, 2, 502, 503, 7, 10, 2, 2, 503, 505, 5, 42, 22, 2, 504, 502, 3, 2, 2, 2, 505, 508, 3, 2, 2, 2, 506, 504, 3, 2, 2, 2, 506, 507, 3, 2, 2, 2, 507, 510, 3, 2, 2, 2, 508, 506, 3, 2, 2, 2, 509, 511, 7, 10, 2, 2, 510, 509, 3, 2, 2, 2, 510, 511, 3, 2, 2, 2, 511, 512, 3, 2, 2, 2, 512, 513, 7, 5, 2, 2, 513, 588, 3, 2, 2, 2, 514, 519, 5, 76, 39, 2, 515, 519, 7, 44, 2, 2, 516, 519, 7, 43, 2, 2, 517, 519, 7, 42, 2, 2, 518, 514, 3, 2, 2, 2, 518, 515, 3, 2, 2, 2, 518, 516, 3, 2, 2, 2, 518, 517, 3, 2, 2, 2, 519, 588, 3, 2, 2, 2, 520, 521, 7, 65, 2, 2, 521, 522, 5, 42, 22, 2, 522, 523, 7, 10, 2, 2, 523, 528, 5, 42, 22, 2, 524, 525, 7, 10, 2, 2, 525, 527, 5, 42, 22, 2, 526, 524, 3, 2, 2, 2, 527, 530, 3, 2, 2, 2, 528, 526, 3, 2, 2, 2, 528, 529, 3, 2, 2, 2, 529, 532, 3, 2, 2, 2, 530, 528, 3, 2, 2, 2, 531, 533, 7, 10, 2, 2, 532, 531, 3, 2, 2, 2, 532, 533, 3, 2, 2, 2, 533, 534, 3, 2, 2, 2, 534, 535, 7, 66, 2, 2, 535, 588, 3, 2, 2, 2, 536, 537, 7, 4, 2, 2, 537, 542, 5, 66, 34, 2, 538, 539, 7, 10, 2, 2, 539, 541, 5, 66, 34, 2, 540, 538, 3, 2, 2, 2, 541, 544, 3, 2, 2, 2, 542, 540, 3, 2, 2, 2, 542, 543, 3, 2, 2, 2, 543, 546, 3, 2, 2, 2, 544, 542, 3, 2, 2, 2, 545, 547, 7, 10, 2, 2, 546, 545, 3, 2, 2, 2, 546, 547, 3, 2, 2, 2, 547, 548, 3, 2, 2, 2, 548, 549, 7, 5, 2, 2, 549, 588, 3, 2, 2, 2, 550, 559, 7, 28, 2, 2, 551, 556, 5, 42, 22, 2, 552, 553, 7, 10, 2, 2, 553, 555, 5, 42, 22, 2, 554, 552, 3, 2, 2, 2, 555, 558, 3, 2, 2, 2, 556, 554, 3, 2, 2, 2, 556, 557, 3, 2, 2, 2, 557, 560, 3, 2, 2, 2, 558, 556, 3, 2, 2, 2, 559, 551, 3, 2, 2, 2, 559, 560, 3, 2, 2, 2, 560, 562, 3, 2, 2, 2, 561, 563, 7, 10, 2, 2, 562, 561, 3, 2, 2, 2, 562, 563, 3, 2, 2, 2, 563, 564, 3, 2, 2, 2, 564, 588, 7, 29, 2, 2, 565, 566, 7, 37, 2, 2, 566, 567, 7, 65, 2, 2, 567, 568, 5, 42, 22, 2, 568, 569, 7, 66, 2, 2, 569, 570, 5, 42, 22, 2, 570, 571, 7, 38, 2, 2, 571, 572, 5, 42, 22, 7, 572, 588, 3, 2, 2, 2, 573, 574, 5, 10, 6, 2, 574, 575, 5, 42, 22, 6, 575, 588, 3, 2, 2, 2, 576, 577, 5, 16, 9, 2, 577, 578, 5, 42, 22, 5, 578, 588, 3, 2, 2, 2, 579, 580, 7, 65, 2, 2, 580, 581, 5, 42, 22, 2, 581, 582, 7, 66, 2, 2, 582, 588, 3, 2, 2, 2, 583, 584, 7, 4, 2, 2, 584, 585, 5, 42, 22, 2, 585, 586, 7, 5, 2, 2, 586, 588, 3, 2, 2, 2, 587, 437, 3, 2, 2, 2, 587, 439, 3, 2, 2, 2, 587, 446, 3, 2, 2, 2, 587, 448, 3, 2, 2, 2, 587, 453, 3, 2, 2, 2, 587, 468, 3, 2, 2, 2, 587, 483, 3, 2, 2, 2, 587, 484, 3, 2, 2, 2, 587, 499, 3, 2, 2, 2, 587, 518, 3, 2, 2, 2, 587, 520, 3, 2, 2, 2, 587, 536, 3, 2, 2, 2, 587, 550, 3, 2, 2, 2, 587, 565, 3, 2, 2, 2, 587, 573, 3, 2, 2, 2, 587, 576, 3, 2, 2, 2, 587, 579, 3, 2, 2, 2, 587, 583, 3, 2, 2, 2, 588, 638, 3, 2, 2, 2, 589, 590, 12, 28, 2, 2, 590, 591, 7, 33, 2, 2, 591, 637, 5, 42, 22, 28, 592, 593, 12, 26, 2, 2, 593, 594, 9, 2, 2, 2, 594, 637, 5, 42, 22, 27, 595, 596, 12, 25, 2, 2, 596, 597, 9, 3, 2, 2, 597, 637, 5, 42, 22, 26, 598, 599, 12, 24, 2, 2, 599, 600, 9, 4, 2, 2, 600, 637, 5, 42, 22, 25, 601, 602, 12, 22, 2, 2, 602, 603, 7, 64, 2, 2, 603, 604, 5, 42, 22, 23, 604, 605, 8, 22, 1, 2, 605, 637, 3, 2, 2, 2, 606, 607, 12, 20, 2, 2, 607, 608, 7, 45, 2, 2, 608, 637, 5, 42, 22, 21, 609, 610, 12, 18, 2, 2, 610, 611, 7, 46, 2, 2, 611, 637, 5, 42, 22, 19, 612, 613, 12, 17, 2, 2, 613, 614, 7, 47, 2, 2, 614, 637, 5, 42, 22, 18, 615, 616, 12, 16, 2, 2, 616, 617, 7, 48, 2, 2, 617, 637, 5, 42, 22, 17, 618, 619, 12, 10, 2, 2, 619, 620, 7, 26, 2, 2, 620, 637, 5, 42, 22, 11, 621, 622, 12, 32, 2, 2, 622, 623, 7, 22, 2, 2, 623, 629, 5, 70, 36, 2, 624, 626, 7, 65, 2, 2, 625, 627, 5, 64, 33, 2, 626, 625, 3, 2, 2, 2, 626, 627, 3, 2, 2, 2, 627, 628, 3, 2, 2, 2, 628, 630, 7, 66, 2, 2, 629, 624, 3, 2, 2, 2, 629, 630, 3, 2, 2, 2, 630, 637, 3, 2, 2, 2, 631, 632, 12, 29, 2, 2, 632, 633, 7, 28, 2, 2, 633, 634, 5, 42, 22, 2, 634, 635, 7, 29, 2, 2, 635, 637, 3, 2, 2, 2, 636, 589, 3, 2, 2, 2, 636, 592, 3, 2, 2, 2, 636, 595, 3, 2, 2, 2, 636, 598, 3, 2, 2, 2, 636, 601, 3, 2, 2, 2, 636, 606, 3, 2, 2, 2, 636, 609, 3, 2, 2, 2, 636, 612, 3, 2, 2, 2, 636, 615, 3, 2, 2, 2, 636, 618, 3, 2, 2, 2, 636, 621, 3, 2, 2, 2, 636, 631, 3, 2, 2, 2, 637, 640, 3, 2, 2, 2, 638, 636, 3, 2, 2, 2, 638, 639, 3, 2, 2, 2, 639, 43, 3, 2, 2, 2, 640, 638, 3, 2, 2, 2, 641, 642, 7, 52, 2, 2, 642, 643, 5, 42, 22, 2, 643, 645, 7, 4, 2, 2, 644, 646, 7, 13, 2, 2, 645, 644, 3, 2, 2, 2, 645, 646, 3, 2, 2, 2, 646, 647, 3, 2, 2, 2, 647, 652, 5, 46, 24, 2, 648, 649, 7, 13, 2, 2, 649, 651, 5, 46, 24, 2, 650, 648, 3, 2, 2, 2, 651, 654, 3, 2, 2, 2, 652, 650, 3, 2, 2, 2, 652, 653, 3, 2, 2, 2, 653, 655, 3, 2, 2, 2, 654, 652, 3, 2, 2, 2, 655, 656, 7, 5, 2, 2, 656, 45, 3, 2, 2, 2, 657, 660, 5, 48, 25, 2, 658, 660, 7, 39, 2, 2, 659, 657, 3, 2, 2, 2, 659, 658, 3, 2, 2, 2, 660, 661, 3, 2, 2, 2, 661, 662, 7, 27, 2, 2, 662, 663, 5, 42, 22, 2, 663, 47, 3, 2, 2, 2, 664, 671, 5, 78, 40, 2, 665, 668, 7, 65, 2, 2, 666, 669, 5, 78, 40, 2, 667, 669, 7, 39, 2, 2, 668, 666, 3, 2, 2, 2, 668, 667, 3, 2, 2, 2, 669, 670, 3, 2, 2, 2, 670, 672, 7, 66, 2, 2, 671, 665, 3, 2, 2, 2, 671, 672, 3, 2, 2, 2, 672, 49, 3, 2, 2, 2, 673, 674, 5, 8, 5, 2, 674, 675, 7, 2, 2, 3, 675, 683, 3, 2, 2, 2, 676, 677, 5, 42, 22, 2, 677, 678, 7, 2, 2, 3, 678, 683, 3, 2, 2, 2, 679, 680, 7, 68, 2, 2, 680, 683, 7, 2, 2, 3, 681, 683, 7, 2, 2, 3, 682, 673, 3, 2, 2, 2, 682, 676, 3, 2, 2, 2, 682, 679, 3, 2, 2, 2, 682, 681, 3, 2, 2, 2, 683, 51, 3, 2, 2, 2, 684, 687, 5, 54, 28, 2, 685, 687, 5, 56, 29, 2, 686, 684, 3, 2, 2, 2, 686, 685, 3, 2, 2, 2, 687, 53, 3, 2, 2, 2, 688, 689, 5, 60, 31, 2, 689, 690, 7, 27, 2, 2, 690, 691, 5, 42, 22, 2, 691, 706, 3, 2, 2, 2, 692, 693, 7, 65, 2, 2, 693, 698, 5, 60, 31, 2, 694, 695, 7, 10, 2, 2, 695, 697, 5, 60, 31, 2, 696, 694, 3, 2, 2, 2, 697, 700, 3, 2, 2, 2, 698, 696, 3, 2, 2, 2, 698, 699, 3, 2, 2, 2, 699, 701, 3, 2, 2, 2, 700, 698, 3, 2, 2, 2, 701, 702, 7, 66, 2, 2, 702, 703, 7, 27, 2, 2, 703, 704, 5, 42, 22, 2, 704, 706, 3, 2, 2, 2, 705, 688, 3, 2, 2, 2, 705, 692, 3, 2, 2, 2, 706, 55, 3, 2, 2, 2, 707, 708, 7, 65, 2, 2, 708, 709, 7, 65, 2, 2, 709, 712, 5, 60, 31, 2, 710, 711, 7, 10, 2, 2, 711, 713, 5, 60, 31, 2, 712, 710, 3, 2, 2, 2, 713, 714, 3, 2, 2, 2, 714, 712, 3, 2, 2, 2, 714, 715, 3, 2, 2, 2, 715, 716, 3, 2, 2, 2, 716, 717, 7, 66, 2, 2, 717, 718, 7, 66, 2, 2, 718, 719, 7, 27, 2, 2, 719, 720, 5, 42, 22, 2, 720, 57, 3, 2, 2, 2, 721, 724, 7, 39, 2, 2, 722, 724, 5, 76, 39, 2, 723, 721, 3, 2, 2, 2, 723, 722, 3, 2, 2, 2, 724, 59, 3, 2, 2, 2, 725, 726, 5, 58, 30, 2, 726, 61, 3, 2, 2, 2, 727, 730, 7, 55, 2, 2, 728, 730, 5, 76, 39, 2, 729, 727, 3, 2, 2, 2, 729, 728, 3, 2, 2, 2, 730, 63, 3, 2, 2, 2, 731, 736, 5, 42, 22, 2, 732, 733, 7, 10, 2, 2, 733, 735, 5, 42, 22, 2, 734, 732, 3, 2, 2, 2, 735, 738, 3, 2, 2, 2, 736, 734, 3, 2, 2, 2, 736, 737, 3, 2, 2, 2, 737, 65, 3, 2, 2, 2, 738, 736, 3, 2, 2, 2, 739, 740, 5, 78, 40, 2, 740, 741, 7, 7, 2, 2, 741, 742, 5, 42, 22, 2, 742, 746, 3, 2, 2, 2, 743, 744, 7, 40, 2, 2, 744, 746, 5, 42, 22, 2, 745, 739, 3, 2, 2, 2, 745, 743, 3, 2, 2, 2, 746, 67, 3, 2, 2, 2, 747, 750, 5, 76, 39, 2, 748, 750, 9, 5, 2, 2, 749, 747, 3, 2, 2, 2, 749, 748, 3, 2, 2, 2, 750, 69, 3, 2, 2, 2, 751, 754, 5, 76, 39, 2, 752, 754, 9, 6, 2, 2, 753, 751, 3, 2, 2, 2, 753, 752, 3, 2, 2, 2, 754, 71, 3, 2, 2, 2, 755, 756, 9, 7, 2, 2, 756, 73, 3, 2, 2, 2, 757, 758, 9, 8, 2, 2, 758, 75, 3, 2, 2, 2, 759, 764, 7, 67, 2, 2, 760, 761, 7, 41, 2, 2, 761, 763, 7, 67, 2, 2, 762, 760, 3, 2, 2, 2, 763, 766, 3, 2, 2, 2, 764, 762, 3, 2, 2, 2, 764, 765, 3, 2, 2, 2, 765, 77, 3, 2, 2, 2, 766, 764, 3, 2, 2, 2, 767, 772, 7, 67, 2, 2, 768, 769, 5, 76, 39, 2, 769, 770, 8, 40, 1, 2, 770, 772, 3, 2, 2, 2, 771, 767, 3, 2, 2, 2, 771, 768, 3, 2, 2, 2, 772, 79, 3, 2, 2, 2, 87, 83, 90, 99, 107, 132, 142, 145, 150, 165, 172, 176, 179, 192, 199, 202, 209, 215, 220, 231, 239, 245, 249, 251, 262, 264, 279, 287, 302, 310, 312, 329, 332, 335, 358, 362, 373, 383, 391, 393, 403, 406, 417, 427, 429, 433, 442, 460, 464, 475, 479, 491, 495, 506, 510, 518, 528, 532, 542, 546, 556, 559, 562, 587, 626, 629, 636, 638, 645, 652, 659, 668, 671, 682, 686, 698, 705, 714, 723, 729, 736, 745, 749, 753, 764, 771] \ No newline at end of file +[3, 51485, 51898, 1421, 44986, 20307, 1543, 60043, 49729, 3, 71, 753, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 3, 2, 6, 2, 80, 10, 2, 13, 2, 14, 2, 81, 3, 2, 3, 2, 3, 3, 7, 3, 87, 10, 3, 12, 3, 14, 3, 90, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 96, 10, 3, 12, 3, 14, 3, 99, 11, 3, 3, 3, 3, 3, 3, 4, 7, 4, 104, 10, 4, 12, 4, 14, 4, 107, 11, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 131, 10, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 7, 6, 139, 10, 6, 12, 6, 14, 6, 142, 11, 6, 5, 6, 144, 10, 6, 3, 6, 3, 6, 3, 6, 5, 6, 149, 10, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 7, 6, 162, 10, 6, 12, 6, 14, 6, 165, 11, 6, 3, 6, 3, 6, 3, 6, 3, 6, 5, 6, 171, 10, 6, 3, 6, 3, 6, 5, 6, 175, 10, 6, 3, 6, 5, 6, 178, 10, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 191, 10, 7, 3, 7, 3, 7, 3, 7, 7, 7, 196, 10, 7, 12, 7, 14, 7, 199, 11, 7, 5, 7, 201, 10, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 5, 8, 208, 10, 8, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 214, 10, 9, 3, 9, 3, 9, 3, 9, 5, 9, 219, 10, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 230, 10, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 238, 10, 11, 3, 11, 3, 11, 3, 11, 3, 11, 5, 11, 244, 10, 11, 3, 11, 3, 11, 5, 11, 248, 10, 11, 5, 11, 250, 10, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 5, 12, 261, 10, 12, 5, 12, 263, 10, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 7, 13, 276, 10, 13, 12, 13, 14, 13, 279, 11, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 286, 10, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 7, 13, 299, 10, 13, 12, 13, 14, 13, 302, 11, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 309, 10, 13, 5, 13, 311, 10, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 7, 18, 326, 10, 18, 12, 18, 14, 18, 329, 11, 18, 5, 18, 331, 10, 18, 3, 18, 5, 18, 334, 10, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 7, 18, 355, 10, 18, 12, 18, 14, 18, 358, 11, 18, 3, 18, 5, 18, 361, 10, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 377, 10, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 7, 18, 385, 10, 18, 12, 18, 14, 18, 388, 11, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 7, 19, 395, 10, 19, 12, 19, 14, 19, 398, 11, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 5, 19, 407, 10, 19, 5, 19, 409, 10, 19, 3, 19, 3, 19, 5, 19, 413, 10, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 5, 21, 422, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 438, 10, 21, 12, 21, 14, 21, 441, 11, 21, 3, 21, 5, 21, 444, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 453, 10, 21, 12, 21, 14, 21, 456, 11, 21, 3, 21, 5, 21, 459, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 469, 10, 21, 12, 21, 14, 21, 472, 11, 21, 3, 21, 5, 21, 475, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 484, 10, 21, 12, 21, 14, 21, 487, 11, 21, 3, 21, 5, 21, 490, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 5, 21, 498, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 506, 10, 21, 12, 21, 14, 21, 509, 11, 21, 3, 21, 5, 21, 512, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 520, 10, 21, 12, 21, 14, 21, 523, 11, 21, 3, 21, 5, 21, 526, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 534, 10, 21, 12, 21, 14, 21, 537, 11, 21, 5, 21, 539, 10, 21, 3, 21, 5, 21, 542, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 5, 21, 567, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 5, 21, 606, 10, 21, 3, 21, 5, 21, 609, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 616, 10, 21, 12, 21, 14, 21, 619, 11, 21, 3, 22, 3, 22, 3, 22, 3, 22, 5, 22, 625, 10, 22, 3, 22, 3, 22, 3, 22, 7, 22, 630, 10, 22, 12, 22, 14, 22, 633, 11, 22, 3, 22, 3, 22, 3, 23, 3, 23, 5, 23, 639, 10, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 5, 24, 648, 10, 24, 3, 24, 5, 24, 651, 10, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 662, 10, 25, 3, 26, 3, 26, 5, 26, 666, 10, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 7, 27, 676, 10, 27, 12, 27, 14, 27, 679, 11, 27, 3, 27, 3, 27, 3, 27, 3, 27, 5, 27, 685, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 6, 28, 692, 10, 28, 13, 28, 14, 28, 693, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 5, 29, 703, 10, 29, 3, 30, 3, 30, 3, 31, 3, 31, 5, 31, 709, 10, 31, 3, 32, 3, 32, 3, 32, 7, 32, 714, 10, 32, 12, 32, 14, 32, 717, 11, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 725, 10, 33, 3, 34, 3, 34, 5, 34, 729, 10, 34, 3, 35, 3, 35, 5, 35, 733, 10, 35, 3, 36, 3, 36, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 7, 38, 742, 10, 38, 12, 38, 14, 38, 745, 11, 38, 3, 39, 3, 39, 3, 39, 3, 39, 5, 39, 751, 10, 39, 3, 39, 2, 2, 4, 34, 40, 40, 2, 2, 4, 2, 6, 2, 8, 2, 10, 2, 12, 2, 14, 2, 16, 2, 18, 2, 20, 2, 22, 2, 24, 2, 26, 2, 28, 2, 30, 2, 32, 2, 34, 2, 36, 2, 38, 2, 40, 2, 42, 2, 44, 2, 46, 2, 48, 2, 50, 2, 52, 2, 54, 2, 56, 2, 58, 2, 60, 2, 62, 2, 64, 2, 66, 2, 68, 2, 70, 2, 72, 2, 74, 2, 76, 2, 2, 9, 3, 2, 55, 57, 3, 2, 53, 54, 3, 2, 58, 63, 3, 2, 45, 51, 3, 2, 45, 48, 5, 2, 33, 33, 45, 48, 53, 63, 3, 2, 42, 44, 2, 849, 2, 79, 3, 2, 2, 2, 4, 88, 3, 2, 2, 2, 6, 105, 3, 2, 2, 2, 8, 130, 3, 2, 2, 2, 10, 132, 3, 2, 2, 2, 12, 200, 3, 2, 2, 2, 14, 202, 3, 2, 2, 2, 16, 209, 3, 2, 2, 2, 18, 229, 3, 2, 2, 2, 20, 249, 3, 2, 2, 2, 22, 262, 3, 2, 2, 2, 24, 310, 3, 2, 2, 2, 26, 312, 3, 2, 2, 2, 28, 314, 3, 2, 2, 2, 30, 316, 3, 2, 2, 2, 32, 318, 3, 2, 2, 2, 34, 376, 3, 2, 2, 2, 36, 412, 3, 2, 2, 2, 38, 414, 3, 2, 2, 2, 40, 566, 3, 2, 2, 2, 42, 620, 3, 2, 2, 2, 44, 638, 3, 2, 2, 2, 46, 643, 3, 2, 2, 2, 48, 661, 3, 2, 2, 2, 50, 665, 3, 2, 2, 2, 52, 684, 3, 2, 2, 2, 54, 686, 3, 2, 2, 2, 56, 702, 3, 2, 2, 2, 58, 704, 3, 2, 2, 2, 60, 708, 3, 2, 2, 2, 62, 710, 3, 2, 2, 2, 64, 724, 3, 2, 2, 2, 66, 728, 3, 2, 2, 2, 68, 732, 3, 2, 2, 2, 70, 734, 3, 2, 2, 2, 72, 736, 3, 2, 2, 2, 74, 738, 3, 2, 2, 2, 76, 750, 3, 2, 2, 2, 78, 80, 5, 4, 3, 2, 79, 78, 3, 2, 2, 2, 80, 81, 3, 2, 2, 2, 81, 79, 3, 2, 2, 2, 81, 82, 3, 2, 2, 2, 82, 83, 3, 2, 2, 2, 83, 84, 7, 2, 2, 3, 84, 3, 3, 2, 2, 2, 85, 87, 7, 68, 2, 2, 86, 85, 3, 2, 2, 2, 87, 90, 3, 2, 2, 2, 88, 86, 3, 2, 2, 2, 88, 89, 3, 2, 2, 2, 89, 91, 3, 2, 2, 2, 90, 88, 3, 2, 2, 2, 91, 92, 7, 3, 2, 2, 92, 93, 5, 74, 38, 2, 93, 97, 7, 4, 2, 2, 94, 96, 5, 6, 4, 2, 95, 94, 3, 2, 2, 2, 96, 99, 3, 2, 2, 2, 97, 95, 3, 2, 2, 2, 97, 98, 3, 2, 2, 2, 98, 100, 3, 2, 2, 2, 99, 97, 3, 2, 2, 2, 100, 101, 7, 5, 2, 2, 101, 5, 3, 2, 2, 2, 102, 104, 7, 68, 2, 2, 103, 102, 3, 2, 2, 2, 104, 107, 3, 2, 2, 2, 105, 103, 3, 2, 2, 2, 105, 106, 3, 2, 2, 2, 106, 108, 3, 2, 2, 2, 107, 105, 3, 2, 2, 2, 108, 109, 5, 8, 5, 2, 109, 7, 3, 2, 2, 2, 110, 111, 7, 6, 2, 2, 111, 112, 5, 74, 38, 2, 112, 113, 7, 7, 2, 2, 113, 114, 5, 34, 18, 2, 114, 131, 3, 2, 2, 2, 115, 116, 7, 8, 2, 2, 116, 117, 5, 74, 38, 2, 117, 118, 7, 7, 2, 2, 118, 119, 5, 34, 18, 2, 119, 131, 3, 2, 2, 2, 120, 121, 7, 9, 2, 2, 121, 122, 5, 56, 29, 2, 122, 123, 7, 64, 2, 2, 123, 124, 5, 40, 21, 2, 124, 131, 3, 2, 2, 2, 125, 131, 5, 24, 13, 2, 126, 131, 5, 10, 6, 2, 127, 131, 5, 12, 7, 2, 128, 131, 5, 20, 11, 2, 129, 131, 5, 22, 12, 2, 130, 110, 3, 2, 2, 2, 130, 115, 3, 2, 2, 2, 130, 120, 3, 2, 2, 2, 130, 125, 3, 2, 2, 2, 130, 126, 3, 2, 2, 2, 130, 127, 3, 2, 2, 2, 130, 128, 3, 2, 2, 2, 130, 129, 3, 2, 2, 2, 131, 9, 3, 2, 2, 2, 132, 133, 5, 18, 10, 2, 133, 170, 5, 66, 34, 2, 134, 143, 7, 65, 2, 2, 135, 140, 5, 58, 30, 2, 136, 137, 7, 10, 2, 2, 137, 139, 5, 58, 30, 2, 138, 136, 3, 2, 2, 2, 139, 142, 3, 2, 2, 2, 140, 138, 3, 2, 2, 2, 140, 141, 3, 2, 2, 2, 141, 144, 3, 2, 2, 2, 142, 140, 3, 2, 2, 2, 143, 135, 3, 2, 2, 2, 143, 144, 3, 2, 2, 2, 144, 145, 3, 2, 2, 2, 145, 148, 7, 66, 2, 2, 146, 147, 7, 7, 2, 2, 147, 149, 5, 34, 18, 2, 148, 146, 3, 2, 2, 2, 148, 149, 3, 2, 2, 2, 149, 171, 3, 2, 2, 2, 150, 151, 7, 7, 2, 2, 151, 171, 5, 34, 18, 2, 152, 153, 7, 65, 2, 2, 153, 154, 5, 58, 30, 2, 154, 155, 7, 7, 2, 2, 155, 163, 5, 34, 18, 2, 156, 157, 7, 10, 2, 2, 157, 158, 5, 58, 30, 2, 158, 159, 7, 7, 2, 2, 159, 160, 5, 34, 18, 2, 160, 162, 3, 2, 2, 2, 161, 156, 3, 2, 2, 2, 162, 165, 3, 2, 2, 2, 163, 161, 3, 2, 2, 2, 163, 164, 3, 2, 2, 2, 164, 166, 3, 2, 2, 2, 165, 163, 3, 2, 2, 2, 166, 167, 7, 66, 2, 2, 167, 168, 7, 7, 2, 2, 168, 169, 5, 34, 18, 2, 169, 171, 3, 2, 2, 2, 170, 134, 3, 2, 2, 2, 170, 150, 3, 2, 2, 2, 170, 152, 3, 2, 2, 2, 170, 171, 3, 2, 2, 2, 171, 174, 3, 2, 2, 2, 172, 173, 7, 64, 2, 2, 173, 175, 5, 40, 21, 2, 174, 172, 3, 2, 2, 2, 174, 175, 3, 2, 2, 2, 175, 177, 3, 2, 2, 2, 176, 178, 7, 11, 2, 2, 177, 176, 3, 2, 2, 2, 177, 178, 3, 2, 2, 2, 178, 11, 3, 2, 2, 2, 179, 180, 7, 12, 2, 2, 180, 201, 5, 74, 38, 2, 181, 182, 7, 12, 2, 2, 182, 183, 5, 74, 38, 2, 183, 184, 7, 64, 2, 2, 184, 185, 5, 34, 18, 2, 185, 201, 3, 2, 2, 2, 186, 187, 7, 12, 2, 2, 187, 188, 5, 74, 38, 2, 188, 190, 7, 64, 2, 2, 189, 191, 7, 13, 2, 2, 190, 189, 3, 2, 2, 2, 190, 191, 3, 2, 2, 2, 191, 192, 3, 2, 2, 2, 192, 197, 5, 14, 8, 2, 193, 194, 7, 13, 2, 2, 194, 196, 5, 14, 8, 2, 195, 193, 3, 2, 2, 2, 196, 199, 3, 2, 2, 2, 197, 195, 3, 2, 2, 2, 197, 198, 3, 2, 2, 2, 198, 201, 3, 2, 2, 2, 199, 197, 3, 2, 2, 2, 200, 179, 3, 2, 2, 2, 200, 181, 3, 2, 2, 2, 200, 186, 3, 2, 2, 2, 201, 13, 3, 2, 2, 2, 202, 207, 5, 76, 39, 2, 203, 204, 7, 65, 2, 2, 204, 205, 5, 34, 18, 2, 205, 206, 7, 66, 2, 2, 206, 208, 3, 2, 2, 2, 207, 203, 3, 2, 2, 2, 207, 208, 3, 2, 2, 2, 208, 15, 3, 2, 2, 2, 209, 210, 7, 14, 2, 2, 210, 213, 5, 74, 38, 2, 211, 212, 7, 7, 2, 2, 212, 214, 5, 34, 18, 2, 213, 211, 3, 2, 2, 2, 213, 214, 3, 2, 2, 2, 214, 215, 3, 2, 2, 2, 215, 216, 7, 64, 2, 2, 216, 218, 5, 40, 21, 2, 217, 219, 7, 11, 2, 2, 218, 217, 3, 2, 2, 2, 218, 219, 3, 2, 2, 2, 219, 17, 3, 2, 2, 2, 220, 230, 7, 15, 2, 2, 221, 230, 7, 16, 2, 2, 222, 223, 7, 17, 2, 2, 223, 230, 7, 15, 2, 2, 224, 225, 7, 17, 2, 2, 225, 230, 7, 16, 2, 2, 226, 230, 7, 18, 2, 2, 227, 230, 7, 19, 2, 2, 228, 230, 7, 20, 2, 2, 229, 220, 3, 2, 2, 2, 229, 221, 3, 2, 2, 2, 229, 222, 3, 2, 2, 2, 229, 224, 3, 2, 2, 2, 229, 226, 3, 2, 2, 2, 229, 227, 3, 2, 2, 2, 229, 228, 3, 2, 2, 2, 230, 19, 3, 2, 2, 2, 231, 232, 7, 21, 2, 2, 232, 233, 5, 28, 15, 2, 233, 234, 7, 22, 2, 2, 234, 237, 5, 60, 31, 2, 235, 236, 7, 23, 2, 2, 236, 238, 5, 32, 17, 2, 237, 235, 3, 2, 2, 2, 237, 238, 3, 2, 2, 2, 238, 250, 3, 2, 2, 2, 239, 240, 7, 21, 2, 2, 240, 243, 5, 28, 15, 2, 241, 242, 7, 24, 2, 2, 242, 244, 5, 28, 15, 2, 243, 241, 3, 2, 2, 2, 243, 244, 3, 2, 2, 2, 244, 247, 3, 2, 2, 2, 245, 246, 7, 23, 2, 2, 246, 248, 5, 32, 17, 2, 247, 245, 3, 2, 2, 2, 247, 248, 3, 2, 2, 2, 248, 250, 3, 2, 2, 2, 249, 231, 3, 2, 2, 2, 249, 239, 3, 2, 2, 2, 250, 21, 3, 2, 2, 2, 251, 252, 7, 25, 2, 2, 252, 253, 5, 28, 15, 2, 253, 254, 7, 22, 2, 2, 254, 255, 5, 60, 31, 2, 255, 263, 3, 2, 2, 2, 256, 257, 7, 25, 2, 2, 257, 260, 5, 28, 15, 2, 258, 259, 7, 24, 2, 2, 259, 261, 5, 28, 15, 2, 260, 258, 3, 2, 2, 2, 260, 261, 3, 2, 2, 2, 261, 263, 3, 2, 2, 2, 262, 251, 3, 2, 2, 2, 262, 256, 3, 2, 2, 2, 263, 23, 3, 2, 2, 2, 264, 265, 7, 21, 2, 2, 265, 266, 5, 26, 14, 2, 266, 267, 7, 65, 2, 2, 267, 268, 5, 28, 15, 2, 268, 269, 7, 64, 2, 2, 269, 277, 5, 40, 21, 2, 270, 271, 7, 10, 2, 2, 271, 272, 5, 28, 15, 2, 272, 273, 7, 64, 2, 2, 273, 274, 5, 40, 21, 2, 274, 276, 3, 2, 2, 2, 275, 270, 3, 2, 2, 2, 276, 279, 3, 2, 2, 2, 277, 275, 3, 2, 2, 2, 277, 278, 3, 2, 2, 2, 278, 280, 3, 2, 2, 2, 279, 277, 3, 2, 2, 2, 280, 281, 7, 66, 2, 2, 281, 282, 7, 22, 2, 2, 282, 285, 7, 55, 2, 2, 283, 284, 7, 23, 2, 2, 284, 286, 5, 32, 17, 2, 285, 283, 3, 2, 2, 2, 285, 286, 3, 2, 2, 2, 286, 311, 3, 2, 2, 2, 287, 288, 7, 21, 2, 2, 288, 289, 5, 26, 14, 2, 289, 290, 7, 65, 2, 2, 290, 291, 5, 28, 15, 2, 291, 292, 7, 64, 2, 2, 292, 300, 5, 40, 21, 2, 293, 294, 7, 10, 2, 2, 294, 295, 5, 28, 15, 2, 295, 296, 7, 64, 2, 2, 296, 297, 5, 40, 21, 2, 297, 299, 3, 2, 2, 2, 298, 293, 3, 2, 2, 2, 299, 302, 3, 2, 2, 2, 300, 298, 3, 2, 2, 2, 300, 301, 3, 2, 2, 2, 301, 303, 3, 2, 2, 2, 302, 300, 3, 2, 2, 2, 303, 304, 7, 66, 2, 2, 304, 305, 7, 24, 2, 2, 305, 308, 5, 30, 16, 2, 306, 307, 7, 23, 2, 2, 307, 309, 5, 32, 17, 2, 308, 306, 3, 2, 2, 2, 308, 309, 3, 2, 2, 2, 309, 311, 3, 2, 2, 2, 310, 264, 3, 2, 2, 2, 310, 287, 3, 2, 2, 2, 311, 25, 3, 2, 2, 2, 312, 313, 5, 74, 38, 2, 313, 27, 3, 2, 2, 2, 314, 315, 5, 74, 38, 2, 315, 29, 3, 2, 2, 2, 316, 317, 5, 74, 38, 2, 317, 31, 3, 2, 2, 2, 318, 319, 7, 42, 2, 2, 319, 33, 3, 2, 2, 2, 320, 321, 8, 18, 1, 2, 321, 330, 7, 65, 2, 2, 322, 327, 5, 34, 18, 2, 323, 324, 7, 10, 2, 2, 324, 326, 5, 34, 18, 2, 325, 323, 3, 2, 2, 2, 326, 329, 3, 2, 2, 2, 327, 325, 3, 2, 2, 2, 327, 328, 3, 2, 2, 2, 328, 331, 3, 2, 2, 2, 329, 327, 3, 2, 2, 2, 330, 322, 3, 2, 2, 2, 330, 331, 3, 2, 2, 2, 331, 333, 3, 2, 2, 2, 332, 334, 7, 10, 2, 2, 333, 332, 3, 2, 2, 2, 333, 334, 3, 2, 2, 2, 334, 335, 3, 2, 2, 2, 335, 336, 7, 66, 2, 2, 336, 337, 7, 27, 2, 2, 337, 377, 5, 34, 18, 12, 338, 339, 7, 49, 2, 2, 339, 340, 7, 28, 2, 2, 340, 341, 5, 34, 18, 2, 341, 342, 7, 29, 2, 2, 342, 377, 3, 2, 2, 2, 343, 344, 7, 50, 2, 2, 344, 345, 7, 28, 2, 2, 345, 346, 5, 34, 18, 2, 346, 347, 7, 29, 2, 2, 347, 377, 3, 2, 2, 2, 348, 349, 7, 65, 2, 2, 349, 350, 5, 34, 18, 2, 350, 351, 7, 10, 2, 2, 351, 356, 5, 34, 18, 2, 352, 353, 7, 10, 2, 2, 353, 355, 5, 34, 18, 2, 354, 352, 3, 2, 2, 2, 355, 358, 3, 2, 2, 2, 356, 354, 3, 2, 2, 2, 356, 357, 3, 2, 2, 2, 357, 360, 3, 2, 2, 2, 358, 356, 3, 2, 2, 2, 359, 361, 7, 10, 2, 2, 360, 359, 3, 2, 2, 2, 360, 361, 3, 2, 2, 2, 361, 362, 3, 2, 2, 2, 362, 363, 7, 66, 2, 2, 363, 377, 3, 2, 2, 2, 364, 365, 7, 4, 2, 2, 365, 366, 5, 36, 19, 2, 366, 367, 7, 5, 2, 2, 367, 377, 3, 2, 2, 2, 368, 377, 7, 30, 2, 2, 369, 377, 7, 31, 2, 2, 370, 377, 7, 32, 2, 2, 371, 377, 5, 74, 38, 2, 372, 373, 7, 65, 2, 2, 373, 374, 5, 34, 18, 2, 374, 375, 7, 66, 2, 2, 375, 377, 3, 2, 2, 2, 376, 320, 3, 2, 2, 2, 376, 338, 3, 2, 2, 2, 376, 343, 3, 2, 2, 2, 376, 348, 3, 2, 2, 2, 376, 364, 3, 2, 2, 2, 376, 368, 3, 2, 2, 2, 376, 369, 3, 2, 2, 2, 376, 370, 3, 2, 2, 2, 376, 371, 3, 2, 2, 2, 376, 372, 3, 2, 2, 2, 377, 386, 3, 2, 2, 2, 378, 379, 12, 14, 2, 2, 379, 380, 7, 26, 2, 2, 380, 385, 5, 34, 18, 14, 381, 382, 12, 13, 2, 2, 382, 383, 7, 27, 2, 2, 383, 385, 5, 34, 18, 13, 384, 378, 3, 2, 2, 2, 384, 381, 3, 2, 2, 2, 385, 388, 3, 2, 2, 2, 386, 384, 3, 2, 2, 2, 386, 387, 3, 2, 2, 2, 387, 35, 3, 2, 2, 2, 388, 386, 3, 2, 2, 2, 389, 390, 5, 38, 20, 2, 390, 391, 7, 7, 2, 2, 391, 392, 5, 34, 18, 2, 392, 393, 7, 10, 2, 2, 393, 395, 3, 2, 2, 2, 394, 389, 3, 2, 2, 2, 395, 398, 3, 2, 2, 2, 396, 394, 3, 2, 2, 2, 396, 397, 3, 2, 2, 2, 397, 408, 3, 2, 2, 2, 398, 396, 3, 2, 2, 2, 399, 400, 5, 38, 20, 2, 400, 401, 7, 7, 2, 2, 401, 402, 5, 34, 18, 2, 402, 406, 3, 2, 2, 2, 403, 407, 7, 10, 2, 2, 404, 405, 7, 13, 2, 2, 405, 407, 7, 67, 2, 2, 406, 403, 3, 2, 2, 2, 406, 404, 3, 2, 2, 2, 406, 407, 3, 2, 2, 2, 407, 409, 3, 2, 2, 2, 408, 399, 3, 2, 2, 2, 408, 409, 3, 2, 2, 2, 409, 413, 3, 2, 2, 2, 410, 411, 7, 13, 2, 2, 411, 413, 7, 67, 2, 2, 412, 396, 3, 2, 2, 2, 412, 410, 3, 2, 2, 2, 413, 37, 3, 2, 2, 2, 414, 415, 5, 76, 39, 2, 415, 39, 3, 2, 2, 2, 416, 417, 8, 21, 1, 2, 417, 567, 5, 50, 26, 2, 418, 419, 5, 66, 34, 2, 419, 421, 7, 65, 2, 2, 420, 422, 5, 62, 32, 2, 421, 420, 3, 2, 2, 2, 421, 422, 3, 2, 2, 2, 422, 423, 3, 2, 2, 2, 423, 424, 7, 66, 2, 2, 424, 567, 3, 2, 2, 2, 425, 426, 7, 54, 2, 2, 426, 567, 5, 40, 21, 27, 427, 428, 5, 74, 38, 2, 428, 429, 7, 34, 2, 2, 429, 430, 7, 64, 2, 2, 430, 431, 5, 40, 21, 23, 431, 567, 3, 2, 2, 2, 432, 433, 7, 45, 2, 2, 433, 434, 7, 4, 2, 2, 434, 439, 5, 40, 21, 2, 435, 436, 7, 10, 2, 2, 436, 438, 5, 40, 21, 2, 437, 435, 3, 2, 2, 2, 438, 441, 3, 2, 2, 2, 439, 437, 3, 2, 2, 2, 439, 440, 3, 2, 2, 2, 440, 443, 3, 2, 2, 2, 441, 439, 3, 2, 2, 2, 442, 444, 7, 10, 2, 2, 443, 442, 3, 2, 2, 2, 443, 444, 3, 2, 2, 2, 444, 445, 3, 2, 2, 2, 445, 446, 7, 5, 2, 2, 446, 567, 3, 2, 2, 2, 447, 448, 7, 46, 2, 2, 448, 449, 7, 4, 2, 2, 449, 454, 5, 40, 21, 2, 450, 451, 7, 10, 2, 2, 451, 453, 5, 40, 21, 2, 452, 450, 3, 2, 2, 2, 453, 456, 3, 2, 2, 2, 454, 452, 3, 2, 2, 2, 454, 455, 3, 2, 2, 2, 455, 458, 3, 2, 2, 2, 456, 454, 3, 2, 2, 2, 457, 459, 7, 10, 2, 2, 458, 457, 3, 2, 2, 2, 458, 459, 3, 2, 2, 2, 459, 460, 3, 2, 2, 2, 460, 461, 7, 5, 2, 2, 461, 567, 3, 2, 2, 2, 462, 567, 5, 42, 22, 2, 463, 464, 7, 35, 2, 2, 464, 465, 7, 4, 2, 2, 465, 470, 5, 40, 21, 2, 466, 467, 7, 10, 2, 2, 467, 469, 5, 40, 21, 2, 468, 466, 3, 2, 2, 2, 469, 472, 3, 2, 2, 2, 470, 468, 3, 2, 2, 2, 470, 471, 3, 2, 2, 2, 471, 474, 3, 2, 2, 2, 472, 470, 3, 2, 2, 2, 473, 475, 7, 10, 2, 2, 474, 473, 3, 2, 2, 2, 474, 475, 3, 2, 2, 2, 475, 476, 3, 2, 2, 2, 476, 477, 7, 5, 2, 2, 477, 567, 3, 2, 2, 2, 478, 479, 7, 36, 2, 2, 479, 480, 7, 4, 2, 2, 480, 485, 5, 40, 21, 2, 481, 482, 7, 10, 2, 2, 482, 484, 5, 40, 21, 2, 483, 481, 3, 2, 2, 2, 484, 487, 3, 2, 2, 2, 485, 483, 3, 2, 2, 2, 485, 486, 3, 2, 2, 2, 486, 489, 3, 2, 2, 2, 487, 485, 3, 2, 2, 2, 488, 490, 7, 10, 2, 2, 489, 488, 3, 2, 2, 2, 489, 490, 3, 2, 2, 2, 490, 491, 3, 2, 2, 2, 491, 492, 7, 5, 2, 2, 492, 567, 3, 2, 2, 2, 493, 498, 5, 74, 38, 2, 494, 498, 7, 44, 2, 2, 495, 498, 7, 43, 2, 2, 496, 498, 7, 42, 2, 2, 497, 493, 3, 2, 2, 2, 497, 494, 3, 2, 2, 2, 497, 495, 3, 2, 2, 2, 497, 496, 3, 2, 2, 2, 498, 567, 3, 2, 2, 2, 499, 500, 7, 65, 2, 2, 500, 501, 5, 40, 21, 2, 501, 502, 7, 10, 2, 2, 502, 507, 5, 40, 21, 2, 503, 504, 7, 10, 2, 2, 504, 506, 5, 40, 21, 2, 505, 503, 3, 2, 2, 2, 506, 509, 3, 2, 2, 2, 507, 505, 3, 2, 2, 2, 507, 508, 3, 2, 2, 2, 508, 511, 3, 2, 2, 2, 509, 507, 3, 2, 2, 2, 510, 512, 7, 10, 2, 2, 511, 510, 3, 2, 2, 2, 511, 512, 3, 2, 2, 2, 512, 513, 3, 2, 2, 2, 513, 514, 7, 66, 2, 2, 514, 567, 3, 2, 2, 2, 515, 516, 7, 4, 2, 2, 516, 521, 5, 64, 33, 2, 517, 518, 7, 10, 2, 2, 518, 520, 5, 64, 33, 2, 519, 517, 3, 2, 2, 2, 520, 523, 3, 2, 2, 2, 521, 519, 3, 2, 2, 2, 521, 522, 3, 2, 2, 2, 522, 525, 3, 2, 2, 2, 523, 521, 3, 2, 2, 2, 524, 526, 7, 10, 2, 2, 525, 524, 3, 2, 2, 2, 525, 526, 3, 2, 2, 2, 526, 527, 3, 2, 2, 2, 527, 528, 7, 5, 2, 2, 528, 567, 3, 2, 2, 2, 529, 538, 7, 28, 2, 2, 530, 535, 5, 40, 21, 2, 531, 532, 7, 10, 2, 2, 532, 534, 5, 40, 21, 2, 533, 531, 3, 2, 2, 2, 534, 537, 3, 2, 2, 2, 535, 533, 3, 2, 2, 2, 535, 536, 3, 2, 2, 2, 536, 539, 3, 2, 2, 2, 537, 535, 3, 2, 2, 2, 538, 530, 3, 2, 2, 2, 538, 539, 3, 2, 2, 2, 539, 541, 3, 2, 2, 2, 540, 542, 7, 10, 2, 2, 541, 540, 3, 2, 2, 2, 541, 542, 3, 2, 2, 2, 542, 543, 3, 2, 2, 2, 543, 567, 7, 29, 2, 2, 544, 545, 7, 37, 2, 2, 545, 546, 7, 65, 2, 2, 546, 547, 5, 40, 21, 2, 547, 548, 7, 66, 2, 2, 548, 549, 5, 40, 21, 2, 549, 550, 7, 38, 2, 2, 550, 551, 5, 40, 21, 7, 551, 567, 3, 2, 2, 2, 552, 553, 5, 10, 6, 2, 553, 554, 5, 40, 21, 6, 554, 567, 3, 2, 2, 2, 555, 556, 5, 16, 9, 2, 556, 557, 5, 40, 21, 5, 557, 567, 3, 2, 2, 2, 558, 559, 7, 65, 2, 2, 559, 560, 5, 40, 21, 2, 560, 561, 7, 66, 2, 2, 561, 567, 3, 2, 2, 2, 562, 563, 7, 4, 2, 2, 563, 564, 5, 40, 21, 2, 564, 565, 7, 5, 2, 2, 565, 567, 3, 2, 2, 2, 566, 416, 3, 2, 2, 2, 566, 418, 3, 2, 2, 2, 566, 425, 3, 2, 2, 2, 566, 427, 3, 2, 2, 2, 566, 432, 3, 2, 2, 2, 566, 447, 3, 2, 2, 2, 566, 462, 3, 2, 2, 2, 566, 463, 3, 2, 2, 2, 566, 478, 3, 2, 2, 2, 566, 497, 3, 2, 2, 2, 566, 499, 3, 2, 2, 2, 566, 515, 3, 2, 2, 2, 566, 529, 3, 2, 2, 2, 566, 544, 3, 2, 2, 2, 566, 552, 3, 2, 2, 2, 566, 555, 3, 2, 2, 2, 566, 558, 3, 2, 2, 2, 566, 562, 3, 2, 2, 2, 567, 617, 3, 2, 2, 2, 568, 569, 12, 28, 2, 2, 569, 570, 7, 33, 2, 2, 570, 616, 5, 40, 21, 28, 571, 572, 12, 26, 2, 2, 572, 573, 9, 2, 2, 2, 573, 616, 5, 40, 21, 27, 574, 575, 12, 25, 2, 2, 575, 576, 9, 3, 2, 2, 576, 616, 5, 40, 21, 26, 577, 578, 12, 24, 2, 2, 578, 579, 9, 4, 2, 2, 579, 616, 5, 40, 21, 25, 580, 581, 12, 22, 2, 2, 581, 582, 7, 64, 2, 2, 582, 583, 5, 40, 21, 23, 583, 584, 8, 21, 1, 2, 584, 616, 3, 2, 2, 2, 585, 586, 12, 20, 2, 2, 586, 587, 7, 45, 2, 2, 587, 616, 5, 40, 21, 21, 588, 589, 12, 18, 2, 2, 589, 590, 7, 46, 2, 2, 590, 616, 5, 40, 21, 19, 591, 592, 12, 17, 2, 2, 592, 593, 7, 47, 2, 2, 593, 616, 5, 40, 21, 18, 594, 595, 12, 16, 2, 2, 595, 596, 7, 48, 2, 2, 596, 616, 5, 40, 21, 17, 597, 598, 12, 10, 2, 2, 598, 599, 7, 26, 2, 2, 599, 616, 5, 40, 21, 11, 600, 601, 12, 32, 2, 2, 601, 602, 7, 22, 2, 2, 602, 608, 5, 68, 35, 2, 603, 605, 7, 65, 2, 2, 604, 606, 5, 62, 32, 2, 605, 604, 3, 2, 2, 2, 605, 606, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 609, 7, 66, 2, 2, 608, 603, 3, 2, 2, 2, 608, 609, 3, 2, 2, 2, 609, 616, 3, 2, 2, 2, 610, 611, 12, 29, 2, 2, 611, 612, 7, 28, 2, 2, 612, 613, 5, 40, 21, 2, 613, 614, 7, 29, 2, 2, 614, 616, 3, 2, 2, 2, 615, 568, 3, 2, 2, 2, 615, 571, 3, 2, 2, 2, 615, 574, 3, 2, 2, 2, 615, 577, 3, 2, 2, 2, 615, 580, 3, 2, 2, 2, 615, 585, 3, 2, 2, 2, 615, 588, 3, 2, 2, 2, 615, 591, 3, 2, 2, 2, 615, 594, 3, 2, 2, 2, 615, 597, 3, 2, 2, 2, 615, 600, 3, 2, 2, 2, 615, 610, 3, 2, 2, 2, 616, 619, 3, 2, 2, 2, 617, 615, 3, 2, 2, 2, 617, 618, 3, 2, 2, 2, 618, 41, 3, 2, 2, 2, 619, 617, 3, 2, 2, 2, 620, 621, 7, 52, 2, 2, 621, 622, 5, 40, 21, 2, 622, 624, 7, 4, 2, 2, 623, 625, 7, 13, 2, 2, 624, 623, 3, 2, 2, 2, 624, 625, 3, 2, 2, 2, 625, 626, 3, 2, 2, 2, 626, 631, 5, 44, 23, 2, 627, 628, 7, 13, 2, 2, 628, 630, 5, 44, 23, 2, 629, 627, 3, 2, 2, 2, 630, 633, 3, 2, 2, 2, 631, 629, 3, 2, 2, 2, 631, 632, 3, 2, 2, 2, 632, 634, 3, 2, 2, 2, 633, 631, 3, 2, 2, 2, 634, 635, 7, 5, 2, 2, 635, 43, 3, 2, 2, 2, 636, 639, 5, 46, 24, 2, 637, 639, 7, 39, 2, 2, 638, 636, 3, 2, 2, 2, 638, 637, 3, 2, 2, 2, 639, 640, 3, 2, 2, 2, 640, 641, 7, 27, 2, 2, 641, 642, 5, 40, 21, 2, 642, 45, 3, 2, 2, 2, 643, 650, 5, 76, 39, 2, 644, 647, 7, 65, 2, 2, 645, 648, 5, 76, 39, 2, 646, 648, 7, 39, 2, 2, 647, 645, 3, 2, 2, 2, 647, 646, 3, 2, 2, 2, 648, 649, 3, 2, 2, 2, 649, 651, 7, 66, 2, 2, 650, 644, 3, 2, 2, 2, 650, 651, 3, 2, 2, 2, 651, 47, 3, 2, 2, 2, 652, 653, 5, 8, 5, 2, 653, 654, 7, 2, 2, 3, 654, 662, 3, 2, 2, 2, 655, 656, 5, 40, 21, 2, 656, 657, 7, 2, 2, 3, 657, 662, 3, 2, 2, 2, 658, 659, 7, 68, 2, 2, 659, 662, 7, 2, 2, 3, 660, 662, 7, 2, 2, 3, 661, 652, 3, 2, 2, 2, 661, 655, 3, 2, 2, 2, 661, 658, 3, 2, 2, 2, 661, 660, 3, 2, 2, 2, 662, 49, 3, 2, 2, 2, 663, 666, 5, 52, 27, 2, 664, 666, 5, 54, 28, 2, 665, 663, 3, 2, 2, 2, 665, 664, 3, 2, 2, 2, 666, 51, 3, 2, 2, 2, 667, 668, 5, 58, 30, 2, 668, 669, 7, 27, 2, 2, 669, 670, 5, 40, 21, 2, 670, 685, 3, 2, 2, 2, 671, 672, 7, 65, 2, 2, 672, 677, 5, 58, 30, 2, 673, 674, 7, 10, 2, 2, 674, 676, 5, 58, 30, 2, 675, 673, 3, 2, 2, 2, 676, 679, 3, 2, 2, 2, 677, 675, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 680, 3, 2, 2, 2, 679, 677, 3, 2, 2, 2, 680, 681, 7, 66, 2, 2, 681, 682, 7, 27, 2, 2, 682, 683, 5, 40, 21, 2, 683, 685, 3, 2, 2, 2, 684, 667, 3, 2, 2, 2, 684, 671, 3, 2, 2, 2, 685, 53, 3, 2, 2, 2, 686, 687, 7, 65, 2, 2, 687, 688, 7, 65, 2, 2, 688, 691, 5, 58, 30, 2, 689, 690, 7, 10, 2, 2, 690, 692, 5, 58, 30, 2, 691, 689, 3, 2, 2, 2, 692, 693, 3, 2, 2, 2, 693, 691, 3, 2, 2, 2, 693, 694, 3, 2, 2, 2, 694, 695, 3, 2, 2, 2, 695, 696, 7, 66, 2, 2, 696, 697, 7, 66, 2, 2, 697, 698, 7, 27, 2, 2, 698, 699, 5, 40, 21, 2, 699, 55, 3, 2, 2, 2, 700, 703, 7, 39, 2, 2, 701, 703, 5, 74, 38, 2, 702, 700, 3, 2, 2, 2, 702, 701, 3, 2, 2, 2, 703, 57, 3, 2, 2, 2, 704, 705, 5, 56, 29, 2, 705, 59, 3, 2, 2, 2, 706, 709, 7, 55, 2, 2, 707, 709, 5, 74, 38, 2, 708, 706, 3, 2, 2, 2, 708, 707, 3, 2, 2, 2, 709, 61, 3, 2, 2, 2, 710, 715, 5, 40, 21, 2, 711, 712, 7, 10, 2, 2, 712, 714, 5, 40, 21, 2, 713, 711, 3, 2, 2, 2, 714, 717, 3, 2, 2, 2, 715, 713, 3, 2, 2, 2, 715, 716, 3, 2, 2, 2, 716, 63, 3, 2, 2, 2, 717, 715, 3, 2, 2, 2, 718, 719, 5, 76, 39, 2, 719, 720, 7, 7, 2, 2, 720, 721, 5, 40, 21, 2, 721, 725, 3, 2, 2, 2, 722, 723, 7, 40, 2, 2, 723, 725, 5, 40, 21, 2, 724, 718, 3, 2, 2, 2, 724, 722, 3, 2, 2, 2, 725, 65, 3, 2, 2, 2, 726, 729, 5, 74, 38, 2, 727, 729, 9, 5, 2, 2, 728, 726, 3, 2, 2, 2, 728, 727, 3, 2, 2, 2, 729, 67, 3, 2, 2, 2, 730, 733, 5, 74, 38, 2, 731, 733, 9, 6, 2, 2, 732, 730, 3, 2, 2, 2, 732, 731, 3, 2, 2, 2, 733, 69, 3, 2, 2, 2, 734, 735, 9, 7, 2, 2, 735, 71, 3, 2, 2, 2, 736, 737, 9, 8, 2, 2, 737, 73, 3, 2, 2, 2, 738, 743, 7, 67, 2, 2, 739, 740, 7, 41, 2, 2, 740, 742, 7, 67, 2, 2, 741, 739, 3, 2, 2, 2, 742, 745, 3, 2, 2, 2, 743, 741, 3, 2, 2, 2, 743, 744, 3, 2, 2, 2, 744, 75, 3, 2, 2, 2, 745, 743, 3, 2, 2, 2, 746, 751, 7, 67, 2, 2, 747, 748, 5, 74, 38, 2, 748, 749, 8, 39, 1, 2, 749, 751, 3, 2, 2, 2, 750, 746, 3, 2, 2, 2, 750, 747, 3, 2, 2, 2, 751, 77, 3, 2, 2, 2, 84, 81, 88, 97, 105, 130, 140, 143, 148, 163, 170, 174, 177, 190, 197, 200, 207, 213, 218, 229, 237, 243, 247, 249, 260, 262, 277, 285, 300, 308, 310, 327, 330, 333, 356, 360, 376, 384, 386, 396, 406, 408, 412, 421, 439, 443, 454, 458, 470, 474, 485, 489, 497, 507, 511, 521, 525, 535, 538, 541, 566, 605, 608, 615, 617, 624, 631, 638, 647, 650, 661, 665, 677, 684, 693, 702, 708, 715, 724, 728, 732, 743, 750] \ No newline at end of file diff --git a/quint/src/generated/QuintListener.ts b/quint/src/generated/QuintListener.ts index 0c624e297..d8e439e57 100644 --- a/quint/src/generated/QuintListener.ts +++ b/quint/src/generated/QuintListener.ts @@ -15,7 +15,6 @@ import { TypeSetContext } from "./QuintParser"; import { TypeListContext } from "./QuintParser"; import { TypeTupleContext } from "./QuintParser"; import { TypeRecContext } from "./QuintParser"; -import { TypeUnionRecContext } from "./QuintParser"; import { TypeIntContext } from "./QuintParser"; import { TypeStrContext } from "./QuintParser"; import { TypeBoolContext } from "./QuintParser"; @@ -79,7 +78,6 @@ import { NameContext } from "./QuintParser"; import { QualifiedNameContext } from "./QuintParser"; import { FromSourceContext } from "./QuintParser"; import { TypeContext } from "./QuintParser"; -import { TypeUnionRecOneContext } from "./QuintParser"; import { RowContext } from "./QuintParser"; import { RowLabelContext } from "./QuintParser"; import { ExprContext } from "./QuintParser"; @@ -186,19 +184,6 @@ export interface QuintListener extends ParseTreeListener { */ exitTypeRec?: (ctx: TypeRecContext) => void; - /** - * Enter a parse tree produced by the `typeUnionRec` - * labeled alternative in `QuintParser.type`. - * @param ctx the parse tree - */ - enterTypeUnionRec?: (ctx: TypeUnionRecContext) => void; - /** - * Exit a parse tree produced by the `typeUnionRec` - * labeled alternative in `QuintParser.type`. - * @param ctx the parse tree - */ - exitTypeUnionRec?: (ctx: TypeUnionRecContext) => void; - /** * Enter a parse tree produced by the `typeInt` * labeled alternative in `QuintParser.type`. @@ -984,17 +969,6 @@ export interface QuintListener extends ParseTreeListener { */ exitType?: (ctx: TypeContext) => void; - /** - * Enter a parse tree produced by `QuintParser.typeUnionRecOne`. - * @param ctx the parse tree - */ - enterTypeUnionRecOne?: (ctx: TypeUnionRecOneContext) => void; - /** - * Exit a parse tree produced by `QuintParser.typeUnionRecOne`. - * @param ctx the parse tree - */ - exitTypeUnionRecOne?: (ctx: TypeUnionRecOneContext) => void; - /** * Enter a parse tree produced by `QuintParser.row`. * @param ctx the parse tree diff --git a/quint/src/generated/QuintParser.ts b/quint/src/generated/QuintParser.ts index aacec8b3e..9dc9dc78c 100644 --- a/quint/src/generated/QuintParser.ts +++ b/quint/src/generated/QuintParser.ts @@ -120,38 +120,36 @@ export class QuintParser extends Parser { public static readonly RULE_qualifiedName = 14; public static readonly RULE_fromSource = 15; public static readonly RULE_type = 16; - public static readonly RULE_typeUnionRecOne = 17; - public static readonly RULE_row = 18; - public static readonly RULE_rowLabel = 19; - public static readonly RULE_expr = 20; - public static readonly RULE_matchSumExpr = 21; - public static readonly RULE_matchSumCase = 22; - public static readonly RULE_matchSumVariant = 23; - public static readonly RULE_declarationOrExpr = 24; - public static readonly RULE_lambda = 25; - public static readonly RULE_lambdaUnsugared = 26; - public static readonly RULE_lambdaTupleSugar = 27; - public static readonly RULE_identOrHole = 28; - public static readonly RULE_parameter = 29; - public static readonly RULE_identOrStar = 30; - public static readonly RULE_argList = 31; - public static readonly RULE_recElem = 32; - public static readonly RULE_normalCallName = 33; - public static readonly RULE_nameAfterDot = 34; - public static readonly RULE_operator = 35; - public static readonly RULE_literal = 36; - public static readonly RULE_qualId = 37; - public static readonly RULE_simpleId = 38; + public static readonly RULE_row = 17; + public static readonly RULE_rowLabel = 18; + public static readonly RULE_expr = 19; + public static readonly RULE_matchSumExpr = 20; + public static readonly RULE_matchSumCase = 21; + public static readonly RULE_matchSumVariant = 22; + public static readonly RULE_declarationOrExpr = 23; + public static readonly RULE_lambda = 24; + public static readonly RULE_lambdaUnsugared = 25; + public static readonly RULE_lambdaTupleSugar = 26; + public static readonly RULE_identOrHole = 27; + public static readonly RULE_parameter = 28; + public static readonly RULE_identOrStar = 29; + public static readonly RULE_argList = 30; + public static readonly RULE_recElem = 31; + public static readonly RULE_normalCallName = 32; + public static readonly RULE_nameAfterDot = 33; + public static readonly RULE_operator = 34; + public static readonly RULE_literal = 35; + public static readonly RULE_qualId = 36; + public static readonly RULE_simpleId = 37; // tslint:disable:no-trailing-whitespace public static readonly ruleNames: string[] = [ "modules", "module", "documentedDeclaration", "declaration", "operDef", "typeDef", "typeSumVariant", "nondetOperDef", "qualifier", "importMod", "exportMod", "instanceMod", "moduleName", "name", "qualifiedName", "fromSource", - "type", "typeUnionRecOne", "row", "rowLabel", "expr", "matchSumExpr", - "matchSumCase", "matchSumVariant", "declarationOrExpr", "lambda", "lambdaUnsugared", - "lambdaTupleSugar", "identOrHole", "parameter", "identOrStar", "argList", - "recElem", "normalCallName", "nameAfterDot", "operator", "literal", "qualId", - "simpleId", + "type", "row", "rowLabel", "expr", "matchSumExpr", "matchSumCase", "matchSumVariant", + "declarationOrExpr", "lambda", "lambdaUnsugared", "lambdaTupleSugar", + "identOrHole", "parameter", "identOrStar", "argList", "recElem", "normalCallName", + "nameAfterDot", "operator", "literal", "qualId", "simpleId", ]; private static readonly _LITERAL_NAMES: Array = [ @@ -210,21 +208,21 @@ export class QuintParser extends Parser { try { this.enterOuterAlt(_localctx, 1); { - this.state = 79; + this.state = 77; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 78; + this.state = 76; this.module(); } } - this.state = 81; + this.state = 79; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la === QuintParser.T__0 || _la === QuintParser.DOCCOMMENT); - this.state = 83; + this.state = 81; this.match(QuintParser.EOF); } } @@ -250,41 +248,41 @@ export class QuintParser extends Parser { try { this.enterOuterAlt(_localctx, 1); { - this.state = 88; + this.state = 86; this._errHandler.sync(this); _la = this._input.LA(1); while (_la === QuintParser.DOCCOMMENT) { { { - this.state = 85; + this.state = 83; this.match(QuintParser.DOCCOMMENT); } } - this.state = 90; + this.state = 88; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 91; + this.state = 89; this.match(QuintParser.T__0); - this.state = 92; + this.state = 90; this.qualId(); - this.state = 93; + this.state = 91; this.match(QuintParser.T__1); - this.state = 97; + this.state = 95; this._errHandler.sync(this); _la = this._input.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << QuintParser.T__3) | (1 << QuintParser.T__5) | (1 << QuintParser.T__6) | (1 << QuintParser.T__9) | (1 << QuintParser.T__12) | (1 << QuintParser.T__13) | (1 << QuintParser.T__14) | (1 << QuintParser.T__15) | (1 << QuintParser.T__16) | (1 << QuintParser.T__17) | (1 << QuintParser.T__18) | (1 << QuintParser.T__22))) !== 0) || _la === QuintParser.DOCCOMMENT) { { { - this.state = 94; + this.state = 92; this.documentedDeclaration(); } } - this.state = 99; + this.state = 97; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 100; + this.state = 98; this.match(QuintParser.T__2); } } @@ -310,21 +308,21 @@ export class QuintParser extends Parser { try { this.enterOuterAlt(_localctx, 1); { - this.state = 105; + this.state = 103; this._errHandler.sync(this); _la = this._input.LA(1); while (_la === QuintParser.DOCCOMMENT) { { { - this.state = 102; + this.state = 100; this.match(QuintParser.DOCCOMMENT); } } - this.state = 107; + this.state = 105; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 108; + this.state = 106; this.declaration(); } } @@ -347,20 +345,20 @@ export class QuintParser extends Parser { let _localctx: DeclarationContext = new DeclarationContext(this._ctx, this.state); this.enterRule(_localctx, 6, QuintParser.RULE_declaration); try { - this.state = 130; + this.state = 128; this._errHandler.sync(this); switch ( this.interpreter.adaptivePredict(this._input, 4, this._ctx) ) { case 1: _localctx = new ConstContext(_localctx); this.enterOuterAlt(_localctx, 1); { - this.state = 110; + this.state = 108; this.match(QuintParser.T__3); - this.state = 111; + this.state = 109; this.qualId(); - this.state = 112; + this.state = 110; this.match(QuintParser.T__4); - this.state = 113; + this.state = 111; this.type(0); } break; @@ -369,13 +367,13 @@ export class QuintParser extends Parser { _localctx = new VarContext(_localctx); this.enterOuterAlt(_localctx, 2); { - this.state = 115; + this.state = 113; this.match(QuintParser.T__5); - this.state = 116; + this.state = 114; this.qualId(); - this.state = 117; + this.state = 115; this.match(QuintParser.T__4); - this.state = 118; + this.state = 116; this.type(0); } break; @@ -384,13 +382,13 @@ export class QuintParser extends Parser { _localctx = new AssumeContext(_localctx); this.enterOuterAlt(_localctx, 3); { - this.state = 120; + this.state = 118; this.match(QuintParser.T__6); - this.state = 121; + this.state = 119; this.identOrHole(); - this.state = 122; + this.state = 120; this.match(QuintParser.ASGN); - this.state = 123; + this.state = 121; this.expr(0); } break; @@ -399,7 +397,7 @@ export class QuintParser extends Parser { _localctx = new InstanceContext(_localctx); this.enterOuterAlt(_localctx, 4); { - this.state = 125; + this.state = 123; this.instanceMod(); } break; @@ -408,7 +406,7 @@ export class QuintParser extends Parser { _localctx = new OperContext(_localctx); this.enterOuterAlt(_localctx, 5); { - this.state = 126; + this.state = 124; this.operDef(); } break; @@ -417,7 +415,7 @@ export class QuintParser extends Parser { _localctx = new TypeDefsContext(_localctx); this.enterOuterAlt(_localctx, 6); { - this.state = 127; + this.state = 125; this.typeDef(); } break; @@ -426,7 +424,7 @@ export class QuintParser extends Parser { _localctx = new ImportDefContext(_localctx); this.enterOuterAlt(_localctx, 7); { - this.state = 128; + this.state = 126; this.importMod(); } break; @@ -435,7 +433,7 @@ export class QuintParser extends Parser { _localctx = new ExportDefContext(_localctx); this.enterOuterAlt(_localctx, 8); { - this.state = 129; + this.state = 127; this.exportMod(); } break; @@ -463,53 +461,53 @@ export class QuintParser extends Parser { try { this.enterOuterAlt(_localctx, 1); { - this.state = 132; + this.state = 130; this.qualifier(); - this.state = 133; + this.state = 131; this.normalCallName(); - this.state = 170; + this.state = 168; this._errHandler.sync(this); switch ( this.interpreter.adaptivePredict(this._input, 9, this._ctx) ) { case 1: { - this.state = 134; + this.state = 132; this.match(QuintParser.LPAREN); - this.state = 143; + this.state = 141; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__36 || _la === QuintParser.IDENTIFIER) { { - this.state = 135; + this.state = 133; this.parameter(); - this.state = 140; + this.state = 138; this._errHandler.sync(this); _la = this._input.LA(1); while (_la === QuintParser.T__7) { { { - this.state = 136; + this.state = 134; this.match(QuintParser.T__7); - this.state = 137; + this.state = 135; this.parameter(); } } - this.state = 142; + this.state = 140; this._errHandler.sync(this); _la = this._input.LA(1); } } } - this.state = 145; + this.state = 143; this.match(QuintParser.RPAREN); - this.state = 148; + this.state = 146; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__4) { { - this.state = 146; + this.state = 144; this.match(QuintParser.T__4); - this.state = 147; + this.state = 145; this.type(0); } } @@ -519,72 +517,72 @@ export class QuintParser extends Parser { case 2: { - this.state = 150; + this.state = 148; this.match(QuintParser.T__4); - this.state = 151; + this.state = 149; this.type(0); } break; case 3: { - this.state = 152; + this.state = 150; this.match(QuintParser.LPAREN); { - this.state = 153; + this.state = 151; this.parameter(); - this.state = 154; + this.state = 152; this.match(QuintParser.T__4); - this.state = 155; + this.state = 153; this.type(0); - this.state = 163; + this.state = 161; this._errHandler.sync(this); _la = this._input.LA(1); while (_la === QuintParser.T__7) { { { - this.state = 156; + this.state = 154; this.match(QuintParser.T__7); - this.state = 157; + this.state = 155; this.parameter(); - this.state = 158; + this.state = 156; this.match(QuintParser.T__4); - this.state = 159; + this.state = 157; this.type(0); } } - this.state = 165; + this.state = 163; this._errHandler.sync(this); _la = this._input.LA(1); } } - this.state = 166; + this.state = 164; this.match(QuintParser.RPAREN); - this.state = 167; + this.state = 165; this.match(QuintParser.T__4); - this.state = 168; + this.state = 166; this.type(0); } break; } - this.state = 174; + this.state = 172; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.ASGN) { { - this.state = 172; + this.state = 170; this.match(QuintParser.ASGN); - this.state = 173; + this.state = 171; this.expr(0); } } - this.state = 177; + this.state = 175; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__8) { { - this.state = 176; + this.state = 174; this.match(QuintParser.T__8); } } @@ -611,16 +609,16 @@ export class QuintParser extends Parser { this.enterRule(_localctx, 10, QuintParser.RULE_typeDef); let _la: number; try { - this.state = 200; + this.state = 198; this._errHandler.sync(this); switch ( this.interpreter.adaptivePredict(this._input, 14, this._ctx) ) { case 1: _localctx = new TypeAbstractDefContext(_localctx); this.enterOuterAlt(_localctx, 1); { - this.state = 179; + this.state = 177; this.match(QuintParser.T__9); - this.state = 180; + this.state = 178; this.qualId(); } break; @@ -629,13 +627,13 @@ export class QuintParser extends Parser { _localctx = new TypeAliasDefContext(_localctx); this.enterOuterAlt(_localctx, 2); { - this.state = 181; + this.state = 179; this.match(QuintParser.T__9); - this.state = 182; + this.state = 180; this.qualId(); - this.state = 183; + this.state = 181; this.match(QuintParser.ASGN); - this.state = 184; + this.state = 182; this.type(0); } break; @@ -644,37 +642,37 @@ export class QuintParser extends Parser { _localctx = new TypeSumDefContext(_localctx); this.enterOuterAlt(_localctx, 3); { - this.state = 186; + this.state = 184; this.match(QuintParser.T__9); - this.state = 187; + this.state = 185; (_localctx as TypeSumDefContext)._typeName = this.qualId(); - this.state = 188; + this.state = 186; this.match(QuintParser.ASGN); - this.state = 190; + this.state = 188; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__10) { { - this.state = 189; + this.state = 187; this.match(QuintParser.T__10); } } - this.state = 192; + this.state = 190; this.typeSumVariant(); - this.state = 197; + this.state = 195; this._errHandler.sync(this); _la = this._input.LA(1); while (_la === QuintParser.T__10) { { { - this.state = 193; + this.state = 191; this.match(QuintParser.T__10); - this.state = 194; + this.state = 192; this.typeSumVariant(); } } - this.state = 199; + this.state = 197; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -704,18 +702,18 @@ export class QuintParser extends Parser { try { this.enterOuterAlt(_localctx, 1); { - this.state = 202; + this.state = 200; _localctx._sumLabel = this.simpleId("variant label"); - this.state = 207; + this.state = 205; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.LPAREN) { { - this.state = 203; + this.state = 201; this.match(QuintParser.LPAREN); - this.state = 204; + this.state = 202; this.type(0); - this.state = 205; + this.state = 203; this.match(QuintParser.RPAREN); } } @@ -744,32 +742,32 @@ export class QuintParser extends Parser { try { this.enterOuterAlt(_localctx, 1); { - this.state = 209; + this.state = 207; this.match(QuintParser.T__11); - this.state = 210; + this.state = 208; this.qualId(); - this.state = 213; + this.state = 211; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__4) { { - this.state = 211; + this.state = 209; this.match(QuintParser.T__4); - this.state = 212; + this.state = 210; this.type(0); } } - this.state = 215; + this.state = 213; this.match(QuintParser.ASGN); - this.state = 216; + this.state = 214; this.expr(0); - this.state = 218; + this.state = 216; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__8) { { - this.state = 217; + this.state = 215; this.match(QuintParser.T__8); } } @@ -795,13 +793,13 @@ export class QuintParser extends Parser { let _localctx: QualifierContext = new QualifierContext(this._ctx, this.state); this.enterRule(_localctx, 16, QuintParser.RULE_qualifier); try { - this.state = 229; + this.state = 227; this._errHandler.sync(this); switch ( this.interpreter.adaptivePredict(this._input, 18, this._ctx) ) { case 1: this.enterOuterAlt(_localctx, 1); { - this.state = 220; + this.state = 218; this.match(QuintParser.T__12); } break; @@ -809,7 +807,7 @@ export class QuintParser extends Parser { case 2: this.enterOuterAlt(_localctx, 2); { - this.state = 221; + this.state = 219; this.match(QuintParser.T__13); } break; @@ -817,9 +815,9 @@ export class QuintParser extends Parser { case 3: this.enterOuterAlt(_localctx, 3); { - this.state = 222; + this.state = 220; this.match(QuintParser.T__14); - this.state = 223; + this.state = 221; this.match(QuintParser.T__12); } break; @@ -827,9 +825,9 @@ export class QuintParser extends Parser { case 4: this.enterOuterAlt(_localctx, 4); { - this.state = 224; + this.state = 222; this.match(QuintParser.T__14); - this.state = 225; + this.state = 223; this.match(QuintParser.T__13); } break; @@ -837,7 +835,7 @@ export class QuintParser extends Parser { case 5: this.enterOuterAlt(_localctx, 5); { - this.state = 226; + this.state = 224; this.match(QuintParser.T__15); } break; @@ -845,7 +843,7 @@ export class QuintParser extends Parser { case 6: this.enterOuterAlt(_localctx, 6); { - this.state = 227; + this.state = 225; this.match(QuintParser.T__16); } break; @@ -853,7 +851,7 @@ export class QuintParser extends Parser { case 7: this.enterOuterAlt(_localctx, 7); { - this.state = 228; + this.state = 226; this.match(QuintParser.T__17); } break; @@ -879,28 +877,28 @@ export class QuintParser extends Parser { this.enterRule(_localctx, 18, QuintParser.RULE_importMod); let _la: number; try { - this.state = 249; + this.state = 247; this._errHandler.sync(this); switch ( this.interpreter.adaptivePredict(this._input, 22, this._ctx) ) { case 1: this.enterOuterAlt(_localctx, 1); { - this.state = 231; + this.state = 229; this.match(QuintParser.T__18); - this.state = 232; + this.state = 230; this.name(); - this.state = 233; + this.state = 231; this.match(QuintParser.T__19); - this.state = 234; + this.state = 232; this.identOrStar(); - this.state = 237; + this.state = 235; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__20) { { - this.state = 235; + this.state = 233; this.match(QuintParser.T__20); - this.state = 236; + this.state = 234; this.fromSource(); } } @@ -911,30 +909,30 @@ export class QuintParser extends Parser { case 2: this.enterOuterAlt(_localctx, 2); { - this.state = 239; + this.state = 237; this.match(QuintParser.T__18); - this.state = 240; + this.state = 238; this.name(); - this.state = 243; + this.state = 241; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__21) { { - this.state = 241; + this.state = 239; this.match(QuintParser.T__21); - this.state = 242; + this.state = 240; this.name(); } } - this.state = 247; + this.state = 245; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__20) { { - this.state = 245; + this.state = 243; this.match(QuintParser.T__20); - this.state = 246; + this.state = 244; this.fromSource(); } } @@ -963,19 +961,19 @@ export class QuintParser extends Parser { this.enterRule(_localctx, 20, QuintParser.RULE_exportMod); let _la: number; try { - this.state = 262; + this.state = 260; this._errHandler.sync(this); switch ( this.interpreter.adaptivePredict(this._input, 24, this._ctx) ) { case 1: this.enterOuterAlt(_localctx, 1); { - this.state = 251; + this.state = 249; this.match(QuintParser.T__22); - this.state = 252; + this.state = 250; this.name(); - this.state = 253; + this.state = 251; this.match(QuintParser.T__19); - this.state = 254; + this.state = 252; this.identOrStar(); } break; @@ -983,18 +981,18 @@ export class QuintParser extends Parser { case 2: this.enterOuterAlt(_localctx, 2); { - this.state = 256; + this.state = 254; this.match(QuintParser.T__22); - this.state = 257; + this.state = 255; this.name(); - this.state = 260; + this.state = 258; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__21) { { - this.state = 258; + this.state = 256; this.match(QuintParser.T__21); - this.state = 259; + this.state = 257; this.name(); } } @@ -1023,60 +1021,60 @@ export class QuintParser extends Parser { this.enterRule(_localctx, 22, QuintParser.RULE_instanceMod); let _la: number; try { - this.state = 310; + this.state = 308; this._errHandler.sync(this); switch ( this.interpreter.adaptivePredict(this._input, 29, this._ctx) ) { case 1: this.enterOuterAlt(_localctx, 1); { - this.state = 264; + this.state = 262; this.match(QuintParser.T__18); - this.state = 265; + this.state = 263; this.moduleName(); - this.state = 266; + this.state = 264; this.match(QuintParser.LPAREN); { - this.state = 267; + this.state = 265; this.name(); - this.state = 268; + this.state = 266; this.match(QuintParser.ASGN); - this.state = 269; + this.state = 267; this.expr(0); - this.state = 277; + this.state = 275; this._errHandler.sync(this); _la = this._input.LA(1); while (_la === QuintParser.T__7) { { { - this.state = 270; + this.state = 268; this.match(QuintParser.T__7); - this.state = 271; + this.state = 269; this.name(); - this.state = 272; + this.state = 270; this.match(QuintParser.ASGN); - this.state = 273; + this.state = 271; this.expr(0); } } - this.state = 279; + this.state = 277; this._errHandler.sync(this); _la = this._input.LA(1); } } - this.state = 280; + this.state = 278; this.match(QuintParser.RPAREN); - this.state = 281; + this.state = 279; this.match(QuintParser.T__19); - this.state = 282; + this.state = 280; this.match(QuintParser.MUL); - this.state = 285; + this.state = 283; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__20) { { - this.state = 283; + this.state = 281; this.match(QuintParser.T__20); - this.state = 284; + this.state = 282; this.fromSource(); } } @@ -1087,54 +1085,54 @@ export class QuintParser extends Parser { case 2: this.enterOuterAlt(_localctx, 2); { - this.state = 287; + this.state = 285; this.match(QuintParser.T__18); - this.state = 288; + this.state = 286; this.moduleName(); - this.state = 289; + this.state = 287; this.match(QuintParser.LPAREN); { - this.state = 290; + this.state = 288; this.name(); - this.state = 291; + this.state = 289; this.match(QuintParser.ASGN); - this.state = 292; + this.state = 290; this.expr(0); - this.state = 300; + this.state = 298; this._errHandler.sync(this); _la = this._input.LA(1); while (_la === QuintParser.T__7) { { { - this.state = 293; + this.state = 291; this.match(QuintParser.T__7); - this.state = 294; + this.state = 292; this.name(); - this.state = 295; + this.state = 293; this.match(QuintParser.ASGN); - this.state = 296; + this.state = 294; this.expr(0); } } - this.state = 302; + this.state = 300; this._errHandler.sync(this); _la = this._input.LA(1); } } - this.state = 303; + this.state = 301; this.match(QuintParser.RPAREN); - this.state = 304; + this.state = 302; this.match(QuintParser.T__21); - this.state = 305; + this.state = 303; this.qualifiedName(); - this.state = 308; + this.state = 306; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__20) { { - this.state = 306; + this.state = 304; this.match(QuintParser.T__20); - this.state = 307; + this.state = 305; this.fromSource(); } } @@ -1164,7 +1162,7 @@ export class QuintParser extends Parser { try { this.enterOuterAlt(_localctx, 1); { - this.state = 312; + this.state = 310; this.qualId(); } } @@ -1189,7 +1187,7 @@ export class QuintParser extends Parser { try { this.enterOuterAlt(_localctx, 1); { - this.state = 314; + this.state = 312; this.qualId(); } } @@ -1214,7 +1212,7 @@ export class QuintParser extends Parser { try { this.enterOuterAlt(_localctx, 1); { - this.state = 316; + this.state = 314; this.qualId(); } } @@ -1239,7 +1237,7 @@ export class QuintParser extends Parser { try { this.enterOuterAlt(_localctx, 1); { - this.state = 318; + this.state = 316; this.match(QuintParser.STRING); } } @@ -1277,61 +1275,61 @@ export class QuintParser extends Parser { let _alt: number; this.enterOuterAlt(_localctx, 1); { - this.state = 381; + this.state = 374; this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 36, this._ctx) ) { + switch ( this.interpreter.adaptivePredict(this._input, 35, this._ctx) ) { case 1: { _localctx = new TypeOperContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 321; + this.state = 319; this.match(QuintParser.LPAREN); - this.state = 330; + this.state = 328; this._errHandler.sync(this); _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << QuintParser.T__1) | (1 << QuintParser.T__10) | (1 << QuintParser.T__27) | (1 << QuintParser.T__28) | (1 << QuintParser.T__29))) !== 0) || ((((_la - 47)) & ~0x1F) === 0 && ((1 << (_la - 47)) & ((1 << (QuintParser.SET - 47)) | (1 << (QuintParser.LIST - 47)) | (1 << (QuintParser.LPAREN - 47)) | (1 << (QuintParser.IDENTIFIER - 47)))) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << QuintParser.T__1) | (1 << QuintParser.T__27) | (1 << QuintParser.T__28) | (1 << QuintParser.T__29))) !== 0) || ((((_la - 47)) & ~0x1F) === 0 && ((1 << (_la - 47)) & ((1 << (QuintParser.SET - 47)) | (1 << (QuintParser.LIST - 47)) | (1 << (QuintParser.LPAREN - 47)) | (1 << (QuintParser.IDENTIFIER - 47)))) !== 0)) { { - this.state = 322; + this.state = 320; this.type(0); - this.state = 327; + this.state = 325; this._errHandler.sync(this); _alt = this.interpreter.adaptivePredict(this._input, 30, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 323; + this.state = 321; this.match(QuintParser.T__7); - this.state = 324; + this.state = 322; this.type(0); } } } - this.state = 329; + this.state = 327; this._errHandler.sync(this); _alt = this.interpreter.adaptivePredict(this._input, 30, this._ctx); } } } - this.state = 333; + this.state = 331; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__7) { { - this.state = 332; + this.state = 330; this.match(QuintParser.T__7); } } - this.state = 335; + this.state = 333; this.match(QuintParser.RPAREN); - this.state = 336; + this.state = 334; this.match(QuintParser.T__24); - this.state = 337; - this.type(11); + this.state = 335; + this.type(10); } break; @@ -1340,13 +1338,13 @@ export class QuintParser extends Parser { _localctx = new TypeSetContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 338; + this.state = 336; this.match(QuintParser.SET); - this.state = 339; + this.state = 337; this.match(QuintParser.T__25); - this.state = 340; + this.state = 338; this.type(0); - this.state = 341; + this.state = 339; this.match(QuintParser.T__26); } break; @@ -1356,13 +1354,13 @@ export class QuintParser extends Parser { _localctx = new TypeListContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 343; + this.state = 341; this.match(QuintParser.LIST); - this.state = 344; + this.state = 342; this.match(QuintParser.T__25); - this.state = 345; + this.state = 343; this.type(0); - this.state = 346; + this.state = 344; this.match(QuintParser.T__26); } break; @@ -1372,43 +1370,43 @@ export class QuintParser extends Parser { _localctx = new TypeTupleContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 348; + this.state = 346; this.match(QuintParser.LPAREN); - this.state = 349; + this.state = 347; this.type(0); - this.state = 350; + this.state = 348; this.match(QuintParser.T__7); - this.state = 351; + this.state = 349; this.type(0); - this.state = 356; + this.state = 354; this._errHandler.sync(this); _alt = this.interpreter.adaptivePredict(this._input, 33, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 352; + this.state = 350; this.match(QuintParser.T__7); - this.state = 353; + this.state = 351; this.type(0); } } } - this.state = 358; + this.state = 356; this._errHandler.sync(this); _alt = this.interpreter.adaptivePredict(this._input, 33, this._ctx); } - this.state = 360; + this.state = 358; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__7) { { - this.state = 359; + this.state = 357; this.match(QuintParser.T__7); } } - this.state = 362; + this.state = 360; this.match(QuintParser.RPAREN); } break; @@ -1418,101 +1416,73 @@ export class QuintParser extends Parser { _localctx = new TypeRecContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 364; + this.state = 362; this.match(QuintParser.T__1); - this.state = 365; + this.state = 363; this.row(); - this.state = 366; + this.state = 364; this.match(QuintParser.T__2); } break; case 6: - { - _localctx = new TypeUnionRecContext(_localctx); - this._ctx = _localctx; - _prevctx = _localctx; - this.state = 369; - this._errHandler.sync(this); - _alt = 1; - do { - switch (_alt) { - case 1: - { - { - this.state = 368; - this.typeUnionRecOne(); - } - } - break; - default: - throw new NoViableAltException(this); - } - this.state = 371; - this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 35, this._ctx); - } while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER); - } - break; - - case 7: { _localctx = new TypeIntContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 373; + this.state = 366; this.match(QuintParser.T__27); } break; - case 8: + case 7: { _localctx = new TypeStrContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 374; + this.state = 367; this.match(QuintParser.T__28); } break; - case 9: + case 8: { _localctx = new TypeBoolContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 375; + this.state = 368; this.match(QuintParser.T__29); } break; - case 10: + case 9: { _localctx = new TypeConstOrVarContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 376; + this.state = 369; this.qualId(); } break; - case 11: + case 10: { _localctx = new TypeParenContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 377; + this.state = 370; this.match(QuintParser.LPAREN); - this.state = 378; + this.state = 371; this.type(0); - this.state = 379; + this.state = 372; this.match(QuintParser.RPAREN); } break; } this._ctx._stop = this._input.tryLT(-1); - this.state = 391; + this.state = 384; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 38, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 37, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -1520,21 +1490,21 @@ export class QuintParser extends Parser { } _prevctx = _localctx; { - this.state = 389; + this.state = 382; this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 37, this._ctx) ) { + switch ( this.interpreter.adaptivePredict(this._input, 36, this._ctx) ) { case 1: { _localctx = new TypeFunContext(new TypeContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_type); - this.state = 383; - if (!(this.precpred(this._ctx, 13))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 13)"); + this.state = 376; + if (!(this.precpred(this._ctx, 12))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 12)"); } - this.state = 384; + this.state = 377; this.match(QuintParser.T__23); - this.state = 385; - this.type(13); + this.state = 378; + this.type(12); } break; @@ -1542,22 +1512,22 @@ export class QuintParser extends Parser { { _localctx = new TypeOperContext(new TypeContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_type); - this.state = 386; - if (!(this.precpred(this._ctx, 12))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 12)"); + this.state = 379; + if (!(this.precpred(this._ctx, 11))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 11)"); } - this.state = 387; + this.state = 380; this.match(QuintParser.T__24); - this.state = 388; - this.type(12); + this.state = 381; + this.type(11); } break; } } } - this.state = 393; + this.state = 386; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 38, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 37, this._ctx); } } } @@ -1576,133 +1546,77 @@ export class QuintParser extends Parser { return _localctx; } // @RuleVersion(0) - public typeUnionRecOne(): TypeUnionRecOneContext { - let _localctx: TypeUnionRecOneContext = new TypeUnionRecOneContext(this._ctx, this.state); - this.enterRule(_localctx, 34, QuintParser.RULE_typeUnionRecOne); - let _la: number; - try { - this.enterOuterAlt(_localctx, 1); - { - this.state = 394; - this.match(QuintParser.T__10); - this.state = 395; - this.match(QuintParser.T__1); - this.state = 396; - this.qualId(); - this.state = 397; - this.match(QuintParser.T__4); - this.state = 398; - this.match(QuintParser.STRING); - this.state = 401; - this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 39, this._ctx) ) { - case 1: - { - this.state = 399; - this.match(QuintParser.T__7); - this.state = 400; - this.row(); - } - break; - } - this.state = 404; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === QuintParser.T__7) { - { - this.state = 403; - this.match(QuintParser.T__7); - } - } - - this.state = 406; - this.match(QuintParser.T__2); - } - } - catch (re) { - if (re instanceof RecognitionException) { - _localctx.exception = re; - this._errHandler.reportError(this, re); - this._errHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return _localctx; - } - // @RuleVersion(0) public row(): RowContext { let _localctx: RowContext = new RowContext(this._ctx, this.state); - this.enterRule(_localctx, 36, QuintParser.RULE_row); + this.enterRule(_localctx, 34, QuintParser.RULE_row); let _la: number; try { let _alt: number; - this.state = 431; + this.state = 410; this._errHandler.sync(this); switch (this._input.LA(1)) { case QuintParser.T__2: - case QuintParser.T__7: case QuintParser.IDENTIFIER: this.enterOuterAlt(_localctx, 1); { - this.state = 415; + this.state = 394; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 41, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 38, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 408; + this.state = 387; this.rowLabel(); - this.state = 409; + this.state = 388; this.match(QuintParser.T__4); - this.state = 410; + this.state = 389; this.type(0); - this.state = 411; + this.state = 390; this.match(QuintParser.T__7); } } } - this.state = 417; + this.state = 396; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 41, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 38, this._ctx); } - this.state = 427; + this.state = 406; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.IDENTIFIER) { { { - this.state = 418; + this.state = 397; this.rowLabel(); - this.state = 419; + this.state = 398; this.match(QuintParser.T__4); - this.state = 420; + this.state = 399; this.type(0); } - this.state = 425; + this.state = 404; this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 42, this._ctx) ) { - case 1: + switch (this._input.LA(1)) { + case QuintParser.T__7: { - this.state = 422; + this.state = 401; this.match(QuintParser.T__7); } break; - - case 2: + case QuintParser.T__10: { - this.state = 423; + this.state = 402; this.match(QuintParser.T__10); { - this.state = 424; + this.state = 403; _localctx._rowVar = this.match(QuintParser.IDENTIFIER); } } break; + case QuintParser.T__2: + break; + default: + break; } } } @@ -1712,10 +1626,10 @@ export class QuintParser extends Parser { case QuintParser.T__10: this.enterOuterAlt(_localctx, 2); { - this.state = 429; + this.state = 408; this.match(QuintParser.T__10); { - this.state = 430; + this.state = 409; _localctx._rowVar = this.match(QuintParser.IDENTIFIER); } } @@ -1741,11 +1655,11 @@ export class QuintParser extends Parser { // @RuleVersion(0) public rowLabel(): RowLabelContext { let _localctx: RowLabelContext = new RowLabelContext(this._ctx, this.state); - this.enterRule(_localctx, 38, QuintParser.RULE_rowLabel); + this.enterRule(_localctx, 36, QuintParser.RULE_rowLabel); try { this.enterOuterAlt(_localctx, 1); { - this.state = 433; + this.state = 412; this.simpleId("record"); } } @@ -1776,23 +1690,23 @@ export class QuintParser extends Parser { let _parentState: number = this.state; let _localctx: ExprContext = new ExprContext(this._ctx, _parentState); let _prevctx: ExprContext = _localctx; - let _startState: number = 40; - this.enterRecursionRule(_localctx, 40, QuintParser.RULE_expr, _p); + let _startState: number = 38; + this.enterRecursionRule(_localctx, 38, QuintParser.RULE_expr, _p); let _la: number; try { let _alt: number; this.enterOuterAlt(_localctx, 1); { - this.state = 585; + this.state = 564; this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 62, this._ctx) ) { + switch ( this.interpreter.adaptivePredict(this._input, 59, this._ctx) ) { case 1: { _localctx = new LambdaConsContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 436; + this.state = 415; this.lambda(); } break; @@ -1802,21 +1716,21 @@ export class QuintParser extends Parser { _localctx = new OperAppContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 437; + this.state = 416; this.normalCallName(); - this.state = 438; + this.state = 417; this.match(QuintParser.LPAREN); - this.state = 440; + this.state = 419; this._errHandler.sync(this); _la = this._input.LA(1); if (((((_la - 2)) & ~0x1F) === 0 && ((1 << (_la - 2)) & ((1 << (QuintParser.T__1 - 2)) | (1 << (QuintParser.T__11 - 2)) | (1 << (QuintParser.T__12 - 2)) | (1 << (QuintParser.T__13 - 2)) | (1 << (QuintParser.T__14 - 2)) | (1 << (QuintParser.T__15 - 2)) | (1 << (QuintParser.T__16 - 2)) | (1 << (QuintParser.T__17 - 2)) | (1 << (QuintParser.T__25 - 2)) | (1 << (QuintParser.T__32 - 2)))) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & ((1 << (QuintParser.T__33 - 34)) | (1 << (QuintParser.T__34 - 34)) | (1 << (QuintParser.T__36 - 34)) | (1 << (QuintParser.STRING - 34)) | (1 << (QuintParser.BOOL - 34)) | (1 << (QuintParser.INT - 34)) | (1 << (QuintParser.AND - 34)) | (1 << (QuintParser.OR - 34)) | (1 << (QuintParser.IFF - 34)) | (1 << (QuintParser.IMPLIES - 34)) | (1 << (QuintParser.SET - 34)) | (1 << (QuintParser.LIST - 34)) | (1 << (QuintParser.MAP - 34)) | (1 << (QuintParser.MATCH - 34)) | (1 << (QuintParser.MINUS - 34)) | (1 << (QuintParser.LPAREN - 34)) | (1 << (QuintParser.IDENTIFIER - 34)))) !== 0)) { { - this.state = 439; + this.state = 418; this.argList(); } } - this.state = 442; + this.state = 421; this.match(QuintParser.RPAREN); } break; @@ -1826,9 +1740,9 @@ export class QuintParser extends Parser { _localctx = new UminusContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 444; + this.state = 423; this.match(QuintParser.MINUS); - this.state = 445; + this.state = 424; this.expr(25); } break; @@ -1838,13 +1752,13 @@ export class QuintParser extends Parser { _localctx = new AsgnContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 446; + this.state = 425; this.qualId(); - this.state = 447; + this.state = 426; this.match(QuintParser.T__31); - this.state = 448; + this.state = 427; this.match(QuintParser.ASGN); - this.state = 449; + this.state = 428; this.expr(21); } break; @@ -1854,41 +1768,41 @@ export class QuintParser extends Parser { _localctx = new AndExprContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 451; + this.state = 430; this.match(QuintParser.AND); - this.state = 452; + this.state = 431; this.match(QuintParser.T__1); - this.state = 453; + this.state = 432; this.expr(0); - this.state = 458; + this.state = 437; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 46, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 43, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 454; + this.state = 433; this.match(QuintParser.T__7); - this.state = 455; + this.state = 434; this.expr(0); } } } - this.state = 460; + this.state = 439; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 46, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 43, this._ctx); } - this.state = 462; + this.state = 441; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__7) { { - this.state = 461; + this.state = 440; this.match(QuintParser.T__7); } } - this.state = 464; + this.state = 443; this.match(QuintParser.T__2); } break; @@ -1898,41 +1812,41 @@ export class QuintParser extends Parser { _localctx = new OrExprContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 466; + this.state = 445; this.match(QuintParser.OR); - this.state = 467; + this.state = 446; this.match(QuintParser.T__1); - this.state = 468; + this.state = 447; this.expr(0); - this.state = 473; + this.state = 452; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 48, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 45, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 469; + this.state = 448; this.match(QuintParser.T__7); - this.state = 470; + this.state = 449; this.expr(0); } } } - this.state = 475; + this.state = 454; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 48, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 45, this._ctx); } - this.state = 477; + this.state = 456; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__7) { { - this.state = 476; + this.state = 455; this.match(QuintParser.T__7); } } - this.state = 479; + this.state = 458; this.match(QuintParser.T__2); } break; @@ -1942,7 +1856,7 @@ export class QuintParser extends Parser { _localctx = new MatchContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 481; + this.state = 460; this.matchSumExpr(); } break; @@ -1952,41 +1866,41 @@ export class QuintParser extends Parser { _localctx = new ActionAllContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 482; + this.state = 461; this.match(QuintParser.T__32); - this.state = 483; + this.state = 462; this.match(QuintParser.T__1); - this.state = 484; + this.state = 463; this.expr(0); - this.state = 489; + this.state = 468; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 50, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 47, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 485; + this.state = 464; this.match(QuintParser.T__7); - this.state = 486; + this.state = 465; this.expr(0); } } } - this.state = 491; + this.state = 470; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 50, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 47, this._ctx); } - this.state = 493; + this.state = 472; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__7) { { - this.state = 492; + this.state = 471; this.match(QuintParser.T__7); } } - this.state = 495; + this.state = 474; this.match(QuintParser.T__2); } break; @@ -1996,41 +1910,41 @@ export class QuintParser extends Parser { _localctx = new ActionAnyContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 497; + this.state = 476; this.match(QuintParser.T__33); - this.state = 498; + this.state = 477; this.match(QuintParser.T__1); - this.state = 499; + this.state = 478; this.expr(0); - this.state = 504; + this.state = 483; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 52, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 49, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 500; + this.state = 479; this.match(QuintParser.T__7); - this.state = 501; + this.state = 480; this.expr(0); } } } - this.state = 506; + this.state = 485; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 52, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 49, this._ctx); } - this.state = 508; + this.state = 487; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__7) { { - this.state = 507; + this.state = 486; this.match(QuintParser.T__7); } } - this.state = 510; + this.state = 489; this.match(QuintParser.T__2); } break; @@ -2040,30 +1954,30 @@ export class QuintParser extends Parser { _localctx = new LiteralOrIdContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 516; + this.state = 495; this._errHandler.sync(this); switch (this._input.LA(1)) { case QuintParser.IDENTIFIER: { - this.state = 512; + this.state = 491; this.qualId(); } break; case QuintParser.INT: { - this.state = 513; + this.state = 492; this.match(QuintParser.INT); } break; case QuintParser.BOOL: { - this.state = 514; + this.state = 493; this.match(QuintParser.BOOL); } break; case QuintParser.STRING: { - this.state = 515; + this.state = 494; this.match(QuintParser.STRING); } break; @@ -2078,43 +1992,43 @@ export class QuintParser extends Parser { _localctx = new TupleContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 518; + this.state = 497; this.match(QuintParser.LPAREN); - this.state = 519; + this.state = 498; this.expr(0); - this.state = 520; + this.state = 499; this.match(QuintParser.T__7); - this.state = 521; + this.state = 500; this.expr(0); - this.state = 526; + this.state = 505; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 55, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 52, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 522; + this.state = 501; this.match(QuintParser.T__7); - this.state = 523; + this.state = 502; this.expr(0); } } } - this.state = 528; + this.state = 507; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 55, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 52, this._ctx); } - this.state = 530; + this.state = 509; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__7) { { - this.state = 529; + this.state = 508; this.match(QuintParser.T__7); } } - this.state = 532; + this.state = 511; this.match(QuintParser.RPAREN); } break; @@ -2124,39 +2038,39 @@ export class QuintParser extends Parser { _localctx = new RecordContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 534; + this.state = 513; this.match(QuintParser.T__1); - this.state = 535; + this.state = 514; this.recElem(); - this.state = 540; + this.state = 519; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 57, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 54, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 536; + this.state = 515; this.match(QuintParser.T__7); - this.state = 537; + this.state = 516; this.recElem(); } } } - this.state = 542; + this.state = 521; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 57, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 54, this._ctx); } - this.state = 544; + this.state = 523; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__7) { { - this.state = 543; + this.state = 522; this.match(QuintParser.T__7); } } - this.state = 546; + this.state = 525; this.match(QuintParser.T__2); } break; @@ -2166,47 +2080,47 @@ export class QuintParser extends Parser { _localctx = new ListContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 548; + this.state = 527; this.match(QuintParser.T__25); - this.state = 557; + this.state = 536; this._errHandler.sync(this); _la = this._input.LA(1); if (((((_la - 2)) & ~0x1F) === 0 && ((1 << (_la - 2)) & ((1 << (QuintParser.T__1 - 2)) | (1 << (QuintParser.T__11 - 2)) | (1 << (QuintParser.T__12 - 2)) | (1 << (QuintParser.T__13 - 2)) | (1 << (QuintParser.T__14 - 2)) | (1 << (QuintParser.T__15 - 2)) | (1 << (QuintParser.T__16 - 2)) | (1 << (QuintParser.T__17 - 2)) | (1 << (QuintParser.T__25 - 2)) | (1 << (QuintParser.T__32 - 2)))) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & ((1 << (QuintParser.T__33 - 34)) | (1 << (QuintParser.T__34 - 34)) | (1 << (QuintParser.T__36 - 34)) | (1 << (QuintParser.STRING - 34)) | (1 << (QuintParser.BOOL - 34)) | (1 << (QuintParser.INT - 34)) | (1 << (QuintParser.AND - 34)) | (1 << (QuintParser.OR - 34)) | (1 << (QuintParser.IFF - 34)) | (1 << (QuintParser.IMPLIES - 34)) | (1 << (QuintParser.SET - 34)) | (1 << (QuintParser.LIST - 34)) | (1 << (QuintParser.MAP - 34)) | (1 << (QuintParser.MATCH - 34)) | (1 << (QuintParser.MINUS - 34)) | (1 << (QuintParser.LPAREN - 34)) | (1 << (QuintParser.IDENTIFIER - 34)))) !== 0)) { { - this.state = 549; + this.state = 528; this.expr(0); - this.state = 554; + this.state = 533; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 59, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 56, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 550; + this.state = 529; this.match(QuintParser.T__7); - this.state = 551; + this.state = 530; this.expr(0); } } } - this.state = 556; + this.state = 535; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 59, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 56, this._ctx); } } } - this.state = 560; + this.state = 539; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__7) { { - this.state = 559; + this.state = 538; this.match(QuintParser.T__7); } } - this.state = 562; + this.state = 541; this.match(QuintParser.T__26); } break; @@ -2216,19 +2130,19 @@ export class QuintParser extends Parser { _localctx = new IfElseContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 563; + this.state = 542; this.match(QuintParser.T__34); - this.state = 564; + this.state = 543; this.match(QuintParser.LPAREN); - this.state = 565; + this.state = 544; this.expr(0); - this.state = 566; + this.state = 545; this.match(QuintParser.RPAREN); - this.state = 567; + this.state = 546; this.expr(0); - this.state = 568; + this.state = 547; this.match(QuintParser.T__35); - this.state = 569; + this.state = 548; this.expr(5); } break; @@ -2238,9 +2152,9 @@ export class QuintParser extends Parser { _localctx = new LetInContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 571; + this.state = 550; this.operDef(); - this.state = 572; + this.state = 551; this.expr(4); } break; @@ -2250,9 +2164,9 @@ export class QuintParser extends Parser { _localctx = new NondetContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 574; + this.state = 553; this.nondetOperDef(); - this.state = 575; + this.state = 554; this.expr(3); } break; @@ -2262,11 +2176,11 @@ export class QuintParser extends Parser { _localctx = new ParenContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 577; + this.state = 556; this.match(QuintParser.LPAREN); - this.state = 578; + this.state = 557; this.expr(0); - this.state = 579; + this.state = 558; this.match(QuintParser.RPAREN); } break; @@ -2276,19 +2190,19 @@ export class QuintParser extends Parser { _localctx = new BracesContext(_localctx); this._ctx = _localctx; _prevctx = _localctx; - this.state = 581; + this.state = 560; this.match(QuintParser.T__1); - this.state = 582; + this.state = 561; this.expr(0); - this.state = 583; + this.state = 562; this.match(QuintParser.T__2); } break; } this._ctx._stop = this._input.tryLT(-1); - this.state = 636; + this.state = 615; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 66, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 63, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { if (this._parseListeners != null) { @@ -2296,20 +2210,20 @@ export class QuintParser extends Parser { } _prevctx = _localctx; { - this.state = 634; + this.state = 613; this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 65, this._ctx) ) { + switch ( this.interpreter.adaptivePredict(this._input, 62, this._ctx) ) { case 1: { _localctx = new PowContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 587; + this.state = 566; if (!(this.precpred(this._ctx, 26))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 26)"); } - this.state = 588; + this.state = 567; (_localctx as PowContext)._op = this.match(QuintParser.T__30); - this.state = 589; + this.state = 568; this.expr(26); } break; @@ -2318,11 +2232,11 @@ export class QuintParser extends Parser { { _localctx = new MultDivContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 590; + this.state = 569; if (!(this.precpred(this._ctx, 24))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 24)"); } - this.state = 591; + this.state = 570; (_localctx as MultDivContext)._op = this._input.LT(1); _la = this._input.LA(1); if (!(((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & ((1 << (QuintParser.MUL - 53)) | (1 << (QuintParser.DIV - 53)) | (1 << (QuintParser.MOD - 53)))) !== 0))) { @@ -2335,7 +2249,7 @@ export class QuintParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 592; + this.state = 571; this.expr(25); } break; @@ -2344,11 +2258,11 @@ export class QuintParser extends Parser { { _localctx = new PlusMinusContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 593; + this.state = 572; if (!(this.precpred(this._ctx, 23))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 23)"); } - this.state = 594; + this.state = 573; (_localctx as PlusMinusContext)._op = this._input.LT(1); _la = this._input.LA(1); if (!(_la === QuintParser.PLUS || _la === QuintParser.MINUS)) { @@ -2361,7 +2275,7 @@ export class QuintParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 595; + this.state = 574; this.expr(24); } break; @@ -2370,11 +2284,11 @@ export class QuintParser extends Parser { { _localctx = new RelationsContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 596; + this.state = 575; if (!(this.precpred(this._ctx, 22))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 22)"); } - this.state = 597; + this.state = 576; (_localctx as RelationsContext)._op = this._input.LT(1); _la = this._input.LA(1); if (!(((((_la - 56)) & ~0x1F) === 0 && ((1 << (_la - 56)) & ((1 << (QuintParser.GT - 56)) | (1 << (QuintParser.LT - 56)) | (1 << (QuintParser.GE - 56)) | (1 << (QuintParser.LE - 56)) | (1 << (QuintParser.NE - 56)) | (1 << (QuintParser.EQ - 56)))) !== 0))) { @@ -2387,7 +2301,7 @@ export class QuintParser extends Parser { this._errHandler.reportMatch(this); this.consume(); } - this.state = 598; + this.state = 577; this.expr(23); } break; @@ -2396,13 +2310,13 @@ export class QuintParser extends Parser { { _localctx = new ErrorEqContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 599; + this.state = 578; if (!(this.precpred(this._ctx, 20))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 20)"); } - this.state = 600; + this.state = 579; this.match(QuintParser.ASGN); - this.state = 601; + this.state = 580; this.expr(21); const m = "[QNT006] unexpected '=', did you mean '=='?" @@ -2415,13 +2329,13 @@ export class QuintParser extends Parser { { _localctx = new AndContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 604; + this.state = 583; if (!(this.precpred(this._ctx, 18))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 18)"); } - this.state = 605; + this.state = 584; this.match(QuintParser.AND); - this.state = 606; + this.state = 585; this.expr(19); } break; @@ -2430,13 +2344,13 @@ export class QuintParser extends Parser { { _localctx = new OrContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 607; + this.state = 586; if (!(this.precpred(this._ctx, 16))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 16)"); } - this.state = 608; + this.state = 587; this.match(QuintParser.OR); - this.state = 609; + this.state = 588; this.expr(17); } break; @@ -2445,13 +2359,13 @@ export class QuintParser extends Parser { { _localctx = new IffContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 610; + this.state = 589; if (!(this.precpred(this._ctx, 15))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 15)"); } - this.state = 611; + this.state = 590; this.match(QuintParser.IFF); - this.state = 612; + this.state = 591; this.expr(16); } break; @@ -2460,13 +2374,13 @@ export class QuintParser extends Parser { { _localctx = new ImpliesContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 613; + this.state = 592; if (!(this.precpred(this._ctx, 14))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 14)"); } - this.state = 614; + this.state = 593; this.match(QuintParser.IMPLIES); - this.state = 615; + this.state = 594; this.expr(15); } break; @@ -2475,13 +2389,13 @@ export class QuintParser extends Parser { { _localctx = new PairContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 616; + this.state = 595; if (!(this.precpred(this._ctx, 8))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 8)"); } - this.state = 617; + this.state = 596; this.match(QuintParser.T__23); - this.state = 618; + this.state = 597; this.expr(9); } break; @@ -2490,32 +2404,32 @@ export class QuintParser extends Parser { { _localctx = new DotCallContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 619; + this.state = 598; if (!(this.precpred(this._ctx, 30))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 30)"); } - this.state = 620; + this.state = 599; this.match(QuintParser.T__19); - this.state = 621; + this.state = 600; this.nameAfterDot(); - this.state = 627; + this.state = 606; this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 64, this._ctx) ) { + switch ( this.interpreter.adaptivePredict(this._input, 61, this._ctx) ) { case 1: { - this.state = 622; + this.state = 601; this.match(QuintParser.LPAREN); - this.state = 624; + this.state = 603; this._errHandler.sync(this); _la = this._input.LA(1); if (((((_la - 2)) & ~0x1F) === 0 && ((1 << (_la - 2)) & ((1 << (QuintParser.T__1 - 2)) | (1 << (QuintParser.T__11 - 2)) | (1 << (QuintParser.T__12 - 2)) | (1 << (QuintParser.T__13 - 2)) | (1 << (QuintParser.T__14 - 2)) | (1 << (QuintParser.T__15 - 2)) | (1 << (QuintParser.T__16 - 2)) | (1 << (QuintParser.T__17 - 2)) | (1 << (QuintParser.T__25 - 2)) | (1 << (QuintParser.T__32 - 2)))) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & ((1 << (QuintParser.T__33 - 34)) | (1 << (QuintParser.T__34 - 34)) | (1 << (QuintParser.T__36 - 34)) | (1 << (QuintParser.STRING - 34)) | (1 << (QuintParser.BOOL - 34)) | (1 << (QuintParser.INT - 34)) | (1 << (QuintParser.AND - 34)) | (1 << (QuintParser.OR - 34)) | (1 << (QuintParser.IFF - 34)) | (1 << (QuintParser.IMPLIES - 34)) | (1 << (QuintParser.SET - 34)) | (1 << (QuintParser.LIST - 34)) | (1 << (QuintParser.MAP - 34)) | (1 << (QuintParser.MATCH - 34)) | (1 << (QuintParser.MINUS - 34)) | (1 << (QuintParser.LPAREN - 34)) | (1 << (QuintParser.IDENTIFIER - 34)))) !== 0)) { { - this.state = 623; + this.state = 602; this.argList(); } } - this.state = 626; + this.state = 605; this.match(QuintParser.RPAREN); } break; @@ -2527,24 +2441,24 @@ export class QuintParser extends Parser { { _localctx = new ListAppContext(new ExprContext(_parentctx, _parentState)); this.pushNewRecursionContext(_localctx, _startState, QuintParser.RULE_expr); - this.state = 629; + this.state = 608; if (!(this.precpred(this._ctx, 27))) { throw this.createFailedPredicateException("this.precpred(this._ctx, 27)"); } - this.state = 630; + this.state = 609; this.match(QuintParser.T__25); - this.state = 631; + this.state = 610; this.expr(0); - this.state = 632; + this.state = 611; this.match(QuintParser.T__26); } break; } } } - this.state = 638; + this.state = 617; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 66, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 63, this._ctx); } } } @@ -2565,48 +2479,48 @@ export class QuintParser extends Parser { // @RuleVersion(0) public matchSumExpr(): MatchSumExprContext { let _localctx: MatchSumExprContext = new MatchSumExprContext(this._ctx, this.state); - this.enterRule(_localctx, 42, QuintParser.RULE_matchSumExpr); + this.enterRule(_localctx, 40, QuintParser.RULE_matchSumExpr); let _la: number; try { this.enterOuterAlt(_localctx, 1); { - this.state = 639; + this.state = 618; this.match(QuintParser.MATCH); - this.state = 640; + this.state = 619; this.expr(0); - this.state = 641; + this.state = 620; this.match(QuintParser.T__1); - this.state = 643; + this.state = 622; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.T__10) { { - this.state = 642; + this.state = 621; this.match(QuintParser.T__10); } } - this.state = 645; + this.state = 624; _localctx._matchSumCase = this.matchSumCase(); _localctx._matchCase.push(_localctx._matchSumCase); - this.state = 650; + this.state = 629; this._errHandler.sync(this); _la = this._input.LA(1); while (_la === QuintParser.T__10) { { { - this.state = 646; + this.state = 625; this.match(QuintParser.T__10); - this.state = 647; + this.state = 626; _localctx._matchSumCase = this.matchSumCase(); _localctx._matchCase.push(_localctx._matchSumCase); } } - this.state = 652; + this.state = 631; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 653; + this.state = 632; this.match(QuintParser.T__2); } } @@ -2627,31 +2541,31 @@ export class QuintParser extends Parser { // @RuleVersion(0) public matchSumCase(): MatchSumCaseContext { let _localctx: MatchSumCaseContext = new MatchSumCaseContext(this._ctx, this.state); - this.enterRule(_localctx, 44, QuintParser.RULE_matchSumCase); + this.enterRule(_localctx, 42, QuintParser.RULE_matchSumCase); try { this.enterOuterAlt(_localctx, 1); { - this.state = 657; + this.state = 636; this._errHandler.sync(this); switch (this._input.LA(1)) { case QuintParser.IDENTIFIER: { - this.state = 655; + this.state = 634; _localctx._variantMatch = this.matchSumVariant(); } break; case QuintParser.T__36: { - this.state = 656; + this.state = 635; _localctx._wildCardMatch = this.match(QuintParser.T__36); } break; default: throw new NoViableAltException(this); } - this.state = 659; + this.state = 638; this.match(QuintParser.T__24); - this.state = 660; + this.state = 639; this.expr(0); } } @@ -2672,41 +2586,41 @@ export class QuintParser extends Parser { // @RuleVersion(0) public matchSumVariant(): MatchSumVariantContext { let _localctx: MatchSumVariantContext = new MatchSumVariantContext(this._ctx, this.state); - this.enterRule(_localctx, 46, QuintParser.RULE_matchSumVariant); + this.enterRule(_localctx, 44, QuintParser.RULE_matchSumVariant); let _la: number; try { this.enterOuterAlt(_localctx, 1); { { - this.state = 662; + this.state = 641; _localctx._variantLabel = this.simpleId("variant label"); } - this.state = 669; + this.state = 648; this._errHandler.sync(this); _la = this._input.LA(1); if (_la === QuintParser.LPAREN) { { - this.state = 663; + this.state = 642; this.match(QuintParser.LPAREN); - this.state = 666; + this.state = 645; this._errHandler.sync(this); switch (this._input.LA(1)) { case QuintParser.IDENTIFIER: { - this.state = 664; + this.state = 643; _localctx._variantParam = this.simpleId("match case parameter"); } break; case QuintParser.T__36: { - this.state = 665; + this.state = 644; this.match(QuintParser.T__36); } break; default: throw new NoViableAltException(this); } - this.state = 668; + this.state = 647; this.match(QuintParser.RPAREN); } } @@ -2730,17 +2644,17 @@ export class QuintParser extends Parser { // @RuleVersion(0) public declarationOrExpr(): DeclarationOrExprContext { let _localctx: DeclarationOrExprContext = new DeclarationOrExprContext(this._ctx, this.state); - this.enterRule(_localctx, 48, QuintParser.RULE_declarationOrExpr); + this.enterRule(_localctx, 46, QuintParser.RULE_declarationOrExpr); try { - this.state = 680; + this.state = 659; this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 72, this._ctx) ) { + switch ( this.interpreter.adaptivePredict(this._input, 69, this._ctx) ) { case 1: this.enterOuterAlt(_localctx, 1); { - this.state = 671; + this.state = 650; this.declaration(); - this.state = 672; + this.state = 651; this.match(QuintParser.EOF); } break; @@ -2748,9 +2662,9 @@ export class QuintParser extends Parser { case 2: this.enterOuterAlt(_localctx, 2); { - this.state = 674; + this.state = 653; this.expr(0); - this.state = 675; + this.state = 654; this.match(QuintParser.EOF); } break; @@ -2758,9 +2672,9 @@ export class QuintParser extends Parser { case 3: this.enterOuterAlt(_localctx, 3); { - this.state = 677; + this.state = 656; this.match(QuintParser.DOCCOMMENT); - this.state = 678; + this.state = 657; this.match(QuintParser.EOF); } break; @@ -2768,7 +2682,7 @@ export class QuintParser extends Parser { case 4: this.enterOuterAlt(_localctx, 4); { - this.state = 679; + this.state = 658; this.match(QuintParser.EOF); } break; @@ -2791,15 +2705,15 @@ export class QuintParser extends Parser { // @RuleVersion(0) public lambda(): LambdaContext { let _localctx: LambdaContext = new LambdaContext(this._ctx, this.state); - this.enterRule(_localctx, 50, QuintParser.RULE_lambda); + this.enterRule(_localctx, 48, QuintParser.RULE_lambda); try { - this.state = 684; + this.state = 663; this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 73, this._ctx) ) { + switch ( this.interpreter.adaptivePredict(this._input, 70, this._ctx) ) { case 1: this.enterOuterAlt(_localctx, 1); { - this.state = 682; + this.state = 661; this.lambdaUnsugared(); } break; @@ -2807,7 +2721,7 @@ export class QuintParser extends Parser { case 2: this.enterOuterAlt(_localctx, 2); { - this.state = 683; + this.state = 662; this.lambdaTupleSugar(); } break; @@ -2830,52 +2744,52 @@ export class QuintParser extends Parser { // @RuleVersion(0) public lambdaUnsugared(): LambdaUnsugaredContext { let _localctx: LambdaUnsugaredContext = new LambdaUnsugaredContext(this._ctx, this.state); - this.enterRule(_localctx, 52, QuintParser.RULE_lambdaUnsugared); + this.enterRule(_localctx, 50, QuintParser.RULE_lambdaUnsugared); let _la: number; try { - this.state = 703; + this.state = 682; this._errHandler.sync(this); switch (this._input.LA(1)) { case QuintParser.T__36: case QuintParser.IDENTIFIER: this.enterOuterAlt(_localctx, 1); { - this.state = 686; + this.state = 665; this.parameter(); - this.state = 687; + this.state = 666; this.match(QuintParser.T__24); - this.state = 688; + this.state = 667; this.expr(0); } break; case QuintParser.LPAREN: this.enterOuterAlt(_localctx, 2); { - this.state = 690; + this.state = 669; this.match(QuintParser.LPAREN); - this.state = 691; + this.state = 670; this.parameter(); - this.state = 696; + this.state = 675; this._errHandler.sync(this); _la = this._input.LA(1); while (_la === QuintParser.T__7) { { { - this.state = 692; + this.state = 671; this.match(QuintParser.T__7); - this.state = 693; + this.state = 672; this.parameter(); } } - this.state = 698; + this.state = 677; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 699; + this.state = 678; this.match(QuintParser.RPAREN); - this.state = 700; + this.state = 679; this.match(QuintParser.T__24); - this.state = 701; + this.state = 680; this.expr(0); } break; @@ -2900,40 +2814,40 @@ export class QuintParser extends Parser { // @RuleVersion(0) public lambdaTupleSugar(): LambdaTupleSugarContext { let _localctx: LambdaTupleSugarContext = new LambdaTupleSugarContext(this._ctx, this.state); - this.enterRule(_localctx, 54, QuintParser.RULE_lambdaTupleSugar); + this.enterRule(_localctx, 52, QuintParser.RULE_lambdaTupleSugar); let _la: number; try { this.enterOuterAlt(_localctx, 1); { - this.state = 705; + this.state = 684; this.match(QuintParser.LPAREN); - this.state = 706; + this.state = 685; this.match(QuintParser.LPAREN); - this.state = 707; + this.state = 686; this.parameter(); - this.state = 710; + this.state = 689; this._errHandler.sync(this); _la = this._input.LA(1); do { { { - this.state = 708; + this.state = 687; this.match(QuintParser.T__7); - this.state = 709; + this.state = 688; this.parameter(); } } - this.state = 712; + this.state = 691; this._errHandler.sync(this); _la = this._input.LA(1); } while (_la === QuintParser.T__7); - this.state = 714; + this.state = 693; this.match(QuintParser.RPAREN); - this.state = 715; + this.state = 694; this.match(QuintParser.RPAREN); - this.state = 716; + this.state = 695; this.match(QuintParser.T__24); - this.state = 717; + this.state = 696; this.expr(0); } } @@ -2954,22 +2868,22 @@ export class QuintParser extends Parser { // @RuleVersion(0) public identOrHole(): IdentOrHoleContext { let _localctx: IdentOrHoleContext = new IdentOrHoleContext(this._ctx, this.state); - this.enterRule(_localctx, 56, QuintParser.RULE_identOrHole); + this.enterRule(_localctx, 54, QuintParser.RULE_identOrHole); try { - this.state = 721; + this.state = 700; this._errHandler.sync(this); switch (this._input.LA(1)) { case QuintParser.T__36: this.enterOuterAlt(_localctx, 1); { - this.state = 719; + this.state = 698; this.match(QuintParser.T__36); } break; case QuintParser.IDENTIFIER: this.enterOuterAlt(_localctx, 2); { - this.state = 720; + this.state = 699; this.qualId(); } break; @@ -2994,11 +2908,11 @@ export class QuintParser extends Parser { // @RuleVersion(0) public parameter(): ParameterContext { let _localctx: ParameterContext = new ParameterContext(this._ctx, this.state); - this.enterRule(_localctx, 58, QuintParser.RULE_parameter); + this.enterRule(_localctx, 56, QuintParser.RULE_parameter); try { this.enterOuterAlt(_localctx, 1); { - this.state = 723; + this.state = 702; this.identOrHole(); } } @@ -3019,22 +2933,22 @@ export class QuintParser extends Parser { // @RuleVersion(0) public identOrStar(): IdentOrStarContext { let _localctx: IdentOrStarContext = new IdentOrStarContext(this._ctx, this.state); - this.enterRule(_localctx, 60, QuintParser.RULE_identOrStar); + this.enterRule(_localctx, 58, QuintParser.RULE_identOrStar); try { - this.state = 727; + this.state = 706; this._errHandler.sync(this); switch (this._input.LA(1)) { case QuintParser.MUL: this.enterOuterAlt(_localctx, 1); { - this.state = 725; + this.state = 704; this.match(QuintParser.MUL); } break; case QuintParser.IDENTIFIER: this.enterOuterAlt(_localctx, 2); { - this.state = 726; + this.state = 705; this.qualId(); } break; @@ -3059,26 +2973,26 @@ export class QuintParser extends Parser { // @RuleVersion(0) public argList(): ArgListContext { let _localctx: ArgListContext = new ArgListContext(this._ctx, this.state); - this.enterRule(_localctx, 62, QuintParser.RULE_argList); + this.enterRule(_localctx, 60, QuintParser.RULE_argList); let _la: number; try { this.enterOuterAlt(_localctx, 1); { - this.state = 729; + this.state = 708; this.expr(0); - this.state = 734; + this.state = 713; this._errHandler.sync(this); _la = this._input.LA(1); while (_la === QuintParser.T__7) { { { - this.state = 730; + this.state = 709; this.match(QuintParser.T__7); - this.state = 731; + this.state = 710; this.expr(0); } } - this.state = 736; + this.state = 715; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -3101,28 +3015,28 @@ export class QuintParser extends Parser { // @RuleVersion(0) public recElem(): RecElemContext { let _localctx: RecElemContext = new RecElemContext(this._ctx, this.state); - this.enterRule(_localctx, 64, QuintParser.RULE_recElem); + this.enterRule(_localctx, 62, QuintParser.RULE_recElem); try { - this.state = 743; + this.state = 722; this._errHandler.sync(this); switch (this._input.LA(1)) { case QuintParser.IDENTIFIER: this.enterOuterAlt(_localctx, 1); { - this.state = 737; + this.state = 716; this.simpleId("record"); - this.state = 738; + this.state = 717; this.match(QuintParser.T__4); - this.state = 739; + this.state = 718; this.expr(0); } break; case QuintParser.T__37: this.enterOuterAlt(_localctx, 2); { - this.state = 741; + this.state = 720; this.match(QuintParser.T__37); - this.state = 742; + this.state = 721; this.expr(0); } break; @@ -3147,16 +3061,16 @@ export class QuintParser extends Parser { // @RuleVersion(0) public normalCallName(): NormalCallNameContext { let _localctx: NormalCallNameContext = new NormalCallNameContext(this._ctx, this.state); - this.enterRule(_localctx, 66, QuintParser.RULE_normalCallName); + this.enterRule(_localctx, 64, QuintParser.RULE_normalCallName); let _la: number; try { - this.state = 747; + this.state = 726; this._errHandler.sync(this); switch (this._input.LA(1)) { case QuintParser.IDENTIFIER: this.enterOuterAlt(_localctx, 1); { - this.state = 745; + this.state = 724; this.qualId(); } break; @@ -3169,7 +3083,7 @@ export class QuintParser extends Parser { case QuintParser.MAP: this.enterOuterAlt(_localctx, 2); { - this.state = 746; + this.state = 725; _localctx._op = this._input.LT(1); _la = this._input.LA(1); if (!(((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & ((1 << (QuintParser.AND - 43)) | (1 << (QuintParser.OR - 43)) | (1 << (QuintParser.IFF - 43)) | (1 << (QuintParser.IMPLIES - 43)) | (1 << (QuintParser.SET - 43)) | (1 << (QuintParser.LIST - 43)) | (1 << (QuintParser.MAP - 43)))) !== 0))) { @@ -3205,16 +3119,16 @@ export class QuintParser extends Parser { // @RuleVersion(0) public nameAfterDot(): NameAfterDotContext { let _localctx: NameAfterDotContext = new NameAfterDotContext(this._ctx, this.state); - this.enterRule(_localctx, 68, QuintParser.RULE_nameAfterDot); + this.enterRule(_localctx, 66, QuintParser.RULE_nameAfterDot); let _la: number; try { - this.state = 751; + this.state = 730; this._errHandler.sync(this); switch (this._input.LA(1)) { case QuintParser.IDENTIFIER: this.enterOuterAlt(_localctx, 1); { - this.state = 749; + this.state = 728; this.qualId(); } break; @@ -3224,7 +3138,7 @@ export class QuintParser extends Parser { case QuintParser.IMPLIES: this.enterOuterAlt(_localctx, 2); { - this.state = 750; + this.state = 729; _localctx._op = this._input.LT(1); _la = this._input.LA(1); if (!(((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & ((1 << (QuintParser.AND - 43)) | (1 << (QuintParser.OR - 43)) | (1 << (QuintParser.IFF - 43)) | (1 << (QuintParser.IMPLIES - 43)))) !== 0))) { @@ -3260,12 +3174,12 @@ export class QuintParser extends Parser { // @RuleVersion(0) public operator(): OperatorContext { let _localctx: OperatorContext = new OperatorContext(this._ctx, this.state); - this.enterRule(_localctx, 70, QuintParser.RULE_operator); + this.enterRule(_localctx, 68, QuintParser.RULE_operator); let _la: number; try { this.enterOuterAlt(_localctx, 1); { - this.state = 753; + this.state = 732; _la = this._input.LA(1); if (!(((((_la - 31)) & ~0x1F) === 0 && ((1 << (_la - 31)) & ((1 << (QuintParser.T__30 - 31)) | (1 << (QuintParser.AND - 31)) | (1 << (QuintParser.OR - 31)) | (1 << (QuintParser.IFF - 31)) | (1 << (QuintParser.IMPLIES - 31)) | (1 << (QuintParser.PLUS - 31)) | (1 << (QuintParser.MINUS - 31)) | (1 << (QuintParser.MUL - 31)) | (1 << (QuintParser.DIV - 31)) | (1 << (QuintParser.MOD - 31)) | (1 << (QuintParser.GT - 31)) | (1 << (QuintParser.LT - 31)) | (1 << (QuintParser.GE - 31)) | (1 << (QuintParser.LE - 31)) | (1 << (QuintParser.NE - 31)) | (1 << (QuintParser.EQ - 31)))) !== 0))) { this._errHandler.recoverInline(this); @@ -3296,12 +3210,12 @@ export class QuintParser extends Parser { // @RuleVersion(0) public literal(): LiteralContext { let _localctx: LiteralContext = new LiteralContext(this._ctx, this.state); - this.enterRule(_localctx, 72, QuintParser.RULE_literal); + this.enterRule(_localctx, 70, QuintParser.RULE_literal); let _la: number; try { this.enterOuterAlt(_localctx, 1); { - this.state = 755; + this.state = 734; _la = this._input.LA(1); if (!(((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & ((1 << (QuintParser.STRING - 40)) | (1 << (QuintParser.BOOL - 40)) | (1 << (QuintParser.INT - 40)))) !== 0))) { this._errHandler.recoverInline(this); @@ -3332,30 +3246,30 @@ export class QuintParser extends Parser { // @RuleVersion(0) public qualId(): QualIdContext { let _localctx: QualIdContext = new QualIdContext(this._ctx, this.state); - this.enterRule(_localctx, 74, QuintParser.RULE_qualId); + this.enterRule(_localctx, 72, QuintParser.RULE_qualId); try { let _alt: number; this.enterOuterAlt(_localctx, 1); { - this.state = 757; + this.state = 736; this.match(QuintParser.IDENTIFIER); - this.state = 762; + this.state = 741; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 83, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 80, this._ctx); while (_alt !== 2 && _alt !== ATN.INVALID_ALT_NUMBER) { if (_alt === 1) { { { - this.state = 758; + this.state = 737; this.match(QuintParser.T__38); - this.state = 759; + this.state = 738; this.match(QuintParser.IDENTIFIER); } } } - this.state = 764; + this.state = 743; this._errHandler.sync(this); - _alt = this.interpreter.adaptivePredict(this._input, 83, this._ctx); + _alt = this.interpreter.adaptivePredict(this._input, 80, this._ctx); } } } @@ -3376,15 +3290,15 @@ export class QuintParser extends Parser { // @RuleVersion(0) public simpleId(context: string): SimpleIdContext { let _localctx: SimpleIdContext = new SimpleIdContext(this._ctx, this.state, context); - this.enterRule(_localctx, 76, QuintParser.RULE_simpleId); + this.enterRule(_localctx, 74, QuintParser.RULE_simpleId); try { - this.state = 769; + this.state = 748; this._errHandler.sync(this); - switch ( this.interpreter.adaptivePredict(this._input, 84, this._ctx) ) { + switch ( this.interpreter.adaptivePredict(this._input, 81, this._ctx) ) { case 1: this.enterOuterAlt(_localctx, 1); { - this.state = 765; + this.state = 744; this.match(QuintParser.IDENTIFIER); } break; @@ -3392,7 +3306,7 @@ export class QuintParser extends Parser { case 2: this.enterOuterAlt(_localctx, 2); { - this.state = 766; + this.state = 745; _localctx._qualId = this.qualId(); const err = quintErrorToString( @@ -3426,7 +3340,7 @@ export class QuintParser extends Parser { case 16: return this.type_sempred(_localctx as TypeContext, predIndex); - case 20: + case 19: return this.expr_sempred(_localctx as ExprContext, predIndex); } return true; @@ -3434,10 +3348,10 @@ export class QuintParser extends Parser { private type_sempred(_localctx: TypeContext, predIndex: number): boolean { switch (predIndex) { case 0: - return this.precpred(this._ctx, 13); + return this.precpred(this._ctx, 12); case 1: - return this.precpred(this._ctx, 12); + return this.precpred(this._ctx, 11); } return true; } @@ -3484,415 +3398,403 @@ export class QuintParser extends Parser { private static readonly _serializedATNSegments: number = 2; private static readonly _serializedATNSegment0: string = - "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03G\u0306\x04\x02" + + "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03G\u02F1\x04\x02" + "\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06\x04\x07" + "\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04\r\t\r\x04" + "\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t\x12\x04" + "\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04\x17\t\x17\x04" + "\x18\t\x18\x04\x19\t\x19\x04\x1A\t\x1A\x04\x1B\t\x1B\x04\x1C\t\x1C\x04" + "\x1D\t\x1D\x04\x1E\t\x1E\x04\x1F\t\x1F\x04 \t \x04!\t!\x04\"\t\"\x04#" + - "\t#\x04$\t$\x04%\t%\x04&\t&\x04\'\t\'\x04(\t(\x03\x02\x06\x02R\n\x02\r" + - "\x02\x0E\x02S\x03\x02\x03\x02\x03\x03\x07\x03Y\n\x03\f\x03\x0E\x03\\\v" + - "\x03\x03\x03\x03\x03\x03\x03\x03\x03\x07\x03b\n\x03\f\x03\x0E\x03e\v\x03" + - "\x03\x03\x03\x03\x03\x04\x07\x04j\n\x04\f\x04\x0E\x04m\v\x04\x03\x04\x03" + - "\x04\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03" + + "\t#\x04$\t$\x04%\t%\x04&\t&\x04\'\t\'\x03\x02\x06\x02P\n\x02\r\x02\x0E" + + "\x02Q\x03\x02\x03\x02\x03\x03\x07\x03W\n\x03\f\x03\x0E\x03Z\v\x03\x03" + + "\x03\x03\x03\x03\x03\x03\x03\x07\x03`\n\x03\f\x03\x0E\x03c\v\x03\x03\x03" + + "\x03\x03\x03\x04\x07\x04h\n\x04\f\x04\x0E\x04k\v\x04\x03\x04\x03\x04\x03" + + "\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03" + "\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03" + - "\x05\x03\x05\x03\x05\x05\x05\x85\n\x05\x03\x06\x03\x06\x03\x06\x03\x06" + - "\x03\x06\x03\x06\x07\x06\x8D\n\x06\f\x06\x0E\x06\x90\v\x06\x05\x06\x92" + - "\n\x06\x03\x06\x03\x06\x03\x06\x05\x06\x97\n\x06\x03\x06\x03\x06\x03\x06" + - "\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x07\x06" + - "\xA4\n\x06\f\x06\x0E\x06\xA7\v\x06\x03\x06\x03\x06\x03\x06\x03\x06\x05" + - "\x06\xAD\n\x06\x03\x06\x03\x06\x05\x06\xB1\n\x06\x03\x06\x05\x06\xB4\n" + - "\x06\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03" + - "\x07\x03\x07\x03\x07\x05\x07\xC1\n\x07\x03\x07\x03\x07\x03\x07\x07\x07" + - "\xC6\n\x07\f\x07\x0E\x07\xC9\v\x07\x05\x07\xCB\n\x07\x03\b\x03\b\x03\b" + - "\x03\b\x03\b\x05\b\xD2\n\b\x03\t\x03\t\x03\t\x03\t\x05\t\xD8\n\t\x03\t" + - "\x03\t\x03\t\x05\t\xDD\n\t\x03\n\x03\n\x03\n\x03\n\x03\n\x03\n\x03\n\x03" + - "\n\x03\n\x05\n\xE8\n\n\x03\v\x03\v\x03\v\x03\v\x03\v\x03\v\x05\v\xF0\n" + - "\v\x03\v\x03\v\x03\v\x03\v\x05\v\xF6\n\v\x03\v\x03\v\x05\v\xFA\n\v\x05" + - "\v\xFC\n\v\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x05\f" + - "\u0107\n\f\x05\f\u0109\n\f\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03" + - "\r\x03\r\x03\r\x03\r\x07\r\u0116\n\r\f\r\x0E\r\u0119\v\r\x03\r\x03\r\x03" + - "\r\x03\r\x03\r\x05\r\u0120\n\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03" + - "\r\x03\r\x03\r\x03\r\x03\r\x07\r\u012D\n\r\f\r\x0E\r\u0130\v\r\x03\r\x03" + - "\r\x03\r\x03\r\x03\r\x05\r\u0137\n\r\x05\r\u0139\n\r\x03\x0E\x03\x0E\x03" + - "\x0F\x03\x0F\x03\x10\x03\x10\x03\x11\x03\x11\x03\x12\x03\x12\x03\x12\x03" + - "\x12\x03\x12\x07\x12\u0148\n\x12\f\x12\x0E\x12\u014B\v\x12\x05\x12\u014D" + - "\n\x12\x03\x12\x05\x12\u0150\n\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03" + + "\x05\x03\x05\x05\x05\x83\n\x05\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06" + + "\x03\x06\x07\x06\x8B\n\x06\f\x06\x0E\x06\x8E\v\x06\x05\x06\x90\n\x06\x03" + + "\x06\x03\x06\x03\x06\x05\x06\x95\n\x06\x03\x06\x03\x06\x03\x06\x03\x06" + + "\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x07\x06\xA2\n" + + "\x06\f\x06\x0E\x06\xA5\v\x06\x03\x06\x03\x06\x03\x06\x03\x06\x05\x06\xAB" + + "\n\x06\x03\x06\x03\x06\x05\x06\xAF\n\x06\x03\x06\x05\x06\xB2\n\x06\x03" + + "\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03" + + "\x07\x03\x07\x05\x07\xBF\n\x07\x03\x07\x03\x07\x03\x07\x07\x07\xC4\n\x07" + + "\f\x07\x0E\x07\xC7\v\x07\x05\x07\xC9\n\x07\x03\b\x03\b\x03\b\x03\b\x03" + + "\b\x05\b\xD0\n\b\x03\t\x03\t\x03\t\x03\t\x05\t\xD6\n\t\x03\t\x03\t\x03" + + "\t\x05\t\xDB\n\t\x03\n\x03\n\x03\n\x03\n\x03\n\x03\n\x03\n\x03\n\x03\n" + + "\x05\n\xE6\n\n\x03\v\x03\v\x03\v\x03\v\x03\v\x03\v\x05\v\xEE\n\v\x03\v" + + "\x03\v\x03\v\x03\v\x05\v\xF4\n\v\x03\v\x03\v\x05\v\xF8\n\v\x05\v\xFA\n" + + "\v\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x05\f\u0105\n" + + "\f\x05\f\u0107\n\f\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03" + + "\r\x03\r\x03\r\x07\r\u0114\n\r\f\r\x0E\r\u0117\v\r\x03\r\x03\r\x03\r\x03" + + "\r\x03\r\x05\r\u011E\n\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03" + + "\r\x03\r\x03\r\x03\r\x07\r\u012B\n\r\f\r\x0E\r\u012E\v\r\x03\r\x03\r\x03" + + "\r\x03\r\x03\r\x05\r\u0135\n\r\x05\r\u0137\n\r\x03\x0E\x03\x0E\x03\x0F" + + "\x03\x0F\x03\x10\x03\x10\x03\x11\x03\x11\x03\x12\x03\x12\x03\x12\x03\x12" + + "\x03\x12\x07\x12\u0146\n\x12\f\x12\x0E\x12\u0149\v\x12\x05\x12\u014B\n" + + "\x12\x03\x12\x05\x12\u014E\n\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12" + + "\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12" + + "\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x07\x12\u0163\n\x12\f\x12\x0E" + + "\x12\u0166\v\x12\x03\x12\x05\x12\u0169\n\x12\x03\x12\x03\x12\x03\x12\x03" + "\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03" + - "\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x07\x12\u0165\n\x12\f\x12" + - "\x0E\x12\u0168\v\x12\x03\x12\x05\x12\u016B\n\x12\x03\x12\x03\x12\x03\x12" + - "\x03\x12\x03\x12\x03\x12\x03\x12\x06\x12\u0174\n\x12\r\x12\x0E\x12\u0175" + - "\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x05\x12" + - "\u0180\n\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x07\x12\u0188" + - "\n\x12\f\x12\x0E\x12\u018B\v\x12\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13" + - "\x03\x13\x03\x13\x05\x13\u0194\n\x13\x03\x13\x05\x13\u0197\n\x13\x03\x13" + - "\x03\x13\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x07\x14\u01A0\n\x14\f" + - "\x14\x0E\x14\u01A3\v\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14\x03\x14" + - "\x03\x14\x05\x14\u01AC\n\x14\x05\x14\u01AE\n\x14\x03\x14\x03\x14\x05\x14" + - "\u01B2\n\x14\x03\x15\x03\x15\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x05" + - "\x16\u01BB\n\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16" + - "\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x07\x16\u01CB" + - "\n\x16\f\x16\x0E\x16\u01CE\v\x16\x03\x16\x05\x16\u01D1\n\x16\x03\x16\x03" + - "\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x07\x16\u01DA\n\x16\f\x16" + - "\x0E\x16\u01DD\v\x16\x03\x16\x05\x16\u01E0\n\x16\x03\x16\x03\x16\x03\x16" + - "\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x07\x16\u01EA\n\x16\f\x16\x0E" + - "\x16\u01ED\v\x16\x03\x16\x05\x16\u01F0\n\x16\x03\x16\x03\x16\x03\x16\x03" + - "\x16\x03\x16\x03\x16\x03\x16\x07\x16\u01F9\n\x16\f\x16\x0E\x16\u01FC\v" + - "\x16\x03\x16\x05\x16\u01FF\n\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16" + - "\x03\x16\x05\x16\u0207\n\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03" + - "\x16\x07\x16\u020F\n\x16\f\x16\x0E\x16\u0212\v\x16\x03\x16\x05\x16\u0215" + - "\n\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x07\x16\u021D\n" + - "\x16\f\x16\x0E\x16\u0220\v\x16\x03\x16\x05\x16\u0223\n\x16\x03\x16\x03" + - "\x16\x03\x16\x03\x16\x03\x16\x03\x16\x07\x16\u022B\n\x16\f\x16\x0E\x16" + - "\u022E\v\x16\x05\x16\u0230\n\x16\x03\x16\x05\x16\u0233\n\x16\x03\x16\x03" + - "\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03" + - "\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03" + - "\x16\x03\x16\x03\x16\x03\x16\x05\x16\u024C\n\x16\x03\x16\x03\x16\x03\x16" + - "\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16" + - "\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16" + - "\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16" + - "\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03\x16\x05\x16\u0273" + - "\n\x16\x03\x16\x05\x16\u0276\n\x16\x03\x16\x03\x16\x03\x16\x03\x16\x03" + - "\x16\x07\x16\u027D\n\x16\f\x16\x0E\x16\u0280\v\x16\x03\x17\x03\x17\x03" + - "\x17\x03\x17\x05\x17\u0286\n\x17\x03\x17\x03\x17\x03\x17\x07\x17\u028B" + - "\n\x17\f\x17\x0E\x17\u028E\v\x17\x03\x17\x03\x17\x03\x18\x03\x18\x05\x18" + - "\u0294\n\x18\x03\x18\x03\x18\x03\x18\x03\x19\x03\x19\x03\x19\x03\x19\x05" + - "\x19\u029D\n\x19\x03\x19\x05\x19\u02A0\n\x19\x03\x1A\x03\x1A\x03\x1A\x03" + - "\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\x03\x1A\x05\x1A\u02AB\n\x1A\x03\x1B" + - "\x03\x1B\x05\x1B\u02AF\n\x1B\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03" + - "\x1C\x03\x1C\x03\x1C\x07\x1C\u02B9\n\x1C\f\x1C\x0E\x1C\u02BC\v\x1C\x03" + - "\x1C\x03\x1C\x03\x1C\x03\x1C\x05\x1C\u02C2\n\x1C\x03\x1D\x03\x1D\x03\x1D" + - "\x03\x1D\x03\x1D\x06\x1D\u02C9\n\x1D\r\x1D\x0E\x1D\u02CA\x03\x1D\x03\x1D" + - "\x03\x1D\x03\x1D\x03\x1D\x03\x1E\x03\x1E\x05\x1E\u02D4\n\x1E\x03\x1F\x03" + - "\x1F\x03 \x03 \x05 \u02DA\n \x03!\x03!\x03!\x07!\u02DF\n!\f!\x0E!\u02E2" + - "\v!\x03\"\x03\"\x03\"\x03\"\x03\"\x03\"\x05\"\u02EA\n\"\x03#\x03#\x05" + - "#\u02EE\n#\x03$\x03$\x05$\u02F2\n$\x03%\x03%\x03&\x03&\x03\'\x03\'\x03" + - "\'\x07\'\u02FB\n\'\f\'\x0E\'\u02FE\v\'\x03(\x03(\x03(\x03(\x05(\u0304" + - "\n(\x03(\x02\x02\x04\"*)\x02\x02\x04\x02\x06\x02\b\x02\n\x02\f\x02\x0E" + - "\x02\x10\x02\x12\x02\x14\x02\x16\x02\x18\x02\x1A\x02\x1C\x02\x1E\x02 " + - "\x02\"\x02$\x02&\x02(\x02*\x02,\x02.\x020\x022\x024\x026\x028\x02:\x02" + - "<\x02>\x02@\x02B\x02D\x02F\x02H\x02J\x02L\x02N\x02\x02\t\x03\x0279\x03" + - "\x0256\x03\x02:?\x03\x02-3\x03\x02-0\x05\x02!!-05?\x03\x02*,\x02\u0369" + - "\x02Q\x03\x02\x02\x02\x04Z\x03\x02\x02\x02\x06k\x03\x02\x02\x02\b\x84" + - "\x03\x02\x02\x02\n\x86\x03\x02\x02\x02\f\xCA\x03\x02\x02\x02\x0E\xCC\x03" + - "\x02\x02\x02\x10\xD3\x03\x02\x02\x02\x12\xE7\x03\x02\x02\x02\x14\xFB\x03" + - "\x02\x02\x02\x16\u0108\x03\x02\x02\x02\x18\u0138\x03\x02\x02\x02\x1A\u013A" + - "\x03\x02\x02\x02\x1C\u013C\x03\x02\x02\x02\x1E\u013E\x03\x02\x02\x02 " + - "\u0140\x03\x02\x02\x02\"\u017F\x03\x02\x02\x02$\u018C\x03\x02\x02\x02" + - "&\u01B1\x03\x02\x02\x02(\u01B3\x03\x02\x02\x02*\u024B\x03\x02\x02\x02" + - ",\u0281\x03\x02\x02\x02.\u0293\x03\x02\x02\x020\u0298\x03\x02\x02\x02" + - "2\u02AA\x03\x02\x02\x024\u02AE\x03\x02\x02\x026\u02C1\x03\x02\x02\x02" + - "8\u02C3\x03\x02\x02\x02:\u02D3\x03\x02\x02\x02<\u02D5\x03\x02\x02\x02" + - ">\u02D9\x03\x02\x02\x02@\u02DB\x03\x02\x02\x02B\u02E9\x03\x02\x02\x02" + - "D\u02ED\x03\x02\x02\x02F\u02F1\x03\x02\x02\x02H\u02F3\x03\x02\x02\x02" + - "J\u02F5\x03\x02\x02\x02L\u02F7\x03\x02\x02\x02N\u0303\x03\x02\x02\x02" + - "PR\x05\x04\x03\x02QP\x03\x02\x02\x02RS\x03\x02\x02\x02SQ\x03\x02\x02\x02" + - "ST\x03\x02\x02\x02TU\x03\x02\x02\x02UV\x07\x02\x02\x03V\x03\x03\x02\x02" + - "\x02WY\x07D\x02\x02XW\x03\x02\x02\x02Y\\\x03\x02\x02\x02ZX\x03\x02\x02" + - "\x02Z[\x03\x02\x02\x02[]\x03\x02\x02\x02\\Z\x03\x02\x02\x02]^\x07\x03" + - "\x02\x02^_\x05L\'\x02_c\x07\x04\x02\x02`b\x05\x06\x04\x02a`\x03\x02\x02" + - "\x02be\x03\x02\x02\x02ca\x03\x02\x02\x02cd\x03\x02\x02\x02df\x03\x02\x02" + - "\x02ec\x03\x02\x02\x02fg\x07\x05\x02\x02g\x05\x03\x02\x02\x02hj\x07D\x02" + - "\x02ih\x03\x02\x02\x02jm\x03\x02\x02\x02ki\x03\x02\x02\x02kl\x03\x02\x02" + - "\x02ln\x03\x02\x02\x02mk\x03\x02\x02\x02no\x05\b\x05\x02o\x07\x03\x02" + - "\x02\x02pq\x07\x06\x02\x02qr\x05L\'\x02rs\x07\x07\x02\x02st\x05\"\x12" + - "\x02t\x85\x03\x02\x02\x02uv\x07\b\x02\x02vw\x05L\'\x02wx\x07\x07\x02\x02" + - "xy\x05\"\x12\x02y\x85\x03\x02\x02\x02z{\x07\t\x02\x02{|\x05:\x1E\x02|" + - "}\x07@\x02\x02}~\x05*\x16\x02~\x85\x03\x02\x02\x02\x7F\x85\x05\x18\r\x02" + - "\x80\x85\x05\n\x06\x02\x81\x85\x05\f\x07\x02\x82\x85\x05\x14\v\x02\x83" + - "\x85\x05\x16\f\x02\x84p\x03\x02\x02\x02\x84u\x03\x02\x02\x02\x84z\x03" + - "\x02\x02\x02\x84\x7F\x03\x02\x02\x02\x84\x80\x03\x02\x02\x02\x84\x81\x03" + - "\x02\x02\x02\x84\x82\x03\x02\x02\x02\x84\x83\x03\x02\x02\x02\x85\t\x03" + - "\x02\x02\x02\x86\x87\x05\x12\n\x02\x87\xAC\x05D#\x02\x88\x91\x07A\x02" + - "\x02\x89\x8E\x05<\x1F\x02\x8A\x8B\x07\n\x02\x02\x8B\x8D\x05<\x1F\x02\x8C" + - "\x8A\x03\x02\x02\x02\x8D\x90\x03\x02\x02\x02\x8E\x8C\x03\x02\x02\x02\x8E" + - "\x8F\x03\x02\x02\x02\x8F\x92\x03\x02\x02\x02\x90\x8E\x03\x02\x02\x02\x91" + - "\x89\x03\x02\x02\x02\x91\x92\x03\x02\x02\x02\x92\x93\x03\x02\x02\x02\x93" + - "\x96\x07B\x02\x02\x94\x95\x07\x07\x02\x02\x95\x97\x05\"\x12\x02\x96\x94" + - "\x03\x02\x02\x02\x96\x97\x03\x02\x02\x02\x97\xAD\x03\x02\x02\x02\x98\x99" + - "\x07\x07\x02\x02\x99\xAD\x05\"\x12\x02\x9A\x9B\x07A\x02\x02\x9B\x9C\x05" + - "<\x1F\x02\x9C\x9D\x07\x07\x02\x02\x9D\xA5\x05\"\x12\x02\x9E\x9F\x07\n" + - "\x02\x02\x9F\xA0\x05<\x1F\x02\xA0\xA1\x07\x07\x02\x02\xA1\xA2\x05\"\x12" + - "\x02\xA2\xA4\x03\x02\x02\x02\xA3\x9E\x03\x02\x02\x02\xA4\xA7\x03\x02\x02" + - "\x02\xA5\xA3\x03\x02\x02\x02\xA5\xA6\x03\x02\x02\x02\xA6\xA8\x03\x02\x02" + - "\x02\xA7\xA5\x03\x02\x02\x02\xA8\xA9\x07B\x02\x02\xA9\xAA\x07\x07\x02" + - "\x02\xAA\xAB\x05\"\x12\x02\xAB\xAD\x03\x02\x02\x02\xAC\x88\x03\x02\x02" + - "\x02\xAC\x98\x03\x02\x02\x02\xAC\x9A\x03\x02\x02\x02\xAC\xAD\x03\x02\x02" + - "\x02\xAD\xB0\x03\x02\x02\x02\xAE\xAF\x07@\x02\x02\xAF\xB1\x05*\x16\x02" + - "\xB0\xAE\x03\x02\x02\x02\xB0\xB1\x03\x02\x02\x02\xB1\xB3\x03\x02\x02\x02" + - "\xB2\xB4\x07\v\x02\x02\xB3\xB2\x03\x02\x02\x02\xB3\xB4\x03\x02\x02\x02" + - "\xB4\v\x03\x02\x02\x02\xB5\xB6\x07\f\x02\x02\xB6\xCB\x05L\'\x02\xB7\xB8" + - "\x07\f\x02\x02\xB8\xB9\x05L\'\x02\xB9\xBA\x07@\x02\x02\xBA\xBB\x05\"\x12" + - "\x02\xBB\xCB\x03\x02\x02\x02\xBC\xBD\x07\f\x02\x02\xBD\xBE\x05L\'\x02" + - "\xBE\xC0\x07@\x02\x02\xBF\xC1\x07\r\x02\x02\xC0\xBF\x03\x02\x02\x02\xC0" + - "\xC1\x03\x02\x02\x02\xC1\xC2\x03\x02\x02\x02\xC2\xC7\x05\x0E\b\x02\xC3" + - "\xC4\x07\r\x02\x02\xC4\xC6\x05\x0E\b\x02\xC5\xC3\x03\x02\x02\x02\xC6\xC9" + - "\x03\x02\x02\x02\xC7\xC5\x03\x02\x02\x02\xC7\xC8\x03\x02\x02\x02\xC8\xCB" + - "\x03\x02\x02\x02\xC9\xC7\x03\x02\x02\x02\xCA\xB5\x03\x02\x02\x02\xCA\xB7" + - "\x03\x02\x02\x02\xCA\xBC\x03\x02\x02\x02\xCB\r\x03\x02\x02\x02\xCC\xD1" + - "\x05N(\x02\xCD\xCE\x07A\x02\x02\xCE\xCF\x05\"\x12\x02\xCF\xD0\x07B\x02" + - "\x02\xD0\xD2\x03\x02\x02\x02\xD1\xCD\x03\x02\x02\x02\xD1\xD2\x03\x02\x02" + - "\x02\xD2\x0F\x03\x02\x02\x02\xD3\xD4\x07\x0E\x02\x02\xD4\xD7\x05L\'\x02" + - "\xD5\xD6\x07\x07\x02\x02\xD6\xD8\x05\"\x12\x02\xD7\xD5\x03\x02\x02\x02" + - "\xD7\xD8\x03\x02\x02\x02\xD8\xD9\x03\x02\x02\x02\xD9\xDA\x07@\x02\x02" + - "\xDA\xDC\x05*\x16\x02\xDB\xDD\x07\v\x02\x02\xDC\xDB\x03\x02\x02\x02\xDC" + - "\xDD\x03\x02\x02\x02\xDD\x11\x03\x02\x02\x02\xDE\xE8\x07\x0F\x02\x02\xDF" + - "\xE8\x07\x10\x02\x02\xE0\xE1\x07\x11\x02\x02\xE1\xE8\x07\x0F\x02\x02\xE2" + - "\xE3\x07\x11\x02\x02\xE3\xE8\x07\x10\x02\x02\xE4\xE8\x07\x12\x02\x02\xE5" + - "\xE8\x07\x13\x02\x02\xE6\xE8\x07\x14\x02\x02\xE7\xDE\x03\x02\x02\x02\xE7" + - "\xDF\x03\x02\x02\x02\xE7\xE0\x03\x02\x02\x02\xE7\xE2\x03\x02\x02\x02\xE7" + - "\xE4\x03\x02\x02\x02\xE7\xE5\x03\x02\x02\x02\xE7\xE6\x03\x02\x02\x02\xE8" + - "\x13\x03\x02\x02\x02\xE9\xEA\x07\x15\x02\x02\xEA\xEB\x05\x1C\x0F\x02\xEB" + - "\xEC\x07\x16\x02\x02\xEC\xEF\x05> \x02\xED\xEE\x07\x17\x02\x02\xEE\xF0" + - "\x05 \x11\x02\xEF\xED\x03\x02\x02\x02\xEF\xF0\x03\x02\x02\x02\xF0\xFC" + - "\x03\x02\x02\x02\xF1\xF2\x07\x15\x02\x02\xF2\xF5\x05\x1C\x0F\x02\xF3\xF4" + - "\x07\x18\x02\x02\xF4\xF6\x05\x1C\x0F\x02\xF5\xF3\x03\x02\x02\x02\xF5\xF6" + - "\x03\x02\x02\x02\xF6\xF9\x03\x02\x02\x02\xF7\xF8\x07\x17\x02\x02\xF8\xFA" + - "\x05 \x11\x02\xF9\xF7\x03\x02\x02\x02\xF9\xFA\x03\x02\x02\x02\xFA\xFC" + - "\x03\x02\x02\x02\xFB\xE9\x03\x02\x02\x02\xFB\xF1\x03\x02\x02\x02\xFC\x15" + - "\x03\x02\x02\x02\xFD\xFE\x07\x19\x02\x02\xFE\xFF\x05\x1C\x0F\x02\xFF\u0100" + - "\x07\x16\x02\x02\u0100\u0101\x05> \x02\u0101\u0109\x03\x02\x02\x02\u0102" + - "\u0103\x07\x19\x02\x02\u0103\u0106\x05\x1C\x0F\x02\u0104\u0105\x07\x18" + - "\x02\x02\u0105\u0107\x05\x1C\x0F\x02\u0106\u0104\x03\x02\x02\x02\u0106" + - "\u0107\x03\x02\x02\x02\u0107\u0109\x03\x02\x02\x02\u0108\xFD\x03\x02\x02" + - "\x02\u0108\u0102\x03\x02\x02\x02\u0109\x17\x03\x02\x02\x02\u010A\u010B" + - "\x07\x15\x02\x02\u010B\u010C\x05\x1A\x0E\x02\u010C\u010D\x07A\x02\x02" + - "\u010D\u010E\x05\x1C\x0F\x02\u010E\u010F\x07@\x02\x02\u010F\u0117\x05" + - "*\x16\x02\u0110\u0111\x07\n\x02\x02\u0111\u0112\x05\x1C\x0F\x02\u0112" + - "\u0113\x07@\x02\x02\u0113\u0114\x05*\x16\x02\u0114\u0116\x03\x02\x02\x02" + - "\u0115\u0110\x03\x02\x02\x02\u0116\u0119\x03\x02\x02\x02\u0117\u0115\x03" + - "\x02\x02\x02\u0117\u0118\x03\x02\x02\x02\u0118\u011A\x03\x02\x02\x02\u0119" + - "\u0117\x03\x02\x02\x02\u011A\u011B\x07B\x02\x02\u011B\u011C\x07\x16\x02" + - "\x02\u011C\u011F\x077\x02\x02\u011D\u011E\x07\x17\x02\x02\u011E\u0120" + - "\x05 \x11\x02\u011F\u011D\x03\x02\x02\x02\u011F\u0120\x03\x02\x02\x02" + - "\u0120\u0139\x03\x02\x02\x02\u0121\u0122\x07\x15\x02\x02\u0122\u0123\x05" + - "\x1A\x0E\x02\u0123\u0124\x07A\x02\x02\u0124\u0125\x05\x1C\x0F\x02\u0125" + - "\u0126\x07@\x02\x02\u0126\u012E\x05*\x16\x02\u0127\u0128\x07\n\x02\x02" + - "\u0128\u0129\x05\x1C\x0F\x02\u0129\u012A\x07@\x02\x02\u012A\u012B\x05" + - "*\x16\x02\u012B\u012D\x03\x02\x02\x02\u012C\u0127\x03\x02\x02\x02\u012D" + - "\u0130\x03\x02\x02\x02\u012E\u012C\x03\x02\x02\x02\u012E\u012F\x03\x02" + - "\x02\x02\u012F\u0131\x03\x02\x02\x02\u0130\u012E\x03\x02\x02\x02\u0131" + - "\u0132\x07B\x02\x02\u0132\u0133\x07\x18\x02\x02\u0133\u0136\x05\x1E\x10" + - "\x02\u0134\u0135\x07\x17\x02\x02\u0135\u0137\x05 \x11\x02\u0136\u0134" + - "\x03\x02\x02\x02\u0136\u0137\x03\x02\x02\x02\u0137\u0139\x03\x02\x02\x02" + - "\u0138\u010A\x03\x02\x02\x02\u0138\u0121\x03\x02\x02\x02\u0139\x19\x03" + - "\x02\x02\x02\u013A\u013B\x05L\'\x02\u013B\x1B\x03\x02\x02\x02\u013C\u013D" + - "\x05L\'\x02\u013D\x1D\x03\x02\x02\x02\u013E\u013F\x05L\'\x02\u013F\x1F" + - "\x03\x02\x02\x02\u0140\u0141\x07*\x02\x02\u0141!\x03\x02\x02\x02\u0142" + - "\u0143\b\x12\x01\x02\u0143\u014C\x07A\x02\x02\u0144\u0149\x05\"\x12\x02" + - "\u0145\u0146\x07\n\x02\x02\u0146\u0148\x05\"\x12\x02\u0147\u0145\x03\x02" + - "\x02\x02\u0148\u014B\x03\x02\x02\x02\u0149\u0147\x03\x02\x02\x02\u0149" + - "\u014A\x03\x02\x02\x02\u014A\u014D\x03\x02\x02\x02\u014B\u0149\x03\x02" + - "\x02\x02\u014C\u0144\x03\x02\x02\x02\u014C\u014D\x03\x02\x02\x02\u014D" + - "\u014F\x03\x02\x02\x02\u014E\u0150\x07\n\x02\x02\u014F\u014E\x03\x02\x02" + - "\x02\u014F\u0150\x03\x02\x02\x02\u0150\u0151\x03\x02\x02\x02\u0151\u0152" + - "\x07B\x02\x02\u0152\u0153\x07\x1B\x02\x02\u0153\u0180\x05\"\x12\r\u0154" + - "\u0155\x071\x02\x02\u0155\u0156\x07\x1C\x02\x02\u0156\u0157\x05\"\x12" + - "\x02\u0157\u0158\x07\x1D\x02\x02\u0158\u0180\x03\x02\x02\x02\u0159\u015A" + - "\x072\x02\x02\u015A\u015B\x07\x1C\x02\x02\u015B\u015C\x05\"\x12\x02\u015C" + - "\u015D\x07\x1D\x02\x02\u015D\u0180\x03\x02\x02\x02\u015E\u015F\x07A\x02" + - "\x02\u015F\u0160\x05\"\x12\x02\u0160\u0161\x07\n\x02\x02\u0161\u0166\x05" + - "\"\x12\x02\u0162\u0163\x07\n\x02\x02\u0163\u0165\x05\"\x12\x02\u0164\u0162" + - "\x03\x02\x02\x02\u0165\u0168\x03\x02\x02\x02\u0166\u0164\x03\x02\x02\x02" + - "\u0166\u0167\x03\x02\x02\x02\u0167\u016A\x03\x02\x02\x02\u0168\u0166\x03" + - "\x02\x02\x02\u0169\u016B\x07\n\x02\x02\u016A\u0169\x03\x02\x02\x02\u016A" + - "\u016B\x03\x02\x02\x02\u016B\u016C\x03\x02\x02\x02\u016C\u016D\x07B\x02" + - "\x02\u016D\u0180\x03\x02\x02\x02\u016E\u016F\x07\x04\x02\x02\u016F\u0170" + - "\x05&\x14\x02\u0170\u0171\x07\x05\x02\x02\u0171\u0180\x03\x02\x02\x02" + - "\u0172\u0174\x05$\x13\x02\u0173\u0172\x03\x02\x02\x02\u0174\u0175\x03" + - "\x02\x02\x02\u0175\u0173\x03\x02\x02\x02\u0175\u0176\x03\x02\x02\x02\u0176" + - "\u0180\x03\x02\x02\x02\u0177\u0180\x07\x1E\x02\x02\u0178\u0180\x07\x1F" + - "\x02\x02\u0179\u0180\x07 \x02\x02\u017A\u0180\x05L\'\x02\u017B\u017C\x07" + - "A\x02\x02\u017C\u017D\x05\"\x12\x02\u017D\u017E\x07B\x02\x02\u017E\u0180" + - "\x03\x02\x02\x02\u017F\u0142\x03\x02\x02\x02\u017F\u0154\x03\x02\x02\x02" + - "\u017F\u0159\x03\x02\x02\x02\u017F\u015E\x03\x02\x02\x02\u017F\u016E\x03" + - "\x02\x02\x02\u017F\u0173\x03\x02\x02\x02\u017F\u0177\x03\x02\x02\x02\u017F" + - "\u0178\x03\x02\x02\x02\u017F\u0179\x03\x02\x02\x02\u017F\u017A\x03\x02" + - "\x02\x02\u017F\u017B\x03\x02\x02\x02\u0180\u0189\x03\x02\x02\x02\u0181" + - "\u0182\f\x0F\x02\x02\u0182\u0183\x07\x1A\x02\x02\u0183\u0188\x05\"\x12" + - "\x0F\u0184\u0185\f\x0E\x02\x02\u0185\u0186\x07\x1B\x02\x02\u0186\u0188" + - "\x05\"\x12\x0E\u0187\u0181\x03\x02\x02\x02\u0187\u0184\x03\x02\x02\x02" + - "\u0188\u018B\x03\x02\x02\x02\u0189\u0187\x03\x02\x02\x02\u0189\u018A\x03" + - "\x02\x02\x02\u018A#\x03\x02\x02\x02\u018B\u0189\x03\x02\x02\x02\u018C" + - "\u018D\x07\r\x02\x02\u018D\u018E\x07\x04\x02\x02\u018E\u018F\x05L\'\x02" + - "\u018F\u0190\x07\x07\x02\x02\u0190\u0193\x07*\x02\x02\u0191\u0192\x07" + - "\n\x02\x02\u0192\u0194\x05&\x14\x02\u0193\u0191\x03\x02\x02\x02\u0193" + - "\u0194\x03\x02\x02\x02\u0194\u0196\x03\x02\x02\x02\u0195\u0197\x07\n\x02" + - "\x02\u0196\u0195\x03\x02\x02\x02\u0196\u0197\x03\x02\x02\x02\u0197\u0198" + - "\x03\x02\x02\x02\u0198\u0199\x07\x05\x02\x02\u0199%\x03\x02\x02\x02\u019A" + - "\u019B\x05(\x15\x02\u019B\u019C\x07\x07\x02\x02\u019C\u019D\x05\"\x12" + - "\x02\u019D\u019E\x07\n\x02\x02\u019E\u01A0\x03\x02\x02\x02\u019F\u019A" + - "\x03\x02\x02\x02\u01A0\u01A3\x03\x02\x02\x02\u01A1\u019F\x03\x02\x02\x02" + - "\u01A1\u01A2\x03\x02\x02\x02\u01A2\u01AD\x03\x02\x02\x02\u01A3\u01A1\x03" + - "\x02\x02\x02\u01A4\u01A5\x05(\x15\x02\u01A5\u01A6\x07\x07\x02\x02\u01A6" + - "\u01A7\x05\"\x12\x02\u01A7\u01AB\x03\x02\x02\x02\u01A8\u01AC\x07\n\x02" + - "\x02\u01A9\u01AA\x07\r\x02\x02\u01AA\u01AC\x07C\x02\x02\u01AB\u01A8\x03" + - "\x02\x02\x02\u01AB\u01A9\x03\x02\x02\x02\u01AB\u01AC\x03\x02\x02\x02\u01AC" + - "\u01AE\x03\x02\x02\x02\u01AD\u01A4\x03\x02\x02\x02\u01AD\u01AE\x03\x02" + - "\x02\x02\u01AE\u01B2\x03\x02\x02\x02\u01AF\u01B0\x07\r\x02\x02\u01B0\u01B2" + - "\x07C\x02\x02\u01B1\u01A1\x03\x02\x02\x02\u01B1\u01AF\x03\x02\x02\x02" + - "\u01B2\'\x03\x02\x02\x02\u01B3\u01B4\x05N(\x02\u01B4)\x03\x02\x02\x02" + - "\u01B5\u01B6\b\x16\x01\x02\u01B6\u024C\x054\x1B\x02\u01B7\u01B8\x05D#" + - "\x02\u01B8\u01BA\x07A\x02\x02\u01B9\u01BB\x05@!\x02\u01BA\u01B9\x03\x02" + - "\x02\x02\u01BA\u01BB\x03\x02\x02\x02\u01BB\u01BC\x03\x02\x02\x02\u01BC" + - "\u01BD\x07B\x02\x02\u01BD\u024C\x03\x02\x02\x02\u01BE\u01BF\x076\x02\x02" + - "\u01BF\u024C\x05*\x16\x1B\u01C0\u01C1\x05L\'\x02\u01C1\u01C2\x07\"\x02" + - "\x02\u01C2\u01C3\x07@\x02\x02\u01C3\u01C4\x05*\x16\x17\u01C4\u024C\x03" + - "\x02\x02\x02\u01C5\u01C6\x07-\x02\x02\u01C6\u01C7\x07\x04\x02\x02\u01C7" + - "\u01CC\x05*\x16\x02\u01C8\u01C9\x07\n\x02\x02\u01C9\u01CB\x05*\x16\x02" + - "\u01CA\u01C8\x03\x02\x02\x02\u01CB\u01CE\x03\x02\x02\x02\u01CC\u01CA\x03" + - "\x02\x02\x02\u01CC\u01CD\x03\x02\x02\x02\u01CD\u01D0\x03\x02\x02\x02\u01CE" + - "\u01CC\x03\x02\x02\x02\u01CF\u01D1\x07\n\x02\x02\u01D0\u01CF\x03\x02\x02" + - "\x02\u01D0\u01D1\x03\x02\x02\x02\u01D1\u01D2\x03\x02\x02\x02\u01D2\u01D3" + - "\x07\x05\x02\x02\u01D3\u024C\x03\x02\x02\x02\u01D4\u01D5\x07.\x02\x02" + - "\u01D5\u01D6\x07\x04\x02\x02\u01D6\u01DB\x05*\x16\x02\u01D7\u01D8\x07" + - "\n\x02\x02\u01D8\u01DA\x05*\x16\x02\u01D9\u01D7\x03\x02\x02\x02\u01DA" + - "\u01DD\x03\x02\x02\x02\u01DB\u01D9\x03\x02\x02\x02\u01DB\u01DC\x03\x02" + - "\x02\x02\u01DC\u01DF\x03\x02\x02\x02\u01DD\u01DB\x03\x02\x02\x02\u01DE" + - "\u01E0\x07\n\x02\x02\u01DF\u01DE\x03\x02\x02\x02\u01DF\u01E0\x03\x02\x02" + - "\x02\u01E0\u01E1\x03\x02\x02\x02\u01E1\u01E2\x07\x05\x02\x02\u01E2\u024C" + - "\x03\x02\x02\x02\u01E3\u024C\x05,\x17\x02\u01E4\u01E5\x07#\x02\x02\u01E5" + - "\u01E6\x07\x04\x02\x02\u01E6\u01EB\x05*\x16\x02\u01E7\u01E8\x07\n\x02" + - "\x02\u01E8\u01EA\x05*\x16\x02\u01E9\u01E7\x03\x02\x02\x02\u01EA\u01ED" + - "\x03\x02\x02\x02\u01EB\u01E9\x03\x02\x02\x02\u01EB\u01EC\x03\x02\x02\x02" + - "\u01EC\u01EF\x03\x02\x02\x02\u01ED\u01EB\x03\x02\x02\x02\u01EE\u01F0\x07" + - "\n\x02\x02\u01EF\u01EE\x03\x02\x02\x02\u01EF\u01F0\x03\x02\x02\x02\u01F0" + - "\u01F1\x03\x02\x02\x02\u01F1\u01F2\x07\x05\x02\x02\u01F2\u024C\x03\x02" + - "\x02\x02\u01F3\u01F4\x07$\x02\x02\u01F4\u01F5\x07\x04"; + "\x12\x03\x12\x05\x12\u0179\n\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12" + + "\x03\x12\x07\x12\u0181\n\x12\f\x12\x0E\x12\u0184\v\x12\x03\x13\x03\x13" + + "\x03\x13\x03\x13\x03\x13\x07\x13\u018B\n\x13\f\x13\x0E\x13\u018E\v\x13" + + "\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x03\x13\x05\x13\u0197" + + "\n\x13\x05\x13\u0199\n\x13\x03\x13\x03\x13\x05\x13\u019D\n\x13\x03\x14" + + "\x03\x14\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x05\x15\u01A6\n\x15\x03" + + "\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03" + + "\x15\x03\x15\x03\x15\x03\x15\x03\x15\x07\x15\u01B6\n\x15\f\x15\x0E\x15" + + "\u01B9\v\x15\x03\x15\x05\x15\u01BC\n\x15\x03\x15\x03\x15\x03\x15\x03\x15" + + "\x03\x15\x03\x15\x03\x15\x07\x15\u01C5\n\x15\f\x15\x0E\x15\u01C8\v\x15" + + "\x03\x15\x05\x15\u01CB\n\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03" + + "\x15\x03\x15\x03\x15\x07\x15\u01D5\n\x15\f\x15\x0E\x15\u01D8\v\x15\x03" + + "\x15\x05\x15\u01DB\n\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15" + + "\x03\x15\x07\x15\u01E4\n\x15\f\x15\x0E\x15\u01E7\v\x15\x03\x15\x05\x15" + + "\u01EA\n\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x05\x15\u01F2" + + "\n\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x07\x15\u01FA\n" + + "\x15\f\x15\x0E\x15\u01FD\v\x15\x03\x15\x05\x15\u0200\n\x15\x03\x15\x03" + + "\x15\x03\x15\x03\x15\x03\x15\x03\x15\x07\x15\u0208\n\x15\f\x15\x0E\x15" + + "\u020B\v\x15\x03\x15\x05\x15\u020E\n\x15\x03\x15\x03\x15\x03\x15\x03\x15" + + "\x03\x15\x03\x15\x07\x15\u0216\n\x15\f\x15\x0E\x15\u0219\v\x15\x05\x15" + + "\u021B\n\x15\x03\x15\x05\x15\u021E\n\x15\x03\x15\x03\x15\x03\x15\x03\x15" + + "\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15" + + "\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15" + + "\x03\x15\x05\x15\u0237\n\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03" + + "\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03" + + "\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03" + + "\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03" + + "\x15\x03\x15\x03\x15\x03\x15\x03\x15\x05\x15\u025E\n\x15\x03\x15\x05\x15" + + "\u0261\n\x15\x03\x15\x03\x15\x03\x15\x03\x15\x03\x15\x07\x15\u0268\n\x15" + + "\f\x15\x0E\x15\u026B\v\x15\x03\x16\x03\x16\x03\x16\x03\x16\x05\x16\u0271" + + "\n\x16\x03\x16\x03\x16\x03\x16\x07\x16\u0276\n\x16\f\x16\x0E\x16\u0279" + + "\v\x16\x03\x16\x03\x16\x03\x17\x03\x17\x05\x17\u027F\n\x17\x03\x17\x03" + + "\x17\x03\x17\x03\x18\x03\x18\x03\x18\x03\x18\x05\x18\u0288\n\x18\x03\x18" + + "\x05\x18\u028B\n\x18\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03\x19\x03" + + "\x19\x03\x19\x03\x19\x05\x19\u0296\n\x19\x03\x1A\x03\x1A\x05\x1A\u029A" + + "\n\x1A\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1B\x03\x1B" + + "\x07\x1B\u02A4\n\x1B\f\x1B\x0E\x1B\u02A7\v\x1B\x03\x1B\x03\x1B\x03\x1B" + + "\x03\x1B\x05\x1B\u02AD\n\x1B\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x06" + + "\x1C\u02B4\n\x1C\r\x1C\x0E\x1C\u02B5\x03\x1C\x03\x1C\x03\x1C\x03\x1C\x03" + + "\x1C\x03\x1D\x03\x1D\x05\x1D\u02BF\n\x1D\x03\x1E\x03\x1E\x03\x1F\x03\x1F" + + "\x05\x1F\u02C5\n\x1F\x03 \x03 \x03 \x07 \u02CA\n \f \x0E \u02CD\v \x03" + + "!\x03!\x03!\x03!\x03!\x03!\x05!\u02D5\n!\x03\"\x03\"\x05\"\u02D9\n\"\x03" + + "#\x03#\x05#\u02DD\n#\x03$\x03$\x03%\x03%\x03&\x03&\x03&\x07&\u02E6\n&" + + "\f&\x0E&\u02E9\v&\x03\'\x03\'\x03\'\x03\'\x05\'\u02EF\n\'\x03\'\x02\x02" + + "\x04\"((\x02\x02\x04\x02\x06\x02\b\x02\n\x02\f\x02\x0E\x02\x10\x02\x12" + + "\x02\x14\x02\x16\x02\x18\x02\x1A\x02\x1C\x02\x1E\x02 \x02\"\x02$\x02&" + + "\x02(\x02*\x02,\x02.\x020\x022\x024\x026\x028\x02:\x02<\x02>\x02@\x02" + + "B\x02D\x02F\x02H\x02J\x02L\x02\x02\t\x03\x0279\x03\x0256\x03\x02:?\x03" + + "\x02-3\x03\x02-0\x05\x02!!-05?\x03\x02*,\x02\u0351\x02O\x03\x02\x02\x02" + + "\x04X\x03\x02\x02\x02\x06i\x03\x02\x02\x02\b\x82\x03\x02\x02\x02\n\x84" + + "\x03\x02\x02\x02\f\xC8\x03\x02\x02\x02\x0E\xCA\x03\x02\x02\x02\x10\xD1" + + "\x03\x02\x02\x02\x12\xE5\x03\x02\x02\x02\x14\xF9\x03\x02\x02\x02\x16\u0106" + + "\x03\x02\x02\x02\x18\u0136\x03\x02\x02\x02\x1A\u0138\x03\x02\x02\x02\x1C" + + "\u013A\x03\x02\x02\x02\x1E\u013C\x03\x02\x02\x02 \u013E\x03\x02\x02\x02" + + "\"\u0178\x03\x02\x02\x02$\u019C\x03\x02\x02\x02&\u019E\x03\x02\x02\x02" + + "(\u0236\x03\x02\x02\x02*\u026C\x03\x02\x02\x02,\u027E\x03\x02\x02\x02" + + ".\u0283\x03\x02\x02\x020\u0295\x03\x02\x02\x022\u0299\x03\x02\x02\x02" + + "4\u02AC\x03\x02\x02\x026\u02AE\x03\x02\x02\x028\u02BE\x03\x02\x02\x02" + + ":\u02C0\x03\x02\x02\x02<\u02C4\x03\x02\x02\x02>\u02C6\x03\x02\x02\x02" + + "@\u02D4\x03\x02\x02\x02B\u02D8\x03\x02\x02\x02D\u02DC\x03\x02\x02\x02" + + "F\u02DE\x03\x02\x02\x02H\u02E0\x03\x02\x02\x02J\u02E2\x03\x02\x02\x02" + + "L\u02EE\x03\x02\x02\x02NP\x05\x04\x03\x02ON\x03\x02\x02\x02PQ\x03\x02" + + "\x02\x02QO\x03\x02\x02\x02QR\x03\x02\x02\x02RS\x03\x02\x02\x02ST\x07\x02" + + "\x02\x03T\x03\x03\x02\x02\x02UW\x07D\x02\x02VU\x03\x02\x02\x02WZ\x03\x02" + + "\x02\x02XV\x03\x02\x02\x02XY\x03\x02\x02\x02Y[\x03\x02\x02\x02ZX\x03\x02" + + "\x02\x02[\\\x07\x03\x02\x02\\]\x05J&\x02]a\x07\x04\x02\x02^`\x05\x06\x04" + + "\x02_^\x03\x02\x02\x02`c\x03\x02\x02\x02a_\x03\x02\x02\x02ab\x03\x02\x02" + + "\x02bd\x03\x02\x02\x02ca\x03\x02\x02\x02de\x07\x05\x02\x02e\x05\x03\x02" + + "\x02\x02fh\x07D\x02\x02gf\x03\x02\x02\x02hk\x03\x02\x02\x02ig\x03\x02" + + "\x02\x02ij\x03\x02\x02\x02jl\x03\x02\x02\x02ki\x03\x02\x02\x02lm\x05\b" + + "\x05\x02m\x07\x03\x02\x02\x02no\x07\x06\x02\x02op\x05J&\x02pq\x07\x07" + + "\x02\x02qr\x05\"\x12\x02r\x83\x03\x02\x02\x02st\x07\b\x02\x02tu\x05J&" + + "\x02uv\x07\x07\x02\x02vw\x05\"\x12\x02w\x83\x03\x02\x02\x02xy\x07\t\x02" + + "\x02yz\x058\x1D\x02z{\x07@\x02\x02{|\x05(\x15\x02|\x83\x03\x02\x02\x02" + + "}\x83\x05\x18\r\x02~\x83\x05\n\x06\x02\x7F\x83\x05\f\x07\x02\x80\x83\x05" + + "\x14\v\x02\x81\x83\x05\x16\f\x02\x82n\x03\x02\x02\x02\x82s\x03\x02\x02" + + "\x02\x82x\x03\x02\x02\x02\x82}\x03\x02\x02\x02\x82~\x03\x02\x02\x02\x82" + + "\x7F\x03\x02\x02\x02\x82\x80\x03\x02\x02\x02\x82\x81\x03\x02\x02\x02\x83" + + "\t\x03\x02\x02\x02\x84\x85\x05\x12\n\x02\x85\xAA\x05B\"\x02\x86\x8F\x07" + + "A\x02\x02\x87\x8C\x05:\x1E\x02\x88\x89\x07\n\x02\x02\x89\x8B\x05:\x1E" + + "\x02\x8A\x88\x03\x02\x02\x02\x8B\x8E\x03\x02\x02\x02\x8C\x8A\x03\x02\x02" + + "\x02\x8C\x8D\x03\x02\x02\x02\x8D\x90\x03\x02\x02\x02\x8E\x8C\x03\x02\x02" + + "\x02\x8F\x87\x03\x02\x02\x02\x8F\x90\x03\x02\x02\x02\x90\x91\x03\x02\x02" + + "\x02\x91\x94\x07B\x02\x02\x92\x93\x07\x07\x02\x02\x93\x95\x05\"\x12\x02" + + "\x94\x92\x03\x02\x02\x02\x94\x95\x03\x02\x02\x02\x95\xAB\x03\x02\x02\x02" + + "\x96\x97\x07\x07\x02\x02\x97\xAB\x05\"\x12\x02\x98\x99\x07A\x02\x02\x99" + + "\x9A\x05:\x1E\x02\x9A\x9B\x07\x07\x02\x02\x9B\xA3\x05\"\x12\x02\x9C\x9D" + + "\x07\n\x02\x02\x9D\x9E\x05:\x1E\x02\x9E\x9F\x07\x07\x02\x02\x9F\xA0\x05" + + "\"\x12\x02\xA0\xA2\x03\x02\x02\x02\xA1\x9C\x03\x02\x02\x02\xA2\xA5\x03" + + "\x02\x02\x02\xA3\xA1\x03\x02\x02\x02\xA3\xA4\x03\x02\x02\x02\xA4\xA6\x03" + + "\x02\x02\x02\xA5\xA3\x03\x02\x02\x02\xA6\xA7\x07B\x02\x02\xA7\xA8\x07" + + "\x07\x02\x02\xA8\xA9\x05\"\x12\x02\xA9\xAB\x03\x02\x02\x02\xAA\x86\x03" + + "\x02\x02\x02\xAA\x96\x03\x02\x02\x02\xAA\x98\x03\x02\x02\x02\xAA\xAB\x03" + + "\x02\x02\x02\xAB\xAE\x03\x02\x02\x02\xAC\xAD\x07@\x02\x02\xAD\xAF\x05" + + "(\x15\x02\xAE\xAC\x03\x02\x02\x02\xAE\xAF\x03\x02\x02\x02\xAF\xB1\x03" + + "\x02\x02\x02\xB0\xB2\x07\v\x02\x02\xB1\xB0\x03\x02\x02\x02\xB1\xB2\x03" + + "\x02\x02\x02\xB2\v\x03\x02\x02\x02\xB3\xB4\x07\f\x02\x02\xB4\xC9\x05J" + + "&\x02\xB5\xB6\x07\f\x02\x02\xB6\xB7\x05J&\x02\xB7\xB8\x07@\x02\x02\xB8" + + "\xB9\x05\"\x12\x02\xB9\xC9\x03\x02\x02\x02\xBA\xBB\x07\f\x02\x02\xBB\xBC" + + "\x05J&\x02\xBC\xBE\x07@\x02\x02\xBD\xBF\x07\r\x02\x02\xBE\xBD\x03\x02" + + "\x02\x02\xBE\xBF\x03\x02\x02\x02\xBF\xC0\x03\x02\x02\x02\xC0\xC5\x05\x0E" + + "\b\x02\xC1\xC2\x07\r\x02\x02\xC2\xC4\x05\x0E\b\x02\xC3\xC1\x03\x02\x02" + + "\x02\xC4\xC7\x03\x02\x02\x02\xC5\xC3\x03\x02\x02\x02\xC5\xC6\x03\x02\x02" + + "\x02\xC6\xC9\x03\x02\x02\x02\xC7\xC5\x03\x02\x02\x02\xC8\xB3\x03\x02\x02" + + "\x02\xC8\xB5\x03\x02\x02\x02\xC8\xBA\x03\x02\x02\x02\xC9\r\x03\x02\x02" + + "\x02\xCA\xCF\x05L\'\x02\xCB\xCC\x07A\x02\x02\xCC\xCD\x05\"\x12\x02\xCD" + + "\xCE\x07B\x02\x02\xCE\xD0\x03\x02\x02\x02\xCF\xCB\x03\x02\x02\x02\xCF" + + "\xD0\x03\x02\x02\x02\xD0\x0F\x03\x02\x02\x02\xD1\xD2\x07\x0E\x02\x02\xD2" + + "\xD5\x05J&\x02\xD3\xD4\x07\x07\x02\x02\xD4\xD6\x05\"\x12\x02\xD5\xD3\x03" + + "\x02\x02\x02\xD5\xD6\x03\x02\x02\x02\xD6\xD7\x03\x02\x02\x02\xD7\xD8\x07" + + "@\x02\x02\xD8\xDA\x05(\x15\x02\xD9\xDB\x07\v\x02\x02\xDA\xD9\x03\x02\x02" + + "\x02\xDA\xDB\x03\x02\x02\x02\xDB\x11\x03\x02\x02\x02\xDC\xE6\x07\x0F\x02" + + "\x02\xDD\xE6\x07\x10\x02\x02\xDE\xDF\x07\x11\x02\x02\xDF\xE6\x07\x0F\x02" + + "\x02\xE0\xE1\x07\x11\x02\x02\xE1\xE6\x07\x10\x02\x02\xE2\xE6\x07\x12\x02" + + "\x02\xE3\xE6\x07\x13\x02\x02\xE4\xE6\x07\x14\x02\x02\xE5\xDC\x03\x02\x02" + + "\x02\xE5\xDD\x03\x02\x02\x02\xE5\xDE\x03\x02\x02\x02\xE5\xE0\x03\x02\x02" + + "\x02\xE5\xE2\x03\x02\x02\x02\xE5\xE3\x03\x02\x02\x02\xE5\xE4\x03\x02\x02" + + "\x02\xE6\x13\x03\x02\x02\x02\xE7\xE8\x07\x15\x02\x02\xE8\xE9\x05\x1C\x0F" + + "\x02\xE9\xEA\x07\x16\x02\x02\xEA\xED\x05<\x1F\x02\xEB\xEC\x07\x17\x02" + + "\x02\xEC\xEE\x05 \x11\x02\xED\xEB\x03\x02\x02\x02\xED\xEE\x03\x02\x02" + + "\x02\xEE\xFA\x03\x02\x02\x02\xEF\xF0\x07\x15\x02\x02\xF0\xF3\x05\x1C\x0F" + + "\x02\xF1\xF2\x07\x18\x02\x02\xF2\xF4\x05\x1C\x0F\x02\xF3\xF1\x03\x02\x02" + + "\x02\xF3\xF4\x03\x02\x02\x02\xF4\xF7\x03\x02\x02\x02\xF5\xF6\x07\x17\x02" + + "\x02\xF6\xF8\x05 \x11\x02\xF7\xF5\x03\x02\x02\x02\xF7\xF8\x03\x02\x02" + + "\x02\xF8\xFA\x03\x02\x02\x02\xF9\xE7\x03\x02\x02\x02\xF9\xEF\x03\x02\x02" + + "\x02\xFA\x15\x03\x02\x02\x02\xFB\xFC\x07\x19\x02\x02\xFC\xFD\x05\x1C\x0F" + + "\x02\xFD\xFE\x07\x16\x02\x02\xFE\xFF\x05<\x1F\x02\xFF\u0107\x03\x02\x02" + + "\x02\u0100\u0101\x07\x19\x02\x02\u0101\u0104\x05\x1C\x0F\x02\u0102\u0103" + + "\x07\x18\x02\x02\u0103\u0105\x05\x1C\x0F\x02\u0104\u0102\x03\x02\x02\x02" + + "\u0104\u0105\x03\x02\x02\x02\u0105\u0107\x03\x02\x02\x02\u0106\xFB\x03" + + "\x02\x02\x02\u0106\u0100\x03\x02\x02\x02\u0107\x17\x03\x02\x02\x02\u0108" + + "\u0109\x07\x15\x02\x02\u0109\u010A\x05\x1A\x0E\x02\u010A\u010B\x07A\x02" + + "\x02\u010B\u010C\x05\x1C\x0F\x02\u010C\u010D\x07@\x02\x02\u010D\u0115" + + "\x05(\x15\x02\u010E\u010F\x07\n\x02\x02\u010F\u0110\x05\x1C\x0F\x02\u0110" + + "\u0111\x07@\x02\x02\u0111\u0112\x05(\x15\x02\u0112\u0114\x03\x02\x02\x02" + + "\u0113\u010E\x03\x02\x02\x02\u0114\u0117\x03\x02\x02\x02\u0115\u0113\x03" + + "\x02\x02\x02\u0115\u0116\x03\x02\x02\x02\u0116\u0118\x03\x02\x02\x02\u0117" + + "\u0115\x03\x02\x02\x02\u0118\u0119\x07B\x02\x02\u0119\u011A\x07\x16\x02" + + "\x02\u011A\u011D\x077\x02\x02\u011B\u011C\x07\x17\x02\x02\u011C\u011E" + + "\x05 \x11\x02\u011D\u011B\x03\x02\x02\x02\u011D\u011E\x03\x02\x02\x02" + + "\u011E\u0137\x03\x02\x02\x02\u011F\u0120\x07\x15\x02\x02\u0120\u0121\x05" + + "\x1A\x0E\x02\u0121\u0122\x07A\x02\x02\u0122\u0123\x05\x1C\x0F\x02\u0123" + + "\u0124\x07@\x02\x02\u0124\u012C\x05(\x15\x02\u0125\u0126\x07\n\x02\x02" + + "\u0126\u0127\x05\x1C\x0F\x02\u0127\u0128\x07@\x02\x02\u0128\u0129\x05" + + "(\x15\x02\u0129\u012B\x03\x02\x02\x02\u012A\u0125\x03\x02\x02\x02\u012B" + + "\u012E\x03\x02\x02\x02\u012C\u012A\x03\x02\x02\x02\u012C\u012D\x03\x02" + + "\x02\x02\u012D\u012F\x03\x02\x02\x02\u012E\u012C\x03\x02\x02\x02\u012F" + + "\u0130\x07B\x02\x02\u0130\u0131\x07\x18\x02\x02\u0131\u0134\x05\x1E\x10" + + "\x02\u0132\u0133\x07\x17\x02\x02\u0133\u0135\x05 \x11\x02\u0134\u0132" + + "\x03\x02\x02\x02\u0134\u0135\x03\x02\x02\x02\u0135\u0137\x03\x02\x02\x02" + + "\u0136\u0108\x03\x02\x02\x02\u0136\u011F\x03\x02\x02\x02\u0137\x19\x03" + + "\x02\x02\x02\u0138\u0139\x05J&\x02\u0139\x1B\x03\x02\x02\x02\u013A\u013B" + + "\x05J&\x02\u013B\x1D\x03\x02\x02\x02\u013C\u013D\x05J&\x02\u013D\x1F\x03" + + "\x02\x02\x02\u013E\u013F\x07*\x02\x02\u013F!\x03\x02\x02\x02\u0140\u0141" + + "\b\x12\x01\x02\u0141\u014A\x07A\x02\x02\u0142\u0147\x05\"\x12\x02\u0143" + + "\u0144\x07\n\x02\x02\u0144\u0146\x05\"\x12\x02\u0145\u0143\x03\x02\x02" + + "\x02\u0146\u0149\x03\x02\x02\x02\u0147\u0145\x03\x02\x02\x02\u0147\u0148" + + "\x03\x02\x02\x02\u0148\u014B\x03\x02\x02\x02\u0149\u0147\x03\x02\x02\x02" + + "\u014A\u0142\x03\x02\x02\x02\u014A\u014B\x03\x02\x02\x02\u014B\u014D\x03" + + "\x02\x02\x02\u014C\u014E\x07\n\x02\x02\u014D\u014C\x03\x02\x02\x02\u014D" + + "\u014E\x03\x02\x02\x02\u014E\u014F\x03\x02\x02\x02\u014F\u0150\x07B\x02" + + "\x02\u0150\u0151\x07\x1B\x02\x02\u0151\u0179\x05\"\x12\f\u0152\u0153\x07" + + "1\x02\x02\u0153\u0154\x07\x1C\x02\x02\u0154\u0155\x05\"\x12\x02\u0155" + + "\u0156\x07\x1D\x02\x02\u0156\u0179\x03\x02\x02\x02\u0157\u0158\x072\x02" + + "\x02\u0158\u0159\x07\x1C\x02\x02\u0159\u015A\x05\"\x12\x02\u015A\u015B" + + "\x07\x1D\x02\x02\u015B\u0179\x03\x02\x02\x02\u015C\u015D\x07A\x02\x02" + + "\u015D\u015E\x05\"\x12\x02\u015E\u015F\x07\n\x02\x02\u015F\u0164\x05\"" + + "\x12\x02\u0160\u0161\x07\n\x02\x02\u0161\u0163\x05\"\x12\x02\u0162\u0160" + + "\x03\x02\x02\x02\u0163\u0166\x03\x02\x02\x02\u0164\u0162\x03\x02\x02\x02" + + "\u0164\u0165\x03\x02\x02\x02\u0165\u0168\x03\x02\x02\x02\u0166\u0164\x03" + + "\x02\x02\x02\u0167\u0169\x07\n\x02\x02\u0168\u0167\x03\x02\x02\x02\u0168" + + "\u0169\x03\x02\x02\x02\u0169\u016A\x03\x02\x02\x02\u016A\u016B\x07B\x02" + + "\x02\u016B\u0179\x03\x02\x02\x02\u016C\u016D\x07\x04\x02\x02\u016D\u016E" + + "\x05$\x13\x02\u016E\u016F\x07\x05\x02\x02\u016F\u0179\x03\x02\x02\x02" + + "\u0170\u0179\x07\x1E\x02\x02\u0171\u0179\x07\x1F\x02\x02\u0172\u0179\x07" + + " \x02\x02\u0173\u0179\x05J&\x02\u0174\u0175\x07A\x02\x02\u0175\u0176\x05" + + "\"\x12\x02\u0176\u0177\x07B\x02\x02\u0177\u0179\x03\x02\x02\x02\u0178" + + "\u0140\x03\x02\x02\x02\u0178\u0152\x03\x02\x02\x02\u0178\u0157\x03\x02" + + "\x02\x02\u0178\u015C\x03\x02\x02\x02\u0178\u016C\x03\x02\x02\x02\u0178" + + "\u0170\x03\x02\x02\x02\u0178\u0171\x03\x02\x02\x02\u0178\u0172\x03\x02" + + "\x02\x02\u0178\u0173\x03\x02\x02\x02\u0178\u0174\x03\x02\x02\x02\u0179" + + "\u0182\x03\x02\x02\x02\u017A\u017B\f\x0E\x02\x02\u017B\u017C\x07\x1A\x02" + + "\x02\u017C\u0181\x05\"\x12\x0E\u017D\u017E\f\r\x02\x02\u017E\u017F\x07" + + "\x1B\x02\x02\u017F\u0181\x05\"\x12\r\u0180\u017A\x03\x02\x02\x02\u0180" + + "\u017D\x03\x02\x02\x02\u0181\u0184\x03\x02\x02\x02\u0182\u0180\x03\x02" + + "\x02\x02\u0182\u0183\x03\x02\x02\x02\u0183#\x03\x02\x02\x02\u0184\u0182" + + "\x03\x02\x02\x02\u0185\u0186\x05&\x14\x02\u0186\u0187\x07\x07\x02\x02" + + "\u0187\u0188\x05\"\x12\x02\u0188\u0189\x07\n\x02\x02\u0189\u018B\x03\x02" + + "\x02\x02\u018A\u0185\x03\x02\x02\x02\u018B\u018E\x03\x02\x02\x02\u018C" + + "\u018A\x03\x02\x02\x02\u018C\u018D\x03\x02\x02\x02\u018D\u0198\x03\x02" + + "\x02\x02\u018E\u018C\x03\x02\x02\x02\u018F\u0190\x05&\x14\x02\u0190\u0191" + + "\x07\x07\x02\x02\u0191\u0192\x05\"\x12\x02\u0192\u0196\x03\x02\x02\x02" + + "\u0193\u0197\x07\n\x02\x02\u0194\u0195\x07\r\x02\x02\u0195\u0197\x07C" + + "\x02\x02\u0196\u0193\x03\x02\x02\x02\u0196\u0194\x03\x02\x02\x02\u0196" + + "\u0197\x03\x02\x02\x02\u0197\u0199\x03\x02\x02\x02\u0198\u018F\x03\x02" + + "\x02\x02\u0198\u0199\x03\x02\x02\x02\u0199\u019D\x03\x02\x02\x02\u019A" + + "\u019B\x07\r\x02\x02\u019B\u019D\x07C\x02\x02\u019C\u018C\x03\x02\x02" + + "\x02\u019C\u019A\x03\x02\x02\x02\u019D%\x03\x02\x02\x02\u019E\u019F\x05" + + "L\'\x02\u019F\'\x03\x02\x02\x02\u01A0\u01A1\b\x15\x01\x02\u01A1\u0237" + + "\x052\x1A\x02\u01A2\u01A3\x05B\"\x02\u01A3\u01A5\x07A\x02\x02\u01A4\u01A6" + + "\x05> \x02\u01A5\u01A4\x03\x02\x02\x02\u01A5\u01A6\x03\x02\x02\x02\u01A6" + + "\u01A7\x03\x02\x02\x02\u01A7\u01A8\x07B\x02\x02\u01A8\u0237\x03\x02\x02" + + "\x02\u01A9\u01AA\x076\x02\x02\u01AA\u0237\x05(\x15\x1B\u01AB\u01AC\x05" + + "J&\x02\u01AC\u01AD\x07\"\x02\x02\u01AD\u01AE\x07@\x02\x02\u01AE\u01AF" + + "\x05(\x15\x17\u01AF\u0237\x03\x02\x02\x02\u01B0\u01B1\x07-\x02\x02\u01B1" + + "\u01B2\x07\x04\x02\x02\u01B2\u01B7\x05(\x15\x02\u01B3\u01B4\x07\n\x02" + + "\x02\u01B4\u01B6\x05(\x15\x02\u01B5\u01B3\x03\x02\x02\x02\u01B6\u01B9" + + "\x03\x02\x02\x02\u01B7\u01B5\x03\x02\x02\x02\u01B7\u01B8\x03\x02\x02\x02" + + "\u01B8\u01BB\x03\x02\x02\x02\u01B9\u01B7\x03\x02\x02\x02\u01BA\u01BC\x07" + + "\n\x02\x02\u01BB\u01BA\x03\x02\x02\x02\u01BB\u01BC\x03\x02\x02\x02\u01BC" + + "\u01BD\x03\x02\x02\x02\u01BD\u01BE\x07\x05\x02\x02\u01BE\u0237\x03\x02" + + "\x02\x02\u01BF\u01C0\x07.\x02\x02\u01C0\u01C1\x07\x04\x02\x02\u01C1\u01C6" + + "\x05(\x15\x02\u01C2\u01C3\x07\n\x02\x02\u01C3\u01C5\x05(\x15\x02\u01C4" + + "\u01C2\x03\x02\x02\x02\u01C5\u01C8\x03\x02\x02\x02\u01C6\u01C4\x03\x02" + + "\x02\x02\u01C6\u01C7\x03\x02\x02\x02\u01C7\u01CA\x03\x02\x02\x02\u01C8" + + "\u01C6\x03\x02\x02\x02\u01C9\u01CB\x07\n\x02\x02\u01CA\u01C9\x03\x02\x02" + + "\x02\u01CA\u01CB\x03\x02\x02\x02\u01CB\u01CC\x03\x02\x02\x02\u01CC\u01CD" + + "\x07\x05\x02\x02\u01CD\u0237\x03\x02\x02\x02\u01CE\u0237\x05*\x16\x02" + + "\u01CF\u01D0\x07#\x02\x02\u01D0\u01D1\x07\x04\x02\x02\u01D1\u01D6\x05" + + "(\x15\x02\u01D2\u01D3\x07\n\x02\x02\u01D3\u01D5\x05(\x15\x02\u01D4\u01D2" + + "\x03\x02\x02\x02\u01D5\u01D8\x03\x02\x02\x02\u01D6\u01D4\x03\x02\x02\x02" + + "\u01D6\u01D7\x03\x02\x02\x02\u01D7\u01DA\x03\x02\x02\x02\u01D8\u01D6\x03" + + "\x02\x02\x02\u01D9\u01DB\x07\n\x02\x02\u01DA\u01D9\x03\x02\x02\x02\u01DA" + + "\u01DB\x03\x02\x02\x02\u01DB\u01DC\x03\x02\x02\x02\u01DC\u01DD\x07\x05" + + "\x02\x02\u01DD\u0237\x03\x02\x02\x02\u01DE\u01DF\x07$\x02\x02\u01DF\u01E0" + + "\x07\x04\x02\x02\u01E0\u01E5\x05(\x15\x02\u01E1\u01E2\x07\n\x02\x02\u01E2" + + "\u01E4\x05(\x15\x02\u01E3\u01E1\x03\x02\x02\x02\u01E4\u01E7\x03\x02\x02" + + "\x02\u01E5\u01E3\x03\x02\x02\x02\u01E5\u01E6\x03\x02\x02\x02\u01E6\u01E9" + + "\x03\x02\x02\x02\u01E7\u01E5\x03\x02\x02\x02\u01E8\u01EA\x07\n\x02\x02" + + "\u01E9\u01E8\x03\x02\x02\x02\u01E9\u01EA\x03\x02\x02\x02\u01EA\u01EB\x03" + + "\x02\x02\x02\u01EB\u01EC\x07\x05\x02\x02\u01EC\u0237\x03\x02\x02\x02\u01ED" + + "\u01F2\x05J&\x02\u01EE\u01F2\x07,\x02\x02\u01EF\u01F2\x07+\x02\x02\u01F0" + + "\u01F2\x07*\x02\x02\u01F1\u01ED\x03\x02\x02\x02\u01F1\u01EE\x03\x02\x02" + + "\x02\u01F1\u01EF\x03\x02\x02\x02\u01F1\u01F0\x03\x02\x02\x02\u01F2\u0237" + + "\x03\x02\x02\x02\u01F3\u01F4\x07A\x02\x02\u01F4\u01F5\x05(\x15\x02\u01F5" + + "\u01F6\x07\n\x02\x02\u01F6\u01FB\x05(\x15\x02\u01F7\u01F8\x07\n\x02\x02" + + "\u01F8\u01FA\x05(\x15\x02\u01F9\u01F7\x03\x02\x02\x02\u01FA\u01FD\x03" + + "\x02"; private static readonly _serializedATNSegment1: string = - "\x02\x02\u01F5\u01FA\x05*\x16\x02\u01F6\u01F7\x07\n\x02\x02\u01F7\u01F9" + - "\x05*\x16\x02\u01F8\u01F6\x03\x02\x02\x02\u01F9\u01FC\x03\x02\x02\x02" + - "\u01FA\u01F8\x03\x02\x02\x02\u01FA\u01FB\x03\x02\x02\x02\u01FB\u01FE\x03" + - "\x02\x02\x02\u01FC\u01FA\x03\x02\x02\x02\u01FD\u01FF\x07\n\x02\x02\u01FE" + - "\u01FD\x03\x02\x02\x02\u01FE\u01FF\x03\x02\x02\x02\u01FF\u0200\x03\x02" + - "\x02\x02\u0200\u0201\x07\x05\x02\x02\u0201\u024C\x03\x02\x02\x02\u0202" + - "\u0207\x05L\'\x02\u0203\u0207\x07,\x02\x02\u0204\u0207\x07+\x02\x02\u0205" + - "\u0207\x07*\x02\x02\u0206\u0202\x03\x02\x02\x02\u0206\u0203\x03\x02\x02" + - "\x02\u0206\u0204\x03\x02\x02\x02\u0206\u0205\x03\x02\x02\x02\u0207\u024C" + - "\x03\x02\x02\x02\u0208\u0209\x07A\x02\x02\u0209\u020A\x05*\x16\x02\u020A" + - "\u020B\x07\n\x02\x02\u020B\u0210\x05*\x16\x02\u020C\u020D\x07\n\x02\x02" + - "\u020D\u020F\x05*\x16\x02\u020E\u020C\x03\x02\x02\x02\u020F\u0212\x03" + - "\x02\x02\x02\u0210\u020E\x03\x02\x02\x02\u0210\u0211\x03\x02\x02\x02\u0211" + - "\u0214\x03\x02\x02\x02\u0212\u0210\x03\x02\x02\x02\u0213\u0215\x07\n\x02" + - "\x02\u0214\u0213\x03\x02\x02\x02\u0214\u0215\x03\x02\x02\x02\u0215\u0216" + - "\x03\x02\x02\x02\u0216\u0217\x07B\x02\x02\u0217\u024C\x03\x02\x02\x02" + - "\u0218\u0219\x07\x04\x02\x02\u0219\u021E\x05B\"\x02\u021A\u021B\x07\n" + - "\x02\x02\u021B\u021D\x05B\"\x02\u021C\u021A\x03\x02\x02\x02\u021D\u0220" + - "\x03\x02\x02\x02\u021E\u021C\x03\x02\x02\x02\u021E\u021F\x03\x02\x02\x02" + - "\u021F\u0222\x03\x02\x02\x02\u0220\u021E\x03\x02\x02\x02\u0221\u0223\x07" + - "\n\x02\x02\u0222\u0221\x03\x02\x02\x02\u0222\u0223\x03\x02\x02\x02\u0223" + - "\u0224\x03\x02\x02\x02\u0224\u0225\x07\x05\x02\x02\u0225\u024C\x03\x02" + - "\x02\x02\u0226\u022F\x07\x1C\x02\x02\u0227\u022C\x05*\x16\x02\u0228\u0229" + - "\x07\n\x02\x02\u0229\u022B\x05*\x16\x02\u022A\u0228\x03\x02\x02\x02\u022B" + - "\u022E\x03\x02\x02\x02\u022C\u022A\x03\x02\x02\x02\u022C\u022D\x03\x02" + - "\x02\x02\u022D\u0230\x03\x02\x02\x02\u022E\u022C\x03\x02\x02\x02\u022F" + - "\u0227\x03\x02\x02\x02\u022F\u0230\x03\x02\x02\x02\u0230\u0232\x03\x02" + - "\x02\x02\u0231\u0233\x07\n\x02\x02\u0232\u0231\x03\x02\x02\x02\u0232\u0233" + - "\x03\x02\x02\x02\u0233\u0234\x03\x02\x02\x02\u0234\u024C\x07\x1D\x02\x02" + - "\u0235\u0236\x07%\x02\x02\u0236\u0237\x07A\x02\x02\u0237\u0238\x05*\x16" + - "\x02\u0238\u0239\x07B\x02\x02\u0239\u023A\x05*\x16\x02\u023A\u023B\x07" + - "&\x02\x02\u023B\u023C\x05*\x16\x07\u023C\u024C\x03\x02\x02\x02\u023D\u023E" + - "\x05\n\x06\x02\u023E\u023F\x05*\x16\x06\u023F\u024C\x03\x02\x02\x02\u0240" + - "\u0241\x05\x10\t\x02\u0241\u0242\x05*\x16\x05\u0242\u024C\x03\x02\x02" + - "\x02\u0243\u0244\x07A\x02\x02\u0244\u0245\x05*\x16\x02\u0245\u0246\x07" + - "B\x02\x02\u0246\u024C\x03\x02\x02\x02\u0247\u0248\x07\x04\x02\x02\u0248" + - "\u0249\x05*\x16\x02\u0249\u024A\x07\x05\x02\x02\u024A\u024C\x03\x02\x02" + - "\x02\u024B\u01B5\x03\x02\x02\x02\u024B\u01B7\x03\x02\x02\x02\u024B\u01BE" + - "\x03\x02\x02\x02\u024B\u01C0\x03\x02\x02\x02\u024B\u01C5\x03\x02\x02\x02" + - "\u024B\u01D4\x03\x02\x02\x02\u024B\u01E3\x03\x02\x02\x02\u024B\u01E4\x03" + - "\x02\x02\x02\u024B\u01F3\x03\x02\x02\x02\u024B\u0206\x03\x02\x02\x02\u024B" + - "\u0208\x03\x02\x02\x02\u024B\u0218\x03\x02\x02\x02\u024B\u0226\x03\x02" + - "\x02\x02\u024B\u0235\x03\x02\x02\x02\u024B\u023D\x03\x02\x02\x02\u024B" + - "\u0240\x03\x02\x02\x02\u024B\u0243\x03\x02\x02\x02\u024B\u0247\x03\x02" + - "\x02\x02\u024C\u027E\x03\x02\x02\x02\u024D\u024E\f\x1C\x02\x02\u024E\u024F" + - "\x07!\x02\x02\u024F\u027D\x05*\x16\x1C\u0250\u0251\f\x1A\x02\x02\u0251" + - "\u0252\t\x02\x02\x02\u0252\u027D\x05*\x16\x1B\u0253\u0254\f\x19\x02\x02" + - "\u0254\u0255\t\x03\x02\x02\u0255\u027D\x05*\x16\x1A\u0256\u0257\f\x18" + - "\x02\x02\u0257\u0258\t\x04\x02\x02\u0258\u027D\x05*\x16\x19\u0259\u025A" + - "\f\x16\x02\x02\u025A\u025B\x07@\x02\x02\u025B\u025C\x05*\x16\x17\u025C" + - "\u025D\b\x16\x01\x02\u025D\u027D\x03\x02\x02\x02\u025E\u025F\f\x14\x02" + - "\x02\u025F\u0260\x07-\x02\x02\u0260\u027D\x05*\x16\x15\u0261\u0262\f\x12" + - "\x02\x02\u0262\u0263\x07.\x02\x02\u0263\u027D\x05*\x16\x13\u0264\u0265" + - "\f\x11\x02\x02\u0265\u0266\x07/\x02\x02\u0266\u027D\x05*\x16\x12\u0267" + - "\u0268\f\x10\x02\x02\u0268\u0269\x070\x02\x02\u0269\u027D\x05*\x16\x11" + - "\u026A\u026B\f\n\x02\x02\u026B\u026C\x07\x1A\x02\x02\u026C\u027D\x05*" + - "\x16\v\u026D\u026E\f \x02\x02\u026E\u026F\x07\x16\x02\x02\u026F\u0275" + - "\x05F$\x02\u0270\u0272\x07A\x02\x02\u0271\u0273\x05@!\x02\u0272\u0271" + - "\x03\x02\x02\x02\u0272\u0273\x03\x02\x02\x02\u0273\u0274\x03\x02\x02\x02" + - "\u0274\u0276\x07B\x02\x02\u0275\u0270\x03\x02\x02\x02\u0275\u0276\x03" + - "\x02\x02\x02\u0276\u027D\x03\x02\x02\x02\u0277\u0278\f\x1D\x02\x02\u0278" + - "\u0279\x07\x1C\x02\x02\u0279\u027A\x05*\x16\x02\u027A\u027B\x07\x1D\x02" + - "\x02\u027B\u027D\x03\x02\x02\x02\u027C\u024D\x03\x02\x02\x02\u027C\u0250" + - "\x03\x02\x02\x02\u027C\u0253\x03\x02\x02\x02\u027C\u0256\x03\x02\x02\x02" + - "\u027C\u0259\x03\x02\x02\x02\u027C\u025E\x03\x02\x02\x02\u027C\u0261\x03" + - "\x02\x02\x02\u027C\u0264\x03\x02\x02\x02\u027C\u0267\x03\x02\x02\x02\u027C" + - "\u026A\x03\x02\x02\x02\u027C\u026D\x03\x02\x02\x02\u027C\u0277\x03\x02" + - "\x02\x02\u027D\u0280\x03\x02\x02\x02\u027E\u027C\x03\x02\x02\x02\u027E" + - "\u027F\x03\x02\x02\x02\u027F+\x03\x02\x02\x02\u0280\u027E\x03\x02\x02" + - "\x02\u0281\u0282\x074\x02\x02\u0282\u0283\x05*\x16\x02\u0283\u0285\x07" + - "\x04\x02\x02\u0284\u0286\x07\r\x02\x02\u0285\u0284\x03\x02\x02\x02\u0285" + - "\u0286\x03\x02\x02\x02\u0286\u0287\x03\x02\x02\x02\u0287\u028C\x05.\x18" + - "\x02\u0288\u0289\x07\r\x02\x02\u0289\u028B\x05.\x18\x02\u028A\u0288\x03" + - "\x02\x02\x02\u028B\u028E\x03\x02\x02\x02\u028C\u028A\x03\x02\x02\x02\u028C" + - "\u028D\x03\x02\x02\x02\u028D\u028F\x03\x02\x02\x02\u028E\u028C\x03\x02" + - "\x02\x02\u028F\u0290\x07\x05\x02\x02\u0290-\x03\x02\x02\x02\u0291\u0294" + - "\x050\x19\x02\u0292\u0294\x07\'\x02\x02\u0293\u0291\x03\x02\x02\x02\u0293" + - "\u0292\x03\x02\x02\x02\u0294\u0295\x03\x02\x02\x02\u0295\u0296\x07\x1B" + - "\x02\x02\u0296\u0297\x05*\x16\x02\u0297/\x03\x02\x02\x02\u0298\u029F\x05" + - "N(\x02\u0299\u029C\x07A\x02\x02\u029A\u029D\x05N(\x02\u029B\u029D\x07" + - "\'\x02\x02\u029C\u029A\x03\x02\x02\x02\u029C\u029B\x03\x02\x02\x02\u029D" + - "\u029E\x03\x02\x02\x02\u029E\u02A0\x07B\x02\x02\u029F\u0299\x03\x02\x02" + - "\x02\u029F\u02A0\x03\x02\x02\x02\u02A01\x03\x02\x02\x02\u02A1\u02A2\x05" + - "\b\x05\x02\u02A2\u02A3\x07\x02\x02\x03\u02A3\u02AB\x03\x02\x02\x02\u02A4" + - "\u02A5\x05*\x16\x02\u02A5\u02A6\x07\x02\x02\x03\u02A6\u02AB\x03\x02\x02" + - "\x02\u02A7\u02A8\x07D\x02\x02\u02A8\u02AB\x07\x02\x02\x03\u02A9\u02AB" + - "\x07\x02\x02\x03\u02AA\u02A1\x03\x02\x02\x02\u02AA\u02A4\x03\x02\x02\x02" + - "\u02AA\u02A7\x03\x02\x02\x02\u02AA\u02A9\x03\x02\x02\x02\u02AB3\x03\x02" + - "\x02\x02\u02AC\u02AF\x056\x1C\x02\u02AD\u02AF\x058\x1D\x02\u02AE\u02AC" + - "\x03\x02\x02\x02\u02AE\u02AD\x03\x02\x02\x02\u02AF5\x03\x02\x02\x02\u02B0" + - "\u02B1\x05<\x1F\x02\u02B1\u02B2\x07\x1B\x02\x02\u02B2\u02B3\x05*\x16\x02" + - "\u02B3\u02C2\x03\x02\x02\x02\u02B4\u02B5\x07A\x02\x02\u02B5\u02BA\x05" + - "<\x1F\x02\u02B6\u02B7\x07\n\x02\x02\u02B7\u02B9\x05<\x1F\x02\u02B8\u02B6" + - "\x03\x02\x02\x02\u02B9\u02BC\x03\x02\x02\x02\u02BA\u02B8\x03\x02\x02\x02" + - "\u02BA\u02BB\x03\x02\x02\x02\u02BB\u02BD\x03\x02\x02\x02\u02BC\u02BA\x03" + - "\x02\x02\x02\u02BD\u02BE\x07B\x02\x02\u02BE\u02BF\x07\x1B\x02\x02\u02BF" + - "\u02C0\x05*\x16\x02\u02C0\u02C2\x03\x02\x02\x02\u02C1\u02B0\x03\x02\x02" + - "\x02\u02C1\u02B4\x03\x02\x02\x02\u02C27\x03\x02\x02\x02\u02C3\u02C4\x07" + - "A\x02\x02\u02C4\u02C5\x07A\x02\x02\u02C5\u02C8\x05<\x1F\x02\u02C6\u02C7" + - "\x07\n\x02\x02\u02C7\u02C9\x05<\x1F\x02\u02C8\u02C6\x03\x02\x02\x02\u02C9" + - "\u02CA\x03\x02\x02\x02\u02CA\u02C8\x03\x02\x02\x02\u02CA\u02CB\x03\x02" + - "\x02\x02\u02CB\u02CC\x03\x02\x02\x02\u02CC\u02CD\x07B\x02\x02\u02CD\u02CE" + - "\x07B\x02\x02\u02CE\u02CF\x07\x1B\x02\x02\u02CF\u02D0\x05*\x16\x02\u02D0" + - "9\x03\x02\x02\x02\u02D1\u02D4\x07\'\x02\x02\u02D2\u02D4\x05L\'\x02\u02D3" + - "\u02D1\x03\x02\x02\x02\u02D3\u02D2\x03\x02\x02\x02\u02D4;\x03\x02\x02" + - "\x02\u02D5\u02D6\x05:\x1E\x02\u02D6=\x03\x02\x02\x02\u02D7\u02DA\x077" + - "\x02\x02\u02D8\u02DA\x05L\'\x02\u02D9\u02D7\x03\x02\x02\x02\u02D9\u02D8" + - "\x03\x02\x02\x02\u02DA?\x03\x02\x02\x02\u02DB\u02E0\x05*\x16\x02\u02DC" + - "\u02DD\x07\n\x02\x02\u02DD\u02DF\x05*\x16\x02\u02DE\u02DC\x03\x02\x02" + - "\x02\u02DF\u02E2\x03\x02\x02\x02\u02E0\u02DE\x03\x02\x02\x02\u02E0\u02E1" + - "\x03\x02\x02\x02\u02E1A\x03\x02\x02\x02\u02E2\u02E0\x03\x02\x02\x02\u02E3" + - "\u02E4\x05N(\x02\u02E4\u02E5\x07\x07\x02\x02\u02E5\u02E6\x05*\x16\x02" + - "\u02E6\u02EA\x03\x02\x02\x02\u02E7\u02E8\x07(\x02\x02\u02E8\u02EA\x05" + - "*\x16\x02\u02E9\u02E3\x03\x02\x02\x02\u02E9\u02E7\x03\x02\x02\x02\u02EA" + - "C\x03\x02\x02\x02\u02EB\u02EE\x05L\'\x02\u02EC\u02EE\t\x05\x02\x02\u02ED" + - "\u02EB\x03\x02\x02\x02\u02ED\u02EC\x03\x02\x02\x02\u02EEE\x03\x02\x02" + - "\x02\u02EF\u02F2\x05L\'\x02\u02F0\u02F2\t\x06\x02\x02\u02F1\u02EF\x03" + - "\x02\x02\x02\u02F1\u02F0\x03\x02\x02\x02\u02F2G\x03\x02\x02\x02\u02F3" + - "\u02F4\t\x07\x02\x02\u02F4I\x03\x02\x02\x02\u02F5\u02F6\t\b\x02\x02\u02F6" + - "K\x03\x02\x02\x02\u02F7\u02FC\x07C\x02\x02\u02F8\u02F9\x07)\x02\x02\u02F9" + - "\u02FB\x07C\x02\x02\u02FA\u02F8\x03\x02\x02\x02\u02FB\u02FE\x03\x02\x02" + - "\x02\u02FC\u02FA\x03\x02\x02\x02\u02FC\u02FD\x03\x02\x02\x02\u02FDM\x03" + - "\x02\x02\x02\u02FE\u02FC\x03\x02\x02\x02\u02FF\u0304\x07C\x02\x02\u0300" + - "\u0301\x05L\'\x02\u0301\u0302\b(\x01\x02\u0302\u0304\x03\x02\x02\x02\u0303" + - "\u02FF\x03\x02\x02\x02\u0303\u0300\x03\x02\x02\x02\u0304O\x03\x02\x02" + - "\x02WSZck\x84\x8E\x91\x96\xA5\xAC\xB0\xB3\xC0\xC7\xCA\xD1\xD7\xDC\xE7" + - "\xEF\xF5\xF9\xFB\u0106\u0108\u0117\u011F\u012E\u0136\u0138\u0149\u014C" + - "\u014F\u0166\u016A\u0175\u017F\u0187\u0189\u0193\u0196\u01A1\u01AB\u01AD" + - "\u01B1\u01BA\u01CC\u01D0\u01DB\u01DF\u01EB\u01EF\u01FA\u01FE\u0206\u0210" + - "\u0214\u021E\u0222\u022C\u022F\u0232\u024B\u0272\u0275\u027C\u027E\u0285" + - "\u028C\u0293\u029C\u029F\u02AA\u02AE\u02BA\u02C1\u02CA\u02D3\u02D9\u02E0" + - "\u02E9\u02ED\u02F1\u02FC\u0303"; + "\x02\x02\u01FB\u01F9\x03\x02\x02\x02\u01FB\u01FC\x03\x02\x02\x02\u01FC" + + "\u01FF\x03\x02\x02\x02\u01FD\u01FB\x03\x02\x02\x02\u01FE\u0200\x07\n\x02" + + "\x02\u01FF\u01FE\x03\x02\x02\x02\u01FF\u0200\x03\x02\x02\x02\u0200\u0201" + + "\x03\x02\x02\x02\u0201\u0202\x07B\x02\x02\u0202\u0237\x03\x02\x02\x02" + + "\u0203\u0204\x07\x04\x02\x02\u0204\u0209\x05@!\x02\u0205\u0206\x07\n\x02" + + "\x02\u0206\u0208\x05@!\x02\u0207\u0205\x03\x02\x02\x02\u0208\u020B\x03" + + "\x02\x02\x02\u0209\u0207\x03\x02\x02\x02\u0209\u020A\x03\x02\x02\x02\u020A" + + "\u020D\x03\x02\x02\x02\u020B\u0209\x03\x02\x02\x02\u020C\u020E\x07\n\x02" + + "\x02\u020D\u020C\x03\x02\x02\x02\u020D\u020E\x03\x02\x02\x02\u020E\u020F" + + "\x03\x02\x02\x02\u020F\u0210\x07\x05\x02\x02\u0210\u0237\x03\x02\x02\x02" + + "\u0211\u021A\x07\x1C\x02\x02\u0212\u0217\x05(\x15\x02\u0213\u0214\x07" + + "\n\x02\x02\u0214\u0216\x05(\x15\x02\u0215\u0213\x03\x02\x02\x02\u0216" + + "\u0219\x03\x02\x02\x02\u0217\u0215\x03\x02\x02\x02\u0217\u0218\x03\x02" + + "\x02\x02\u0218\u021B\x03\x02\x02\x02\u0219\u0217\x03\x02\x02\x02\u021A" + + "\u0212\x03\x02\x02\x02\u021A\u021B\x03\x02\x02\x02\u021B\u021D\x03\x02" + + "\x02\x02\u021C\u021E\x07\n\x02\x02\u021D\u021C\x03\x02\x02\x02\u021D\u021E" + + "\x03\x02\x02\x02\u021E\u021F\x03\x02\x02\x02\u021F\u0237\x07\x1D\x02\x02" + + "\u0220\u0221\x07%\x02\x02\u0221\u0222\x07A\x02\x02\u0222\u0223\x05(\x15" + + "\x02\u0223\u0224\x07B\x02\x02\u0224\u0225\x05(\x15\x02\u0225\u0226\x07" + + "&\x02\x02\u0226\u0227\x05(\x15\x07\u0227\u0237\x03\x02\x02\x02\u0228\u0229" + + "\x05\n\x06\x02\u0229\u022A\x05(\x15\x06\u022A\u0237\x03\x02\x02\x02\u022B" + + "\u022C\x05\x10\t\x02\u022C\u022D\x05(\x15\x05\u022D\u0237\x03\x02\x02" + + "\x02\u022E\u022F\x07A\x02\x02\u022F\u0230\x05(\x15\x02\u0230\u0231\x07" + + "B\x02\x02\u0231\u0237\x03\x02\x02\x02\u0232\u0233\x07\x04\x02\x02\u0233" + + "\u0234\x05(\x15\x02\u0234\u0235\x07\x05\x02\x02\u0235\u0237\x03\x02\x02" + + "\x02\u0236\u01A0\x03\x02\x02\x02\u0236\u01A2\x03\x02\x02\x02\u0236\u01A9" + + "\x03\x02\x02\x02\u0236\u01AB\x03\x02\x02\x02\u0236\u01B0\x03\x02\x02\x02" + + "\u0236\u01BF\x03\x02\x02\x02\u0236\u01CE\x03\x02\x02\x02\u0236\u01CF\x03" + + "\x02\x02\x02\u0236\u01DE\x03\x02\x02\x02\u0236\u01F1\x03\x02\x02\x02\u0236" + + "\u01F3\x03\x02\x02\x02\u0236\u0203\x03\x02\x02\x02\u0236\u0211\x03\x02" + + "\x02\x02\u0236\u0220\x03\x02\x02\x02\u0236\u0228\x03\x02\x02\x02\u0236" + + "\u022B\x03\x02\x02\x02\u0236\u022E\x03\x02\x02\x02\u0236\u0232\x03\x02" + + "\x02\x02\u0237\u0269\x03\x02\x02\x02\u0238\u0239\f\x1C\x02\x02\u0239\u023A" + + "\x07!\x02\x02\u023A\u0268\x05(\x15\x1C\u023B\u023C\f\x1A\x02\x02\u023C" + + "\u023D\t\x02\x02\x02\u023D\u0268\x05(\x15\x1B\u023E\u023F\f\x19\x02\x02" + + "\u023F\u0240\t\x03\x02\x02\u0240\u0268\x05(\x15\x1A\u0241\u0242\f\x18" + + "\x02\x02\u0242\u0243\t\x04\x02\x02\u0243\u0268\x05(\x15\x19\u0244\u0245" + + "\f\x16\x02\x02\u0245\u0246\x07@\x02\x02\u0246\u0247\x05(\x15\x17\u0247" + + "\u0248\b\x15\x01\x02\u0248\u0268\x03\x02\x02\x02\u0249\u024A\f\x14\x02" + + "\x02\u024A\u024B\x07-\x02\x02\u024B\u0268\x05(\x15\x15\u024C\u024D\f\x12" + + "\x02\x02\u024D\u024E\x07.\x02\x02\u024E\u0268\x05(\x15\x13\u024F\u0250" + + "\f\x11\x02\x02\u0250\u0251\x07/\x02\x02\u0251\u0268\x05(\x15\x12\u0252" + + "\u0253\f\x10\x02\x02\u0253\u0254\x070\x02\x02\u0254\u0268\x05(\x15\x11" + + "\u0255\u0256\f\n\x02\x02\u0256\u0257\x07\x1A\x02\x02\u0257\u0268\x05(" + + "\x15\v\u0258\u0259\f \x02\x02\u0259\u025A\x07\x16\x02\x02\u025A\u0260" + + "\x05D#\x02\u025B\u025D\x07A\x02\x02\u025C\u025E\x05> \x02\u025D\u025C" + + "\x03\x02\x02\x02\u025D\u025E\x03\x02\x02\x02\u025E\u025F\x03\x02\x02\x02" + + "\u025F\u0261\x07B\x02\x02\u0260\u025B\x03\x02\x02\x02\u0260\u0261\x03" + + "\x02\x02\x02\u0261\u0268\x03\x02\x02\x02\u0262\u0263\f\x1D\x02\x02\u0263" + + "\u0264\x07\x1C\x02\x02\u0264\u0265\x05(\x15\x02\u0265\u0266\x07\x1D\x02" + + "\x02\u0266\u0268\x03\x02\x02\x02\u0267\u0238\x03\x02\x02\x02\u0267\u023B" + + "\x03\x02\x02\x02\u0267\u023E\x03\x02\x02\x02\u0267\u0241\x03\x02\x02\x02" + + "\u0267\u0244\x03\x02\x02\x02\u0267\u0249\x03\x02\x02\x02\u0267\u024C\x03" + + "\x02\x02\x02\u0267\u024F\x03\x02\x02\x02\u0267\u0252\x03\x02\x02\x02\u0267" + + "\u0255\x03\x02\x02\x02\u0267\u0258\x03\x02\x02\x02\u0267\u0262\x03\x02" + + "\x02\x02\u0268\u026B\x03\x02\x02\x02\u0269\u0267\x03\x02\x02\x02\u0269" + + "\u026A\x03\x02\x02\x02\u026A)\x03\x02\x02\x02\u026B\u0269\x03\x02\x02" + + "\x02\u026C\u026D\x074\x02\x02\u026D\u026E\x05(\x15\x02\u026E\u0270\x07" + + "\x04\x02\x02\u026F\u0271\x07\r\x02\x02\u0270\u026F\x03\x02\x02\x02\u0270" + + "\u0271\x03\x02\x02\x02\u0271\u0272\x03\x02\x02\x02\u0272\u0277\x05,\x17" + + "\x02\u0273\u0274\x07\r\x02\x02\u0274\u0276\x05,\x17\x02\u0275\u0273\x03" + + "\x02\x02\x02\u0276\u0279\x03\x02\x02\x02\u0277\u0275\x03\x02\x02\x02\u0277" + + "\u0278\x03\x02\x02\x02\u0278\u027A\x03\x02\x02\x02\u0279\u0277\x03\x02" + + "\x02\x02\u027A\u027B\x07\x05\x02\x02\u027B+\x03\x02\x02\x02\u027C\u027F" + + "\x05.\x18\x02\u027D\u027F\x07\'\x02\x02\u027E\u027C\x03\x02\x02\x02\u027E" + + "\u027D\x03\x02\x02\x02\u027F\u0280\x03\x02\x02\x02\u0280\u0281\x07\x1B" + + "\x02\x02\u0281\u0282\x05(\x15\x02\u0282-\x03\x02\x02\x02\u0283\u028A\x05" + + "L\'\x02\u0284\u0287\x07A\x02\x02\u0285\u0288\x05L\'\x02\u0286\u0288\x07" + + "\'\x02\x02\u0287\u0285\x03\x02\x02\x02\u0287\u0286\x03\x02\x02\x02\u0288" + + "\u0289\x03\x02\x02\x02\u0289\u028B\x07B\x02\x02\u028A\u0284\x03\x02\x02" + + "\x02\u028A\u028B\x03\x02\x02\x02\u028B/\x03\x02\x02\x02\u028C\u028D\x05" + + "\b\x05\x02\u028D\u028E\x07\x02\x02\x03\u028E\u0296\x03\x02\x02\x02\u028F" + + "\u0290\x05(\x15\x02\u0290\u0291\x07\x02\x02\x03\u0291\u0296\x03\x02\x02" + + "\x02\u0292\u0293\x07D\x02\x02\u0293\u0296\x07\x02\x02\x03\u0294\u0296" + + "\x07\x02\x02\x03\u0295\u028C\x03\x02\x02\x02\u0295\u028F\x03\x02\x02\x02" + + "\u0295\u0292\x03\x02\x02\x02\u0295\u0294\x03\x02\x02\x02\u02961\x03\x02" + + "\x02\x02\u0297\u029A\x054\x1B\x02\u0298\u029A\x056\x1C\x02\u0299\u0297" + + "\x03\x02\x02\x02\u0299\u0298\x03\x02\x02\x02\u029A3\x03\x02\x02\x02\u029B" + + "\u029C\x05:\x1E\x02\u029C\u029D\x07\x1B\x02\x02\u029D\u029E\x05(\x15\x02" + + "\u029E\u02AD\x03\x02\x02\x02\u029F\u02A0\x07A\x02\x02\u02A0\u02A5\x05" + + ":\x1E\x02\u02A1\u02A2\x07\n\x02\x02\u02A2\u02A4\x05:\x1E\x02\u02A3\u02A1" + + "\x03\x02\x02\x02\u02A4\u02A7\x03\x02\x02\x02\u02A5\u02A3\x03\x02\x02\x02" + + "\u02A5\u02A6\x03\x02\x02\x02\u02A6\u02A8\x03\x02\x02\x02\u02A7\u02A5\x03" + + "\x02\x02\x02\u02A8\u02A9\x07B\x02\x02\u02A9\u02AA\x07\x1B\x02\x02\u02AA" + + "\u02AB\x05(\x15\x02\u02AB\u02AD\x03\x02\x02\x02\u02AC\u029B\x03\x02\x02" + + "\x02\u02AC\u029F\x03\x02\x02\x02\u02AD5\x03\x02\x02\x02\u02AE\u02AF\x07" + + "A\x02\x02\u02AF\u02B0\x07A\x02\x02\u02B0\u02B3\x05:\x1E\x02\u02B1\u02B2" + + "\x07\n\x02\x02\u02B2\u02B4\x05:\x1E\x02\u02B3\u02B1\x03\x02\x02\x02\u02B4" + + "\u02B5\x03\x02\x02\x02\u02B5\u02B3\x03\x02\x02\x02\u02B5\u02B6\x03\x02" + + "\x02\x02\u02B6\u02B7\x03\x02\x02\x02\u02B7\u02B8\x07B\x02\x02\u02B8\u02B9" + + "\x07B\x02\x02\u02B9\u02BA\x07\x1B\x02\x02\u02BA\u02BB\x05(\x15\x02\u02BB" + + "7\x03\x02\x02\x02\u02BC\u02BF\x07\'\x02\x02\u02BD\u02BF\x05J&\x02\u02BE" + + "\u02BC\x03\x02\x02\x02\u02BE\u02BD\x03\x02\x02\x02\u02BF9\x03\x02\x02" + + "\x02\u02C0\u02C1\x058\x1D\x02\u02C1;\x03\x02\x02\x02\u02C2\u02C5\x077" + + "\x02\x02\u02C3\u02C5\x05J&\x02\u02C4\u02C2\x03\x02\x02\x02\u02C4\u02C3" + + "\x03\x02\x02\x02\u02C5=\x03\x02\x02\x02\u02C6\u02CB\x05(\x15\x02\u02C7" + + "\u02C8\x07\n\x02\x02\u02C8\u02CA\x05(\x15\x02\u02C9\u02C7\x03\x02\x02" + + "\x02\u02CA\u02CD\x03\x02\x02\x02\u02CB\u02C9\x03\x02\x02\x02\u02CB\u02CC" + + "\x03\x02\x02\x02\u02CC?\x03\x02\x02\x02\u02CD\u02CB\x03\x02\x02\x02\u02CE" + + "\u02CF\x05L\'\x02\u02CF\u02D0\x07\x07\x02\x02\u02D0\u02D1\x05(\x15\x02" + + "\u02D1\u02D5\x03\x02\x02\x02\u02D2\u02D3\x07(\x02\x02\u02D3\u02D5\x05" + + "(\x15\x02\u02D4\u02CE\x03\x02\x02\x02\u02D4\u02D2\x03\x02\x02\x02\u02D5" + + "A\x03\x02\x02\x02\u02D6\u02D9\x05J&\x02\u02D7\u02D9\t\x05\x02\x02\u02D8" + + "\u02D6\x03\x02\x02\x02\u02D8\u02D7\x03\x02\x02\x02\u02D9C\x03\x02\x02" + + "\x02\u02DA\u02DD\x05J&\x02\u02DB\u02DD\t\x06\x02\x02\u02DC\u02DA\x03\x02" + + "\x02\x02\u02DC\u02DB\x03\x02\x02\x02\u02DDE\x03\x02\x02\x02\u02DE\u02DF" + + "\t\x07\x02\x02\u02DFG\x03\x02\x02\x02\u02E0\u02E1\t\b\x02\x02\u02E1I\x03" + + "\x02\x02\x02\u02E2\u02E7\x07C\x02\x02\u02E3\u02E4\x07)\x02\x02\u02E4\u02E6" + + "\x07C\x02\x02\u02E5\u02E3\x03\x02\x02\x02\u02E6\u02E9\x03\x02\x02\x02" + + "\u02E7\u02E5\x03\x02\x02\x02\u02E7\u02E8\x03\x02\x02\x02\u02E8K\x03\x02" + + "\x02\x02\u02E9\u02E7\x03\x02\x02\x02\u02EA\u02EF\x07C\x02\x02\u02EB\u02EC" + + "\x05J&\x02\u02EC\u02ED\b\'\x01\x02\u02ED\u02EF\x03\x02\x02\x02\u02EE\u02EA" + + "\x03\x02\x02\x02\u02EE\u02EB\x03\x02\x02\x02\u02EFM\x03\x02\x02\x02TQ" + + "Xai\x82\x8C\x8F\x94\xA3\xAA\xAE\xB1\xBE\xC5\xC8\xCF\xD5\xDA\xE5\xED\xF3" + + "\xF7\xF9\u0104\u0106\u0115\u011D\u012C\u0134\u0136\u0147\u014A\u014D\u0164" + + "\u0168\u0178\u0180\u0182\u018C\u0196\u0198\u019C\u01A5\u01B7\u01BB\u01C6" + + "\u01CA\u01D6\u01DA\u01E5\u01E9\u01F1\u01FB\u01FF\u0209\u020D\u0217\u021A" + + "\u021D\u0236\u025D\u0260\u0267\u0269\u0270\u0277\u027E\u0287\u028A\u0295" + + "\u0299\u02A5\u02AC\u02B5\u02BE\u02C4\u02CB\u02D4\u02D8\u02DC\u02E7\u02EE"; public static readonly _serializedATN: string = Utils.join( [ QuintParser._serializedATNSegment0, @@ -5061,41 +4963,6 @@ export class TypeRecContext extends TypeContext { } } } -export class TypeUnionRecContext extends TypeContext { - public typeUnionRecOne(): TypeUnionRecOneContext[]; - public typeUnionRecOne(i: number): TypeUnionRecOneContext; - public typeUnionRecOne(i?: number): TypeUnionRecOneContext | TypeUnionRecOneContext[] { - if (i === undefined) { - return this.getRuleContexts(TypeUnionRecOneContext); - } else { - return this.getRuleContext(i, TypeUnionRecOneContext); - } - } - constructor(ctx: TypeContext) { - super(ctx.parent, ctx.invokingState); - this.copyFrom(ctx); - } - // @Override - public enterRule(listener: QuintListener): void { - if (listener.enterTypeUnionRec) { - listener.enterTypeUnionRec(this); - } - } - // @Override - public exitRule(listener: QuintListener): void { - if (listener.exitTypeUnionRec) { - listener.exitTypeUnionRec(this); - } - } - // @Override - public accept(visitor: QuintVisitor): Result { - if (visitor.visitTypeUnionRec) { - return visitor.visitTypeUnionRec(this); - } else { - return visitor.visitChildren(this); - } - } -} export class TypeIntContext extends TypeContext { constructor(ctx: TypeContext) { super(ctx.parent, ctx.invokingState); @@ -5236,42 +5103,6 @@ export class TypeParenContext extends TypeContext { } -export class TypeUnionRecOneContext extends ParserRuleContext { - public qualId(): QualIdContext { - return this.getRuleContext(0, QualIdContext); - } - public STRING(): TerminalNode { return this.getToken(QuintParser.STRING, 0); } - public row(): RowContext | undefined { - return this.tryGetRuleContext(0, RowContext); - } - constructor(parent: ParserRuleContext | undefined, invokingState: number) { - super(parent, invokingState); - } - // @Override - public get ruleIndex(): number { return QuintParser.RULE_typeUnionRecOne; } - // @Override - public enterRule(listener: QuintListener): void { - if (listener.enterTypeUnionRecOne) { - listener.enterTypeUnionRecOne(this); - } - } - // @Override - public exitRule(listener: QuintListener): void { - if (listener.exitTypeUnionRecOne) { - listener.exitTypeUnionRecOne(this); - } - } - // @Override - public accept(visitor: QuintVisitor): Result { - if (visitor.visitTypeUnionRecOne) { - return visitor.visitTypeUnionRecOne(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class RowContext extends ParserRuleContext { public _rowVar!: Token; public rowLabel(): RowLabelContext[]; diff --git a/quint/src/generated/QuintVisitor.ts b/quint/src/generated/QuintVisitor.ts index 92f31558f..2c31cc191 100644 --- a/quint/src/generated/QuintVisitor.ts +++ b/quint/src/generated/QuintVisitor.ts @@ -15,7 +15,6 @@ import { TypeSetContext } from "./QuintParser"; import { TypeListContext } from "./QuintParser"; import { TypeTupleContext } from "./QuintParser"; import { TypeRecContext } from "./QuintParser"; -import { TypeUnionRecContext } from "./QuintParser"; import { TypeIntContext } from "./QuintParser"; import { TypeStrContext } from "./QuintParser"; import { TypeBoolContext } from "./QuintParser"; @@ -79,7 +78,6 @@ import { NameContext } from "./QuintParser"; import { QualifiedNameContext } from "./QuintParser"; import { FromSourceContext } from "./QuintParser"; import { TypeContext } from "./QuintParser"; -import { TypeUnionRecOneContext } from "./QuintParser"; import { RowContext } from "./QuintParser"; import { RowLabelContext } from "./QuintParser"; import { ExprContext } from "./QuintParser"; @@ -159,14 +157,6 @@ export interface QuintVisitor extends ParseTreeVisitor { */ visitTypeRec?: (ctx: TypeRecContext) => Result; - /** - * Visit a parse tree produced by the `typeUnionRec` - * labeled alternative in `QuintParser.type`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTypeUnionRec?: (ctx: TypeUnionRecContext) => Result; - /** * Visit a parse tree produced by the `typeInt` * labeled alternative in `QuintParser.type`. @@ -654,13 +644,6 @@ export interface QuintVisitor extends ParseTreeVisitor { */ visitType?: (ctx: TypeContext) => Result; - /** - * Visit a parse tree produced by `QuintParser.typeUnionRecOne`. - * @param ctx the parse tree - * @return the visitor result - */ - visitTypeUnionRecOne?: (ctx: TypeUnionRecOneContext) => Result; - /** * Visit a parse tree produced by `QuintParser.row`. * @param ctx the parse tree diff --git a/quint/src/graphics.ts b/quint/src/graphics.ts index 52804c81b..b8602e60e 100644 --- a/quint/src/graphics.ts +++ b/quint/src/graphics.ts @@ -203,20 +203,6 @@ export function prettyQuintType(type: QuintType): Doc { case 'sum': { return prettySumRow(type.fields) } - case 'union': { - const records = type.records.map(rec => { - return group([ - richtext(chalk.magenta, '|'), - text('{ '), - richtext(chalk.blue, type.tag), - text(': '), - richtext(chalk.green, `"${rec.tagValue}"`), - prettyRow(rec.fields), - text('}'), - ]) - }) - return group(records) - } } } diff --git a/quint/src/ir/IRTransformer.ts b/quint/src/ir/IRTransformer.ts index fbd972af4..afb32fd19 100644 --- a/quint/src/ir/IRTransformer.ts +++ b/quint/src/ir/IRTransformer.ts @@ -86,8 +86,6 @@ export class IRTransformer { exitRecordType?: (type: t.QuintRecordType) => t.QuintRecordType enterSumType?: (type: t.QuintSumType) => t.QuintSumType exitSumType?: (type: t.QuintSumType) => t.QuintSumType - enterUnionType?: (type: t.QuintUnionType) => t.QuintUnionType - exitUnionType?: (type: t.QuintUnionType) => t.QuintUnionType /** Row types */ enterRow?: (row: t.Row) => t.Row @@ -239,20 +237,6 @@ export function transformType(transformer: IRTransformer, type: t.QuintType): t. } break - case 'union': - if (transformer.enterUnionType) { - newType = transformer.enterUnionType(newType) - } - // Variants, transform all fields for all records - newType.records = newType.records.map(record => { - return { ...record, fields: transformRow(transformer, record.fields) } - }) - - if (transformer.exitUnionType) { - newType = transformer.exitUnionType(newType) - } - break - case 'sum': if (transformer.enterSumType) { newType = transformer.enterSumType(newType) diff --git a/quint/src/ir/IRVisitor.ts b/quint/src/ir/IRVisitor.ts index ac3f50a96..aa5498a2a 100644 --- a/quint/src/ir/IRVisitor.ts +++ b/quint/src/ir/IRVisitor.ts @@ -86,8 +86,6 @@ export interface IRVisitor { exitRecordType?: (_type: t.QuintRecordType) => void enterSumType?: (_type: t.QuintSumType) => void exitSumType?: (_type: t.QuintSumType) => void - enterUnionType?: (_type: t.QuintUnionType) => void - exitUnionType?: (_type: t.QuintUnionType) => void /** Row types */ enterRow?: (_row: t.Row) => void @@ -234,20 +232,6 @@ export function walkType(visitor: IRVisitor, type: t.QuintType): void { } break - case 'union': - if (visitor.enterUnionType) { - visitor.enterUnionType(type) - } - // Variants, walk all fields for all records - type.records.forEach(record => { - walkRow(visitor, record.fields) - }) - - if (visitor.exitUnionType) { - visitor.exitUnionType(type) - } - break - case 'sum': visitor.enterSumType?.(type) walkRow(visitor, type.fields) diff --git a/quint/src/ir/IRprinting.ts b/quint/src/ir/IRprinting.ts index 868b8d4a5..086ec25b9 100644 --- a/quint/src/ir/IRprinting.ts +++ b/quint/src/ir/IRprinting.ts @@ -187,12 +187,6 @@ export function typeToString(type: QuintType): string { case 'sum': { return sumToString(type) } - case 'union': { - const records = type.records.map(rec => { - return `| { ${type.tag}: "${rec.tagValue}", ${rowFieldsToString(rec.fields)} }` - }) - return records.join('\n') - } } } diff --git a/quint/src/ir/quintTypes.ts b/quint/src/ir/quintTypes.ts index 822a48912..a572d52a7 100644 --- a/quint/src/ir/quintTypes.ts +++ b/quint/src/ir/quintTypes.ts @@ -98,15 +98,6 @@ export function sumType(labelTypePairs: [string, QuintType][], rowVar?: string, return { kind: 'sum', fields: { kind: 'row', fields, other }, id } } -export interface QuintUnionType extends WithOptionalId { - kind: 'union' - tag: string - records: { - tagValue: string - fields: Row - }[] -} - /** * A type in Type System 1.2. */ @@ -123,7 +114,6 @@ export type QuintType = | QuintTupleType | QuintRecordType | QuintSumType - | QuintUnionType /** * Row types, used to express tuples and records. diff --git a/quint/src/parsing/ToIrListener.ts b/quint/src/parsing/ToIrListener.ts index e9d8f9755..a67c93882 100644 --- a/quint/src/parsing/ToIrListener.ts +++ b/quint/src/parsing/ToIrListener.ts @@ -34,7 +34,7 @@ import { TerminalNode } from 'antlr4ts/tree/TerminalNode' import { QuintTypeDef } from '../ir/quintIr' import { zip } from '../util' import { QuintError } from '../quintError' -import { differentTagsError, lowercaseTypeError, tooManySpreadsError } from './parseErrors' +import { lowercaseTypeError, tooManySpreadsError } from './parseErrors' import { Loc } from '../ErrorMessage' /** @@ -85,7 +85,7 @@ export class ToIrListener implements QuintListener { protected identOrHoleStack: string[] = [] // the stack for imported names protected identOrStarStack: string[] = [] - // the stack of rows for records and unions + // the stack of rows for records protected rowStack: Row[] = [] // the stack of variants for a sum protected variantStack: RowField[] = [] @@ -1101,7 +1101,7 @@ export class ToIrListener implements QuintListener { this.rowStack.push(row) } - // A record type that is not a disjoint union, e.g., + // A record type, e.g., // { name: str, year: int } // The row stack contains the row with the types of the fields. exitTypeRec(ctx: p.TypeRecContext) { @@ -1110,61 +1110,6 @@ export class ToIrListener implements QuintListener { this.typeStack.push({ id, kind: 'rec', fields: row }) } - // A disjoint union type, e.g., - // | { type: "ack", from: address } - // | { type: "syn", to: address } - exitTypeUnionRec(ctx: p.TypeUnionRecContext) { - const size = ctx.typeUnionRecOne().length - const singletonUnions: QuintType[] = popMany(this.typeStack, size, this.undefinedType(ctx)) - - if (singletonUnions[0].kind !== 'union') { - // Elements should be of union kind, see exitTypeUnionRecOne() - console.debug(`[DEBUG] unexpected kind found in singleton unions: ${ctx.text}`) - return - } - - const tag = singletonUnions[0].tag - let records = singletonUnions[0].records - const id = this.getId(ctx) - for (let i = 1; i < size; i++) { - const one = singletonUnions[i] - if (one.kind !== 'union') { - // Elements should be of union kind, see exitTypeUnionRecOne() - return - } - - if (one.tag === tag) { - records = records.concat(one.records) - } else { - this.errors.push(differentTagsError(id, tag, one.tag)) - } - } - this.typeStack.push({ id, kind: 'union', tag, records }) - } - - // One option of a disjoint union, e.g., - // | { type: "ack", from: address } - // The row stack contains the row with the types of the fields. - exitTypeUnionRecOne(ctx: p.TypeUnionRecOneContext) { - // the first name is the tag name (according to the grammar) - const tagName = ctx.qualId().text - const tagVal = ctx.STRING().toString().slice(1, -1) - let records: { tagValue: string; fields: Row }[] = [] - if (ctx.row()) { - const row = this.popRow() - records = [{ tagValue: tagVal, fields: row }] - } - // construct a singleton disjoint union, which should be assembled above - const singleton: QuintType = { - id: 0n, // This ID will be discarded in assembly. - kind: 'union', - tag: tagName, - records, - } - - this.typeStack.push(singleton) - } - // an operator type, e.g., (int, str) => bool exitTypeOper(ctx: p.TypeOperContext) { const resType = this.popType().unwrap() diff --git a/quint/src/parsing/parseErrors.ts b/quint/src/parsing/parseErrors.ts index 64fddcf80..40a771e00 100644 --- a/quint/src/parsing/parseErrors.ts +++ b/quint/src/parsing/parseErrors.ts @@ -25,12 +25,3 @@ export function tooManySpreadsError(id: bigint): QuintError { data: {}, } } - -export function differentTagsError(id: bigint, tag: string, otherTag: string): QuintError { - return { - code: 'QNT011', - message: `Records in disjoint union have different tag fields: ${tag} and ${otherTag}`, - reference: id, - data: {}, - } -} diff --git a/quint/src/quintError.ts b/quint/src/quintError.ts index 400d30bb0..81a8edd41 100644 --- a/quint/src/quintError.ts +++ b/quint/src/quintError.ts @@ -47,8 +47,6 @@ export type ErrorCode = | 'QNT008' /* QNT009: Missing arguments or parameters. You should omit the parentheses */ | 'QNT009' - /* QNT011: Records in disjoint union have different tag fields: and */ - | 'QNT011' /* QNT012: '...' may be used once in '{ ...record, }' */ | 'QNT012' /* QNT013: import ... from : could not load */ diff --git a/quint/src/types/constraintSolver.ts b/quint/src/types/constraintSolver.ts index c9b01b0fe..9e4258f07 100644 --- a/quint/src/types/constraintSolver.ts +++ b/quint/src/types/constraintSolver.ts @@ -125,9 +125,6 @@ export function unify(table: LookupTable, t1: QuintType, t2: QuintType): Either< return unifyWithAlias(table, t2, t1) } else if ((t1.kind === 'rec' && t2.kind === 'rec') || (t1.kind === 'sum' && t2.kind === 'sum')) { return unifyRows(table, t1.fields, t2.fields).mapLeft(error => buildErrorTree(location, error)) - } else if ((t1.kind === 'union' && t2.kind === 'rec') || (t1.kind === 'rec' && t2.kind === 'union')) { - // FIXME: Implement discriminated unions and remove this hack, see https://github.com/informalsystems/quint/issues/244 - return right([]) } else { return left(buildErrorLeaf(location, `Couldn't unify ${t1.kind} and ${t2.kind}`)) } diff --git a/quint/src/types/substitutions.ts b/quint/src/types/substitutions.ts index 581e0097d..49fbe496e 100644 --- a/quint/src/types/substitutions.ts +++ b/quint/src/types/substitutions.ts @@ -90,19 +90,6 @@ export function applySubstitution(table: LookupTable, subs: Substitutions, t: Qu id: t.id, } } - case 'union': { - return { - kind: t.kind, - tag: t.tag, - records: t.records.map(r => { - return { - tagValue: r.tagValue, - fields: applySubstitutionToRow(table, subs, r.fields), - } - }), - id: t.id, - } - } case 'sum': return { ...t, diff --git a/quint/test/ir/IRVisitor.test.ts b/quint/test/ir/IRVisitor.test.ts index 572cd88ce..290fc921f 100644 --- a/quint/test/ir/IRVisitor.test.ts +++ b/quint/test/ir/IRVisitor.test.ts @@ -594,7 +594,6 @@ describe('walkModule', () => { 'def i: (int, a) => bool = false', 'var j: (int, List[bool], MY_CONST_TYPE)', 'var k: { name: str, age: int }', - 'var l: | { tag: "a", a: int } | { tag: "b", b: bool }', ]) it('finds literal types', () => { @@ -626,8 +625,6 @@ describe('walkModule', () => { 'bool', // var j: (int, List[bool], MY_CONST_TYPE) 'str', // var k: { name: str, age: int } 'int', // var k: { name: str, age: int } - 'int', // var l: | { tag: "a", a: int } | { tag: "b", b: bool } - 'bool', // var l: | { tag: "a", a: int } | { tag: "b", b: bool } ] const exitedTypes = enteredTypes @@ -858,31 +855,5 @@ describe('walkModule', () => { assert.deepEqual(visitor.entered.map(typeToString), enteredTypes) assert.deepEqual(visitor.exited.map(typeToString), exitedTypes) }) - - it('finds union types', () => { - class TestVisitor implements IRVisitor { - entered: QuintType[] = [] - exited: QuintType[] = [] - - enterUnionType(type: QuintType): void { - this.entered.push(type) - } - - exitUnionType(type: QuintType): void { - this.exited.push(type) - } - } - - const enteredTypes = [ - '| { tag: "a", a: int }\n| { tag: "b", b: bool }', // var l: | { tag: "a", a: int } | { tag: "b", b: bool } - ] - - const exitedTypes = enteredTypes - - const visitor = new TestVisitor() - walkModule(visitor, quintModule) - assert.deepEqual(visitor.entered.map(typeToString), enteredTypes) - assert.deepEqual(visitor.exited.map(typeToString), exitedTypes) - }) }) }) diff --git a/quint/test/ir/IRprinting.test.ts b/quint/test/ir/IRprinting.test.ts index a8a6c688d..dc8df1eb0 100644 --- a/quint/test/ir/IRprinting.test.ts +++ b/quint/test/ir/IRprinting.test.ts @@ -249,10 +249,4 @@ describe('typeToString', () => { const expectedType = '(A(int) | B)' assert.deepEqual(typeToString(type), expectedType) }) - - it('pretty prints union types', () => { - const type = buildType('| { tag: "A", a: int } | { tag: "B", b: str }') - const expectedType = '| { tag: "A", a: int }\n| { tag: "B", b: str }' - assert.deepEqual(typeToString(type), expectedType) - }) }) diff --git a/quint/test/names/resolver.test.ts b/quint/test/names/resolver.test.ts index 0aef6bab5..a8af5a48f 100644 --- a/quint/test/names/resolver.test.ts +++ b/quint/test/names/resolver.test.ts @@ -162,16 +162,5 @@ describe('resolveNames', () => { { code: 'QNT404', message: "Type alias 'OTHER_UNKNOWN_TYPE' not found", reference: 0n, data: {} }, ]) }) - - it('finds unresolved aliases under union', () => { - const result = resolveNamesForExprs([ - 'val x: | { tag: "a", a: UNKNOWN_TYPE } | { tag: "b", b: OTHER_UNKNOWN_TYPE } = { tag: "a", a: 1 } { 0 }', - ]) - - assert.deepEqual(result.errors, [ - { code: 'QNT404', message: "Type alias 'UNKNOWN_TYPE' not found", reference: 0n, data: {} }, - { code: 'QNT404', message: "Type alias 'OTHER_UNKNOWN_TYPE' not found", reference: 0n, data: {} }, - ]) - }) }) }) diff --git a/quint/test/types/parser.test.ts b/quint/test/types/parser.test.ts index c66f94ea3..7454f8991 100644 --- a/quint/test/types/parser.test.ts +++ b/quint/test/types/parser.test.ts @@ -85,37 +85,6 @@ describe('parseType', () => { ) }) - it('parses discriminated unions', () => { - const type = parseType('| { tag: "a", a: int }\n| { tag: "b", b: bool }') - - assert.isTrue(type.isRight()) - type.map(value => - assert.deepEqual(value, { - kind: 'union', - tag: 'tag', - records: [ - { - tagValue: 'a', - fields: { - kind: 'row', - fields: [{ fieldName: 'a', fieldType: { kind: 'int', id: 1n } }], - other: { kind: 'empty' }, - }, - }, - { - tagValue: 'b', - fields: { - kind: 'row', - fields: [{ fieldName: 'b', fieldType: { kind: 'bool', id: 2n } }], - other: { kind: 'empty' }, - }, - }, - ], - id: 3n, - }) - ) - }) - it('throws error when type is invalid', () => { const type = parseType('Set[bool, int]') diff --git a/quint/test/types/substitutions.test.ts b/quint/test/types/substitutions.test.ts index 6557a9ef9..33c6c72d9 100644 --- a/quint/test/types/substitutions.test.ts +++ b/quint/test/types/substitutions.test.ts @@ -117,19 +117,6 @@ describe('applySubstitution', () => { assert.deepEqual(result, parseTypeOrThrow('{ a: int, b: bool }')) }) - it('substitutes variables in union type', () => { - const s: Substitutions = [ - { kind: 'type', name: 'a', value: { kind: 'int', id: 1n } }, - { kind: 'type', name: 'b', value: { kind: 'bool', id: 2n } }, - ] - - const t = parseTypeOrThrow('| { tag: "a", a: a }\n| { tag: "b", b: b }') - - const result = applySubstitution(table, s, t) - - assert.deepEqual(result, parseTypeOrThrow('| { tag: "a", a: int }\n| { tag: "b", b: bool }')) - }) - it('substitutes with transitivity', () => { const s: Substitutions = [ { kind: 'type', name: 'a', value: { kind: 'var', id: 1n, name: 'b' } }, diff --git a/quint/testFixture/SuperSpec.json b/quint/testFixture/SuperSpec.json index d15fd73b1..c768bd0a7 100644 --- a/quint/testFixture/SuperSpec.json +++ b/quint/testFixture/SuperSpec.json @@ -1 +1 @@ -{"stage":"parsing","warnings":[],"modules":[{"id":3,"name":"M1","declarations":[{"id":2,"kind":"def","name":"foo","qualifier":"val","expr":{"id":1,"kind":"int","value":4}}]},{"id":6,"name":"M2","declarations":[{"id":5,"kind":"def","name":"bar","qualifier":"val","expr":{"id":4,"kind":"int","value":4}}]},{"id":11,"name":"Proto","declarations":[{"kind":"var","name":"x","typeAnnotation":{"id":9,"kind":"int"},"id":10},{"kind":"const","name":"N","typeAnnotation":{"id":7,"kind":"int"},"id":8}]},{"id":496,"name":"withConsts","declarations":[{"id":102,"kind":"def","name":"pow_2_to_3","qualifier":"val","expr":{"id":101,"kind":"app","opcode":"ipow","args":[{"id":99,"kind":"int","value":2},{"id":100,"kind":"int","value":3}]}},{"id":105,"kind":"def","name":"uminus","qualifier":"val","expr":{"id":104,"kind":"app","opcode":"iuminus","args":[{"id":103,"kind":"int","value":100}]}},{"id":109,"kind":"def","name":"gt_2_to_3","qualifier":"val","expr":{"id":108,"kind":"app","opcode":"igt","args":[{"id":106,"kind":"int","value":2},{"id":107,"kind":"int","value":3}]}},{"id":113,"kind":"def","name":"ge_2_to_3","qualifier":"val","expr":{"id":112,"kind":"app","opcode":"igte","args":[{"id":110,"kind":"int","value":2},{"id":111,"kind":"int","value":3}]}},{"id":117,"kind":"def","name":"lt_2_to_3","qualifier":"val","expr":{"id":116,"kind":"app","opcode":"ilt","args":[{"id":114,"kind":"int","value":2},{"id":115,"kind":"int","value":3}]}},{"id":121,"kind":"def","name":"le_2_to_3","qualifier":"val","expr":{"id":120,"kind":"app","opcode":"ilte","args":[{"id":118,"kind":"int","value":2},{"id":119,"kind":"int","value":3}]}},{"id":125,"kind":"def","name":"eqeq_2_to_3","qualifier":"val","expr":{"id":124,"kind":"app","opcode":"eq","args":[{"id":122,"kind":"int","value":2},{"id":123,"kind":"int","value":3}]}},{"id":129,"kind":"def","name":"ne_2_to_3","qualifier":"val","expr":{"id":128,"kind":"app","opcode":"neq","args":[{"id":126,"kind":"int","value":2},{"id":127,"kind":"int","value":3}]}},{"kind":"const","name":"N","typeAnnotation":{"id":12,"kind":"int"},"id":13},{"id":135,"kind":"def","name":"VeryTrue","qualifier":"val","expr":{"id":134,"kind":"app","opcode":"eq","args":[{"id":132,"kind":"app","opcode":"iadd","args":[{"id":130,"kind":"int","value":2},{"id":131,"kind":"int","value":2}]},{"id":133,"kind":"int","value":4}]}},{"id":139,"kind":"def","name":"nat_includes_one","qualifier":"val","expr":{"id":138,"kind":"app","opcode":"in","args":[{"id":136,"kind":"int","value":1},{"id":137,"kind":"name","name":"Nat"}]}},{"id":151,"kind":"def","name":"withType","qualifier":"val","expr":{"id":150,"kind":"app","opcode":"Set","args":[{"id":148,"kind":"int","value":1},{"id":149,"kind":"int","value":2}]},"typeAnnotation":{"id":147,"kind":"set","elem":{"id":146,"kind":"int"}}},{"id":152,"kind":"typedef","name":"PROC"},{"kind":"var","name":"n","typeAnnotation":{"id":157,"kind":"int"},"id":158},{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},{"id":160,"kind":"def","name":"magicNumber","qualifier":"pureval","expr":{"id":159,"kind":"int","value":42}},{"kind":"const","name":"MySet","typeAnnotation":{"id":18,"kind":"set","elem":{"id":17,"kind":"int"}},"id":19},{"kind":"var","name":"k","typeAnnotation":{"id":197,"kind":"int"},"id":198},{"id":219,"kind":"def","name":"test_and","qualifier":"val","expr":{"id":218,"kind":"app","opcode":"and","args":[{"id":216,"kind":"bool","value":false},{"id":217,"kind":"bool","value":true}]}},{"kind":"const","name":"MySeq","typeAnnotation":{"id":21,"kind":"list","elem":{"id":20,"kind":"bool"}},"id":22},{"id":223,"kind":"def","name":"test_or","qualifier":"val","expr":{"id":222,"kind":"app","opcode":"or","args":[{"id":220,"kind":"bool","value":false},{"id":221,"kind":"bool","value":true}]}},{"id":227,"kind":"def","name":"test_implies","qualifier":"val","expr":{"id":226,"kind":"app","opcode":"implies","args":[{"id":224,"kind":"bool","value":false},{"id":225,"kind":"bool","value":true}]}},{"id":256,"kind":"def","name":"test_block_and","qualifier":"val","expr":{"id":255,"kind":"app","opcode":"and","args":[{"id":252,"kind":"bool","value":false},{"id":253,"kind":"bool","value":true},{"id":254,"kind":"bool","value":false}]}},{"kind":"const","name":"MyFun","typeAnnotation":{"id":25,"kind":"fun","arg":{"id":23,"kind":"int"},"res":{"id":24,"kind":"str"}},"id":26},{"id":261,"kind":"def","name":"test_action_and","qualifier":"action","expr":{"id":260,"kind":"app","opcode":"actionAll","args":[{"id":257,"kind":"bool","value":false},{"id":258,"kind":"bool","value":true},{"id":259,"kind":"bool","value":false}]}},{"id":266,"kind":"def","name":"test_block_or","qualifier":"val","expr":{"id":265,"kind":"app","opcode":"or","args":[{"id":262,"kind":"bool","value":false},{"id":263,"kind":"bool","value":true},{"id":264,"kind":"bool","value":false}]}},{"id":271,"kind":"def","name":"test_action_or","qualifier":"action","expr":{"id":270,"kind":"app","opcode":"actionAny","args":[{"id":267,"kind":"bool","value":false},{"id":268,"kind":"bool","value":true},{"id":269,"kind":"bool","value":false}]}},{"id":276,"kind":"def","name":"test_ite","qualifier":"val","expr":{"id":275,"kind":"app","opcode":"ite","args":[{"id":272,"kind":"bool","value":true},{"id":273,"kind":"int","value":1},{"id":274,"kind":"int","value":0}]}},{"kind":"var","name":"f1","typeAnnotation":{"id":292,"kind":"fun","arg":{"id":290,"kind":"str"},"res":{"id":291,"kind":"int"}},"id":293},{"id":301,"kind":"def","name":"MyOper","qualifier":"def","expr":{"id":301,"kind":"lambda","params":[{"id":298,"name":"a"},{"id":299,"name":"b"}],"qualifier":"def","expr":{"id":300,"kind":"int","value":1}}},{"id":313,"kind":"def","name":"oper_in","qualifier":"val","expr":{"id":312,"kind":"app","opcode":"in","args":[{"id":310,"kind":"int","value":1},{"id":311,"kind":"app","opcode":"Set","args":[]}]}},{"kind":"const","name":"MyFunFun","typeAnnotation":{"id":31,"kind":"fun","arg":{"id":29,"kind":"fun","arg":{"id":27,"kind":"int"},"res":{"id":28,"kind":"str"}},"res":{"id":30,"kind":"bool"}},"id":32},{"kind":"const","name":"MyOperator","typeAnnotation":{"id":36,"kind":"oper","args":[{"id":33,"kind":"int"},{"id":34,"kind":"str"}],"res":{"id":35,"kind":"bool"}},"id":37},{"id":378,"kind":"def","name":"one","qualifier":"val","expr":{"id":377,"kind":"app","opcode":"head","args":[{"id":376,"kind":"app","opcode":"List","args":[{"id":374,"kind":"int","value":1},{"id":375,"kind":"int","value":2}]}]}},{"id":383,"kind":"def","name":"test_tuple","qualifier":"val","expr":{"id":382,"kind":"app","opcode":"Tup","args":[{"id":379,"kind":"int","value":1},{"id":380,"kind":"int","value":2},{"id":381,"kind":"int","value":3}]}},{"id":388,"kind":"def","name":"test_tuple2","qualifier":"val","expr":{"id":387,"kind":"app","opcode":"Tup","args":[{"id":384,"kind":"int","value":1},{"id":385,"kind":"int","value":2},{"id":386,"kind":"int","value":3}]}},{"id":392,"kind":"def","name":"test_pair","qualifier":"val","expr":{"id":391,"kind":"app","opcode":"Tup","args":[{"id":389,"kind":"int","value":4},{"id":390,"kind":"int","value":5}]}},{"id":397,"kind":"def","name":"test_list","qualifier":"val","expr":{"id":396,"kind":"app","opcode":"List","args":[{"id":393,"kind":"int","value":1},{"id":394,"kind":"int","value":2},{"id":395,"kind":"int","value":3}]}},{"id":402,"kind":"def","name":"test_list2","qualifier":"val","expr":{"id":401,"kind":"app","opcode":"List","args":[{"id":398,"kind":"int","value":1},{"id":399,"kind":"int","value":2},{"id":400,"kind":"int","value":3}]}},{"id":409,"kind":"def","name":"test_list_nth","qualifier":"val","expr":{"id":408,"kind":"app","opcode":"nth","args":[{"id":406,"kind":"app","opcode":"List","args":[{"id":403,"kind":"int","value":2},{"id":404,"kind":"int","value":3},{"id":405,"kind":"int","value":4}]},{"id":407,"kind":"int","value":2}]}},{"id":415,"kind":"def","name":"test_record","qualifier":"val","expr":{"id":414,"kind":"app","opcode":"Rec","args":[{"id":411,"kind":"str","value":"name"},{"id":410,"kind":"str","value":"igor"},{"id":413,"kind":"str","value":"year"},{"id":412,"kind":"int","value":1981}]}},{"kind":"const","name":"MyOperatorWithComma","typeAnnotation":{"id":41,"kind":"oper","args":[{"id":38,"kind":"int"},{"id":39,"kind":"str"}],"res":{"id":40,"kind":"bool"}},"id":42},{"id":421,"kind":"def","name":"test_record2","qualifier":"val","expr":{"id":420,"kind":"app","opcode":"Rec","args":[{"id":416,"kind":"str","value":"name"},{"id":417,"kind":"str","value":"igor"},{"id":418,"kind":"str","value":"year"},{"id":419,"kind":"int","value":1981}]}},{"id":434,"kind":"def","name":"test_set","qualifier":"val","expr":{"id":433,"kind":"app","opcode":"Set","args":[{"id":430,"kind":"int","value":1},{"id":431,"kind":"int","value":2},{"id":432,"kind":"int","value":3}]}},{"id":463,"kind":"def","name":"in_2_empty","qualifier":"val","expr":{"id":462,"kind":"app","opcode":"in","args":[{"id":460,"kind":"int","value":2},{"id":461,"kind":"app","opcode":"Set","args":[]}]}},{"id":467,"kind":"def","name":"subseteq_empty","qualifier":"val","expr":{"id":466,"kind":"app","opcode":"subseteq","args":[{"id":464,"kind":"app","opcode":"Set","args":[]},{"id":465,"kind":"app","opcode":"Set","args":[]}]}},{"kind":"const","name":"MyTuple","typeAnnotation":{"id":46,"kind":"tup","fields":{"kind":"row","fields":[{"fieldName":"0","fieldType":{"id":43,"kind":"int"}},{"fieldName":"1","fieldType":{"id":44,"kind":"bool"}},{"fieldName":"2","fieldType":{"id":45,"kind":"str"}}],"other":{"kind":"empty"}}},"id":47},{"id":476,"kind":"def","name":"powersets","qualifier":"val","expr":{"id":475,"kind":"app","opcode":"in","args":[{"id":469,"kind":"app","opcode":"Set","args":[{"id":468,"kind":"int","value":1}]},{"id":474,"kind":"app","opcode":"powerset","args":[{"id":473,"kind":"app","opcode":"Set","args":[{"id":470,"kind":"int","value":1},{"id":471,"kind":"int","value":2},{"id":472,"kind":"int","value":3}]}]}]}},{"id":489,"kind":"typedef","name":"INT_SET","type":{"id":488,"kind":"set","elem":{"id":487,"kind":"int"}}},{"id":490,"kind":"typedef","name":"UNINTERPRETED_TYPE"},{"kind":"const","name":"MyTupleWithComma","typeAnnotation":{"id":51,"kind":"tup","fields":{"kind":"row","fields":[{"fieldName":"0","fieldType":{"id":48,"kind":"int"}},{"fieldName":"1","fieldType":{"id":49,"kind":"bool"}},{"fieldName":"2","fieldType":{"id":50,"kind":"str"}}],"other":{"kind":"empty"}}},"id":52},{"kind":"const","name":"MyRecord","typeAnnotation":{"id":56,"kind":"rec","fields":{"kind":"row","fields":[{"fieldName":"i","fieldType":{"id":53,"kind":"int"}},{"fieldName":"b","fieldType":{"id":54,"kind":"bool"}},{"fieldName":"s","fieldType":{"id":55,"kind":"str"}}],"other":{"kind":"empty"}}},"id":57},{"kind":"const","name":"MyRecordWithComma","typeAnnotation":{"id":61,"kind":"rec","fields":{"kind":"row","fields":[{"fieldName":"i","fieldType":{"id":58,"kind":"int"}},{"fieldName":"b","fieldType":{"id":59,"kind":"bool"}},{"fieldName":"s","fieldType":{"id":60,"kind":"str"}}],"other":{"kind":"empty"}}},"id":62},{"kind":"const","name":"MyUnion","typeAnnotation":{"id":67,"kind":"union","tag":"tag","records":[{"tagValue":"circle","fields":{"kind":"row","fields":[{"fieldName":"radius","fieldType":{"id":63,"kind":"int"}}],"other":{"kind":"empty"}}},{"tagValue":"rectangle","fields":{"kind":"row","fields":[{"fieldName":"width","fieldType":{"id":64,"kind":"int"}},{"fieldName":"height","fieldType":{"id":65,"kind":"int"}}],"other":{"kind":"empty"}}},{"tagValue":"dog","fields":{"kind":"row","fields":[{"fieldName":"name","fieldType":{"id":66,"kind":"str"}}],"other":{"kind":"empty"}}}]},"id":68},{"kind":"const","name":"MyUnionWithComma","typeAnnotation":{"id":73,"kind":"union","tag":"tag","records":[{"tagValue":"circle","fields":{"kind":"row","fields":[{"fieldName":"radius","fieldType":{"id":69,"kind":"int"}}],"other":{"kind":"empty"}}},{"tagValue":"rectangle","fields":{"kind":"row","fields":[{"fieldName":"width","fieldType":{"id":70,"kind":"int"}},{"fieldName":"height","fieldType":{"id":71,"kind":"int"}}],"other":{"kind":"empty"}}},{"tagValue":"dog","fields":{"kind":"row","fields":[{"fieldName":"name","fieldType":{"id":72,"kind":"str"}}],"other":{"kind":"empty"}}}]},"id":74},{"kind":"var","name":"i","typeAnnotation":{"id":75,"kind":"int"},"id":76},{"kind":"var","name":"j","typeAnnotation":{"id":77,"kind":"bool"},"id":78},{"id":82,"kind":"def","name":"add_1_to_2","qualifier":"val","expr":{"id":81,"kind":"app","opcode":"iadd","args":[{"id":79,"kind":"int","value":1},{"id":80,"kind":"int","value":2}]}},{"id":86,"kind":"def","name":"sub_1_to_2","qualifier":"val","expr":{"id":85,"kind":"app","opcode":"isub","args":[{"id":83,"kind":"int","value":1},{"id":84,"kind":"int","value":2}]}},{"id":90,"kind":"def","name":"mul_2_to_3","qualifier":"val","expr":{"id":89,"kind":"app","opcode":"imul","args":[{"id":87,"kind":"int","value":2},{"id":88,"kind":"int","value":3}]}},{"id":94,"kind":"def","name":"div_2_to_3","qualifier":"val","expr":{"id":93,"kind":"app","opcode":"idiv","args":[{"id":91,"kind":"int","value":2},{"id":92,"kind":"int","value":3}]}},{"id":98,"kind":"def","name":"mod_2_to_3","qualifier":"val","expr":{"id":97,"kind":"app","opcode":"imod","args":[{"id":95,"kind":"int","value":2},{"id":96,"kind":"int","value":3}]}},{"id":145,"kind":"def","name":"there_is_truth","qualifier":"val","expr":{"id":144,"kind":"app","opcode":"exists","args":[{"id":140,"kind":"name","name":"Bool"},{"id":143,"kind":"lambda","params":[{"id":141,"name":"x"}],"qualifier":"def","expr":{"id":142,"kind":"name","name":"x"}}]}},{"id":156,"kind":"def","name":"withUninterpretedType","qualifier":"val","expr":{"id":155,"kind":"app","opcode":"Set","args":[]},"typeAnnotation":{"id":154,"kind":"set","elem":{"id":153,"kind":"const","name":"PROC"}}},{"id":166,"kind":"def","name":"add","qualifier":"puredef","expr":{"id":166,"kind":"lambda","params":[{"id":161,"name":"x"},{"id":162,"name":"y"}],"qualifier":"puredef","expr":{"id":165,"kind":"app","opcode":"iadd","args":[{"id":163,"kind":"name","name":"x"},{"id":164,"kind":"name","name":"y"}]}}},{"id":171,"kind":"def","name":"ofN","qualifier":"def","expr":{"id":171,"kind":"lambda","params":[{"id":167,"name":"factor"}],"qualifier":"def","expr":{"id":170,"kind":"app","opcode":"imul","args":[{"id":168,"kind":"name","name":"factor"},{"id":169,"kind":"name","name":"n"}]}}},{"id":176,"kind":"def","name":"A","qualifier":"action","expr":{"id":176,"kind":"lambda","params":[{"id":172,"name":"x"}],"qualifier":"action","expr":{"id":175,"kind":"app","opcode":"assign","args":[{"id":174,"kind":"name","name":"n"},{"id":173,"kind":"name","name":"x"}]}}},{"id":180,"kind":"def","name":"B","qualifier":"puredef","expr":{"id":180,"kind":"lambda","params":[{"id":177,"name":"x"}],"qualifier":"puredef","expr":{"id":179,"kind":"app","opcode":"not","args":[{"id":178,"kind":"name","name":"x"}]}}},{"id":190,"kind":"def","name":"H","qualifier":"def","expr":{"id":190,"kind":"lambda","params":[{"id":181,"name":"x"},{"id":182,"name":"y"}],"qualifier":"def","expr":{"id":189,"kind":"app","opcode":"iadd","args":[{"id":187,"kind":"name","name":"x"},{"id":188,"kind":"name","name":"y"}]}},"typeAnnotation":{"id":186,"kind":"oper","args":[{"id":183,"kind":"int"},{"id":184,"kind":"int"}],"res":{"id":185,"kind":"int"}}},{"id":196,"kind":"def","name":"Pol","qualifier":"def","expr":{"id":196,"kind":"lambda","params":[{"id":191,"name":"x"}],"qualifier":"def","expr":{"id":195,"kind":"name","name":"x"}},"typeAnnotation":{"id":194,"kind":"oper","args":[{"id":192,"kind":"var","name":"a"}],"res":{"id":193,"kind":"var","name":"a"}}},{"id":202,"kind":"def","name":"asgn","qualifier":"action","expr":{"id":201,"kind":"app","opcode":"assign","args":[{"id":200,"kind":"name","name":"k"},{"id":199,"kind":"int","value":3}]}},{"id":215,"kind":"def","name":"min","qualifier":"puredef","expr":{"id":215,"kind":"lambda","params":[{"id":203,"name":"x"},{"id":205,"name":"y"}],"qualifier":"puredef","expr":{"id":213,"kind":"app","opcode":"ite","args":[{"id":210,"kind":"app","opcode":"ilt","args":[{"id":208,"kind":"name","name":"x"},{"id":209,"kind":"name","name":"y"}]},{"id":211,"kind":"name","name":"x"},{"id":212,"kind":"name","name":"y"}]}},"typeAnnotation":{"id":214,"kind":"oper","args":[{"id":204,"kind":"int"},{"id":206,"kind":"int"}],"res":{"id":207,"kind":"int"}}},{"id":230,"kind":"def","name":"F","qualifier":"def","expr":{"id":230,"kind":"lambda","params":[{"id":228,"name":"x"}],"qualifier":"def","expr":{"id":229,"kind":"name","name":"x"}}},{"id":289,"kind":"def","name":"test_ite2","qualifier":"def","expr":{"id":289,"kind":"lambda","params":[{"id":277,"name":"x"},{"id":278,"name":"y"}],"qualifier":"def","expr":{"id":288,"kind":"app","opcode":"ite","args":[{"id":281,"kind":"app","opcode":"ilt","args":[{"id":279,"kind":"name","name":"x"},{"id":280,"kind":"int","value":10}]},{"id":284,"kind":"app","opcode":"iadd","args":[{"id":282,"kind":"name","name":"y"},{"id":283,"kind":"int","value":5}]},{"id":287,"kind":"app","opcode":"imod","args":[{"id":285,"kind":"name","name":"y"},{"id":286,"kind":"int","value":5}]}]}}},{"id":297,"kind":"def","name":"funapp","qualifier":"val","expr":{"id":296,"kind":"app","opcode":"get","args":[{"id":294,"kind":"name","name":"f1"},{"id":295,"kind":"str","value":"a"}]}},{"id":305,"kind":"def","name":"oper_app_normal","qualifier":"val","expr":{"id":304,"kind":"app","opcode":"MyOper","args":[{"id":302,"kind":"str","value":"a"},{"id":303,"kind":"int","value":42}]}},{"id":309,"kind":"def","name":"oper_app_ufcs","qualifier":"val","expr":{"id":308,"kind":"app","opcode":"MyOper","args":[{"id":306,"kind":"str","value":"a"},{"id":307,"kind":"int","value":42}]}},{"id":321,"kind":"def","name":"oper_app_dot1","qualifier":"val","expr":{"id":320,"kind":"app","opcode":"filter","args":[{"id":314,"kind":"name","name":"S"},{"id":319,"kind":"lambda","params":[{"id":315,"name":"x"}],"qualifier":"def","expr":{"id":318,"kind":"app","opcode":"igt","args":[{"id":316,"kind":"name","name":"x"},{"id":317,"kind":"int","value":10}]}}]}},{"id":359,"kind":"def","name":"oper_app_dot4","qualifier":"val","expr":{"id":358,"kind":"app","opcode":"filter","args":[{"id":354,"kind":"name","name":"S"},{"id":357,"kind":"lambda","params":[{"id":355,"name":"_"}],"qualifier":"def","expr":{"id":356,"kind":"bool","value":true}}]}},{"id":367,"kind":"def","name":"f","qualifier":"val","expr":{"id":366,"kind":"app","opcode":"mapBy","args":[{"id":360,"kind":"name","name":"S"},{"id":365,"kind":"lambda","params":[{"id":361,"name":"x"}],"qualifier":"def","expr":{"id":364,"kind":"app","opcode":"iadd","args":[{"id":362,"kind":"name","name":"x"},{"id":363,"kind":"int","value":1}]}}]}},{"id":373,"kind":"def","name":"set_difference","qualifier":"val","expr":{"id":372,"kind":"app","opcode":"exclude","args":[{"id":368,"kind":"name","name":"S"},{"id":371,"kind":"app","opcode":"Set","args":[{"id":369,"kind":"int","value":3},{"id":370,"kind":"int","value":4}]}]}},{"id":429,"kind":"def","name":"test_record3","qualifier":"val","expr":{"id":428,"kind":"app","opcode":"with","args":[{"id":427,"kind":"app","opcode":"with","args":[{"id":426,"kind":"name","name":"test_record"},{"id":423,"kind":"str","value":"name"},{"id":422,"kind":"str","value":"quint"}]},{"id":425,"kind":"str","value":"year"},{"id":424,"kind":"int","value":2023}]}},{"id":445,"kind":"def","name":"rec_field","qualifier":"val","expr":{"id":444,"kind":"let","opdef":{"id":440,"kind":"def","name":"my_rec","qualifier":"val","expr":{"id":439,"kind":"app","opcode":"Rec","args":[{"id":436,"kind":"str","value":"a"},{"id":435,"kind":"int","value":1},{"id":438,"kind":"str","value":"b"},{"id":437,"kind":"str","value":"foo"}]}},"expr":{"id":443,"kind":"app","opcode":"field","args":[{"id":441,"kind":"name","name":"my_rec"},{"id":442,"kind":"str","value":"a"}]}}},{"id":454,"kind":"def","name":"tup_elem","qualifier":"val","expr":{"id":453,"kind":"let","opdef":{"id":449,"kind":"def","name":"my_tup","qualifier":"val","expr":{"id":448,"kind":"app","opcode":"Tup","args":[{"id":446,"kind":"str","value":"a"},{"id":447,"kind":"int","value":3}]}},"expr":{"id":452,"kind":"app","opcode":"item","args":[{"id":450,"kind":"name","name":"my_tup"},{"id":451,"kind":"int","value":2}]}}},{"id":459,"kind":"def","name":"isEmpty","qualifier":"def","expr":{"id":459,"kind":"lambda","params":[{"id":455,"name":"s"}],"qualifier":"def","expr":{"id":458,"kind":"app","opcode":"eq","args":[{"id":456,"kind":"name","name":"s"},{"id":457,"kind":"app","opcode":"List","args":[]}]}}},{"id":480,"kind":"assume","name":"positive","assumption":{"id":479,"kind":"app","opcode":"igt","args":[{"id":477,"kind":"name","name":"N"},{"id":478,"kind":"int","value":0}]}},{"id":484,"kind":"assume","name":"_","assumption":{"id":483,"kind":"app","opcode":"neq","args":[{"id":481,"kind":"name","name":"N"},{"id":482,"kind":"int","value":0}]}},{"id":485,"kind":"import","defName":"foo","protoName":"M1"},{"id":486,"kind":"import","defName":"*","protoName":"M2"},{"kind":"var","name":"S1","typeAnnotation":{"id":491,"kind":"const","name":"INT_SET"},"id":492},{"id":495,"kind":"instance","qualifiedName":"Inst1","protoName":"Proto","overrides":[[{"id":494,"name":"N"},{"id":493,"kind":"name","name":"N"}]],"identityOverride":false},{"id":237,"kind":"def","name":"G","qualifier":"def","expr":{"id":237,"kind":"lambda","params":[{"id":231,"name":"x"}],"qualifier":"def","expr":{"id":236,"kind":"app","opcode":"and","args":[{"id":233,"kind":"app","opcode":"F","args":[{"id":232,"kind":"name","name":"x"}]},{"id":235,"kind":"app","opcode":"not","args":[{"id":234,"kind":"name","name":"x"}]}]}}},{"id":244,"kind":"def","name":"test_and_arg","qualifier":"def","expr":{"id":244,"kind":"lambda","params":[{"id":238,"name":"x"}],"qualifier":"def","expr":{"id":243,"kind":"app","opcode":"and","args":[{"id":240,"kind":"app","opcode":"F","args":[{"id":239,"kind":"name","name":"x"}]},{"id":242,"kind":"app","opcode":"not","args":[{"id":241,"kind":"name","name":"x"}]}]}}},{"id":251,"kind":"def","name":"test_or_arg","qualifier":"def","expr":{"id":251,"kind":"lambda","params":[{"id":245,"name":"x"}],"qualifier":"def","expr":{"id":250,"kind":"app","opcode":"or","args":[{"id":247,"kind":"app","opcode":"F","args":[{"id":246,"kind":"name","name":"x"}]},{"id":249,"kind":"app","opcode":"not","args":[{"id":248,"kind":"name","name":"x"}]}]}}},{"id":341,"kind":"def","name":"tuple_sum","qualifier":"val","expr":{"id":340,"kind":"app","opcode":"map","args":[{"id":324,"kind":"app","opcode":"tuples","args":[{"id":322,"kind":"name","name":"S"},{"id":323,"kind":"name","name":"MySet"}]},{"id":339,"kind":"lambda","params":[{"id":330,"name":"quintTupledLambdaParam330"}],"qualifier":"def","expr":{"id":335,"kind":"let","opdef":{"id":326,"kind":"def","name":"mys","qualifier":"pureval","expr":{"id":336,"kind":"app","opcode":"item","args":[{"id":337,"kind":"name","name":"quintTupledLambdaParam330"},{"id":338,"kind":"int","value":2}]}},"expr":{"id":331,"kind":"let","opdef":{"id":325,"kind":"def","name":"s","qualifier":"pureval","expr":{"id":332,"kind":"app","opcode":"item","args":[{"id":333,"kind":"name","name":"quintTupledLambdaParam330"},{"id":334,"kind":"int","value":1}]}},"expr":{"id":329,"kind":"app","opcode":"iadd","args":[{"id":327,"kind":"name","name":"s"},{"id":328,"kind":"name","name":"mys"}]}}}}]}},{"id":353,"kind":"def","name":"oper_nondet","qualifier":"action","expr":{"id":352,"kind":"let","opdef":{"id":344,"kind":"def","name":"x","qualifier":"nondet","expr":{"id":343,"kind":"app","opcode":"oneOf","args":[{"id":342,"kind":"name","name":"S"}]}},"expr":{"id":351,"kind":"app","opcode":"actionAll","args":[{"id":347,"kind":"app","opcode":"igt","args":[{"id":345,"kind":"name","name":"x"},{"id":346,"kind":"int","value":10}]},{"id":350,"kind":"app","opcode":"assign","args":[{"id":349,"kind":"name","name":"k"},{"id":348,"kind":"name","name":"x"}]}]}}}]}],"table":{"142":{"id":141,"name":"x","kind":"param"},"153":{"id":152,"kind":"typedef","name":"PROC"},"163":{"id":161,"name":"x","kind":"param"},"164":{"id":162,"name":"y","kind":"param"},"168":{"id":167,"name":"factor","kind":"param"},"169":{"kind":"var","name":"n","typeAnnotation":{"id":157,"kind":"int"},"id":158},"173":{"id":172,"name":"x","kind":"param"},"174":{"kind":"var","name":"n","typeAnnotation":{"id":157,"kind":"int"},"id":158},"178":{"id":177,"name":"x","kind":"param"},"187":{"id":181,"name":"x","kind":"param"},"188":{"id":182,"name":"y","kind":"param"},"195":{"id":191,"name":"x","kind":"param"},"200":{"kind":"var","name":"k","typeAnnotation":{"id":197,"kind":"int"},"id":198},"208":{"id":203,"name":"x","kind":"param"},"209":{"id":205,"name":"y","kind":"param"},"211":{"id":203,"name":"x","kind":"param"},"212":{"id":205,"name":"y","kind":"param"},"229":{"id":228,"name":"x","kind":"param"},"232":{"id":231,"name":"x","kind":"param"},"233":{"id":230,"kind":"def","name":"F","qualifier":"def","expr":{"id":230,"kind":"lambda","params":[{"id":228,"name":"x"}],"qualifier":"def","expr":{"id":229,"kind":"name","name":"x"}},"depth":0},"234":{"id":231,"name":"x","kind":"param"},"239":{"id":238,"name":"x","kind":"param"},"240":{"id":230,"kind":"def","name":"F","qualifier":"def","expr":{"id":230,"kind":"lambda","params":[{"id":228,"name":"x"}],"qualifier":"def","expr":{"id":229,"kind":"name","name":"x"}},"depth":0},"241":{"id":238,"name":"x","kind":"param"},"246":{"id":245,"name":"x","kind":"param"},"247":{"id":230,"kind":"def","name":"F","qualifier":"def","expr":{"id":230,"kind":"lambda","params":[{"id":228,"name":"x"}],"qualifier":"def","expr":{"id":229,"kind":"name","name":"x"}},"depth":0},"248":{"id":245,"name":"x","kind":"param"},"279":{"id":277,"name":"x","kind":"param"},"282":{"id":278,"name":"y","kind":"param"},"285":{"id":278,"name":"y","kind":"param"},"294":{"kind":"var","name":"f1","typeAnnotation":{"id":292,"kind":"fun","arg":{"id":290,"kind":"str"},"res":{"id":291,"kind":"int"}},"id":293},"304":{"id":301,"kind":"def","name":"MyOper","qualifier":"def","expr":{"id":301,"kind":"lambda","params":[{"id":298,"name":"a"},{"id":299,"name":"b"}],"qualifier":"def","expr":{"id":300,"kind":"int","value":1}},"depth":0},"308":{"id":301,"kind":"def","name":"MyOper","qualifier":"def","expr":{"id":301,"kind":"lambda","params":[{"id":298,"name":"a"},{"id":299,"name":"b"}],"qualifier":"def","expr":{"id":300,"kind":"int","value":1}},"depth":0},"314":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"316":{"id":315,"name":"x","kind":"param"},"322":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"323":{"kind":"const","name":"MySet","typeAnnotation":{"id":18,"kind":"set","elem":{"id":17,"kind":"int"}},"id":19},"327":{"id":325,"kind":"def","name":"s","qualifier":"pureval","expr":{"id":332,"kind":"app","opcode":"item","args":[{"id":333,"kind":"name","name":"quintTupledLambdaParam330"},{"id":334,"kind":"int","value":1}]},"depth":1},"328":{"id":326,"kind":"def","name":"mys","qualifier":"pureval","expr":{"id":336,"kind":"app","opcode":"item","args":[{"id":337,"kind":"name","name":"quintTupledLambdaParam330"},{"id":338,"kind":"int","value":2}]},"depth":1},"333":{"id":330,"name":"quintTupledLambdaParam330","kind":"param"},"337":{"id":330,"name":"quintTupledLambdaParam330","kind":"param"},"342":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"345":{"id":344,"kind":"def","name":"x","qualifier":"nondet","expr":{"id":343,"kind":"app","opcode":"oneOf","args":[{"id":342,"kind":"name","name":"S"}]},"depth":1},"348":{"id":344,"kind":"def","name":"x","qualifier":"nondet","expr":{"id":343,"kind":"app","opcode":"oneOf","args":[{"id":342,"kind":"name","name":"S"}]},"depth":1},"349":{"kind":"var","name":"k","typeAnnotation":{"id":197,"kind":"int"},"id":198},"354":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"360":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"362":{"id":361,"name":"x","kind":"param"},"368":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"426":{"id":415,"kind":"def","name":"test_record","qualifier":"val","expr":{"id":414,"kind":"app","opcode":"Rec","args":[{"id":411,"kind":"str","value":"name"},{"id":410,"kind":"str","value":"igor"},{"id":413,"kind":"str","value":"year"},{"id":412,"kind":"int","value":1981}]},"depth":0},"441":{"id":440,"kind":"def","name":"my_rec","qualifier":"val","expr":{"id":439,"kind":"app","opcode":"Rec","args":[{"id":436,"kind":"str","value":"a"},{"id":435,"kind":"int","value":1},{"id":438,"kind":"str","value":"b"},{"id":437,"kind":"str","value":"foo"}]},"depth":1},"450":{"id":449,"kind":"def","name":"my_tup","qualifier":"val","expr":{"id":448,"kind":"app","opcode":"Tup","args":[{"id":446,"kind":"str","value":"a"},{"id":447,"kind":"int","value":3}]},"depth":1},"456":{"id":455,"name":"s","kind":"param"},"477":{"kind":"const","name":"N","typeAnnotation":{"id":12,"kind":"int"},"id":13},"481":{"kind":"const","name":"N","typeAnnotation":{"id":12,"kind":"int"},"id":13},"491":{"id":489,"kind":"typedef","name":"INT_SET","type":{"id":488,"kind":"set","elem":{"id":487,"kind":"int"}}},"493":{"kind":"const","name":"N","typeAnnotation":{"id":12,"kind":"int"},"id":13},"494":{"kind":"const","name":"N","typeAnnotation":{"id":7,"kind":"int"},"id":493,"importedFrom":{"id":495,"kind":"instance","qualifiedName":"Inst1","protoName":"Proto","overrides":[[{"id":494,"name":"N"},{"id":493,"kind":"name","name":"N"}]],"identityOverride":false},"hidden":true,"namespaces":["Inst1","withConsts"]}},"errors":[]} \ No newline at end of file +{"stage":"parsing","warnings":[],"modules":[{"id":3,"name":"M1","declarations":[{"id":2,"kind":"def","name":"foo","qualifier":"val","expr":{"id":1,"kind":"int","value":4}}]},{"id":6,"name":"M2","declarations":[{"id":5,"kind":"def","name":"bar","qualifier":"val","expr":{"id":4,"kind":"int","value":4}}]},{"id":11,"name":"Proto","declarations":[{"kind":"var","name":"x","typeAnnotation":{"id":9,"kind":"int"},"id":10},{"kind":"const","name":"N","typeAnnotation":{"id":7,"kind":"int"},"id":8}]},{"id":510,"name":"withConsts","declarations":[{"id":100,"kind":"def","name":"sub_1_to_2","qualifier":"val","expr":{"id":99,"kind":"app","opcode":"isub","args":[{"id":97,"kind":"int","value":1},{"id":98,"kind":"int","value":2}]}},{"id":104,"kind":"def","name":"mul_2_to_3","qualifier":"val","expr":{"id":103,"kind":"app","opcode":"imul","args":[{"id":101,"kind":"int","value":2},{"id":102,"kind":"int","value":3}]}},{"id":108,"kind":"def","name":"div_2_to_3","qualifier":"val","expr":{"id":107,"kind":"app","opcode":"idiv","args":[{"id":105,"kind":"int","value":2},{"id":106,"kind":"int","value":3}]}},{"id":112,"kind":"def","name":"mod_2_to_3","qualifier":"val","expr":{"id":111,"kind":"app","opcode":"imod","args":[{"id":109,"kind":"int","value":2},{"id":110,"kind":"int","value":3}]}},{"id":116,"kind":"def","name":"pow_2_to_3","qualifier":"val","expr":{"id":115,"kind":"app","opcode":"ipow","args":[{"id":113,"kind":"int","value":2},{"id":114,"kind":"int","value":3}]}},{"id":119,"kind":"def","name":"uminus","qualifier":"val","expr":{"id":118,"kind":"app","opcode":"iuminus","args":[{"id":117,"kind":"int","value":100}]}},{"id":123,"kind":"def","name":"gt_2_to_3","qualifier":"val","expr":{"id":122,"kind":"app","opcode":"igt","args":[{"id":120,"kind":"int","value":2},{"id":121,"kind":"int","value":3}]}},{"id":127,"kind":"def","name":"ge_2_to_3","qualifier":"val","expr":{"id":126,"kind":"app","opcode":"igte","args":[{"id":124,"kind":"int","value":2},{"id":125,"kind":"int","value":3}]}},{"kind":"const","name":"N","typeAnnotation":{"id":12,"kind":"int"},"id":13},{"id":131,"kind":"def","name":"lt_2_to_3","qualifier":"val","expr":{"id":130,"kind":"app","opcode":"ilt","args":[{"id":128,"kind":"int","value":2},{"id":129,"kind":"int","value":3}]}},{"id":135,"kind":"def","name":"le_2_to_3","qualifier":"val","expr":{"id":134,"kind":"app","opcode":"ilte","args":[{"id":132,"kind":"int","value":2},{"id":133,"kind":"int","value":3}]}},{"id":139,"kind":"def","name":"eqeq_2_to_3","qualifier":"val","expr":{"id":138,"kind":"app","opcode":"eq","args":[{"id":136,"kind":"int","value":2},{"id":137,"kind":"int","value":3}]}},{"id":143,"kind":"def","name":"ne_2_to_3","qualifier":"val","expr":{"id":142,"kind":"app","opcode":"neq","args":[{"id":140,"kind":"int","value":2},{"id":141,"kind":"int","value":3}]}},{"id":149,"kind":"def","name":"VeryTrue","qualifier":"val","expr":{"id":148,"kind":"app","opcode":"eq","args":[{"id":146,"kind":"app","opcode":"iadd","args":[{"id":144,"kind":"int","value":2},{"id":145,"kind":"int","value":2}]},{"id":147,"kind":"int","value":4}]}},{"id":153,"kind":"def","name":"nat_includes_one","qualifier":"val","expr":{"id":152,"kind":"app","opcode":"in","args":[{"id":150,"kind":"int","value":1},{"id":151,"kind":"name","name":"Nat"}]}},{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},{"id":165,"kind":"def","name":"withType","qualifier":"val","expr":{"id":164,"kind":"app","opcode":"Set","args":[{"id":162,"kind":"int","value":1},{"id":163,"kind":"int","value":2}]},"typeAnnotation":{"id":161,"kind":"set","elem":{"id":160,"kind":"int"}}},{"id":166,"kind":"typedef","name":"PROC"},{"kind":"var","name":"n","typeAnnotation":{"id":171,"kind":"int"},"id":172},{"id":174,"kind":"def","name":"magicNumber","qualifier":"pureval","expr":{"id":173,"kind":"int","value":42}},{"kind":"const","name":"MySet","typeAnnotation":{"id":18,"kind":"set","elem":{"id":17,"kind":"int"}},"id":19},{"kind":"var","name":"k","typeAnnotation":{"id":211,"kind":"int"},"id":212},{"kind":"const","name":"MySeq","typeAnnotation":{"id":21,"kind":"list","elem":{"id":20,"kind":"bool"}},"id":22},{"id":233,"kind":"def","name":"test_and","qualifier":"val","expr":{"id":232,"kind":"app","opcode":"and","args":[{"id":230,"kind":"bool","value":false},{"id":231,"kind":"bool","value":true}]}},{"id":237,"kind":"def","name":"test_or","qualifier":"val","expr":{"id":236,"kind":"app","opcode":"or","args":[{"id":234,"kind":"bool","value":false},{"id":235,"kind":"bool","value":true}]}},{"id":241,"kind":"def","name":"test_implies","qualifier":"val","expr":{"id":240,"kind":"app","opcode":"implies","args":[{"id":238,"kind":"bool","value":false},{"id":239,"kind":"bool","value":true}]}},{"kind":"const","name":"MyFun","typeAnnotation":{"id":25,"kind":"fun","arg":{"id":23,"kind":"int"},"res":{"id":24,"kind":"str"}},"id":26},{"id":270,"kind":"def","name":"test_block_and","qualifier":"val","expr":{"id":269,"kind":"app","opcode":"and","args":[{"id":266,"kind":"bool","value":false},{"id":267,"kind":"bool","value":true},{"id":268,"kind":"bool","value":false}]}},{"id":275,"kind":"def","name":"test_action_and","qualifier":"action","expr":{"id":274,"kind":"app","opcode":"actionAll","args":[{"id":271,"kind":"bool","value":false},{"id":272,"kind":"bool","value":true},{"id":273,"kind":"bool","value":false}]}},{"id":280,"kind":"def","name":"test_block_or","qualifier":"val","expr":{"id":279,"kind":"app","opcode":"or","args":[{"id":276,"kind":"bool","value":false},{"id":277,"kind":"bool","value":true},{"id":278,"kind":"bool","value":false}]}},{"id":285,"kind":"def","name":"test_action_or","qualifier":"action","expr":{"id":284,"kind":"app","opcode":"actionAny","args":[{"id":281,"kind":"bool","value":false},{"id":282,"kind":"bool","value":true},{"id":283,"kind":"bool","value":false}]}},{"id":290,"kind":"def","name":"test_ite","qualifier":"val","expr":{"id":289,"kind":"app","opcode":"ite","args":[{"id":286,"kind":"bool","value":true},{"id":287,"kind":"int","value":1},{"id":288,"kind":"int","value":0}]}},{"kind":"var","name":"f1","typeAnnotation":{"id":306,"kind":"fun","arg":{"id":304,"kind":"str"},"res":{"id":305,"kind":"int"}},"id":307},{"id":315,"kind":"def","name":"MyOper","qualifier":"def","expr":{"id":315,"kind":"lambda","params":[{"id":312,"name":"a"},{"id":313,"name":"b"}],"qualifier":"def","expr":{"id":314,"kind":"int","value":1}}},{"kind":"const","name":"MyFunFun","typeAnnotation":{"id":31,"kind":"fun","arg":{"id":29,"kind":"fun","arg":{"id":27,"kind":"int"},"res":{"id":28,"kind":"str"}},"res":{"id":30,"kind":"bool"}},"id":32},{"id":327,"kind":"def","name":"oper_in","qualifier":"val","expr":{"id":326,"kind":"app","opcode":"in","args":[{"id":324,"kind":"int","value":1},{"id":325,"kind":"app","opcode":"Set","args":[]}]}},{"kind":"const","name":"MyOperator","typeAnnotation":{"id":36,"kind":"oper","args":[{"id":33,"kind":"int"},{"id":34,"kind":"str"}],"res":{"id":35,"kind":"bool"}},"id":37},{"id":392,"kind":"def","name":"one","qualifier":"val","expr":{"id":391,"kind":"app","opcode":"head","args":[{"id":390,"kind":"app","opcode":"List","args":[{"id":388,"kind":"int","value":1},{"id":389,"kind":"int","value":2}]}]}},{"id":397,"kind":"def","name":"test_tuple","qualifier":"val","expr":{"id":396,"kind":"app","opcode":"Tup","args":[{"id":393,"kind":"int","value":1},{"id":394,"kind":"int","value":2},{"id":395,"kind":"int","value":3}]}},{"id":402,"kind":"def","name":"test_tuple2","qualifier":"val","expr":{"id":401,"kind":"app","opcode":"Tup","args":[{"id":398,"kind":"int","value":1},{"id":399,"kind":"int","value":2},{"id":400,"kind":"int","value":3}]}},{"id":406,"kind":"def","name":"test_pair","qualifier":"val","expr":{"id":405,"kind":"app","opcode":"Tup","args":[{"id":403,"kind":"int","value":4},{"id":404,"kind":"int","value":5}]}},{"id":411,"kind":"def","name":"test_list","qualifier":"val","expr":{"id":410,"kind":"app","opcode":"List","args":[{"id":407,"kind":"int","value":1},{"id":408,"kind":"int","value":2},{"id":409,"kind":"int","value":3}]}},{"id":416,"kind":"def","name":"test_list2","qualifier":"val","expr":{"id":415,"kind":"app","opcode":"List","args":[{"id":412,"kind":"int","value":1},{"id":413,"kind":"int","value":2},{"id":414,"kind":"int","value":3}]}},{"kind":"const","name":"MyOperatorWithComma","typeAnnotation":{"id":41,"kind":"oper","args":[{"id":38,"kind":"int"},{"id":39,"kind":"str"}],"res":{"id":40,"kind":"bool"}},"id":42},{"id":423,"kind":"def","name":"test_list_nth","qualifier":"val","expr":{"id":422,"kind":"app","opcode":"nth","args":[{"id":420,"kind":"app","opcode":"List","args":[{"id":417,"kind":"int","value":2},{"id":418,"kind":"int","value":3},{"id":419,"kind":"int","value":4}]},{"id":421,"kind":"int","value":2}]}},{"id":429,"kind":"def","name":"test_record","qualifier":"val","expr":{"id":428,"kind":"app","opcode":"Rec","args":[{"id":425,"kind":"str","value":"name"},{"id":424,"kind":"str","value":"igor"},{"id":427,"kind":"str","value":"year"},{"id":426,"kind":"int","value":1981}]}},{"id":435,"kind":"def","name":"test_record2","qualifier":"val","expr":{"id":434,"kind":"app","opcode":"Rec","args":[{"id":430,"kind":"str","value":"name"},{"id":431,"kind":"str","value":"igor"},{"id":432,"kind":"str","value":"year"},{"id":433,"kind":"int","value":1981}]}},{"id":448,"kind":"def","name":"test_set","qualifier":"val","expr":{"id":447,"kind":"app","opcode":"Set","args":[{"id":444,"kind":"int","value":1},{"id":445,"kind":"int","value":2},{"id":446,"kind":"int","value":3}]}},{"kind":"const","name":"MyTuple","typeAnnotation":{"id":46,"kind":"tup","fields":{"kind":"row","fields":[{"fieldName":"0","fieldType":{"id":43,"kind":"int"}},{"fieldName":"1","fieldType":{"id":44,"kind":"bool"}},{"fieldName":"2","fieldType":{"id":45,"kind":"str"}}],"other":{"kind":"empty"}}},"id":47},{"id":477,"kind":"def","name":"in_2_empty","qualifier":"val","expr":{"id":476,"kind":"app","opcode":"in","args":[{"id":474,"kind":"int","value":2},{"id":475,"kind":"app","opcode":"Set","args":[]}]}},{"id":481,"kind":"def","name":"subseteq_empty","qualifier":"val","expr":{"id":480,"kind":"app","opcode":"subseteq","args":[{"id":478,"kind":"app","opcode":"Set","args":[]},{"id":479,"kind":"app","opcode":"Set","args":[]}]}},{"id":490,"kind":"def","name":"powersets","qualifier":"val","expr":{"id":489,"kind":"app","opcode":"in","args":[{"id":483,"kind":"app","opcode":"Set","args":[{"id":482,"kind":"int","value":1}]},{"id":488,"kind":"app","opcode":"powerset","args":[{"id":487,"kind":"app","opcode":"Set","args":[{"id":484,"kind":"int","value":1},{"id":485,"kind":"int","value":2},{"id":486,"kind":"int","value":3}]}]}]}},{"id":503,"kind":"typedef","name":"INT_SET","type":{"id":502,"kind":"set","elem":{"id":501,"kind":"int"}}},{"id":504,"kind":"typedef","name":"UNINTERPRETED_TYPE"},{"kind":"const","name":"MyTupleWithComma","typeAnnotation":{"id":51,"kind":"tup","fields":{"kind":"row","fields":[{"fieldName":"0","fieldType":{"id":48,"kind":"int"}},{"fieldName":"1","fieldType":{"id":49,"kind":"bool"}},{"fieldName":"2","fieldType":{"id":50,"kind":"str"}}],"other":{"kind":"empty"}}},"id":52},{"kind":"const","name":"MyRecord","typeAnnotation":{"id":56,"kind":"rec","fields":{"kind":"row","fields":[{"fieldName":"i","fieldType":{"id":53,"kind":"int"}},{"fieldName":"b","fieldType":{"id":54,"kind":"bool"}},{"fieldName":"s","fieldType":{"id":55,"kind":"str"}}],"other":{"kind":"empty"}}},"id":57},{"kind":"const","name":"MyRecordWithComma","typeAnnotation":{"id":61,"kind":"rec","fields":{"kind":"row","fields":[{"fieldName":"i","fieldType":{"id":58,"kind":"int"}},{"fieldName":"b","fieldType":{"id":59,"kind":"bool"}},{"fieldName":"s","fieldType":{"id":60,"kind":"str"}}],"other":{"kind":"empty"}}},"id":62},{"id":68,"name":"MyUnionType","kind":"typedef","type":{"id":68,"kind":"sum","fields":{"kind":"row","fields":[{"fieldName":"Circle","fieldType":{"id":63,"kind":"int"}},{"fieldName":"Rectangle","fieldType":{"id":66,"kind":"rec","fields":{"kind":"row","fields":[{"fieldName":"width","fieldType":{"id":64,"kind":"int"}},{"fieldName":"height","fieldType":{"id":65,"kind":"int"}}],"other":{"kind":"empty"}}}},{"fieldName":"Dog","fieldType":{"id":67,"kind":"str"}}],"other":{"kind":"empty"}}}},{"kind":"var","name":"i","typeAnnotation":{"id":89,"kind":"int"},"id":90},{"kind":"var","name":"j","typeAnnotation":{"id":91,"kind":"bool"},"id":92},{"id":96,"kind":"def","name":"add_1_to_2","qualifier":"val","expr":{"id":95,"kind":"app","opcode":"iadd","args":[{"id":93,"kind":"int","value":1},{"id":94,"kind":"int","value":2}]}},{"id":159,"kind":"def","name":"there_is_truth","qualifier":"val","expr":{"id":158,"kind":"app","opcode":"exists","args":[{"id":154,"kind":"name","name":"Bool"},{"id":157,"kind":"lambda","params":[{"id":155,"name":"x"}],"qualifier":"def","expr":{"id":156,"kind":"name","name":"x"}}]}},{"id":170,"kind":"def","name":"withUninterpretedType","qualifier":"val","expr":{"id":169,"kind":"app","opcode":"Set","args":[]},"typeAnnotation":{"id":168,"kind":"set","elem":{"id":167,"kind":"const","name":"PROC"}}},{"id":180,"kind":"def","name":"add","qualifier":"puredef","expr":{"id":180,"kind":"lambda","params":[{"id":175,"name":"x"},{"id":176,"name":"y"}],"qualifier":"puredef","expr":{"id":179,"kind":"app","opcode":"iadd","args":[{"id":177,"kind":"name","name":"x"},{"id":178,"kind":"name","name":"y"}]}}},{"id":185,"kind":"def","name":"ofN","qualifier":"def","expr":{"id":185,"kind":"lambda","params":[{"id":181,"name":"factor"}],"qualifier":"def","expr":{"id":184,"kind":"app","opcode":"imul","args":[{"id":182,"kind":"name","name":"factor"},{"id":183,"kind":"name","name":"n"}]}}},{"id":190,"kind":"def","name":"A","qualifier":"action","expr":{"id":190,"kind":"lambda","params":[{"id":186,"name":"x"}],"qualifier":"action","expr":{"id":189,"kind":"app","opcode":"assign","args":[{"id":188,"kind":"name","name":"n"},{"id":187,"kind":"name","name":"x"}]}}},{"id":194,"kind":"def","name":"B","qualifier":"puredef","expr":{"id":194,"kind":"lambda","params":[{"id":191,"name":"x"}],"qualifier":"puredef","expr":{"id":193,"kind":"app","opcode":"not","args":[{"id":192,"kind":"name","name":"x"}]}}},{"id":204,"kind":"def","name":"H","qualifier":"def","expr":{"id":204,"kind":"lambda","params":[{"id":195,"name":"x"},{"id":196,"name":"y"}],"qualifier":"def","expr":{"id":203,"kind":"app","opcode":"iadd","args":[{"id":201,"kind":"name","name":"x"},{"id":202,"kind":"name","name":"y"}]}},"typeAnnotation":{"id":200,"kind":"oper","args":[{"id":197,"kind":"int"},{"id":198,"kind":"int"}],"res":{"id":199,"kind":"int"}}},{"id":210,"kind":"def","name":"Pol","qualifier":"def","expr":{"id":210,"kind":"lambda","params":[{"id":205,"name":"x"}],"qualifier":"def","expr":{"id":209,"kind":"name","name":"x"}},"typeAnnotation":{"id":208,"kind":"oper","args":[{"id":206,"kind":"var","name":"a"}],"res":{"id":207,"kind":"var","name":"a"}}},{"id":216,"kind":"def","name":"asgn","qualifier":"action","expr":{"id":215,"kind":"app","opcode":"assign","args":[{"id":214,"kind":"name","name":"k"},{"id":213,"kind":"int","value":3}]}},{"id":229,"kind":"def","name":"min","qualifier":"puredef","expr":{"id":229,"kind":"lambda","params":[{"id":217,"name":"x"},{"id":219,"name":"y"}],"qualifier":"puredef","expr":{"id":227,"kind":"app","opcode":"ite","args":[{"id":224,"kind":"app","opcode":"ilt","args":[{"id":222,"kind":"name","name":"x"},{"id":223,"kind":"name","name":"y"}]},{"id":225,"kind":"name","name":"x"},{"id":226,"kind":"name","name":"y"}]}},"typeAnnotation":{"id":228,"kind":"oper","args":[{"id":218,"kind":"int"},{"id":220,"kind":"int"}],"res":{"id":221,"kind":"int"}}},{"id":244,"kind":"def","name":"F","qualifier":"def","expr":{"id":244,"kind":"lambda","params":[{"id":242,"name":"x"}],"qualifier":"def","expr":{"id":243,"kind":"name","name":"x"}}},{"id":303,"kind":"def","name":"test_ite2","qualifier":"def","expr":{"id":303,"kind":"lambda","params":[{"id":291,"name":"x"},{"id":292,"name":"y"}],"qualifier":"def","expr":{"id":302,"kind":"app","opcode":"ite","args":[{"id":295,"kind":"app","opcode":"ilt","args":[{"id":293,"kind":"name","name":"x"},{"id":294,"kind":"int","value":10}]},{"id":298,"kind":"app","opcode":"iadd","args":[{"id":296,"kind":"name","name":"y"},{"id":297,"kind":"int","value":5}]},{"id":301,"kind":"app","opcode":"imod","args":[{"id":299,"kind":"name","name":"y"},{"id":300,"kind":"int","value":5}]}]}}},{"id":311,"kind":"def","name":"funapp","qualifier":"val","expr":{"id":310,"kind":"app","opcode":"get","args":[{"id":308,"kind":"name","name":"f1"},{"id":309,"kind":"str","value":"a"}]}},{"id":319,"kind":"def","name":"oper_app_normal","qualifier":"val","expr":{"id":318,"kind":"app","opcode":"MyOper","args":[{"id":316,"kind":"str","value":"a"},{"id":317,"kind":"int","value":42}]}},{"id":323,"kind":"def","name":"oper_app_ufcs","qualifier":"val","expr":{"id":322,"kind":"app","opcode":"MyOper","args":[{"id":320,"kind":"str","value":"a"},{"id":321,"kind":"int","value":42}]}},{"id":335,"kind":"def","name":"oper_app_dot1","qualifier":"val","expr":{"id":334,"kind":"app","opcode":"filter","args":[{"id":328,"kind":"name","name":"S"},{"id":333,"kind":"lambda","params":[{"id":329,"name":"x"}],"qualifier":"def","expr":{"id":332,"kind":"app","opcode":"igt","args":[{"id":330,"kind":"name","name":"x"},{"id":331,"kind":"int","value":10}]}}]}},{"id":373,"kind":"def","name":"oper_app_dot4","qualifier":"val","expr":{"id":372,"kind":"app","opcode":"filter","args":[{"id":368,"kind":"name","name":"S"},{"id":371,"kind":"lambda","params":[{"id":369,"name":"_"}],"qualifier":"def","expr":{"id":370,"kind":"bool","value":true}}]}},{"id":381,"kind":"def","name":"f","qualifier":"val","expr":{"id":380,"kind":"app","opcode":"mapBy","args":[{"id":374,"kind":"name","name":"S"},{"id":379,"kind":"lambda","params":[{"id":375,"name":"x"}],"qualifier":"def","expr":{"id":378,"kind":"app","opcode":"iadd","args":[{"id":376,"kind":"name","name":"x"},{"id":377,"kind":"int","value":1}]}}]}},{"id":387,"kind":"def","name":"set_difference","qualifier":"val","expr":{"id":386,"kind":"app","opcode":"exclude","args":[{"id":382,"kind":"name","name":"S"},{"id":385,"kind":"app","opcode":"Set","args":[{"id":383,"kind":"int","value":3},{"id":384,"kind":"int","value":4}]}]}},{"id":443,"kind":"def","name":"test_record3","qualifier":"val","expr":{"id":442,"kind":"app","opcode":"with","args":[{"id":441,"kind":"app","opcode":"with","args":[{"id":440,"kind":"name","name":"test_record"},{"id":437,"kind":"str","value":"name"},{"id":436,"kind":"str","value":"quint"}]},{"id":439,"kind":"str","value":"year"},{"id":438,"kind":"int","value":2023}]}},{"id":459,"kind":"def","name":"rec_field","qualifier":"val","expr":{"id":458,"kind":"let","opdef":{"id":454,"kind":"def","name":"my_rec","qualifier":"val","expr":{"id":453,"kind":"app","opcode":"Rec","args":[{"id":450,"kind":"str","value":"a"},{"id":449,"kind":"int","value":1},{"id":452,"kind":"str","value":"b"},{"id":451,"kind":"str","value":"foo"}]}},"expr":{"id":457,"kind":"app","opcode":"field","args":[{"id":455,"kind":"name","name":"my_rec"},{"id":456,"kind":"str","value":"a"}]}}},{"id":468,"kind":"def","name":"tup_elem","qualifier":"val","expr":{"id":467,"kind":"let","opdef":{"id":463,"kind":"def","name":"my_tup","qualifier":"val","expr":{"id":462,"kind":"app","opcode":"Tup","args":[{"id":460,"kind":"str","value":"a"},{"id":461,"kind":"int","value":3}]}},"expr":{"id":466,"kind":"app","opcode":"item","args":[{"id":464,"kind":"name","name":"my_tup"},{"id":465,"kind":"int","value":2}]}}},{"id":473,"kind":"def","name":"isEmpty","qualifier":"def","expr":{"id":473,"kind":"lambda","params":[{"id":469,"name":"s"}],"qualifier":"def","expr":{"id":472,"kind":"app","opcode":"eq","args":[{"id":470,"kind":"name","name":"s"},{"id":471,"kind":"app","opcode":"List","args":[]}]}}},{"id":494,"kind":"assume","name":"positive","assumption":{"id":493,"kind":"app","opcode":"igt","args":[{"id":491,"kind":"name","name":"N"},{"id":492,"kind":"int","value":0}]}},{"id":498,"kind":"assume","name":"_","assumption":{"id":497,"kind":"app","opcode":"neq","args":[{"id":495,"kind":"name","name":"N"},{"id":496,"kind":"int","value":0}]}},{"id":499,"kind":"import","defName":"foo","protoName":"M1"},{"id":500,"kind":"import","defName":"*","protoName":"M2"},{"kind":"var","name":"S1","typeAnnotation":{"id":505,"kind":"const","name":"INT_SET"},"id":506},{"id":509,"kind":"instance","qualifiedName":"Inst1","protoName":"Proto","overrides":[[{"id":508,"name":"N"},{"id":507,"kind":"name","name":"N"}]],"identityOverride":false},{"id":74,"kind":"def","name":"Circle","qualifier":"def","typeAnnotation":{"kind":"oper","args":[{"id":63,"kind":"int"}],"res":{"id":68,"kind":"const","name":"MyUnionType"}},"expr":{"id":73,"kind":"lambda","params":[{"id":70,"name":"__CircleParam"}],"qualifier":"def","expr":{"id":72,"kind":"app","opcode":"variant","args":[{"id":69,"kind":"str","value":"Circle"},{"kind":"name","name":"__CircleParam","id":71}]}}},{"id":80,"kind":"def","name":"Rectangle","qualifier":"def","typeAnnotation":{"kind":"oper","args":[{"id":66,"kind":"rec","fields":{"kind":"row","fields":[{"fieldName":"width","fieldType":{"id":64,"kind":"int"}},{"fieldName":"height","fieldType":{"id":65,"kind":"int"}}],"other":{"kind":"empty"}}}],"res":{"id":68,"kind":"const","name":"MyUnionType"}},"expr":{"id":79,"kind":"lambda","params":[{"id":76,"name":"__RectangleParam"}],"qualifier":"def","expr":{"id":78,"kind":"app","opcode":"variant","args":[{"id":75,"kind":"str","value":"Rectangle"},{"kind":"name","name":"__RectangleParam","id":77}]}}},{"id":86,"kind":"def","name":"Dog","qualifier":"def","typeAnnotation":{"kind":"oper","args":[{"id":67,"kind":"str"}],"res":{"id":68,"kind":"const","name":"MyUnionType"}},"expr":{"id":85,"kind":"lambda","params":[{"id":82,"name":"__DogParam"}],"qualifier":"def","expr":{"id":84,"kind":"app","opcode":"variant","args":[{"id":81,"kind":"str","value":"Dog"},{"kind":"name","name":"__DogParam","id":83}]}}},{"kind":"const","name":"MyUnion","typeAnnotation":{"id":87,"kind":"const","name":"MyUnionType"},"id":88},{"id":251,"kind":"def","name":"G","qualifier":"def","expr":{"id":251,"kind":"lambda","params":[{"id":245,"name":"x"}],"qualifier":"def","expr":{"id":250,"kind":"app","opcode":"and","args":[{"id":247,"kind":"app","opcode":"F","args":[{"id":246,"kind":"name","name":"x"}]},{"id":249,"kind":"app","opcode":"not","args":[{"id":248,"kind":"name","name":"x"}]}]}}},{"id":258,"kind":"def","name":"test_and_arg","qualifier":"def","expr":{"id":258,"kind":"lambda","params":[{"id":252,"name":"x"}],"qualifier":"def","expr":{"id":257,"kind":"app","opcode":"and","args":[{"id":254,"kind":"app","opcode":"F","args":[{"id":253,"kind":"name","name":"x"}]},{"id":256,"kind":"app","opcode":"not","args":[{"id":255,"kind":"name","name":"x"}]}]}}},{"id":265,"kind":"def","name":"test_or_arg","qualifier":"def","expr":{"id":265,"kind":"lambda","params":[{"id":259,"name":"x"}],"qualifier":"def","expr":{"id":264,"kind":"app","opcode":"or","args":[{"id":261,"kind":"app","opcode":"F","args":[{"id":260,"kind":"name","name":"x"}]},{"id":263,"kind":"app","opcode":"not","args":[{"id":262,"kind":"name","name":"x"}]}]}}},{"id":355,"kind":"def","name":"tuple_sum","qualifier":"val","expr":{"id":354,"kind":"app","opcode":"map","args":[{"id":338,"kind":"app","opcode":"tuples","args":[{"id":336,"kind":"name","name":"S"},{"id":337,"kind":"name","name":"MySet"}]},{"id":353,"kind":"lambda","params":[{"id":344,"name":"quintTupledLambdaParam344"}],"qualifier":"def","expr":{"id":349,"kind":"let","opdef":{"id":340,"kind":"def","name":"mys","qualifier":"pureval","expr":{"id":350,"kind":"app","opcode":"item","args":[{"id":351,"kind":"name","name":"quintTupledLambdaParam344"},{"id":352,"kind":"int","value":2}]}},"expr":{"id":345,"kind":"let","opdef":{"id":339,"kind":"def","name":"s","qualifier":"pureval","expr":{"id":346,"kind":"app","opcode":"item","args":[{"id":347,"kind":"name","name":"quintTupledLambdaParam344"},{"id":348,"kind":"int","value":1}]}},"expr":{"id":343,"kind":"app","opcode":"iadd","args":[{"id":341,"kind":"name","name":"s"},{"id":342,"kind":"name","name":"mys"}]}}}}]}},{"id":367,"kind":"def","name":"oper_nondet","qualifier":"action","expr":{"id":366,"kind":"let","opdef":{"id":358,"kind":"def","name":"x","qualifier":"nondet","expr":{"id":357,"kind":"app","opcode":"oneOf","args":[{"id":356,"kind":"name","name":"S"}]}},"expr":{"id":365,"kind":"app","opcode":"actionAll","args":[{"id":361,"kind":"app","opcode":"igt","args":[{"id":359,"kind":"name","name":"x"},{"id":360,"kind":"int","value":10}]},{"id":364,"kind":"app","opcode":"assign","args":[{"id":363,"kind":"name","name":"k"},{"id":362,"kind":"name","name":"x"}]}]}}}]}],"table":{"68":{"id":68,"name":"MyUnionType","kind":"typedef","type":{"id":68,"kind":"sum","fields":{"kind":"row","fields":[{"fieldName":"Circle","fieldType":{"id":63,"kind":"int"}},{"fieldName":"Rectangle","fieldType":{"id":66,"kind":"rec","fields":{"kind":"row","fields":[{"fieldName":"width","fieldType":{"id":64,"kind":"int"}},{"fieldName":"height","fieldType":{"id":65,"kind":"int"}}],"other":{"kind":"empty"}}}},{"fieldName":"Dog","fieldType":{"id":67,"kind":"str"}}],"other":{"kind":"empty"}}}},"71":{"id":70,"name":"__CircleParam","kind":"param"},"77":{"id":76,"name":"__RectangleParam","kind":"param"},"83":{"id":82,"name":"__DogParam","kind":"param"},"87":{"id":68,"name":"MyUnionType","kind":"typedef","type":{"id":68,"kind":"sum","fields":{"kind":"row","fields":[{"fieldName":"Circle","fieldType":{"id":63,"kind":"int"}},{"fieldName":"Rectangle","fieldType":{"id":66,"kind":"rec","fields":{"kind":"row","fields":[{"fieldName":"width","fieldType":{"id":64,"kind":"int"}},{"fieldName":"height","fieldType":{"id":65,"kind":"int"}}],"other":{"kind":"empty"}}}},{"fieldName":"Dog","fieldType":{"id":67,"kind":"str"}}],"other":{"kind":"empty"}}}},"156":{"id":155,"name":"x","kind":"param"},"167":{"id":166,"kind":"typedef","name":"PROC"},"177":{"id":175,"name":"x","kind":"param"},"178":{"id":176,"name":"y","kind":"param"},"182":{"id":181,"name":"factor","kind":"param"},"183":{"kind":"var","name":"n","typeAnnotation":{"id":171,"kind":"int"},"id":172},"187":{"id":186,"name":"x","kind":"param"},"188":{"kind":"var","name":"n","typeAnnotation":{"id":171,"kind":"int"},"id":172},"192":{"id":191,"name":"x","kind":"param"},"201":{"id":195,"name":"x","kind":"param"},"202":{"id":196,"name":"y","kind":"param"},"209":{"id":205,"name":"x","kind":"param"},"214":{"kind":"var","name":"k","typeAnnotation":{"id":211,"kind":"int"},"id":212},"222":{"id":217,"name":"x","kind":"param"},"223":{"id":219,"name":"y","kind":"param"},"225":{"id":217,"name":"x","kind":"param"},"226":{"id":219,"name":"y","kind":"param"},"243":{"id":242,"name":"x","kind":"param"},"246":{"id":245,"name":"x","kind":"param"},"247":{"id":244,"kind":"def","name":"F","qualifier":"def","expr":{"id":244,"kind":"lambda","params":[{"id":242,"name":"x"}],"qualifier":"def","expr":{"id":243,"kind":"name","name":"x"}},"depth":0},"248":{"id":245,"name":"x","kind":"param"},"253":{"id":252,"name":"x","kind":"param"},"254":{"id":244,"kind":"def","name":"F","qualifier":"def","expr":{"id":244,"kind":"lambda","params":[{"id":242,"name":"x"}],"qualifier":"def","expr":{"id":243,"kind":"name","name":"x"}},"depth":0},"255":{"id":252,"name":"x","kind":"param"},"260":{"id":259,"name":"x","kind":"param"},"261":{"id":244,"kind":"def","name":"F","qualifier":"def","expr":{"id":244,"kind":"lambda","params":[{"id":242,"name":"x"}],"qualifier":"def","expr":{"id":243,"kind":"name","name":"x"}},"depth":0},"262":{"id":259,"name":"x","kind":"param"},"293":{"id":291,"name":"x","kind":"param"},"296":{"id":292,"name":"y","kind":"param"},"299":{"id":292,"name":"y","kind":"param"},"308":{"kind":"var","name":"f1","typeAnnotation":{"id":306,"kind":"fun","arg":{"id":304,"kind":"str"},"res":{"id":305,"kind":"int"}},"id":307},"318":{"id":315,"kind":"def","name":"MyOper","qualifier":"def","expr":{"id":315,"kind":"lambda","params":[{"id":312,"name":"a"},{"id":313,"name":"b"}],"qualifier":"def","expr":{"id":314,"kind":"int","value":1}},"depth":0},"322":{"id":315,"kind":"def","name":"MyOper","qualifier":"def","expr":{"id":315,"kind":"lambda","params":[{"id":312,"name":"a"},{"id":313,"name":"b"}],"qualifier":"def","expr":{"id":314,"kind":"int","value":1}},"depth":0},"328":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"330":{"id":329,"name":"x","kind":"param"},"336":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"337":{"kind":"const","name":"MySet","typeAnnotation":{"id":18,"kind":"set","elem":{"id":17,"kind":"int"}},"id":19},"341":{"id":339,"kind":"def","name":"s","qualifier":"pureval","expr":{"id":346,"kind":"app","opcode":"item","args":[{"id":347,"kind":"name","name":"quintTupledLambdaParam344"},{"id":348,"kind":"int","value":1}]},"depth":1},"342":{"id":340,"kind":"def","name":"mys","qualifier":"pureval","expr":{"id":350,"kind":"app","opcode":"item","args":[{"id":351,"kind":"name","name":"quintTupledLambdaParam344"},{"id":352,"kind":"int","value":2}]},"depth":1},"347":{"id":344,"name":"quintTupledLambdaParam344","kind":"param"},"351":{"id":344,"name":"quintTupledLambdaParam344","kind":"param"},"356":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"359":{"id":358,"kind":"def","name":"x","qualifier":"nondet","expr":{"id":357,"kind":"app","opcode":"oneOf","args":[{"id":356,"kind":"name","name":"S"}]},"depth":1},"362":{"id":358,"kind":"def","name":"x","qualifier":"nondet","expr":{"id":357,"kind":"app","opcode":"oneOf","args":[{"id":356,"kind":"name","name":"S"}]},"depth":1},"363":{"kind":"var","name":"k","typeAnnotation":{"id":211,"kind":"int"},"id":212},"368":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"374":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"376":{"id":375,"name":"x","kind":"param"},"382":{"kind":"const","name":"S","typeAnnotation":{"id":15,"kind":"set","elem":{"id":14,"kind":"int"}},"id":16},"440":{"id":429,"kind":"def","name":"test_record","qualifier":"val","expr":{"id":428,"kind":"app","opcode":"Rec","args":[{"id":425,"kind":"str","value":"name"},{"id":424,"kind":"str","value":"igor"},{"id":427,"kind":"str","value":"year"},{"id":426,"kind":"int","value":1981}]},"depth":0},"455":{"id":454,"kind":"def","name":"my_rec","qualifier":"val","expr":{"id":453,"kind":"app","opcode":"Rec","args":[{"id":450,"kind":"str","value":"a"},{"id":449,"kind":"int","value":1},{"id":452,"kind":"str","value":"b"},{"id":451,"kind":"str","value":"foo"}]},"depth":1},"464":{"id":463,"kind":"def","name":"my_tup","qualifier":"val","expr":{"id":462,"kind":"app","opcode":"Tup","args":[{"id":460,"kind":"str","value":"a"},{"id":461,"kind":"int","value":3}]},"depth":1},"470":{"id":469,"name":"s","kind":"param"},"491":{"kind":"const","name":"N","typeAnnotation":{"id":12,"kind":"int"},"id":13},"495":{"kind":"const","name":"N","typeAnnotation":{"id":12,"kind":"int"},"id":13},"505":{"id":503,"kind":"typedef","name":"INT_SET","type":{"id":502,"kind":"set","elem":{"id":501,"kind":"int"}}},"507":{"kind":"const","name":"N","typeAnnotation":{"id":12,"kind":"int"},"id":13},"508":{"kind":"const","name":"N","typeAnnotation":{"id":7,"kind":"int"},"id":507,"importedFrom":{"id":509,"kind":"instance","qualifiedName":"Inst1","protoName":"Proto","overrides":[[{"id":508,"name":"N"},{"id":507,"kind":"name","name":"N"}]],"identityOverride":false},"hidden":true,"namespaces":["Inst1","withConsts"]}},"errors":[]} \ No newline at end of file diff --git a/quint/testFixture/SuperSpec.map.json b/quint/testFixture/SuperSpec.map.json index 4212ee434..54d6d710d 100644 --- a/quint/testFixture/SuperSpec.map.json +++ b/quint/testFixture/SuperSpec.map.json @@ -1 +1 @@ -{"sourceIndex":{"0":"mocked_path/testFixture/SuperSpec.qnt"},"map":{"1":[0,{"line":1,"col":12,"index":24},{"line":1,"col":12,"index":24}],"2":[0,{"line":1,"col":2,"index":14},{"line":1,"col":12,"index":24}],"3":[0,{"line":0,"col":0,"index":0},{"line":2,"col":26,"index":26}],"4":[0,{"line":5,"col":12,"index":53},{"line":5,"col":12,"index":53}],"5":[0,{"line":5,"col":2,"index":43},{"line":5,"col":12,"index":53}],"6":[0,{"line":4,"col":0,"index":29},{"line":6,"col":26,"index":55}],"7":[0,{"line":9,"col":11,"index":84},{"line":9,"col":13,"index":86}],"8":[0,{"line":9,"col":2,"index":75},{"line":9,"col":13,"index":86}],"9":[0,{"line":10,"col":9,"index":97},{"line":10,"col":11,"index":99}],"10":[0,{"line":10,"col":2,"index":90},{"line":10,"col":11,"index":99}],"11":[0,{"line":8,"col":0,"index":58},{"line":11,"col":43,"index":101}],"12":[0,{"line":16,"col":11,"index":186},{"line":16,"col":13,"index":188}],"13":[0,{"line":16,"col":2,"index":177},{"line":16,"col":13,"index":188}],"14":[0,{"line":17,"col":15,"index":205},{"line":17,"col":17,"index":207}],"15":[0,{"line":17,"col":11,"index":201},{"line":17,"col":18,"index":208}],"16":[0,{"line":17,"col":2,"index":192},{"line":17,"col":18,"index":208}],"17":[0,{"line":18,"col":19,"index":229},{"line":18,"col":21,"index":231}],"18":[0,{"line":18,"col":15,"index":225},{"line":18,"col":22,"index":232}],"19":[0,{"line":18,"col":2,"index":212},{"line":18,"col":22,"index":232}],"20":[0,{"line":19,"col":20,"index":254},{"line":19,"col":23,"index":257}],"21":[0,{"line":19,"col":15,"index":249},{"line":19,"col":24,"index":258}],"22":[0,{"line":19,"col":2,"index":236},{"line":19,"col":24,"index":258}],"23":[0,{"line":20,"col":15,"index":275},{"line":20,"col":17,"index":277}],"24":[0,{"line":20,"col":22,"index":282},{"line":20,"col":24,"index":284}],"25":[0,{"line":20,"col":15,"index":275},{"line":20,"col":24,"index":284}],"26":[0,{"line":20,"col":2,"index":262},{"line":20,"col":24,"index":284}],"27":[0,{"line":21,"col":19,"index":305},{"line":21,"col":21,"index":307}],"28":[0,{"line":21,"col":26,"index":312},{"line":21,"col":28,"index":314}],"29":[0,{"line":21,"col":19,"index":305},{"line":21,"col":28,"index":314}],"30":[0,{"line":21,"col":34,"index":320},{"line":21,"col":37,"index":323}],"31":[0,{"line":21,"col":18,"index":304},{"line":21,"col":37,"index":323}],"32":[0,{"line":21,"col":2,"index":288},{"line":21,"col":37,"index":323}],"33":[0,{"line":22,"col":21,"index":346},{"line":22,"col":23,"index":348}],"34":[0,{"line":22,"col":26,"index":351},{"line":22,"col":28,"index":353}],"35":[0,{"line":22,"col":34,"index":359},{"line":22,"col":37,"index":362}],"36":[0,{"line":22,"col":20,"index":345},{"line":22,"col":37,"index":362}],"37":[0,{"line":22,"col":2,"index":327},{"line":22,"col":37,"index":362}],"38":[0,{"line":23,"col":30,"index":394},{"line":23,"col":32,"index":396}],"39":[0,{"line":23,"col":35,"index":399},{"line":23,"col":37,"index":401}],"40":[0,{"line":23,"col":45,"index":409},{"line":23,"col":48,"index":412}],"41":[0,{"line":23,"col":29,"index":393},{"line":23,"col":48,"index":412}],"42":[0,{"line":23,"col":2,"index":366},{"line":23,"col":48,"index":412}],"43":[0,{"line":24,"col":18,"index":432},{"line":24,"col":20,"index":434}],"44":[0,{"line":24,"col":23,"index":437},{"line":24,"col":26,"index":440}],"45":[0,{"line":24,"col":29,"index":443},{"line":24,"col":31,"index":445}],"46":[0,{"line":24,"col":17,"index":431},{"line":24,"col":32,"index":446}],"47":[0,{"line":24,"col":2,"index":416},{"line":24,"col":32,"index":446}],"48":[0,{"line":25,"col":27,"index":475},{"line":25,"col":29,"index":477}],"49":[0,{"line":25,"col":32,"index":480},{"line":25,"col":35,"index":483}],"50":[0,{"line":25,"col":38,"index":486},{"line":25,"col":40,"index":488}],"51":[0,{"line":25,"col":26,"index":474},{"line":25,"col":43,"index":491}],"52":[0,{"line":25,"col":2,"index":450},{"line":25,"col":43,"index":491}],"53":[0,{"line":28,"col":23,"index":580},{"line":28,"col":25,"index":582}],"54":[0,{"line":28,"col":31,"index":588},{"line":28,"col":34,"index":591}],"55":[0,{"line":28,"col":40,"index":597},{"line":28,"col":42,"index":599}],"56":[0,{"line":28,"col":18,"index":575},{"line":28,"col":44,"index":601}],"57":[0,{"line":28,"col":2,"index":559},{"line":28,"col":44,"index":601}],"58":[0,{"line":29,"col":32,"index":635},{"line":29,"col":34,"index":637}],"59":[0,{"line":29,"col":40,"index":643},{"line":29,"col":43,"index":646}],"60":[0,{"line":29,"col":49,"index":652},{"line":29,"col":51,"index":654}],"61":[0,{"line":29,"col":27,"index":630},{"line":29,"col":54,"index":657}],"62":[0,{"line":29,"col":2,"index":605},{"line":29,"col":54,"index":657}],"63":[0,{"line":32,"col":33,"index":759},{"line":32,"col":35,"index":761}],"64":[0,{"line":33,"col":35,"index":800},{"line":33,"col":37,"index":802}],"65":[0,{"line":33,"col":48,"index":813},{"line":33,"col":50,"index":815}],"66":[0,{"line":34,"col":28,"index":847},{"line":34,"col":30,"index":849}],"67":[0,{"line":32,"col":6,"index":732},{"line":34,"col":125,"index":851}],"68":[0,{"line":31,"col":2,"index":711},{"line":34,"col":142,"index":851}],"69":[0,{"line":37,"col":33,"index":913},{"line":37,"col":35,"index":915}],"70":[0,{"line":38,"col":35,"index":955},{"line":38,"col":37,"index":957}],"71":[0,{"line":38,"col":48,"index":968},{"line":38,"col":50,"index":970}],"72":[0,{"line":39,"col":28,"index":1003},{"line":39,"col":30,"index":1005}],"73":[0,{"line":37,"col":6,"index":886},{"line":39,"col":128,"index":1008}],"74":[0,{"line":36,"col":2,"index":856},{"line":39,"col":154,"index":1008}],"75":[0,{"line":44,"col":9,"index":1122},{"line":44,"col":11,"index":1124}],"76":[0,{"line":44,"col":2,"index":1115},{"line":44,"col":11,"index":1124}],"77":[0,{"line":45,"col":9,"index":1135},{"line":45,"col":12,"index":1138}],"78":[0,{"line":45,"col":2,"index":1128},{"line":45,"col":12,"index":1138}],"79":[0,{"line":50,"col":19,"index":1307},{"line":50,"col":19,"index":1307}],"80":[0,{"line":50,"col":23,"index":1311},{"line":50,"col":23,"index":1311}],"81":[0,{"line":50,"col":19,"index":1307},{"line":50,"col":23,"index":1311}],"82":[0,{"line":50,"col":2,"index":1290},{"line":50,"col":23,"index":1311}],"83":[0,{"line":51,"col":19,"index":1332},{"line":51,"col":19,"index":1332}],"84":[0,{"line":51,"col":23,"index":1336},{"line":51,"col":23,"index":1336}],"85":[0,{"line":51,"col":19,"index":1332},{"line":51,"col":23,"index":1336}],"86":[0,{"line":51,"col":2,"index":1315},{"line":51,"col":23,"index":1336}],"87":[0,{"line":52,"col":19,"index":1357},{"line":52,"col":19,"index":1357}],"88":[0,{"line":52,"col":23,"index":1361},{"line":52,"col":23,"index":1361}],"89":[0,{"line":52,"col":19,"index":1357},{"line":52,"col":23,"index":1361}],"90":[0,{"line":52,"col":2,"index":1340},{"line":52,"col":23,"index":1361}],"91":[0,{"line":53,"col":19,"index":1382},{"line":53,"col":19,"index":1382}],"92":[0,{"line":53,"col":23,"index":1386},{"line":53,"col":23,"index":1386}],"93":[0,{"line":53,"col":19,"index":1382},{"line":53,"col":23,"index":1386}],"94":[0,{"line":53,"col":2,"index":1365},{"line":53,"col":23,"index":1386}],"95":[0,{"line":54,"col":19,"index":1407},{"line":54,"col":19,"index":1407}],"96":[0,{"line":54,"col":23,"index":1411},{"line":54,"col":23,"index":1411}],"97":[0,{"line":54,"col":19,"index":1407},{"line":54,"col":23,"index":1411}],"98":[0,{"line":54,"col":2,"index":1390},{"line":54,"col":23,"index":1411}],"99":[0,{"line":55,"col":19,"index":1432},{"line":55,"col":19,"index":1432}],"100":[0,{"line":55,"col":21,"index":1434},{"line":55,"col":21,"index":1434}],"101":[0,{"line":55,"col":19,"index":1432},{"line":55,"col":21,"index":1434}],"102":[0,{"line":55,"col":2,"index":1415},{"line":55,"col":21,"index":1434}],"103":[0,{"line":56,"col":16,"index":1452},{"line":56,"col":18,"index":1454}],"104":[0,{"line":56,"col":15,"index":1451},{"line":56,"col":18,"index":1454}],"105":[0,{"line":56,"col":2,"index":1438},{"line":56,"col":18,"index":1454}],"106":[0,{"line":57,"col":18,"index":1474},{"line":57,"col":18,"index":1474}],"107":[0,{"line":57,"col":22,"index":1478},{"line":57,"col":22,"index":1478}],"108":[0,{"line":57,"col":18,"index":1474},{"line":57,"col":22,"index":1478}],"109":[0,{"line":57,"col":2,"index":1458},{"line":57,"col":22,"index":1478}],"110":[0,{"line":58,"col":18,"index":1498},{"line":58,"col":18,"index":1498}],"111":[0,{"line":58,"col":23,"index":1503},{"line":58,"col":23,"index":1503}],"112":[0,{"line":58,"col":18,"index":1498},{"line":58,"col":23,"index":1503}],"113":[0,{"line":58,"col":2,"index":1482},{"line":58,"col":23,"index":1503}],"114":[0,{"line":59,"col":18,"index":1523},{"line":59,"col":18,"index":1523}],"115":[0,{"line":59,"col":22,"index":1527},{"line":59,"col":22,"index":1527}],"116":[0,{"line":59,"col":18,"index":1523},{"line":59,"col":22,"index":1527}],"117":[0,{"line":59,"col":2,"index":1507},{"line":59,"col":22,"index":1527}],"118":[0,{"line":60,"col":18,"index":1547},{"line":60,"col":18,"index":1547}],"119":[0,{"line":60,"col":23,"index":1552},{"line":60,"col":23,"index":1552}],"120":[0,{"line":60,"col":18,"index":1547},{"line":60,"col":23,"index":1552}],"121":[0,{"line":60,"col":2,"index":1531},{"line":60,"col":23,"index":1552}],"122":[0,{"line":61,"col":20,"index":1574},{"line":61,"col":20,"index":1574}],"123":[0,{"line":61,"col":25,"index":1579},{"line":61,"col":25,"index":1579}],"124":[0,{"line":61,"col":20,"index":1574},{"line":61,"col":25,"index":1579}],"125":[0,{"line":61,"col":2,"index":1556},{"line":61,"col":25,"index":1579}],"126":[0,{"line":62,"col":18,"index":1599},{"line":62,"col":18,"index":1599}],"127":[0,{"line":62,"col":23,"index":1604},{"line":62,"col":23,"index":1604}],"128":[0,{"line":62,"col":18,"index":1599},{"line":62,"col":23,"index":1604}],"129":[0,{"line":62,"col":2,"index":1583},{"line":62,"col":23,"index":1604}],"130":[0,{"line":64,"col":6,"index":1631},{"line":64,"col":6,"index":1631}],"131":[0,{"line":64,"col":10,"index":1635},{"line":64,"col":10,"index":1635}],"132":[0,{"line":64,"col":6,"index":1631},{"line":64,"col":10,"index":1635}],"133":[0,{"line":64,"col":15,"index":1640},{"line":64,"col":15,"index":1640}],"134":[0,{"line":64,"col":6,"index":1631},{"line":64,"col":15,"index":1640}],"135":[0,{"line":63,"col":2,"index":1608},{"line":65,"col":38,"index":1644}],"136":[0,{"line":66,"col":25,"index":1671},{"line":66,"col":25,"index":1671}],"137":[0,{"line":66,"col":30,"index":1676},{"line":66,"col":32,"index":1678}],"138":[0,{"line":66,"col":25,"index":1671},{"line":66,"col":33,"index":1679}],"139":[0,{"line":66,"col":2,"index":1648},{"line":66,"col":33,"index":1679}],"140":[0,{"line":67,"col":23,"index":1704},{"line":67,"col":26,"index":1707}],"141":[0,{"line":67,"col":35,"index":1716},{"line":67,"col":35,"index":1716}],"142":[0,{"line":67,"col":40,"index":1721},{"line":67,"col":40,"index":1721}],"143":[0,{"line":67,"col":35,"index":1716},{"line":67,"col":40,"index":1721}],"144":[0,{"line":67,"col":23,"index":1704},{"line":67,"col":41,"index":1722}],"145":[0,{"line":67,"col":2,"index":1683},{"line":67,"col":41,"index":1722}],"146":[0,{"line":70,"col":20,"index":1761},{"line":70,"col":22,"index":1763}],"147":[0,{"line":70,"col":16,"index":1757},{"line":70,"col":23,"index":1764}],"148":[0,{"line":70,"col":31,"index":1772},{"line":70,"col":31,"index":1772}],"149":[0,{"line":70,"col":34,"index":1775},{"line":70,"col":34,"index":1775}],"150":[0,{"line":70,"col":27,"index":1768},{"line":70,"col":35,"index":1776}],"151":[0,{"line":70,"col":2,"index":1743},{"line":70,"col":35,"index":1776}],"152":[0,{"line":72,"col":2,"index":1815},{"line":72,"col":10,"index":1823}],"153":[0,{"line":73,"col":33,"index":1858},{"line":73,"col":36,"index":1861}],"154":[0,{"line":73,"col":29,"index":1854},{"line":73,"col":37,"index":1862}],"155":[0,{"line":73,"col":41,"index":1866},{"line":73,"col":45,"index":1870}],"156":[0,{"line":73,"col":2,"index":1827},{"line":73,"col":45,"index":1870}],"157":[0,{"line":76,"col":9,"index":1908},{"line":76,"col":11,"index":1910}],"158":[0,{"line":76,"col":2,"index":1901},{"line":76,"col":11,"index":1910}],"159":[0,{"line":77,"col":25,"index":1937},{"line":77,"col":26,"index":1938}],"160":[0,{"line":77,"col":2,"index":1914},{"line":77,"col":26,"index":1938}],"161":[0,{"line":78,"col":15,"index":1955},{"line":78,"col":15,"index":1955}],"162":[0,{"line":78,"col":18,"index":1958},{"line":78,"col":18,"index":1958}],"163":[0,{"line":78,"col":23,"index":1963},{"line":78,"col":23,"index":1963}],"164":[0,{"line":78,"col":27,"index":1967},{"line":78,"col":27,"index":1967}],"165":[0,{"line":78,"col":23,"index":1963},{"line":78,"col":27,"index":1967}],"166":[0,{"line":78,"col":2,"index":1942},{"line":78,"col":27,"index":1967}],"167":[0,{"line":79,"col":10,"index":1979},{"line":79,"col":15,"index":1984}],"168":[0,{"line":79,"col":20,"index":1989},{"line":79,"col":25,"index":1994}],"169":[0,{"line":79,"col":29,"index":1998},{"line":79,"col":29,"index":1998}],"170":[0,{"line":79,"col":20,"index":1989},{"line":79,"col":29,"index":1998}],"171":[0,{"line":79,"col":2,"index":1971},{"line":79,"col":29,"index":1998}],"172":[0,{"line":80,"col":11,"index":2011},{"line":80,"col":11,"index":2011}],"173":[0,{"line":80,"col":21,"index":2021},{"line":80,"col":21,"index":2021}],"174":[0,{"line":80,"col":16,"index":2016},{"line":80,"col":21,"index":2021}],"175":[0,{"line":80,"col":16,"index":2016},{"line":80,"col":21,"index":2021}],"176":[0,{"line":80,"col":2,"index":2002},{"line":80,"col":21,"index":2021}],"177":[0,{"line":81,"col":13,"index":2036},{"line":81,"col":13,"index":2036}],"178":[0,{"line":81,"col":22,"index":2045},{"line":81,"col":22,"index":2045}],"179":[0,{"line":81,"col":18,"index":2041},{"line":81,"col":23,"index":2046}],"180":[0,{"line":81,"col":2,"index":2025},{"line":81,"col":23,"index":2046}],"181":[0,{"line":84,"col":8,"index":2078},{"line":84,"col":8,"index":2078}],"182":[0,{"line":84,"col":11,"index":2081},{"line":84,"col":11,"index":2081}],"183":[0,{"line":84,"col":16,"index":2086},{"line":84,"col":18,"index":2088}],"184":[0,{"line":84,"col":21,"index":2091},{"line":84,"col":23,"index":2093}],"185":[0,{"line":84,"col":29,"index":2099},{"line":84,"col":31,"index":2101}],"186":[0,{"line":84,"col":15,"index":2085},{"line":84,"col":31,"index":2101}],"187":[0,{"line":85,"col":6,"index":2113},{"line":85,"col":6,"index":2113}],"188":[0,{"line":85,"col":10,"index":2117},{"line":85,"col":10,"index":2117}],"189":[0,{"line":85,"col":6,"index":2113},{"line":85,"col":10,"index":2117}],"190":[0,{"line":84,"col":2,"index":2072},{"line":86,"col":51,"index":2121}],"191":[0,{"line":88,"col":10,"index":2164},{"line":88,"col":10,"index":2164}],"192":[0,{"line":88,"col":15,"index":2169},{"line":88,"col":15,"index":2169}],"193":[0,{"line":88,"col":21,"index":2175},{"line":88,"col":21,"index":2175}],"194":[0,{"line":88,"col":14,"index":2168},{"line":88,"col":21,"index":2175}],"195":[0,{"line":89,"col":6,"index":2187},{"line":89,"col":6,"index":2187}],"196":[0,{"line":88,"col":2,"index":2156},{"line":90,"col":37,"index":2191}],"197":[0,{"line":92,"col":9,"index":2203},{"line":92,"col":11,"index":2205}],"198":[0,{"line":92,"col":2,"index":2196},{"line":92,"col":11,"index":2205}],"199":[0,{"line":93,"col":21,"index":2228},{"line":93,"col":21,"index":2228}],"200":[0,{"line":93,"col":16,"index":2223},{"line":93,"col":21,"index":2228}],"201":[0,{"line":93,"col":16,"index":2223},{"line":93,"col":21,"index":2228}],"202":[0,{"line":93,"col":2,"index":2209},{"line":93,"col":21,"index":2228}],"203":[0,{"line":96,"col":15,"index":2280},{"line":96,"col":15,"index":2280}],"204":[0,{"line":96,"col":18,"index":2283},{"line":96,"col":20,"index":2285}],"205":[0,{"line":96,"col":23,"index":2288},{"line":96,"col":23,"index":2288}],"206":[0,{"line":96,"col":26,"index":2291},{"line":96,"col":28,"index":2293}],"207":[0,{"line":96,"col":32,"index":2297},{"line":96,"col":34,"index":2299}],"208":[0,{"line":97,"col":8,"index":2313},{"line":97,"col":8,"index":2313}],"209":[0,{"line":97,"col":12,"index":2317},{"line":97,"col":12,"index":2317}],"210":[0,{"line":97,"col":8,"index":2313},{"line":97,"col":12,"index":2317}],"211":[0,{"line":98,"col":4,"index":2324},{"line":98,"col":4,"index":2324}],"212":[0,{"line":99,"col":9,"index":2335},{"line":99,"col":9,"index":2335}],"213":[0,{"line":97,"col":4,"index":2309},{"line":99,"col":30,"index":2335}],"214":[0,{"line":96,"col":2,"index":2267},{"line":100,"col":74,"index":2339}],"215":[0,{"line":96,"col":2,"index":2267},{"line":100,"col":74,"index":2339}],"216":[0,{"line":104,"col":17,"index":2383},{"line":104,"col":21,"index":2387}],"217":[0,{"line":104,"col":27,"index":2393},{"line":104,"col":30,"index":2396}],"218":[0,{"line":104,"col":17,"index":2383},{"line":104,"col":30,"index":2396}],"219":[0,{"line":104,"col":2,"index":2368},{"line":104,"col":30,"index":2396}],"220":[0,{"line":105,"col":16,"index":2414},{"line":105,"col":20,"index":2418}],"221":[0,{"line":105,"col":25,"index":2423},{"line":105,"col":28,"index":2426}],"222":[0,{"line":105,"col":16,"index":2414},{"line":105,"col":28,"index":2426}],"223":[0,{"line":105,"col":2,"index":2400},{"line":105,"col":28,"index":2426}],"224":[0,{"line":106,"col":21,"index":2449},{"line":106,"col":25,"index":2453}],"225":[0,{"line":106,"col":35,"index":2463},{"line":106,"col":38,"index":2466}],"226":[0,{"line":106,"col":21,"index":2449},{"line":106,"col":38,"index":2466}],"227":[0,{"line":106,"col":2,"index":2430},{"line":106,"col":38,"index":2466}],"228":[0,{"line":107,"col":8,"index":2476},{"line":107,"col":8,"index":2476}],"229":[0,{"line":107,"col":13,"index":2481},{"line":107,"col":13,"index":2481}],"230":[0,{"line":107,"col":2,"index":2470},{"line":107,"col":13,"index":2481}],"231":[0,{"line":108,"col":8,"index":2491},{"line":108,"col":8,"index":2491}],"232":[0,{"line":108,"col":15,"index":2498},{"line":108,"col":15,"index":2498}],"233":[0,{"line":108,"col":13,"index":2496},{"line":108,"col":16,"index":2499}],"234":[0,{"line":108,"col":26,"index":2509},{"line":108,"col":26,"index":2509}],"235":[0,{"line":108,"col":22,"index":2505},{"line":108,"col":27,"index":2510}],"236":[0,{"line":108,"col":13,"index":2496},{"line":108,"col":27,"index":2510}],"237":[0,{"line":108,"col":2,"index":2485},{"line":108,"col":27,"index":2510}],"238":[0,{"line":109,"col":19,"index":2531},{"line":109,"col":19,"index":2531}],"239":[0,{"line":109,"col":26,"index":2538},{"line":109,"col":26,"index":2538}],"240":[0,{"line":109,"col":24,"index":2536},{"line":109,"col":27,"index":2539}],"241":[0,{"line":109,"col":37,"index":2549},{"line":109,"col":37,"index":2549}],"242":[0,{"line":109,"col":33,"index":2545},{"line":109,"col":38,"index":2550}],"243":[0,{"line":109,"col":24,"index":2536},{"line":109,"col":38,"index":2550}],"244":[0,{"line":109,"col":2,"index":2514},{"line":109,"col":38,"index":2550}],"245":[0,{"line":110,"col":18,"index":2570},{"line":110,"col":18,"index":2570}],"246":[0,{"line":110,"col":25,"index":2577},{"line":110,"col":25,"index":2577}],"247":[0,{"line":110,"col":23,"index":2575},{"line":110,"col":26,"index":2578}],"248":[0,{"line":110,"col":35,"index":2587},{"line":110,"col":35,"index":2587}],"249":[0,{"line":110,"col":31,"index":2583},{"line":110,"col":36,"index":2588}],"250":[0,{"line":110,"col":23,"index":2575},{"line":110,"col":36,"index":2588}],"251":[0,{"line":110,"col":2,"index":2554},{"line":110,"col":36,"index":2588}],"252":[0,{"line":113,"col":6,"index":2626},{"line":113,"col":10,"index":2630}],"253":[0,{"line":114,"col":6,"index":2639},{"line":114,"col":9,"index":2642}],"254":[0,{"line":115,"col":6,"index":2651},{"line":115,"col":10,"index":2655}],"255":[0,{"line":112,"col":23,"index":2614},{"line":116,"col":68,"index":2659}],"256":[0,{"line":112,"col":2,"index":2593},{"line":116,"col":68,"index":2659}],"257":[0,{"line":119,"col":6,"index":2701},{"line":119,"col":10,"index":2705}],"258":[0,{"line":120,"col":6,"index":2714},{"line":120,"col":9,"index":2717}],"259":[0,{"line":121,"col":6,"index":2726},{"line":121,"col":10,"index":2730}],"260":[0,{"line":118,"col":27,"index":2689},{"line":122,"col":72,"index":2734}],"261":[0,{"line":118,"col":2,"index":2664},{"line":122,"col":72,"index":2734}],"262":[0,{"line":125,"col":6,"index":2770},{"line":125,"col":10,"index":2774}],"263":[0,{"line":126,"col":6,"index":2783},{"line":126,"col":9,"index":2786}],"264":[0,{"line":127,"col":6,"index":2795},{"line":127,"col":10,"index":2799}],"265":[0,{"line":124,"col":22,"index":2759},{"line":128,"col":66,"index":2803}],"266":[0,{"line":124,"col":2,"index":2739},{"line":128,"col":66,"index":2803}],"267":[0,{"line":131,"col":6,"index":2844},{"line":131,"col":10,"index":2848}],"268":[0,{"line":132,"col":6,"index":2857},{"line":132,"col":9,"index":2860}],"269":[0,{"line":133,"col":6,"index":2869},{"line":133,"col":10,"index":2873}],"270":[0,{"line":130,"col":26,"index":2832},{"line":134,"col":71,"index":2877}],"271":[0,{"line":130,"col":2,"index":2808},{"line":134,"col":71,"index":2877}],"272":[0,{"line":136,"col":21,"index":2901},{"line":136,"col":24,"index":2904}],"273":[0,{"line":136,"col":27,"index":2907},{"line":136,"col":27,"index":2907}],"274":[0,{"line":136,"col":34,"index":2914},{"line":136,"col":34,"index":2914}],"275":[0,{"line":136,"col":17,"index":2897},{"line":136,"col":34,"index":2914}],"276":[0,{"line":136,"col":2,"index":2882},{"line":136,"col":34,"index":2914}],"277":[0,{"line":137,"col":16,"index":2932},{"line":137,"col":16,"index":2932}],"278":[0,{"line":137,"col":19,"index":2935},{"line":137,"col":19,"index":2935}],"279":[0,{"line":137,"col":28,"index":2944},{"line":137,"col":28,"index":2944}],"280":[0,{"line":137,"col":32,"index":2948},{"line":137,"col":33,"index":2949}],"281":[0,{"line":137,"col":28,"index":2944},{"line":137,"col":33,"index":2949}],"282":[0,{"line":137,"col":36,"index":2952},{"line":137,"col":36,"index":2952}],"283":[0,{"line":137,"col":40,"index":2956},{"line":137,"col":40,"index":2956}],"284":[0,{"line":137,"col":36,"index":2952},{"line":137,"col":40,"index":2956}],"285":[0,{"line":137,"col":47,"index":2963},{"line":137,"col":47,"index":2963}],"286":[0,{"line":137,"col":51,"index":2967},{"line":137,"col":51,"index":2967}],"287":[0,{"line":137,"col":47,"index":2963},{"line":137,"col":51,"index":2967}],"288":[0,{"line":137,"col":24,"index":2940},{"line":137,"col":51,"index":2967}],"289":[0,{"line":137,"col":2,"index":2918},{"line":137,"col":51,"index":2967}],"290":[0,{"line":140,"col":10,"index":3006},{"line":140,"col":12,"index":3008}],"291":[0,{"line":140,"col":17,"index":3013},{"line":140,"col":19,"index":3015}],"292":[0,{"line":140,"col":10,"index":3006},{"line":140,"col":19,"index":3015}],"293":[0,{"line":140,"col":2,"index":2998},{"line":140,"col":19,"index":3015}],"294":[0,{"line":141,"col":15,"index":3032},{"line":141,"col":16,"index":3033}],"295":[0,{"line":141,"col":22,"index":3039},{"line":141,"col":24,"index":3041}],"296":[0,{"line":141,"col":15,"index":3032},{"line":141,"col":25,"index":3042}],"297":[0,{"line":141,"col":2,"index":3019},{"line":141,"col":25,"index":3042}],"298":[0,{"line":144,"col":13,"index":3106},{"line":144,"col":13,"index":3106}],"299":[0,{"line":144,"col":16,"index":3109},{"line":144,"col":16,"index":3109}],"300":[0,{"line":144,"col":21,"index":3114},{"line":144,"col":21,"index":3114}],"301":[0,{"line":144,"col":2,"index":3095},{"line":144,"col":21,"index":3114}],"302":[0,{"line":145,"col":31,"index":3147},{"line":145,"col":33,"index":3149}],"303":[0,{"line":145,"col":36,"index":3152},{"line":145,"col":37,"index":3153}],"304":[0,{"line":145,"col":24,"index":3140},{"line":145,"col":38,"index":3154}],"305":[0,{"line":145,"col":2,"index":3118},{"line":145,"col":38,"index":3154}],"306":[0,{"line":146,"col":22,"index":3178},{"line":146,"col":24,"index":3180}],"307":[0,{"line":146,"col":33,"index":3189},{"line":146,"col":34,"index":3190}],"308":[0,{"line":146,"col":22,"index":3178},{"line":146,"col":35,"index":3191}],"309":[0,{"line":146,"col":2,"index":3158},{"line":146,"col":35,"index":3191}],"310":[0,{"line":148,"col":19,"index":3269},{"line":148,"col":19,"index":3269}],"311":[0,{"line":148,"col":22,"index":3272},{"line":148,"col":26,"index":3276}],"312":[0,{"line":148,"col":16,"index":3266},{"line":148,"col":27,"index":3277}],"313":[0,{"line":148,"col":2,"index":3252},{"line":148,"col":27,"index":3277}],"314":[0,{"line":153,"col":22,"index":3446},{"line":153,"col":22,"index":3446}],"315":[0,{"line":153,"col":31,"index":3455},{"line":153,"col":31,"index":3455}],"316":[0,{"line":153,"col":36,"index":3460},{"line":153,"col":36,"index":3460}],"317":[0,{"line":153,"col":40,"index":3464},{"line":153,"col":41,"index":3465}],"318":[0,{"line":153,"col":36,"index":3460},{"line":153,"col":41,"index":3465}],"319":[0,{"line":153,"col":31,"index":3455},{"line":153,"col":41,"index":3465}],"320":[0,{"line":153,"col":22,"index":3446},{"line":153,"col":42,"index":3466}],"321":[0,{"line":153,"col":2,"index":3426},{"line":153,"col":42,"index":3466}],"322":[0,{"line":155,"col":25,"index":3523},{"line":155,"col":25,"index":3523}],"323":[0,{"line":155,"col":28,"index":3526},{"line":155,"col":32,"index":3530}],"324":[0,{"line":155,"col":18,"index":3516},{"line":155,"col":33,"index":3531}],"325":[0,{"line":155,"col":42,"index":3540},{"line":155,"col":42,"index":3540}],"326":[0,{"line":155,"col":45,"index":3543},{"line":155,"col":47,"index":3545}],"327":[0,{"line":155,"col":54,"index":3552},{"line":155,"col":54,"index":3552}],"328":[0,{"line":155,"col":58,"index":3556},{"line":155,"col":60,"index":3558}],"329":[0,{"line":155,"col":54,"index":3552},{"line":155,"col":60,"index":3558}],"330":[0,{"line":155,"col":40,"index":3538},{"line":155,"col":60,"index":3558}],"331":[0,{"line":155,"col":40,"index":3538},{"line":155,"col":60,"index":3558}],"332":[0,{"line":155,"col":40,"index":3538},{"line":155,"col":60,"index":3558}],"333":[0,{"line":155,"col":40,"index":3538},{"line":155,"col":60,"index":3558}],"334":[0,{"line":155,"col":40,"index":3538},{"line":155,"col":60,"index":3558}],"335":[0,{"line":155,"col":40,"index":3538},{"line":155,"col":60,"index":3558}],"336":[0,{"line":155,"col":40,"index":3538},{"line":155,"col":60,"index":3558}],"337":[0,{"line":155,"col":40,"index":3538},{"line":155,"col":60,"index":3558}],"338":[0,{"line":155,"col":40,"index":3538},{"line":155,"col":60,"index":3558}],"339":[0,{"line":155,"col":40,"index":3538},{"line":155,"col":60,"index":3558}],"340":[0,{"line":155,"col":18,"index":3516},{"line":155,"col":62,"index":3560}],"341":[0,{"line":155,"col":2,"index":3500},{"line":155,"col":62,"index":3560}],"342":[0,{"line":158,"col":21,"index":3625},{"line":158,"col":21,"index":3625}],"343":[0,{"line":158,"col":15,"index":3619},{"line":158,"col":22,"index":3626}],"344":[0,{"line":158,"col":4,"index":3608},{"line":158,"col":22,"index":3626}],"345":[0,{"line":160,"col":6,"index":3644},{"line":160,"col":6,"index":3644}],"346":[0,{"line":160,"col":10,"index":3648},{"line":160,"col":11,"index":3649}],"347":[0,{"line":160,"col":6,"index":3644},{"line":160,"col":11,"index":3649}],"348":[0,{"line":161,"col":11,"index":3663},{"line":161,"col":11,"index":3663}],"349":[0,{"line":161,"col":6,"index":3658},{"line":161,"col":11,"index":3663}],"350":[0,{"line":161,"col":6,"index":3658},{"line":161,"col":11,"index":3663}],"351":[0,{"line":159,"col":4,"index":3632},{"line":162,"col":41,"index":3669}],"352":[0,{"line":158,"col":4,"index":3608},{"line":162,"col":65,"index":3669}],"353":[0,{"line":157,"col":2,"index":3581},{"line":163,"col":94,"index":3673}],"354":[0,{"line":165,"col":22,"index":3712},{"line":165,"col":22,"index":3712}],"355":[0,{"line":165,"col":31,"index":3721},{"line":165,"col":31,"index":3721}],"356":[0,{"line":165,"col":36,"index":3726},{"line":165,"col":39,"index":3729}],"357":[0,{"line":165,"col":31,"index":3721},{"line":165,"col":39,"index":3729}],"358":[0,{"line":165,"col":22,"index":3712},{"line":165,"col":40,"index":3730}],"359":[0,{"line":165,"col":2,"index":3692},{"line":165,"col":40,"index":3730}],"360":[0,{"line":167,"col":10,"index":3743},{"line":167,"col":10,"index":3743}],"361":[0,{"line":167,"col":18,"index":3751},{"line":167,"col":18,"index":3751}],"362":[0,{"line":167,"col":23,"index":3756},{"line":167,"col":23,"index":3756}],"363":[0,{"line":167,"col":27,"index":3760},{"line":167,"col":27,"index":3760}],"364":[0,{"line":167,"col":23,"index":3756},{"line":167,"col":27,"index":3760}],"365":[0,{"line":167,"col":18,"index":3751},{"line":167,"col":27,"index":3760}],"366":[0,{"line":167,"col":10,"index":3743},{"line":167,"col":28,"index":3761}],"367":[0,{"line":167,"col":2,"index":3735},{"line":167,"col":28,"index":3761}],"368":[0,{"line":169,"col":23,"index":3787},{"line":169,"col":23,"index":3787}],"369":[0,{"line":169,"col":37,"index":3801},{"line":169,"col":37,"index":3801}],"370":[0,{"line":169,"col":40,"index":3804},{"line":169,"col":40,"index":3804}],"371":[0,{"line":169,"col":33,"index":3797},{"line":169,"col":41,"index":3805}],"372":[0,{"line":169,"col":23,"index":3787},{"line":169,"col":42,"index":3806}],"373":[0,{"line":169,"col":2,"index":3766},{"line":169,"col":42,"index":3806}],"374":[0,{"line":172,"col":17,"index":3865},{"line":172,"col":17,"index":3865}],"375":[0,{"line":172,"col":20,"index":3868},{"line":172,"col":20,"index":3868}],"376":[0,{"line":172,"col":12,"index":3860},{"line":172,"col":21,"index":3869}],"377":[0,{"line":172,"col":12,"index":3860},{"line":172,"col":28,"index":3876}],"378":[0,{"line":172,"col":2,"index":3850},{"line":172,"col":28,"index":3876}],"379":[0,{"line":175,"col":20,"index":3920},{"line":175,"col":20,"index":3920}],"380":[0,{"line":175,"col":23,"index":3923},{"line":175,"col":23,"index":3923}],"381":[0,{"line":175,"col":26,"index":3926},{"line":175,"col":26,"index":3926}],"382":[0,{"line":175,"col":19,"index":3919},{"line":175,"col":27,"index":3927}],"383":[0,{"line":175,"col":2,"index":3902},{"line":175,"col":27,"index":3927}],"384":[0,{"line":176,"col":24,"index":3953},{"line":176,"col":24,"index":3953}],"385":[0,{"line":176,"col":27,"index":3956},{"line":176,"col":27,"index":3956}],"386":[0,{"line":176,"col":30,"index":3959},{"line":176,"col":30,"index":3959}],"387":[0,{"line":176,"col":20,"index":3949},{"line":176,"col":31,"index":3960}],"388":[0,{"line":176,"col":2,"index":3931},{"line":176,"col":31,"index":3960}],"389":[0,{"line":177,"col":18,"index":3980},{"line":177,"col":18,"index":3980}],"390":[0,{"line":177,"col":23,"index":3985},{"line":177,"col":23,"index":3985}],"391":[0,{"line":177,"col":18,"index":3980},{"line":177,"col":23,"index":3985}],"392":[0,{"line":177,"col":2,"index":3964},{"line":177,"col":23,"index":3985}],"393":[0,{"line":178,"col":19,"index":4006},{"line":178,"col":19,"index":4006}],"394":[0,{"line":178,"col":22,"index":4009},{"line":178,"col":22,"index":4009}],"395":[0,{"line":178,"col":25,"index":4012},{"line":178,"col":25,"index":4012}],"396":[0,{"line":178,"col":18,"index":4005},{"line":178,"col":26,"index":4013}],"397":[0,{"line":178,"col":2,"index":3989},{"line":178,"col":26,"index":4013}],"398":[0,{"line":179,"col":24,"index":4039},{"line":179,"col":24,"index":4039}],"399":[0,{"line":179,"col":27,"index":4042},{"line":179,"col":27,"index":4042}],"400":[0,{"line":179,"col":30,"index":4045},{"line":179,"col":30,"index":4045}],"401":[0,{"line":179,"col":19,"index":4034},{"line":179,"col":31,"index":4046}],"402":[0,{"line":179,"col":2,"index":4017},{"line":179,"col":31,"index":4046}],"403":[0,{"line":180,"col":23,"index":4071},{"line":180,"col":23,"index":4071}],"404":[0,{"line":180,"col":26,"index":4074},{"line":180,"col":26,"index":4074}],"405":[0,{"line":180,"col":29,"index":4077},{"line":180,"col":29,"index":4077}],"406":[0,{"line":180,"col":22,"index":4070},{"line":180,"col":30,"index":4078}],"407":[0,{"line":180,"col":32,"index":4080},{"line":180,"col":32,"index":4080}],"408":[0,{"line":180,"col":22,"index":4070},{"line":180,"col":33,"index":4081}],"409":[0,{"line":180,"col":2,"index":4050},{"line":180,"col":33,"index":4081}],"410":[0,{"line":181,"col":28,"index":4111},{"line":181,"col":33,"index":4116}],"411":[0,{"line":181,"col":22,"index":4105},{"line":181,"col":33,"index":4116}],"412":[0,{"line":181,"col":42,"index":4125},{"line":181,"col":45,"index":4128}],"413":[0,{"line":181,"col":36,"index":4119},{"line":181,"col":45,"index":4128}],"414":[0,{"line":181,"col":20,"index":4103},{"line":181,"col":47,"index":4130}],"415":[0,{"line":181,"col":2,"index":4085},{"line":181,"col":47,"index":4130}],"416":[0,{"line":182,"col":25,"index":4157},{"line":182,"col":30,"index":4162}],"417":[0,{"line":182,"col":33,"index":4165},{"line":182,"col":38,"index":4170}],"418":[0,{"line":182,"col":41,"index":4173},{"line":182,"col":46,"index":4178}],"419":[0,{"line":182,"col":49,"index":4181},{"line":182,"col":52,"index":4184}],"420":[0,{"line":182,"col":21,"index":4153},{"line":182,"col":53,"index":4185}],"421":[0,{"line":182,"col":2,"index":4134},{"line":182,"col":53,"index":4185}],"422":[0,{"line":183,"col":29,"index":4216},{"line":183,"col":35,"index":4222}],"423":[0,{"line":183,"col":23,"index":4210},{"line":183,"col":35,"index":4222}],"424":[0,{"line":183,"col":44,"index":4231},{"line":183,"col":47,"index":4234}],"425":[0,{"line":183,"col":38,"index":4225},{"line":183,"col":47,"index":4234}],"426":[0,{"line":183,"col":53,"index":4240},{"line":183,"col":63,"index":4250}],"427":[0,{"line":183,"col":21,"index":4208},{"line":183,"col":65,"index":4252}],"428":[0,{"line":183,"col":21,"index":4208},{"line":183,"col":65,"index":4252}],"429":[0,{"line":183,"col":2,"index":4189},{"line":183,"col":65,"index":4252}],"430":[0,{"line":184,"col":21,"index":4275},{"line":184,"col":21,"index":4275}],"431":[0,{"line":184,"col":24,"index":4278},{"line":184,"col":24,"index":4278}],"432":[0,{"line":184,"col":27,"index":4281},{"line":184,"col":27,"index":4281}],"433":[0,{"line":184,"col":17,"index":4271},{"line":184,"col":28,"index":4282}],"434":[0,{"line":184,"col":2,"index":4256},{"line":184,"col":28,"index":4282}],"435":[0,{"line":188,"col":22,"index":4354},{"line":188,"col":22,"index":4354}],"436":[0,{"line":188,"col":19,"index":4351},{"line":188,"col":22,"index":4354}],"437":[0,{"line":188,"col":28,"index":4360},{"line":188,"col":32,"index":4364}],"438":[0,{"line":188,"col":25,"index":4357},{"line":188,"col":32,"index":4364}],"439":[0,{"line":188,"col":17,"index":4349},{"line":188,"col":34,"index":4366}],"440":[0,{"line":188,"col":4,"index":4336},{"line":188,"col":34,"index":4366}],"441":[0,{"line":189,"col":4,"index":4372},{"line":189,"col":9,"index":4377}],"442":[0,{"line":189,"col":4,"index":4372},{"line":189,"col":11,"index":4379}],"443":[0,{"line":189,"col":4,"index":4372},{"line":189,"col":11,"index":4379}],"444":[0,{"line":188,"col":4,"index":4336},{"line":189,"col":47,"index":4379}],"445":[0,{"line":187,"col":2,"index":4316},{"line":189,"col":65,"index":4379}],"446":[0,{"line":192,"col":21,"index":4420},{"line":192,"col":23,"index":4422}],"447":[0,{"line":192,"col":26,"index":4425},{"line":192,"col":26,"index":4425}],"448":[0,{"line":192,"col":17,"index":4416},{"line":192,"col":27,"index":4426}],"449":[0,{"line":192,"col":4,"index":4403},{"line":192,"col":27,"index":4426}],"450":[0,{"line":193,"col":4,"index":4432},{"line":193,"col":9,"index":4437}],"451":[0,{"line":193,"col":4,"index":4432},{"line":193,"col":12,"index":4440}],"452":[0,{"line":193,"col":4,"index":4432},{"line":193,"col":12,"index":4440}],"453":[0,{"line":192,"col":4,"index":4403},{"line":193,"col":41,"index":4440}],"454":[0,{"line":191,"col":2,"index":4384},{"line":193,"col":58,"index":4440}],"455":[0,{"line":195,"col":14,"index":4457},{"line":195,"col":14,"index":4457}],"456":[0,{"line":195,"col":19,"index":4462},{"line":195,"col":19,"index":4462}],"457":[0,{"line":195,"col":24,"index":4467},{"line":195,"col":25,"index":4468}],"458":[0,{"line":195,"col":19,"index":4462},{"line":195,"col":25,"index":4468}],"459":[0,{"line":195,"col":2,"index":4445},{"line":195,"col":25,"index":4468}],"460":[0,{"line":198,"col":19,"index":4516},{"line":198,"col":19,"index":4516}],"461":[0,{"line":198,"col":24,"index":4521},{"line":198,"col":28,"index":4525}],"462":[0,{"line":198,"col":19,"index":4516},{"line":198,"col":29,"index":4526}],"463":[0,{"line":198,"col":2,"index":4499},{"line":198,"col":29,"index":4526}],"464":[0,{"line":199,"col":23,"index":4551},{"line":199,"col":27,"index":4555}],"465":[0,{"line":199,"col":38,"index":4566},{"line":199,"col":42,"index":4570}],"466":[0,{"line":199,"col":23,"index":4551},{"line":199,"col":43,"index":4571}],"467":[0,{"line":199,"col":2,"index":4530},{"line":199,"col":43,"index":4571}],"468":[0,{"line":200,"col":22,"index":4595},{"line":200,"col":22,"index":4595}],"469":[0,{"line":200,"col":18,"index":4591},{"line":200,"col":23,"index":4596}],"470":[0,{"line":200,"col":41,"index":4614},{"line":200,"col":41,"index":4614}],"471":[0,{"line":200,"col":43,"index":4616},{"line":200,"col":43,"index":4616}],"472":[0,{"line":200,"col":45,"index":4618},{"line":200,"col":45,"index":4618}],"473":[0,{"line":200,"col":37,"index":4610},{"line":200,"col":46,"index":4619}],"474":[0,{"line":200,"col":28,"index":4601},{"line":200,"col":47,"index":4620}],"475":[0,{"line":200,"col":18,"index":4591},{"line":200,"col":48,"index":4621}],"476":[0,{"line":200,"col":2,"index":4575},{"line":200,"col":48,"index":4621}],"477":[0,{"line":203,"col":20,"index":4668},{"line":203,"col":20,"index":4668}],"478":[0,{"line":203,"col":24,"index":4672},{"line":203,"col":24,"index":4672}],"479":[0,{"line":203,"col":20,"index":4668},{"line":203,"col":24,"index":4672}],"480":[0,{"line":203,"col":2,"index":4650},{"line":203,"col":24,"index":4672}],"481":[0,{"line":205,"col":13,"index":4716},{"line":205,"col":13,"index":4716}],"482":[0,{"line":205,"col":18,"index":4721},{"line":205,"col":18,"index":4721}],"483":[0,{"line":205,"col":13,"index":4716},{"line":205,"col":18,"index":4721}],"484":[0,{"line":205,"col":2,"index":4705},{"line":205,"col":18,"index":4721}],"485":[0,{"line":208,"col":2,"index":4739},{"line":208,"col":14,"index":4751}],"486":[0,{"line":209,"col":2,"index":4755},{"line":209,"col":12,"index":4765}],"487":[0,{"line":212,"col":21,"index":4803},{"line":212,"col":23,"index":4805}],"488":[0,{"line":212,"col":17,"index":4799},{"line":212,"col":24,"index":4806}],"489":[0,{"line":212,"col":2,"index":4784},{"line":212,"col":24,"index":4806}],"490":[0,{"line":214,"col":2,"index":4811},{"line":214,"col":24,"index":4833}],"491":[0,{"line":216,"col":10,"index":4846},{"line":216,"col":16,"index":4852}],"492":[0,{"line":216,"col":2,"index":4838},{"line":216,"col":16,"index":4852}],"493":[0,{"line":224,"col":19,"index":5073},{"line":224,"col":19,"index":5073}],"494":[0,{"line":224,"col":15,"index":5069},{"line":224,"col":15,"index":5069}],"495":[0,{"line":224,"col":2,"index":5056},{"line":224,"col":29,"index":5083}],"496":[0,{"line":14,"col":0,"index":140},{"line":228,"col":5022,"index":5162}]}} \ No newline at end of file +{"sourceIndex":{"0":"mocked_path/testFixture/SuperSpec.qnt"},"map":{"1":[0,{"line":1,"col":12,"index":24},{"line":1,"col":12,"index":24}],"2":[0,{"line":1,"col":2,"index":14},{"line":1,"col":12,"index":24}],"3":[0,{"line":0,"col":0,"index":0},{"line":2,"col":26,"index":26}],"4":[0,{"line":5,"col":12,"index":53},{"line":5,"col":12,"index":53}],"5":[0,{"line":5,"col":2,"index":43},{"line":5,"col":12,"index":53}],"6":[0,{"line":4,"col":0,"index":29},{"line":6,"col":26,"index":55}],"7":[0,{"line":9,"col":11,"index":84},{"line":9,"col":13,"index":86}],"8":[0,{"line":9,"col":2,"index":75},{"line":9,"col":13,"index":86}],"9":[0,{"line":10,"col":9,"index":97},{"line":10,"col":11,"index":99}],"10":[0,{"line":10,"col":2,"index":90},{"line":10,"col":11,"index":99}],"11":[0,{"line":8,"col":0,"index":58},{"line":11,"col":43,"index":101}],"12":[0,{"line":16,"col":11,"index":186},{"line":16,"col":13,"index":188}],"13":[0,{"line":16,"col":2,"index":177},{"line":16,"col":13,"index":188}],"14":[0,{"line":17,"col":15,"index":205},{"line":17,"col":17,"index":207}],"15":[0,{"line":17,"col":11,"index":201},{"line":17,"col":18,"index":208}],"16":[0,{"line":17,"col":2,"index":192},{"line":17,"col":18,"index":208}],"17":[0,{"line":18,"col":19,"index":229},{"line":18,"col":21,"index":231}],"18":[0,{"line":18,"col":15,"index":225},{"line":18,"col":22,"index":232}],"19":[0,{"line":18,"col":2,"index":212},{"line":18,"col":22,"index":232}],"20":[0,{"line":19,"col":20,"index":254},{"line":19,"col":23,"index":257}],"21":[0,{"line":19,"col":15,"index":249},{"line":19,"col":24,"index":258}],"22":[0,{"line":19,"col":2,"index":236},{"line":19,"col":24,"index":258}],"23":[0,{"line":20,"col":15,"index":275},{"line":20,"col":17,"index":277}],"24":[0,{"line":20,"col":22,"index":282},{"line":20,"col":24,"index":284}],"25":[0,{"line":20,"col":15,"index":275},{"line":20,"col":24,"index":284}],"26":[0,{"line":20,"col":2,"index":262},{"line":20,"col":24,"index":284}],"27":[0,{"line":21,"col":19,"index":305},{"line":21,"col":21,"index":307}],"28":[0,{"line":21,"col":26,"index":312},{"line":21,"col":28,"index":314}],"29":[0,{"line":21,"col":19,"index":305},{"line":21,"col":28,"index":314}],"30":[0,{"line":21,"col":34,"index":320},{"line":21,"col":37,"index":323}],"31":[0,{"line":21,"col":18,"index":304},{"line":21,"col":37,"index":323}],"32":[0,{"line":21,"col":2,"index":288},{"line":21,"col":37,"index":323}],"33":[0,{"line":22,"col":21,"index":346},{"line":22,"col":23,"index":348}],"34":[0,{"line":22,"col":26,"index":351},{"line":22,"col":28,"index":353}],"35":[0,{"line":22,"col":34,"index":359},{"line":22,"col":37,"index":362}],"36":[0,{"line":22,"col":20,"index":345},{"line":22,"col":37,"index":362}],"37":[0,{"line":22,"col":2,"index":327},{"line":22,"col":37,"index":362}],"38":[0,{"line":23,"col":30,"index":394},{"line":23,"col":32,"index":396}],"39":[0,{"line":23,"col":35,"index":399},{"line":23,"col":37,"index":401}],"40":[0,{"line":23,"col":45,"index":409},{"line":23,"col":48,"index":412}],"41":[0,{"line":23,"col":29,"index":393},{"line":23,"col":48,"index":412}],"42":[0,{"line":23,"col":2,"index":366},{"line":23,"col":48,"index":412}],"43":[0,{"line":24,"col":18,"index":432},{"line":24,"col":20,"index":434}],"44":[0,{"line":24,"col":23,"index":437},{"line":24,"col":26,"index":440}],"45":[0,{"line":24,"col":29,"index":443},{"line":24,"col":31,"index":445}],"46":[0,{"line":24,"col":17,"index":431},{"line":24,"col":32,"index":446}],"47":[0,{"line":24,"col":2,"index":416},{"line":24,"col":32,"index":446}],"48":[0,{"line":25,"col":27,"index":475},{"line":25,"col":29,"index":477}],"49":[0,{"line":25,"col":32,"index":480},{"line":25,"col":35,"index":483}],"50":[0,{"line":25,"col":38,"index":486},{"line":25,"col":40,"index":488}],"51":[0,{"line":25,"col":26,"index":474},{"line":25,"col":43,"index":491}],"52":[0,{"line":25,"col":2,"index":450},{"line":25,"col":43,"index":491}],"53":[0,{"line":28,"col":23,"index":580},{"line":28,"col":25,"index":582}],"54":[0,{"line":28,"col":31,"index":588},{"line":28,"col":34,"index":591}],"55":[0,{"line":28,"col":40,"index":597},{"line":28,"col":42,"index":599}],"56":[0,{"line":28,"col":18,"index":575},{"line":28,"col":44,"index":601}],"57":[0,{"line":28,"col":2,"index":559},{"line":28,"col":44,"index":601}],"58":[0,{"line":29,"col":32,"index":635},{"line":29,"col":34,"index":637}],"59":[0,{"line":29,"col":40,"index":643},{"line":29,"col":43,"index":646}],"60":[0,{"line":29,"col":49,"index":652},{"line":29,"col":51,"index":654}],"61":[0,{"line":29,"col":27,"index":630},{"line":29,"col":54,"index":657}],"62":[0,{"line":29,"col":2,"index":605},{"line":29,"col":54,"index":657}],"63":[0,{"line":33,"col":15,"index":746},{"line":33,"col":17,"index":748}],"64":[0,{"line":34,"col":26,"index":777},{"line":34,"col":28,"index":779}],"65":[0,{"line":34,"col":39,"index":790},{"line":34,"col":41,"index":792}],"66":[0,{"line":34,"col":18,"index":769},{"line":34,"col":43,"index":794}],"67":[0,{"line":35,"col":12,"index":809},{"line":35,"col":14,"index":811}],"68":[0,{"line":32,"col":2,"index":712},{"line":35,"col":102,"index":812}],"69":[0,{"line":33,"col":8,"index":739},{"line":33,"col":18,"index":749}],"70":[0,{"line":33,"col":15,"index":746},{"line":33,"col":17,"index":748}],"71":[0,{"line":33,"col":8,"index":739},{"line":33,"col":13,"index":744}],"72":[0,{"line":33,"col":8,"index":739},{"line":33,"col":18,"index":749}],"73":[0,{"line":33,"col":8,"index":739},{"line":33,"col":18,"index":749}],"74":[0,{"line":33,"col":8,"index":739},{"line":33,"col":18,"index":749}],"75":[0,{"line":34,"col":8,"index":759},{"line":34,"col":44,"index":795}],"76":[0,{"line":34,"col":18,"index":769},{"line":34,"col":43,"index":794}],"77":[0,{"line":34,"col":8,"index":759},{"line":34,"col":16,"index":767}],"78":[0,{"line":34,"col":8,"index":759},{"line":34,"col":44,"index":795}],"79":[0,{"line":34,"col":8,"index":759},{"line":34,"col":44,"index":795}],"80":[0,{"line":34,"col":8,"index":759},{"line":34,"col":44,"index":795}],"81":[0,{"line":35,"col":8,"index":805},{"line":35,"col":15,"index":812}],"82":[0,{"line":35,"col":12,"index":809},{"line":35,"col":14,"index":811}],"83":[0,{"line":35,"col":8,"index":805},{"line":35,"col":10,"index":807}],"84":[0,{"line":35,"col":8,"index":805},{"line":35,"col":15,"index":812}],"85":[0,{"line":35,"col":8,"index":805},{"line":35,"col":15,"index":812}],"86":[0,{"line":35,"col":8,"index":805},{"line":35,"col":15,"index":812}],"87":[0,{"line":36,"col":17,"index":831},{"line":36,"col":27,"index":841}],"88":[0,{"line":36,"col":2,"index":816},{"line":36,"col":27,"index":841}],"89":[0,{"line":41,"col":9,"index":955},{"line":41,"col":11,"index":957}],"90":[0,{"line":41,"col":2,"index":948},{"line":41,"col":11,"index":957}],"91":[0,{"line":42,"col":9,"index":968},{"line":42,"col":12,"index":971}],"92":[0,{"line":42,"col":2,"index":961},{"line":42,"col":12,"index":971}],"93":[0,{"line":47,"col":19,"index":1140},{"line":47,"col":19,"index":1140}],"94":[0,{"line":47,"col":23,"index":1144},{"line":47,"col":23,"index":1144}],"95":[0,{"line":47,"col":19,"index":1140},{"line":47,"col":23,"index":1144}],"96":[0,{"line":47,"col":2,"index":1123},{"line":47,"col":23,"index":1144}],"97":[0,{"line":48,"col":19,"index":1165},{"line":48,"col":19,"index":1165}],"98":[0,{"line":48,"col":23,"index":1169},{"line":48,"col":23,"index":1169}],"99":[0,{"line":48,"col":19,"index":1165},{"line":48,"col":23,"index":1169}],"100":[0,{"line":48,"col":2,"index":1148},{"line":48,"col":23,"index":1169}],"101":[0,{"line":49,"col":19,"index":1190},{"line":49,"col":19,"index":1190}],"102":[0,{"line":49,"col":23,"index":1194},{"line":49,"col":23,"index":1194}],"103":[0,{"line":49,"col":19,"index":1190},{"line":49,"col":23,"index":1194}],"104":[0,{"line":49,"col":2,"index":1173},{"line":49,"col":23,"index":1194}],"105":[0,{"line":50,"col":19,"index":1215},{"line":50,"col":19,"index":1215}],"106":[0,{"line":50,"col":23,"index":1219},{"line":50,"col":23,"index":1219}],"107":[0,{"line":50,"col":19,"index":1215},{"line":50,"col":23,"index":1219}],"108":[0,{"line":50,"col":2,"index":1198},{"line":50,"col":23,"index":1219}],"109":[0,{"line":51,"col":19,"index":1240},{"line":51,"col":19,"index":1240}],"110":[0,{"line":51,"col":23,"index":1244},{"line":51,"col":23,"index":1244}],"111":[0,{"line":51,"col":19,"index":1240},{"line":51,"col":23,"index":1244}],"112":[0,{"line":51,"col":2,"index":1223},{"line":51,"col":23,"index":1244}],"113":[0,{"line":52,"col":19,"index":1265},{"line":52,"col":19,"index":1265}],"114":[0,{"line":52,"col":21,"index":1267},{"line":52,"col":21,"index":1267}],"115":[0,{"line":52,"col":19,"index":1265},{"line":52,"col":21,"index":1267}],"116":[0,{"line":52,"col":2,"index":1248},{"line":52,"col":21,"index":1267}],"117":[0,{"line":53,"col":16,"index":1285},{"line":53,"col":18,"index":1287}],"118":[0,{"line":53,"col":15,"index":1284},{"line":53,"col":18,"index":1287}],"119":[0,{"line":53,"col":2,"index":1271},{"line":53,"col":18,"index":1287}],"120":[0,{"line":54,"col":18,"index":1307},{"line":54,"col":18,"index":1307}],"121":[0,{"line":54,"col":22,"index":1311},{"line":54,"col":22,"index":1311}],"122":[0,{"line":54,"col":18,"index":1307},{"line":54,"col":22,"index":1311}],"123":[0,{"line":54,"col":2,"index":1291},{"line":54,"col":22,"index":1311}],"124":[0,{"line":55,"col":18,"index":1331},{"line":55,"col":18,"index":1331}],"125":[0,{"line":55,"col":23,"index":1336},{"line":55,"col":23,"index":1336}],"126":[0,{"line":55,"col":18,"index":1331},{"line":55,"col":23,"index":1336}],"127":[0,{"line":55,"col":2,"index":1315},{"line":55,"col":23,"index":1336}],"128":[0,{"line":56,"col":18,"index":1356},{"line":56,"col":18,"index":1356}],"129":[0,{"line":56,"col":22,"index":1360},{"line":56,"col":22,"index":1360}],"130":[0,{"line":56,"col":18,"index":1356},{"line":56,"col":22,"index":1360}],"131":[0,{"line":56,"col":2,"index":1340},{"line":56,"col":22,"index":1360}],"132":[0,{"line":57,"col":18,"index":1380},{"line":57,"col":18,"index":1380}],"133":[0,{"line":57,"col":23,"index":1385},{"line":57,"col":23,"index":1385}],"134":[0,{"line":57,"col":18,"index":1380},{"line":57,"col":23,"index":1385}],"135":[0,{"line":57,"col":2,"index":1364},{"line":57,"col":23,"index":1385}],"136":[0,{"line":58,"col":20,"index":1407},{"line":58,"col":20,"index":1407}],"137":[0,{"line":58,"col":25,"index":1412},{"line":58,"col":25,"index":1412}],"138":[0,{"line":58,"col":20,"index":1407},{"line":58,"col":25,"index":1412}],"139":[0,{"line":58,"col":2,"index":1389},{"line":58,"col":25,"index":1412}],"140":[0,{"line":59,"col":18,"index":1432},{"line":59,"col":18,"index":1432}],"141":[0,{"line":59,"col":23,"index":1437},{"line":59,"col":23,"index":1437}],"142":[0,{"line":59,"col":18,"index":1432},{"line":59,"col":23,"index":1437}],"143":[0,{"line":59,"col":2,"index":1416},{"line":59,"col":23,"index":1437}],"144":[0,{"line":61,"col":6,"index":1464},{"line":61,"col":6,"index":1464}],"145":[0,{"line":61,"col":10,"index":1468},{"line":61,"col":10,"index":1468}],"146":[0,{"line":61,"col":6,"index":1464},{"line":61,"col":10,"index":1468}],"147":[0,{"line":61,"col":15,"index":1473},{"line":61,"col":15,"index":1473}],"148":[0,{"line":61,"col":6,"index":1464},{"line":61,"col":15,"index":1473}],"149":[0,{"line":60,"col":2,"index":1441},{"line":62,"col":38,"index":1477}],"150":[0,{"line":63,"col":25,"index":1504},{"line":63,"col":25,"index":1504}],"151":[0,{"line":63,"col":30,"index":1509},{"line":63,"col":32,"index":1511}],"152":[0,{"line":63,"col":25,"index":1504},{"line":63,"col":33,"index":1512}],"153":[0,{"line":63,"col":2,"index":1481},{"line":63,"col":33,"index":1512}],"154":[0,{"line":64,"col":23,"index":1537},{"line":64,"col":26,"index":1540}],"155":[0,{"line":64,"col":35,"index":1549},{"line":64,"col":35,"index":1549}],"156":[0,{"line":64,"col":40,"index":1554},{"line":64,"col":40,"index":1554}],"157":[0,{"line":64,"col":35,"index":1549},{"line":64,"col":40,"index":1554}],"158":[0,{"line":64,"col":23,"index":1537},{"line":64,"col":41,"index":1555}],"159":[0,{"line":64,"col":2,"index":1516},{"line":64,"col":41,"index":1555}],"160":[0,{"line":67,"col":20,"index":1594},{"line":67,"col":22,"index":1596}],"161":[0,{"line":67,"col":16,"index":1590},{"line":67,"col":23,"index":1597}],"162":[0,{"line":67,"col":31,"index":1605},{"line":67,"col":31,"index":1605}],"163":[0,{"line":67,"col":34,"index":1608},{"line":67,"col":34,"index":1608}],"164":[0,{"line":67,"col":27,"index":1601},{"line":67,"col":35,"index":1609}],"165":[0,{"line":67,"col":2,"index":1576},{"line":67,"col":35,"index":1609}],"166":[0,{"line":69,"col":2,"index":1648},{"line":69,"col":10,"index":1656}],"167":[0,{"line":70,"col":33,"index":1691},{"line":70,"col":36,"index":1694}],"168":[0,{"line":70,"col":29,"index":1687},{"line":70,"col":37,"index":1695}],"169":[0,{"line":70,"col":41,"index":1699},{"line":70,"col":45,"index":1703}],"170":[0,{"line":70,"col":2,"index":1660},{"line":70,"col":45,"index":1703}],"171":[0,{"line":73,"col":9,"index":1741},{"line":73,"col":11,"index":1743}],"172":[0,{"line":73,"col":2,"index":1734},{"line":73,"col":11,"index":1743}],"173":[0,{"line":74,"col":25,"index":1770},{"line":74,"col":26,"index":1771}],"174":[0,{"line":74,"col":2,"index":1747},{"line":74,"col":26,"index":1771}],"175":[0,{"line":75,"col":15,"index":1788},{"line":75,"col":15,"index":1788}],"176":[0,{"line":75,"col":18,"index":1791},{"line":75,"col":18,"index":1791}],"177":[0,{"line":75,"col":23,"index":1796},{"line":75,"col":23,"index":1796}],"178":[0,{"line":75,"col":27,"index":1800},{"line":75,"col":27,"index":1800}],"179":[0,{"line":75,"col":23,"index":1796},{"line":75,"col":27,"index":1800}],"180":[0,{"line":75,"col":2,"index":1775},{"line":75,"col":27,"index":1800}],"181":[0,{"line":76,"col":10,"index":1812},{"line":76,"col":15,"index":1817}],"182":[0,{"line":76,"col":20,"index":1822},{"line":76,"col":25,"index":1827}],"183":[0,{"line":76,"col":29,"index":1831},{"line":76,"col":29,"index":1831}],"184":[0,{"line":76,"col":20,"index":1822},{"line":76,"col":29,"index":1831}],"185":[0,{"line":76,"col":2,"index":1804},{"line":76,"col":29,"index":1831}],"186":[0,{"line":77,"col":11,"index":1844},{"line":77,"col":11,"index":1844}],"187":[0,{"line":77,"col":21,"index":1854},{"line":77,"col":21,"index":1854}],"188":[0,{"line":77,"col":16,"index":1849},{"line":77,"col":21,"index":1854}],"189":[0,{"line":77,"col":16,"index":1849},{"line":77,"col":21,"index":1854}],"190":[0,{"line":77,"col":2,"index":1835},{"line":77,"col":21,"index":1854}],"191":[0,{"line":78,"col":13,"index":1869},{"line":78,"col":13,"index":1869}],"192":[0,{"line":78,"col":22,"index":1878},{"line":78,"col":22,"index":1878}],"193":[0,{"line":78,"col":18,"index":1874},{"line":78,"col":23,"index":1879}],"194":[0,{"line":78,"col":2,"index":1858},{"line":78,"col":23,"index":1879}],"195":[0,{"line":81,"col":8,"index":1911},{"line":81,"col":8,"index":1911}],"196":[0,{"line":81,"col":11,"index":1914},{"line":81,"col":11,"index":1914}],"197":[0,{"line":81,"col":16,"index":1919},{"line":81,"col":18,"index":1921}],"198":[0,{"line":81,"col":21,"index":1924},{"line":81,"col":23,"index":1926}],"199":[0,{"line":81,"col":29,"index":1932},{"line":81,"col":31,"index":1934}],"200":[0,{"line":81,"col":15,"index":1918},{"line":81,"col":31,"index":1934}],"201":[0,{"line":82,"col":6,"index":1946},{"line":82,"col":6,"index":1946}],"202":[0,{"line":82,"col":10,"index":1950},{"line":82,"col":10,"index":1950}],"203":[0,{"line":82,"col":6,"index":1946},{"line":82,"col":10,"index":1950}],"204":[0,{"line":81,"col":2,"index":1905},{"line":83,"col":51,"index":1954}],"205":[0,{"line":85,"col":10,"index":1997},{"line":85,"col":10,"index":1997}],"206":[0,{"line":85,"col":15,"index":2002},{"line":85,"col":15,"index":2002}],"207":[0,{"line":85,"col":21,"index":2008},{"line":85,"col":21,"index":2008}],"208":[0,{"line":85,"col":14,"index":2001},{"line":85,"col":21,"index":2008}],"209":[0,{"line":86,"col":6,"index":2020},{"line":86,"col":6,"index":2020}],"210":[0,{"line":85,"col":2,"index":1989},{"line":87,"col":37,"index":2024}],"211":[0,{"line":89,"col":9,"index":2036},{"line":89,"col":11,"index":2038}],"212":[0,{"line":89,"col":2,"index":2029},{"line":89,"col":11,"index":2038}],"213":[0,{"line":90,"col":21,"index":2061},{"line":90,"col":21,"index":2061}],"214":[0,{"line":90,"col":16,"index":2056},{"line":90,"col":21,"index":2061}],"215":[0,{"line":90,"col":16,"index":2056},{"line":90,"col":21,"index":2061}],"216":[0,{"line":90,"col":2,"index":2042},{"line":90,"col":21,"index":2061}],"217":[0,{"line":93,"col":15,"index":2113},{"line":93,"col":15,"index":2113}],"218":[0,{"line":93,"col":18,"index":2116},{"line":93,"col":20,"index":2118}],"219":[0,{"line":93,"col":23,"index":2121},{"line":93,"col":23,"index":2121}],"220":[0,{"line":93,"col":26,"index":2124},{"line":93,"col":28,"index":2126}],"221":[0,{"line":93,"col":32,"index":2130},{"line":93,"col":34,"index":2132}],"222":[0,{"line":94,"col":8,"index":2146},{"line":94,"col":8,"index":2146}],"223":[0,{"line":94,"col":12,"index":2150},{"line":94,"col":12,"index":2150}],"224":[0,{"line":94,"col":8,"index":2146},{"line":94,"col":12,"index":2150}],"225":[0,{"line":95,"col":4,"index":2157},{"line":95,"col":4,"index":2157}],"226":[0,{"line":96,"col":9,"index":2168},{"line":96,"col":9,"index":2168}],"227":[0,{"line":94,"col":4,"index":2142},{"line":96,"col":30,"index":2168}],"228":[0,{"line":93,"col":2,"index":2100},{"line":97,"col":74,"index":2172}],"229":[0,{"line":93,"col":2,"index":2100},{"line":97,"col":74,"index":2172}],"230":[0,{"line":101,"col":17,"index":2216},{"line":101,"col":21,"index":2220}],"231":[0,{"line":101,"col":27,"index":2226},{"line":101,"col":30,"index":2229}],"232":[0,{"line":101,"col":17,"index":2216},{"line":101,"col":30,"index":2229}],"233":[0,{"line":101,"col":2,"index":2201},{"line":101,"col":30,"index":2229}],"234":[0,{"line":102,"col":16,"index":2247},{"line":102,"col":20,"index":2251}],"235":[0,{"line":102,"col":25,"index":2256},{"line":102,"col":28,"index":2259}],"236":[0,{"line":102,"col":16,"index":2247},{"line":102,"col":28,"index":2259}],"237":[0,{"line":102,"col":2,"index":2233},{"line":102,"col":28,"index":2259}],"238":[0,{"line":103,"col":21,"index":2282},{"line":103,"col":25,"index":2286}],"239":[0,{"line":103,"col":35,"index":2296},{"line":103,"col":38,"index":2299}],"240":[0,{"line":103,"col":21,"index":2282},{"line":103,"col":38,"index":2299}],"241":[0,{"line":103,"col":2,"index":2263},{"line":103,"col":38,"index":2299}],"242":[0,{"line":104,"col":8,"index":2309},{"line":104,"col":8,"index":2309}],"243":[0,{"line":104,"col":13,"index":2314},{"line":104,"col":13,"index":2314}],"244":[0,{"line":104,"col":2,"index":2303},{"line":104,"col":13,"index":2314}],"245":[0,{"line":105,"col":8,"index":2324},{"line":105,"col":8,"index":2324}],"246":[0,{"line":105,"col":15,"index":2331},{"line":105,"col":15,"index":2331}],"247":[0,{"line":105,"col":13,"index":2329},{"line":105,"col":16,"index":2332}],"248":[0,{"line":105,"col":26,"index":2342},{"line":105,"col":26,"index":2342}],"249":[0,{"line":105,"col":22,"index":2338},{"line":105,"col":27,"index":2343}],"250":[0,{"line":105,"col":13,"index":2329},{"line":105,"col":27,"index":2343}],"251":[0,{"line":105,"col":2,"index":2318},{"line":105,"col":27,"index":2343}],"252":[0,{"line":106,"col":19,"index":2364},{"line":106,"col":19,"index":2364}],"253":[0,{"line":106,"col":26,"index":2371},{"line":106,"col":26,"index":2371}],"254":[0,{"line":106,"col":24,"index":2369},{"line":106,"col":27,"index":2372}],"255":[0,{"line":106,"col":37,"index":2382},{"line":106,"col":37,"index":2382}],"256":[0,{"line":106,"col":33,"index":2378},{"line":106,"col":38,"index":2383}],"257":[0,{"line":106,"col":24,"index":2369},{"line":106,"col":38,"index":2383}],"258":[0,{"line":106,"col":2,"index":2347},{"line":106,"col":38,"index":2383}],"259":[0,{"line":107,"col":18,"index":2403},{"line":107,"col":18,"index":2403}],"260":[0,{"line":107,"col":25,"index":2410},{"line":107,"col":25,"index":2410}],"261":[0,{"line":107,"col":23,"index":2408},{"line":107,"col":26,"index":2411}],"262":[0,{"line":107,"col":35,"index":2420},{"line":107,"col":35,"index":2420}],"263":[0,{"line":107,"col":31,"index":2416},{"line":107,"col":36,"index":2421}],"264":[0,{"line":107,"col":23,"index":2408},{"line":107,"col":36,"index":2421}],"265":[0,{"line":107,"col":2,"index":2387},{"line":107,"col":36,"index":2421}],"266":[0,{"line":110,"col":6,"index":2459},{"line":110,"col":10,"index":2463}],"267":[0,{"line":111,"col":6,"index":2472},{"line":111,"col":9,"index":2475}],"268":[0,{"line":112,"col":6,"index":2484},{"line":112,"col":10,"index":2488}],"269":[0,{"line":109,"col":23,"index":2447},{"line":113,"col":68,"index":2492}],"270":[0,{"line":109,"col":2,"index":2426},{"line":113,"col":68,"index":2492}],"271":[0,{"line":116,"col":6,"index":2534},{"line":116,"col":10,"index":2538}],"272":[0,{"line":117,"col":6,"index":2547},{"line":117,"col":9,"index":2550}],"273":[0,{"line":118,"col":6,"index":2559},{"line":118,"col":10,"index":2563}],"274":[0,{"line":115,"col":27,"index":2522},{"line":119,"col":72,"index":2567}],"275":[0,{"line":115,"col":2,"index":2497},{"line":119,"col":72,"index":2567}],"276":[0,{"line":122,"col":6,"index":2603},{"line":122,"col":10,"index":2607}],"277":[0,{"line":123,"col":6,"index":2616},{"line":123,"col":9,"index":2619}],"278":[0,{"line":124,"col":6,"index":2628},{"line":124,"col":10,"index":2632}],"279":[0,{"line":121,"col":22,"index":2592},{"line":125,"col":66,"index":2636}],"280":[0,{"line":121,"col":2,"index":2572},{"line":125,"col":66,"index":2636}],"281":[0,{"line":128,"col":6,"index":2677},{"line":128,"col":10,"index":2681}],"282":[0,{"line":129,"col":6,"index":2690},{"line":129,"col":9,"index":2693}],"283":[0,{"line":130,"col":6,"index":2702},{"line":130,"col":10,"index":2706}],"284":[0,{"line":127,"col":26,"index":2665},{"line":131,"col":71,"index":2710}],"285":[0,{"line":127,"col":2,"index":2641},{"line":131,"col":71,"index":2710}],"286":[0,{"line":133,"col":21,"index":2734},{"line":133,"col":24,"index":2737}],"287":[0,{"line":133,"col":27,"index":2740},{"line":133,"col":27,"index":2740}],"288":[0,{"line":133,"col":34,"index":2747},{"line":133,"col":34,"index":2747}],"289":[0,{"line":133,"col":17,"index":2730},{"line":133,"col":34,"index":2747}],"290":[0,{"line":133,"col":2,"index":2715},{"line":133,"col":34,"index":2747}],"291":[0,{"line":134,"col":16,"index":2765},{"line":134,"col":16,"index":2765}],"292":[0,{"line":134,"col":19,"index":2768},{"line":134,"col":19,"index":2768}],"293":[0,{"line":134,"col":28,"index":2777},{"line":134,"col":28,"index":2777}],"294":[0,{"line":134,"col":32,"index":2781},{"line":134,"col":33,"index":2782}],"295":[0,{"line":134,"col":28,"index":2777},{"line":134,"col":33,"index":2782}],"296":[0,{"line":134,"col":36,"index":2785},{"line":134,"col":36,"index":2785}],"297":[0,{"line":134,"col":40,"index":2789},{"line":134,"col":40,"index":2789}],"298":[0,{"line":134,"col":36,"index":2785},{"line":134,"col":40,"index":2789}],"299":[0,{"line":134,"col":47,"index":2796},{"line":134,"col":47,"index":2796}],"300":[0,{"line":134,"col":51,"index":2800},{"line":134,"col":51,"index":2800}],"301":[0,{"line":134,"col":47,"index":2796},{"line":134,"col":51,"index":2800}],"302":[0,{"line":134,"col":24,"index":2773},{"line":134,"col":51,"index":2800}],"303":[0,{"line":134,"col":2,"index":2751},{"line":134,"col":51,"index":2800}],"304":[0,{"line":137,"col":10,"index":2839},{"line":137,"col":12,"index":2841}],"305":[0,{"line":137,"col":17,"index":2846},{"line":137,"col":19,"index":2848}],"306":[0,{"line":137,"col":10,"index":2839},{"line":137,"col":19,"index":2848}],"307":[0,{"line":137,"col":2,"index":2831},{"line":137,"col":19,"index":2848}],"308":[0,{"line":138,"col":15,"index":2865},{"line":138,"col":16,"index":2866}],"309":[0,{"line":138,"col":22,"index":2872},{"line":138,"col":24,"index":2874}],"310":[0,{"line":138,"col":15,"index":2865},{"line":138,"col":25,"index":2875}],"311":[0,{"line":138,"col":2,"index":2852},{"line":138,"col":25,"index":2875}],"312":[0,{"line":141,"col":13,"index":2939},{"line":141,"col":13,"index":2939}],"313":[0,{"line":141,"col":16,"index":2942},{"line":141,"col":16,"index":2942}],"314":[0,{"line":141,"col":21,"index":2947},{"line":141,"col":21,"index":2947}],"315":[0,{"line":141,"col":2,"index":2928},{"line":141,"col":21,"index":2947}],"316":[0,{"line":142,"col":31,"index":2980},{"line":142,"col":33,"index":2982}],"317":[0,{"line":142,"col":36,"index":2985},{"line":142,"col":37,"index":2986}],"318":[0,{"line":142,"col":24,"index":2973},{"line":142,"col":38,"index":2987}],"319":[0,{"line":142,"col":2,"index":2951},{"line":142,"col":38,"index":2987}],"320":[0,{"line":143,"col":22,"index":3011},{"line":143,"col":24,"index":3013}],"321":[0,{"line":143,"col":33,"index":3022},{"line":143,"col":34,"index":3023}],"322":[0,{"line":143,"col":22,"index":3011},{"line":143,"col":35,"index":3024}],"323":[0,{"line":143,"col":2,"index":2991},{"line":143,"col":35,"index":3024}],"324":[0,{"line":145,"col":19,"index":3102},{"line":145,"col":19,"index":3102}],"325":[0,{"line":145,"col":22,"index":3105},{"line":145,"col":26,"index":3109}],"326":[0,{"line":145,"col":16,"index":3099},{"line":145,"col":27,"index":3110}],"327":[0,{"line":145,"col":2,"index":3085},{"line":145,"col":27,"index":3110}],"328":[0,{"line":150,"col":22,"index":3279},{"line":150,"col":22,"index":3279}],"329":[0,{"line":150,"col":31,"index":3288},{"line":150,"col":31,"index":3288}],"330":[0,{"line":150,"col":36,"index":3293},{"line":150,"col":36,"index":3293}],"331":[0,{"line":150,"col":40,"index":3297},{"line":150,"col":41,"index":3298}],"332":[0,{"line":150,"col":36,"index":3293},{"line":150,"col":41,"index":3298}],"333":[0,{"line":150,"col":31,"index":3288},{"line":150,"col":41,"index":3298}],"334":[0,{"line":150,"col":22,"index":3279},{"line":150,"col":42,"index":3299}],"335":[0,{"line":150,"col":2,"index":3259},{"line":150,"col":42,"index":3299}],"336":[0,{"line":152,"col":25,"index":3356},{"line":152,"col":25,"index":3356}],"337":[0,{"line":152,"col":28,"index":3359},{"line":152,"col":32,"index":3363}],"338":[0,{"line":152,"col":18,"index":3349},{"line":152,"col":33,"index":3364}],"339":[0,{"line":152,"col":42,"index":3373},{"line":152,"col":42,"index":3373}],"340":[0,{"line":152,"col":45,"index":3376},{"line":152,"col":47,"index":3378}],"341":[0,{"line":152,"col":54,"index":3385},{"line":152,"col":54,"index":3385}],"342":[0,{"line":152,"col":58,"index":3389},{"line":152,"col":60,"index":3391}],"343":[0,{"line":152,"col":54,"index":3385},{"line":152,"col":60,"index":3391}],"344":[0,{"line":152,"col":40,"index":3371},{"line":152,"col":60,"index":3391}],"345":[0,{"line":152,"col":40,"index":3371},{"line":152,"col":60,"index":3391}],"346":[0,{"line":152,"col":40,"index":3371},{"line":152,"col":60,"index":3391}],"347":[0,{"line":152,"col":40,"index":3371},{"line":152,"col":60,"index":3391}],"348":[0,{"line":152,"col":40,"index":3371},{"line":152,"col":60,"index":3391}],"349":[0,{"line":152,"col":40,"index":3371},{"line":152,"col":60,"index":3391}],"350":[0,{"line":152,"col":40,"index":3371},{"line":152,"col":60,"index":3391}],"351":[0,{"line":152,"col":40,"index":3371},{"line":152,"col":60,"index":3391}],"352":[0,{"line":152,"col":40,"index":3371},{"line":152,"col":60,"index":3391}],"353":[0,{"line":152,"col":40,"index":3371},{"line":152,"col":60,"index":3391}],"354":[0,{"line":152,"col":18,"index":3349},{"line":152,"col":62,"index":3393}],"355":[0,{"line":152,"col":2,"index":3333},{"line":152,"col":62,"index":3393}],"356":[0,{"line":155,"col":21,"index":3458},{"line":155,"col":21,"index":3458}],"357":[0,{"line":155,"col":15,"index":3452},{"line":155,"col":22,"index":3459}],"358":[0,{"line":155,"col":4,"index":3441},{"line":155,"col":22,"index":3459}],"359":[0,{"line":157,"col":6,"index":3477},{"line":157,"col":6,"index":3477}],"360":[0,{"line":157,"col":10,"index":3481},{"line":157,"col":11,"index":3482}],"361":[0,{"line":157,"col":6,"index":3477},{"line":157,"col":11,"index":3482}],"362":[0,{"line":158,"col":11,"index":3496},{"line":158,"col":11,"index":3496}],"363":[0,{"line":158,"col":6,"index":3491},{"line":158,"col":11,"index":3496}],"364":[0,{"line":158,"col":6,"index":3491},{"line":158,"col":11,"index":3496}],"365":[0,{"line":156,"col":4,"index":3465},{"line":159,"col":41,"index":3502}],"366":[0,{"line":155,"col":4,"index":3441},{"line":159,"col":65,"index":3502}],"367":[0,{"line":154,"col":2,"index":3414},{"line":160,"col":94,"index":3506}],"368":[0,{"line":162,"col":22,"index":3545},{"line":162,"col":22,"index":3545}],"369":[0,{"line":162,"col":31,"index":3554},{"line":162,"col":31,"index":3554}],"370":[0,{"line":162,"col":36,"index":3559},{"line":162,"col":39,"index":3562}],"371":[0,{"line":162,"col":31,"index":3554},{"line":162,"col":39,"index":3562}],"372":[0,{"line":162,"col":22,"index":3545},{"line":162,"col":40,"index":3563}],"373":[0,{"line":162,"col":2,"index":3525},{"line":162,"col":40,"index":3563}],"374":[0,{"line":164,"col":10,"index":3576},{"line":164,"col":10,"index":3576}],"375":[0,{"line":164,"col":18,"index":3584},{"line":164,"col":18,"index":3584}],"376":[0,{"line":164,"col":23,"index":3589},{"line":164,"col":23,"index":3589}],"377":[0,{"line":164,"col":27,"index":3593},{"line":164,"col":27,"index":3593}],"378":[0,{"line":164,"col":23,"index":3589},{"line":164,"col":27,"index":3593}],"379":[0,{"line":164,"col":18,"index":3584},{"line":164,"col":27,"index":3593}],"380":[0,{"line":164,"col":10,"index":3576},{"line":164,"col":28,"index":3594}],"381":[0,{"line":164,"col":2,"index":3568},{"line":164,"col":28,"index":3594}],"382":[0,{"line":166,"col":23,"index":3620},{"line":166,"col":23,"index":3620}],"383":[0,{"line":166,"col":37,"index":3634},{"line":166,"col":37,"index":3634}],"384":[0,{"line":166,"col":40,"index":3637},{"line":166,"col":40,"index":3637}],"385":[0,{"line":166,"col":33,"index":3630},{"line":166,"col":41,"index":3638}],"386":[0,{"line":166,"col":23,"index":3620},{"line":166,"col":42,"index":3639}],"387":[0,{"line":166,"col":2,"index":3599},{"line":166,"col":42,"index":3639}],"388":[0,{"line":169,"col":17,"index":3698},{"line":169,"col":17,"index":3698}],"389":[0,{"line":169,"col":20,"index":3701},{"line":169,"col":20,"index":3701}],"390":[0,{"line":169,"col":12,"index":3693},{"line":169,"col":21,"index":3702}],"391":[0,{"line":169,"col":12,"index":3693},{"line":169,"col":28,"index":3709}],"392":[0,{"line":169,"col":2,"index":3683},{"line":169,"col":28,"index":3709}],"393":[0,{"line":172,"col":20,"index":3753},{"line":172,"col":20,"index":3753}],"394":[0,{"line":172,"col":23,"index":3756},{"line":172,"col":23,"index":3756}],"395":[0,{"line":172,"col":26,"index":3759},{"line":172,"col":26,"index":3759}],"396":[0,{"line":172,"col":19,"index":3752},{"line":172,"col":27,"index":3760}],"397":[0,{"line":172,"col":2,"index":3735},{"line":172,"col":27,"index":3760}],"398":[0,{"line":173,"col":24,"index":3786},{"line":173,"col":24,"index":3786}],"399":[0,{"line":173,"col":27,"index":3789},{"line":173,"col":27,"index":3789}],"400":[0,{"line":173,"col":30,"index":3792},{"line":173,"col":30,"index":3792}],"401":[0,{"line":173,"col":20,"index":3782},{"line":173,"col":31,"index":3793}],"402":[0,{"line":173,"col":2,"index":3764},{"line":173,"col":31,"index":3793}],"403":[0,{"line":174,"col":18,"index":3813},{"line":174,"col":18,"index":3813}],"404":[0,{"line":174,"col":23,"index":3818},{"line":174,"col":23,"index":3818}],"405":[0,{"line":174,"col":18,"index":3813},{"line":174,"col":23,"index":3818}],"406":[0,{"line":174,"col":2,"index":3797},{"line":174,"col":23,"index":3818}],"407":[0,{"line":175,"col":19,"index":3839},{"line":175,"col":19,"index":3839}],"408":[0,{"line":175,"col":22,"index":3842},{"line":175,"col":22,"index":3842}],"409":[0,{"line":175,"col":25,"index":3845},{"line":175,"col":25,"index":3845}],"410":[0,{"line":175,"col":18,"index":3838},{"line":175,"col":26,"index":3846}],"411":[0,{"line":175,"col":2,"index":3822},{"line":175,"col":26,"index":3846}],"412":[0,{"line":176,"col":24,"index":3872},{"line":176,"col":24,"index":3872}],"413":[0,{"line":176,"col":27,"index":3875},{"line":176,"col":27,"index":3875}],"414":[0,{"line":176,"col":30,"index":3878},{"line":176,"col":30,"index":3878}],"415":[0,{"line":176,"col":19,"index":3867},{"line":176,"col":31,"index":3879}],"416":[0,{"line":176,"col":2,"index":3850},{"line":176,"col":31,"index":3879}],"417":[0,{"line":177,"col":23,"index":3904},{"line":177,"col":23,"index":3904}],"418":[0,{"line":177,"col":26,"index":3907},{"line":177,"col":26,"index":3907}],"419":[0,{"line":177,"col":29,"index":3910},{"line":177,"col":29,"index":3910}],"420":[0,{"line":177,"col":22,"index":3903},{"line":177,"col":30,"index":3911}],"421":[0,{"line":177,"col":32,"index":3913},{"line":177,"col":32,"index":3913}],"422":[0,{"line":177,"col":22,"index":3903},{"line":177,"col":33,"index":3914}],"423":[0,{"line":177,"col":2,"index":3883},{"line":177,"col":33,"index":3914}],"424":[0,{"line":178,"col":28,"index":3944},{"line":178,"col":33,"index":3949}],"425":[0,{"line":178,"col":22,"index":3938},{"line":178,"col":33,"index":3949}],"426":[0,{"line":178,"col":42,"index":3958},{"line":178,"col":45,"index":3961}],"427":[0,{"line":178,"col":36,"index":3952},{"line":178,"col":45,"index":3961}],"428":[0,{"line":178,"col":20,"index":3936},{"line":178,"col":47,"index":3963}],"429":[0,{"line":178,"col":2,"index":3918},{"line":178,"col":47,"index":3963}],"430":[0,{"line":179,"col":25,"index":3990},{"line":179,"col":30,"index":3995}],"431":[0,{"line":179,"col":33,"index":3998},{"line":179,"col":38,"index":4003}],"432":[0,{"line":179,"col":41,"index":4006},{"line":179,"col":46,"index":4011}],"433":[0,{"line":179,"col":49,"index":4014},{"line":179,"col":52,"index":4017}],"434":[0,{"line":179,"col":21,"index":3986},{"line":179,"col":53,"index":4018}],"435":[0,{"line":179,"col":2,"index":3967},{"line":179,"col":53,"index":4018}],"436":[0,{"line":180,"col":29,"index":4049},{"line":180,"col":35,"index":4055}],"437":[0,{"line":180,"col":23,"index":4043},{"line":180,"col":35,"index":4055}],"438":[0,{"line":180,"col":44,"index":4064},{"line":180,"col":47,"index":4067}],"439":[0,{"line":180,"col":38,"index":4058},{"line":180,"col":47,"index":4067}],"440":[0,{"line":180,"col":53,"index":4073},{"line":180,"col":63,"index":4083}],"441":[0,{"line":180,"col":21,"index":4041},{"line":180,"col":65,"index":4085}],"442":[0,{"line":180,"col":21,"index":4041},{"line":180,"col":65,"index":4085}],"443":[0,{"line":180,"col":2,"index":4022},{"line":180,"col":65,"index":4085}],"444":[0,{"line":181,"col":21,"index":4108},{"line":181,"col":21,"index":4108}],"445":[0,{"line":181,"col":24,"index":4111},{"line":181,"col":24,"index":4111}],"446":[0,{"line":181,"col":27,"index":4114},{"line":181,"col":27,"index":4114}],"447":[0,{"line":181,"col":17,"index":4104},{"line":181,"col":28,"index":4115}],"448":[0,{"line":181,"col":2,"index":4089},{"line":181,"col":28,"index":4115}],"449":[0,{"line":185,"col":22,"index":4187},{"line":185,"col":22,"index":4187}],"450":[0,{"line":185,"col":19,"index":4184},{"line":185,"col":22,"index":4187}],"451":[0,{"line":185,"col":28,"index":4193},{"line":185,"col":32,"index":4197}],"452":[0,{"line":185,"col":25,"index":4190},{"line":185,"col":32,"index":4197}],"453":[0,{"line":185,"col":17,"index":4182},{"line":185,"col":34,"index":4199}],"454":[0,{"line":185,"col":4,"index":4169},{"line":185,"col":34,"index":4199}],"455":[0,{"line":186,"col":4,"index":4205},{"line":186,"col":9,"index":4210}],"456":[0,{"line":186,"col":4,"index":4205},{"line":186,"col":11,"index":4212}],"457":[0,{"line":186,"col":4,"index":4205},{"line":186,"col":11,"index":4212}],"458":[0,{"line":185,"col":4,"index":4169},{"line":186,"col":47,"index":4212}],"459":[0,{"line":184,"col":2,"index":4149},{"line":186,"col":65,"index":4212}],"460":[0,{"line":189,"col":21,"index":4253},{"line":189,"col":23,"index":4255}],"461":[0,{"line":189,"col":26,"index":4258},{"line":189,"col":26,"index":4258}],"462":[0,{"line":189,"col":17,"index":4249},{"line":189,"col":27,"index":4259}],"463":[0,{"line":189,"col":4,"index":4236},{"line":189,"col":27,"index":4259}],"464":[0,{"line":190,"col":4,"index":4265},{"line":190,"col":9,"index":4270}],"465":[0,{"line":190,"col":4,"index":4265},{"line":190,"col":12,"index":4273}],"466":[0,{"line":190,"col":4,"index":4265},{"line":190,"col":12,"index":4273}],"467":[0,{"line":189,"col":4,"index":4236},{"line":190,"col":41,"index":4273}],"468":[0,{"line":188,"col":2,"index":4217},{"line":190,"col":58,"index":4273}],"469":[0,{"line":192,"col":14,"index":4290},{"line":192,"col":14,"index":4290}],"470":[0,{"line":192,"col":19,"index":4295},{"line":192,"col":19,"index":4295}],"471":[0,{"line":192,"col":24,"index":4300},{"line":192,"col":25,"index":4301}],"472":[0,{"line":192,"col":19,"index":4295},{"line":192,"col":25,"index":4301}],"473":[0,{"line":192,"col":2,"index":4278},{"line":192,"col":25,"index":4301}],"474":[0,{"line":195,"col":19,"index":4349},{"line":195,"col":19,"index":4349}],"475":[0,{"line":195,"col":24,"index":4354},{"line":195,"col":28,"index":4358}],"476":[0,{"line":195,"col":19,"index":4349},{"line":195,"col":29,"index":4359}],"477":[0,{"line":195,"col":2,"index":4332},{"line":195,"col":29,"index":4359}],"478":[0,{"line":196,"col":23,"index":4384},{"line":196,"col":27,"index":4388}],"479":[0,{"line":196,"col":38,"index":4399},{"line":196,"col":42,"index":4403}],"480":[0,{"line":196,"col":23,"index":4384},{"line":196,"col":43,"index":4404}],"481":[0,{"line":196,"col":2,"index":4363},{"line":196,"col":43,"index":4404}],"482":[0,{"line":197,"col":22,"index":4428},{"line":197,"col":22,"index":4428}],"483":[0,{"line":197,"col":18,"index":4424},{"line":197,"col":23,"index":4429}],"484":[0,{"line":197,"col":41,"index":4447},{"line":197,"col":41,"index":4447}],"485":[0,{"line":197,"col":43,"index":4449},{"line":197,"col":43,"index":4449}],"486":[0,{"line":197,"col":45,"index":4451},{"line":197,"col":45,"index":4451}],"487":[0,{"line":197,"col":37,"index":4443},{"line":197,"col":46,"index":4452}],"488":[0,{"line":197,"col":28,"index":4434},{"line":197,"col":47,"index":4453}],"489":[0,{"line":197,"col":18,"index":4424},{"line":197,"col":48,"index":4454}],"490":[0,{"line":197,"col":2,"index":4408},{"line":197,"col":48,"index":4454}],"491":[0,{"line":200,"col":20,"index":4501},{"line":200,"col":20,"index":4501}],"492":[0,{"line":200,"col":24,"index":4505},{"line":200,"col":24,"index":4505}],"493":[0,{"line":200,"col":20,"index":4501},{"line":200,"col":24,"index":4505}],"494":[0,{"line":200,"col":2,"index":4483},{"line":200,"col":24,"index":4505}],"495":[0,{"line":202,"col":13,"index":4549},{"line":202,"col":13,"index":4549}],"496":[0,{"line":202,"col":18,"index":4554},{"line":202,"col":18,"index":4554}],"497":[0,{"line":202,"col":13,"index":4549},{"line":202,"col":18,"index":4554}],"498":[0,{"line":202,"col":2,"index":4538},{"line":202,"col":18,"index":4554}],"499":[0,{"line":205,"col":2,"index":4572},{"line":205,"col":14,"index":4584}],"500":[0,{"line":206,"col":2,"index":4588},{"line":206,"col":12,"index":4598}],"501":[0,{"line":209,"col":21,"index":4636},{"line":209,"col":23,"index":4638}],"502":[0,{"line":209,"col":17,"index":4632},{"line":209,"col":24,"index":4639}],"503":[0,{"line":209,"col":2,"index":4617},{"line":209,"col":24,"index":4639}],"504":[0,{"line":211,"col":2,"index":4644},{"line":211,"col":24,"index":4666}],"505":[0,{"line":213,"col":10,"index":4679},{"line":213,"col":16,"index":4685}],"506":[0,{"line":213,"col":2,"index":4671},{"line":213,"col":16,"index":4685}],"507":[0,{"line":221,"col":19,"index":4906},{"line":221,"col":19,"index":4906}],"508":[0,{"line":221,"col":15,"index":4902},{"line":221,"col":15,"index":4902}],"509":[0,{"line":221,"col":2,"index":4889},{"line":221,"col":29,"index":4916}],"510":[0,{"line":14,"col":0,"index":140},{"line":225,"col":4855,"index":4995}]}} \ No newline at end of file diff --git a/quint/testFixture/SuperSpec.qnt b/quint/testFixture/SuperSpec.qnt index 13fcb00d8..2bd8e23ed 100644 --- a/quint/testFixture/SuperSpec.qnt +++ b/quint/testFixture/SuperSpec.qnt @@ -28,16 +28,13 @@ module withConsts { // just a normal record, without any variation in the fields const MyRecord: { i: int, b: bool, s: str } const MyRecordWithComma: { i: int, b: bool, s: str, } + // a disjoint union is a common pattern in TLA+ - const MyUnion: - | { tag: "circle", radius: int } - | { tag: "rectangle", width: int, height: int } - | { tag: "dog", name: str } - - const MyUnionWithComma: - | { tag: "circle", radius: int, } - | { tag: "rectangle", width: int, height: int, } - | { tag: "dog", name: str, } + type MyUnionType = + | Circle(int) + | Rectangle({width: int, height: int }) + | Dog(str) + const MyUnion: MyUnionType // Vars // We don't do extensive testing of types, diff --git a/vscode/quint-vscode/server/src/complete.ts b/vscode/quint-vscode/server/src/complete.ts index 8c9db93ee..4d899eeeb 100644 --- a/vscode/quint-vscode/server/src/complete.ts +++ b/vscode/quint-vscode/server/src/complete.ts @@ -219,7 +219,6 @@ function getSuggestedBuiltinsForType(type: QuintType): { name: string }[] { case 'oper': // no suggestions from here on case 'var': case 'sum': - case 'union': return [] } }