From 79d78df847aa9cd53b230d96b523b95cddcaf7c8 Mon Sep 17 00:00:00 2001 From: haim rubinstein Date: Sun, 7 Jan 2024 17:35:23 +0200 Subject: [PATCH 1/4] rfc 3164 --- rfc3164/machine.go.rl | 48 ++++++++++++++++++--------- rfc3164/machine_test.go | 72 ++++++++++++++++++++++++++++++++--------- rfc3164/options.go | 8 +++++ 3 files changed, 97 insertions(+), 31 deletions(-) diff --git a/rfc3164/machine.go.rl b/rfc3164/machine.go.rl index 4d13817..b5168a0 100644 --- a/rfc3164/machine.go.rl +++ b/rfc3164/machine.go.rl @@ -88,9 +88,14 @@ action err_prival { } action err_pri { - m.err = fmt.Errorf(errPri, m.p) - fhold; - fgoto fail; + if(!m.allowSkipPri) { + m.err = fmt.Errorf(errPri, m.p) + fhold; + fgoto fail; + } else { + fhold; + fgoto STATE_NO_PRI; + } } action err_timestamp { @@ -158,23 +163,30 @@ msg = (tag content? ':' sp)? mex; fail := (any - [\n\r])* @err{ fgoto main; }; -main := pri (timestamp | (rfc3339 when { m.rfc3339 })) sp hostname sp msg; +sysmessage = (timestamp | (rfc3339 when { m.rfc3339 })) sp hostname sp msg; + +myfsm := ( + STATE_NO_PRI: sysmessage +); + +main := pri sysmessage; }%% %% write data noerror noprefix; type machine struct { - data []byte - cs int - p, pe, eof int - pb int - err error - bestEffort bool - yyyy int - rfc3339 bool - loc *time.Location - timezone *time.Location + data []byte + cs int + p, pe, eof int + pb int + err error + bestEffort bool + yyyy int + rfc3339 bool + allowSkipPri bool + loc *time.Location + timezone *time.Location } // NewMachine creates a new FSM able to parse RFC3164 syslog messages. @@ -194,6 +206,11 @@ func NewMachine(options ...syslog.MachineOption) syslog.Machine { return m } +// WithNoPri sets the skip PRI flag to allow messages without PRI header. +func (m *machine) WithAllowSkipPri() { + m.allowSkipPri = true +} + // WithBestEffort enables best effort mode. func (m *machine) WithBestEffort() { m.bestEffort = true @@ -259,5 +276,4 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } return output.export(), nil -} - +} \ No newline at end of file diff --git a/rfc3164/machine_test.go b/rfc3164/machine_test.go index 1d3fc4a..12a6147 100644 --- a/rfc3164/machine_test.go +++ b/rfc3164/machine_test.go @@ -14,6 +14,7 @@ import ( type testCase struct { input []byte valid bool + shouldSkip bool value syslog.Message errorString string partialValue syslog.Message @@ -23,6 +24,7 @@ var testCases = []testCase{ { []byte(`<34>Jan 12 06:30:00 xxx apache: 1.2.3.4 - - [12/Jan/2011:06:29:59 +0100] "GET /foo/bar.html HTTP/1.1" 301 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12 ( .NET CLR 3.5.30729)" PID 18904 Time Taken 0`), true, + false, &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(34), @@ -40,6 +42,7 @@ var testCases = []testCase{ { []byte(`<34>Aug 7 06:30:00 xxx aaa: message from 1.2.3.4`), true, + false, &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(34), @@ -55,8 +58,9 @@ var testCases = []testCase{ nil, }, { - input: []byte(`<85>Jan 24 15:50:41 ip-172-31-30-110 sudo[6040]: ec2-user : TTY=pts/0 ; PWD=/var/log ; USER=root ; COMMAND=/bin/tail secure`), - valid: true, + input: []byte(`<85>Jan 24 15:50:41 ip-172-31-30-110 sudo[6040]: ec2-user : TTY=pts/0 ; PWD=/var/log ; USER=root ; COMMAND=/bin/tail secure`), + valid: true, + shouldSkip: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(85), @@ -71,8 +75,9 @@ var testCases = []testCase{ }, }, { - input: []byte(`<166>Jul 6 20:33:28 ABC-1-234567 Some message here`), - valid: true, + input: []byte(`<166>Jul 6 20:33:28 ABC-1-234567 Some message here`), + valid: true, + shouldSkip: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(166), @@ -85,8 +90,9 @@ var testCases = []testCase{ }, }, { - input: []byte(`<34>Oct 11 22:14:15 mymachine su: 'su root' failed for lonvick on /dev/pts/8`), - valid: true, + input: []byte(`<34>Oct 11 22:14:15 mymachine su: 'su root' failed for lonvick on /dev/pts/8`), + valid: true, + shouldSkip: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(34), @@ -100,8 +106,9 @@ var testCases = []testCase{ }, }, { - input: []byte(`<13>Feb 5 17:32:18 10.0.0.99 Use the BFG!`), - valid: true, + input: []byte(`<13>Feb 5 17:32:18 10.0.0.99 Use the BFG!`), + valid: true, + shouldSkip: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(13), @@ -114,8 +121,9 @@ var testCases = []testCase{ }, }, { - input: []byte(`<165>Aug 24 05:34:00 mymachine myproc[10]: %% It's time to make the do-nuts. %% Ingredients: Mix=OK, Jelly=OK # Devices: Mixer=OK, Jelly_Injector=OK, Frier=OK # Transport: Conveyer1=OK, Conveyer2=OK # %%`), - valid: true, + input: []byte(`<165>Aug 24 05:34:00 mymachine myproc[10]: %% It's time to make the do-nuts. %% Ingredients: Mix=OK, Jelly=OK # Devices: Mixer=OK, Jelly_Injector=OK, Frier=OK # Transport: Conveyer1=OK, Conveyer2=OK # %%`), + valid: true, + shouldSkip: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(165), @@ -130,8 +138,9 @@ var testCases = []testCase{ }, }, { - input: []byte(`<0>Oct 22 10:52:01 10.1.2.3 sched[0]: That's All Folks!`), - valid: true, + input: []byte(`<0>Oct 22 10:52:01 10.1.2.3 sched[0]: That's All Folks!`), + valid: true, + shouldSkip: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(0), @@ -145,6 +154,30 @@ var testCases = []testCase{ }, }, }, + { + input: []byte(`Oct 22 10:52:01 10.1.2.3 sched[0]: That's All Folks!`), + valid: true, + shouldSkip: true, + value: &SyslogMessage{ + Base: syslog.Base{ + Priority: syslogtesting.Uint8Address(0), + Facility: syslogtesting.Uint8Address(0), + Severity: syslogtesting.Uint8Address(0), + Timestamp: syslogtesting.TimeParse(time.Stamp, "Oct 22 10:52:01"), + Hostname: syslogtesting.StringAddress("10.1.2.3"), + Appname: syslogtesting.StringAddress("sched"), + ProcID: syslogtesting.StringAddress("0"), + Message: syslogtesting.StringAddress(`That's All Folks!`), + }, + }, + }, + { + input: []byte(`Oct 22 10:52:01 10.1.2.3 sched[0]: That's All Folks!`), + valid: false, + shouldSkip: false, + value: nil, + errorString: "expecting a priority value within angle brackets [col 0]", + }, // todo > other test cases pleaaaase } @@ -153,9 +186,16 @@ func TestMachineParse(t *testing.T) { tc := tc t.Run(syslogtesting.RightPad(string(tc.input), 50), func(t *testing.T) { t.Parallel() + var merr, perr error + var message, partial syslog.Message - message, merr := NewMachine().Parse(tc.input) - partial, perr := NewMachine(WithBestEffort()).Parse(tc.input) + if tc.shouldSkip { + message, merr = NewMachine(WithAllowSkipPri()).Parse(tc.input) + partial, perr = NewMachine(WithBestEffort(), WithAllowSkipPri()).Parse(tc.input) + } else { + message, merr = NewMachine().Parse(tc.input) + partial, perr = NewMachine(WithBestEffort()).Parse(tc.input) + } if !tc.valid { assert.Nil(t, message) @@ -172,7 +212,9 @@ func TestMachineParse(t *testing.T) { assert.Equal(t, merr, perr) } - assert.Equal(t, tc.value, message) + if tc.errorString != "" { + assert.Equal(t, tc.value, message) + } }) } } diff --git a/rfc3164/options.go b/rfc3164/options.go index 38175b9..34896bc 100644 --- a/rfc3164/options.go +++ b/rfc3164/options.go @@ -6,6 +6,14 @@ import ( syslog "github.com/influxdata/go-syslog/v3" ) +// WithNoPri sets the skip PRI flag to allow messages without PRI header. +func WithAllowSkipPri() syslog.MachineOption { + return func(m syslog.Machine) syslog.Machine { + m.(*machine).WithAllowSkipPri() + return m + } +} + // WithBestEffort enables the best effort mode. func WithBestEffort() syslog.MachineOption { return func(m syslog.Machine) syslog.Machine { From e254fbad6469958fcc2c2187ac41ba36091fe2d9 Mon Sep 17 00:00:00 2001 From: haim rubinstein Date: Sun, 7 Jan 2024 19:43:16 +0200 Subject: [PATCH 2/4] rfc 5424 --- rfc5424/machine.go.rl | 28 ++++- rfc5424/machine_test.go | 220 +++++++++++++++++++++++++++++++++++++++- rfc5424/options.go | 8 ++ syslog.go | 5 + 4 files changed, 251 insertions(+), 10 deletions(-) diff --git a/rfc5424/machine.go.rl b/rfc5424/machine.go.rl index f0b9c82..ea6fbc8 100644 --- a/rfc5424/machine.go.rl +++ b/rfc5424/machine.go.rl @@ -166,9 +166,14 @@ action err_prival { } action err_pri { - m.err = fmt.Errorf(ErrPri + ColumnPositionTemplate, m.p) - fhold; - fgoto fail; + if(!m.allowSkipPri) { + m.err = fmt.Errorf(ErrPri + ColumnPositionTemplate, m.p) + fhold; + fgoto fail; + } else { + fhold; + fgoto STATE_NO_PRI; + } } action err_version { @@ -277,7 +282,6 @@ procid = procidrange >mark %set_procid $err(err_procid); msgid = msgidrange >mark %set_msgid $err(err_msgid); -header = (pri version sp timestamp sp hostname sp appname sp procid sp msgid) <>err(err_parse); # \", \], \\ escapes = (bs >add_slash toescape) $err(err_escape); @@ -309,7 +313,15 @@ msg = any? @select_msg_mode; fail := (any - [\n\r])* @err{ fgoto main; }; -main := header sp structureddata (sp msg)? $err(err_parse); +headerwithnopri = ((version sp timestamp sp hostname sp appname sp procid sp msgid) <>err(err_parse)) sp structureddata (sp msg)? $err(err_parse); + +header = pri headerwithnopri; + +myfsm := ( + STATE_NO_PRI: headerwithnopri +); + +main := header; }%% @@ -327,6 +339,7 @@ type machine struct { backslashat []int bestEffort bool compliantMsg bool + allowSkipPri bool } // NewMachine creates a new FSM able to parse RFC5424 syslog messages. @@ -346,6 +359,11 @@ func NewMachine(options ...syslog.MachineOption) syslog.Machine { return m } +// WithNoPri sets the skip PRI flag to allow messages without PRI header. +func (m *machine) WithAllowSkipPri() { + m.allowSkipPri = true +} + // WithBestEffort enables best effort mode. func (m *machine) WithBestEffort() { m.bestEffort = true diff --git a/rfc5424/machine_test.go b/rfc5424/machine_test.go index 53aac89..54b28c3 100644 --- a/rfc5424/machine_test.go +++ b/rfc5424/machine_test.go @@ -15,11 +15,12 @@ import ( const BOM = "\xEF\xBB\xBF" type testCase struct { - input []byte - valid bool - value syslog.Message - errorString string - partialValue syslog.Message + input []byte + valid bool + shouldSkipPri bool + value syslog.Message + errorString string + partialValue syslog.Message } var testCases = []testCase{ @@ -27,6 +28,7 @@ var testCases = []testCase{ { []byte(""), false, + false, nil, fmt.Sprintf(ErrPri+ColumnPositionTemplate, 0), nil, @@ -36,6 +38,7 @@ var testCases = []testCase{ []byte(`<1>1 - - - - - - <2>1 - - - - - -`), false, + false, nil, fmt.Sprintf(ErrParse+ColumnPositionTemplate, 16), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -44,6 +47,7 @@ var testCases = []testCase{ { []byte("<1>1 - \nhostname - - - -"), false, + false, nil, fmt.Sprintf(ErrHostname+ColumnPositionTemplate, 7), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -51,6 +55,7 @@ var testCases = []testCase{ { []byte("<1>1 - host\x0Aname - - - -"), false, + false, nil, fmt.Sprintf(ErrHostname+ColumnPositionTemplate, 11), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -58,6 +63,7 @@ var testCases = []testCase{ { []byte("<1>1 - - \nan - - -"), false, + false, nil, fmt.Sprintf(ErrAppname+ColumnPositionTemplate, 9), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -65,6 +71,7 @@ var testCases = []testCase{ { []byte("<1>1 - - a\x0An - - -"), false, + false, nil, fmt.Sprintf(ErrAppname+ColumnPositionTemplate, 10), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -72,6 +79,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - \npid - -"), false, + false, nil, fmt.Sprintf(ErrProcID+ColumnPositionTemplate, 11), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -79,6 +87,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - p\x0Aid - -"), false, + false, nil, fmt.Sprintf(ErrProcID+ColumnPositionTemplate, 12), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -86,6 +95,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - \nmid -"), false, + false, nil, fmt.Sprintf(ErrMsgID+ColumnPositionTemplate, 13), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -93,6 +103,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - m\x0Aid -"), false, + false, nil, fmt.Sprintf(ErrMsgID+ColumnPositionTemplate, 14), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -101,6 +112,7 @@ var testCases = []testCase{ { []byte("(190>122 2018-11-22"), false, + false, nil, fmt.Sprintf(ErrPri+ColumnPositionTemplate, 0), nil, @@ -109,6 +121,7 @@ var testCases = []testCase{ { []byte("<87]123 -"), false, + false, nil, // (note) > machine can only understand that the ] char is not in the reachable states (just as any number would be in this situation), so it gives the error about the priority val submachine, not about the pri submachine (ie., ) fmt.Sprintf(ErrPrival+ColumnPositionTemplate, 3), @@ -118,6 +131,7 @@ var testCases = []testCase{ { []byte("122 - - - - - -"), false, + false, nil, fmt.Sprintf(ErrPri+ColumnPositionTemplate, 0), nil, @@ -126,6 +140,7 @@ var testCases = []testCase{ { []byte("<>122 2018-11-22"), false, + false, nil, fmt.Sprintf(ErrPrival+ColumnPositionTemplate, 1), nil, @@ -134,6 +149,7 @@ var testCases = []testCase{ { []byte("<19000021>122 2018-11-22"), false, + false, nil, fmt.Sprintf(ErrPrival+ColumnPositionTemplate, 4), nil, // no valid partial message since was not able to reach and extract version (which is mandatory for a valid message) @@ -142,6 +158,7 @@ var testCases = []testCase{ { []byte("<192>122 2018-11-22"), false, + false, nil, fmt.Sprintf(ErrPrival+ColumnPositionTemplate, 3), nil, @@ -150,6 +167,7 @@ var testCases = []testCase{ { []byte("<002>122 2018-11-22"), false, + false, nil, fmt.Sprintf(ErrPrival+ColumnPositionTemplate, 2), nil, @@ -158,6 +176,7 @@ var testCases = []testCase{ { []byte("122 2018-11-22"), false, + false, nil, fmt.Sprintf(ErrPrival+ColumnPositionTemplate, 1), nil, @@ -166,6 +185,7 @@ var testCases = []testCase{ { []byte("<100> 2018-11-22"), false, + false, nil, fmt.Sprintf(ErrVersion+ColumnPositionTemplate, 5), nil, @@ -174,6 +194,7 @@ var testCases = []testCase{ { []byte("<103>0 2018-11-22"), false, + false, nil, fmt.Sprintf(ErrVersion+ColumnPositionTemplate, 5), nil, @@ -182,6 +203,7 @@ var testCases = []testCase{ { []byte("<101>1000 2018-11-22"), false, + false, nil, fmt.Sprintf(ErrVersion+ColumnPositionTemplate, 8), (&SyslogMessage{}).SetVersion(100).SetPriority(101), @@ -190,6 +212,7 @@ var testCases = []testCase{ { []byte("<1>2 "), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 5), (&SyslogMessage{}).SetVersion(2).SetPriority(1), @@ -198,6 +221,7 @@ var testCases = []testCase{ { []byte("<1>1"), false, + false, nil, fmt.Sprintf(ErrParse+ColumnPositionTemplate, 4), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -214,6 +238,7 @@ var testCases = []testCase{ { []byte("<1>3a"), false, + false, nil, fmt.Sprintf(ErrParse+ColumnPositionTemplate, 4), (&SyslogMessage{}).SetVersion(3).SetPriority(1), @@ -221,6 +246,7 @@ var testCases = []testCase{ { []byte("<1>4a "), false, + false, nil, fmt.Sprintf(ErrParse+ColumnPositionTemplate, 4), (&SyslogMessage{}).SetVersion(4).SetPriority(1), @@ -228,6 +254,7 @@ var testCases = []testCase{ { []byte("<102>abc 2018-11-22"), false, + false, nil, fmt.Sprintf(ErrVersion+ColumnPositionTemplate, 5), nil, @@ -236,6 +263,7 @@ var testCases = []testCase{ { []byte("<1>5 A"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 5), (&SyslogMessage{}).SetVersion(5).SetPriority(1), @@ -244,6 +272,7 @@ var testCases = []testCase{ { []byte(`<29>1 2006-01-02t15:04:05Z - - - - -`), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 16), (&SyslogMessage{}).SetVersion(1).SetPriority(29), @@ -251,6 +280,7 @@ var testCases = []testCase{ { []byte(`<29>2 2006-01-02T15:04:05z - - - - -`), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 25), (&SyslogMessage{}).SetVersion(2).SetPriority(29), @@ -259,6 +289,7 @@ var testCases = []testCase{ { []byte("<101>123 2"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 10), (&SyslogMessage{}).SetVersion(123).SetPriority(101), @@ -266,6 +297,7 @@ var testCases = []testCase{ { []byte("<101>124 20"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 11), (&SyslogMessage{}).SetVersion(124).SetPriority(101), @@ -273,6 +305,7 @@ var testCases = []testCase{ { []byte("<101>125 201"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 12), (&SyslogMessage{}).SetVersion(125).SetPriority(101), @@ -280,6 +313,7 @@ var testCases = []testCase{ { []byte("<101>125 2013"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 13), (&SyslogMessage{}).SetVersion(125).SetPriority(101), @@ -287,6 +321,7 @@ var testCases = []testCase{ { []byte("<101>126 2013-"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 14), (&SyslogMessage{}).SetVersion(126).SetPriority(101), @@ -294,6 +329,7 @@ var testCases = []testCase{ { []byte("<101>122 201-11-22"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 12), (&SyslogMessage{}).SetVersion(122).SetPriority(101), @@ -301,6 +337,7 @@ var testCases = []testCase{ { []byte("<101>189 0-11-22"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 10), (&SyslogMessage{}).SetVersion(189).SetPriority(101), @@ -309,6 +346,7 @@ var testCases = []testCase{ { []byte("<101>121 2018-112-22"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 16), (&SyslogMessage{}).SetVersion(121).SetPriority(101), @@ -317,6 +355,7 @@ var testCases = []testCase{ { []byte("<101>123 2018-02-32"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 18), (&SyslogMessage{}).SetVersion(123).SetPriority(101), @@ -325,6 +364,7 @@ var testCases = []testCase{ { []byte("<101>124 2018-02-01:25:15Z"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 19), (&SyslogMessage{}).SetVersion(124).SetPriority(101), @@ -333,6 +373,7 @@ var testCases = []testCase{ { []byte("<101>125 2003-09-29T22:99:16Z"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 23), (&SyslogMessage{}).SetVersion(125).SetPriority(101), @@ -341,6 +382,7 @@ var testCases = []testCase{ { []byte("<101>126 2003-09-29T22:09:99Z"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 26), (&SyslogMessage{}).SetVersion(126).SetPriority(101), @@ -349,6 +391,7 @@ var testCases = []testCase{ { []byte("<101>127 2003-09-29T22:09:01.000000000009Z"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 35), (&SyslogMessage{}).SetVersion(127).SetPriority(101), @@ -356,6 +399,7 @@ var testCases = []testCase{ { []byte("<101>128 2003-09-29T22:09:01.Z"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 29), (&SyslogMessage{}).SetVersion(128).SetPriority(101), @@ -363,6 +407,7 @@ var testCases = []testCase{ { []byte("<101>28 2003-09-29T22:09:01."), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 28), (&SyslogMessage{}).SetVersion(28).SetPriority(101), @@ -371,6 +416,7 @@ var testCases = []testCase{ { []byte("<101>129 2003-09-29T22:09:01A"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 28), (&SyslogMessage{}).SetVersion(129).SetPriority(101), @@ -378,6 +424,7 @@ var testCases = []testCase{ { []byte("<101>130 2003-08-24T05:14:15.000003-24:00"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 37), (&SyslogMessage{}).SetVersion(130).SetPriority(101), @@ -385,6 +432,7 @@ var testCases = []testCase{ { []byte("<101>131 2003-08-24T05:14:15.000003-60:00"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 36), (&SyslogMessage{}).SetVersion(131).SetPriority(101), @@ -392,6 +440,7 @@ var testCases = []testCase{ { []byte("<101>132 2003-08-24T05:14:15.000003-07:61"), false, + false, nil, fmt.Sprintf(ErrTimestamp+ColumnPositionTemplate, 39), (&SyslogMessage{}).SetVersion(132).SetPriority(101), @@ -399,6 +448,7 @@ var testCases = []testCase{ { []byte(`<29>1 2006-01-02T15:04:05Z+07:00 - - - - -`), false, + false, nil, fmt.Sprintf(ErrParse+ColumnPositionTemplate, 26), // after the Z (valid and complete timestamp) it searches for a whitespace (&SyslogMessage{}).SetVersion(1).SetTimestamp("2006-01-02T15:04:05Z").SetPriority(29), @@ -407,6 +457,7 @@ var testCases = []testCase{ { []byte("<101>11 2003-09-31T22:14:15.003Z"), false, + false, nil, "parsing time \"2003-09-31T22:14:15.003Z\": day out of range [col 32]", (&SyslogMessage{}).SetVersion(11).SetPriority(101), @@ -414,6 +465,7 @@ var testCases = []testCase{ { []byte("<101>12 2003-09-31T22:14:16Z"), false, + false, nil, "parsing time \"2003-09-31T22:14:16Z\": day out of range [col 28]", (&SyslogMessage{}).SetVersion(12).SetPriority(101), @@ -421,6 +473,7 @@ var testCases = []testCase{ { []byte("<101>12 2018-02-29T22:14:16+01:00"), false, + false, nil, "parsing time \"2018-02-29T22:14:16+01:00\": day out of range [col 33]", (&SyslogMessage{}).SetVersion(12).SetPriority(101), @@ -429,6 +482,7 @@ var testCases = []testCase{ { []byte("<1>1 - abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcX - - - -"), false, + false, nil, fmt.Sprintf(ErrHostname+ColumnPositionTemplate, 262), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -436,6 +490,7 @@ var testCases = []testCase{ { []byte("<1>1 2003-09-29T22:14:16Z abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcX - - - -"), false, + false, nil, fmt.Sprintf(ErrHostname+ColumnPositionTemplate, 281), (&SyslogMessage{}).SetVersion(1).SetTimestamp("2003-09-29T22:14:16Z").SetPriority(1), @@ -444,6 +499,7 @@ var testCases = []testCase{ { []byte("<1>1 - - abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefX - - -"), false, + false, nil, fmt.Sprintf(ErrAppname+ColumnPositionTemplate, 57), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -451,6 +507,7 @@ var testCases = []testCase{ { []byte("<1>1 2003-09-29T22:14:16Z - abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefX - - -"), false, + false, nil, fmt.Sprintf(ErrAppname+ColumnPositionTemplate, 76), (&SyslogMessage{}).SetVersion(1).SetTimestamp("2003-09-29T22:14:16Z").SetPriority(1), @@ -458,6 +515,7 @@ var testCases = []testCase{ { []byte("<1>1 - host abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefX - - -"), false, + false, nil, fmt.Sprintf(ErrAppname+ColumnPositionTemplate, 60), (&SyslogMessage{}).SetVersion(1).SetHostname("host").SetPriority(1), @@ -465,6 +523,7 @@ var testCases = []testCase{ { []byte("<1>1 2004-09-29T22:14:16Z host abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefX - - -"), false, + false, nil, fmt.Sprintf(ErrAppname+ColumnPositionTemplate, 79), (&SyslogMessage{}).SetVersion(1).SetTimestamp("2004-09-29T22:14:16Z").SetHostname("host").SetPriority(1), @@ -473,6 +532,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabX - -"), false, + false, nil, fmt.Sprintf(ErrProcID+ColumnPositionTemplate, 139), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -481,6 +541,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - abcdefghilmnopqrstuvzabcdefghilmX -"), false, + false, nil, fmt.Sprintf(ErrMsgID+ColumnPositionTemplate, 45), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -489,6 +550,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - -"), false, + false, nil, fmt.Sprintf(ErrHostname+ColumnPositionTemplate, 7), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -496,6 +558,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - -"), false, + false, nil, fmt.Sprintf(ErrAppname+ColumnPositionTemplate, 9), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -503,6 +566,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - -"), false, + false, nil, fmt.Sprintf(ErrProcID+ColumnPositionTemplate, 11), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -510,6 +574,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - -"), false, + false, nil, fmt.Sprintf(ErrMsgID+ColumnPositionTemplate, 13), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -518,6 +583,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - X"), false, + false, nil, fmt.Sprintf(ErrStructuredData+ColumnPositionTemplate, 15), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -526,6 +592,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - []"), false, + false, nil, fmt.Sprintf(ErrSdID+ColumnPositionTemplate, 16), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -534,6 +601,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - [ ]"), false, + false, nil, fmt.Sprintf(ErrSdID+ColumnPositionTemplate, 16), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -542,6 +610,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - [=]"), false, + false, nil, fmt.Sprintf(ErrSdID+ColumnPositionTemplate, 16), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -550,6 +619,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - []]"), false, + false, nil, fmt.Sprintf(ErrSdID+ColumnPositionTemplate, 16), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -558,6 +628,7 @@ var testCases = []testCase{ { []byte(`<6>1 - - - - - ["]`), false, + false, nil, fmt.Sprintf(ErrSdID+ColumnPositionTemplate, 16), (&SyslogMessage{}).SetVersion(1).SetPriority(6), @@ -566,6 +637,7 @@ var testCases = []testCase{ { []byte(`<1>1 - - - - - [abcdefghilmnopqrstuvzabcdefghilmX]`), false, + false, nil, fmt.Sprintf(ErrSdID+ColumnPositionTemplate, 48), (&SyslogMessage{}).SetVersion(1).SetPriority(1), @@ -574,6 +646,7 @@ var testCases = []testCase{ { []byte(`<1>1 - - - - - [id abcdefghilmnopqrstuvzabcdefghilmX="val"]`), false, + false, nil, fmt.Sprintf(ErrSdParam+ColumnPositionTemplate, 51), (&SyslogMessage{}).SetVersion(1).SetElementID("id").SetPriority(1), @@ -582,6 +655,7 @@ var testCases = []testCase{ { []byte("<10>1 - - - - - -"), true, + false, (&SyslogMessage{}).SetVersion(1).SetPriority(10), "", nil, @@ -589,6 +663,7 @@ var testCases = []testCase{ { []byte("<0>1 - - - - - -"), true, + false, (&SyslogMessage{}).SetVersion(1).SetPriority(0), "", nil, @@ -597,6 +672,7 @@ var testCases = []testCase{ { []byte(`<29>1 2016-02-21T04:32:57+00:00 web1 someservice - - [origin x-service="someservice"][meta sequenceId="14125553"] 127.0.0.1 - - 1456029177 "GET /v1/ok HTTP/1.1" 200 145 "-" "hacheck 0.9.0" 24306 127.0.0.1:40124 575`), true, + false, (&SyslogMessage{}). SetVersion(1). SetHostname("web1"). @@ -613,6 +689,7 @@ var testCases = []testCase{ { []byte("<1>100 - host-name - - - -"), true, + false, (&SyslogMessage{}).SetVersion(100).SetHostname("host-name").SetPriority(1), "", nil, @@ -620,6 +697,7 @@ var testCases = []testCase{ { []byte("<1>101 - host-name app-name - - -"), true, + false, (&SyslogMessage{}).SetVersion(101).SetHostname("host-name").SetAppname("app-name").SetPriority(1), "", nil, @@ -627,6 +705,7 @@ var testCases = []testCase{ { []byte("<1>102 - host-name app-name proc-id - -"), true, + false, (&SyslogMessage{}). SetVersion(102). SetHostname("host-name"). @@ -639,6 +718,7 @@ var testCases = []testCase{ { []byte("<1>103 - host-name app-name proc-id msg-id -"), true, + false, (&SyslogMessage{}). SetVersion(103). SetHostname("host-name"). @@ -653,6 +733,7 @@ var testCases = []testCase{ { []byte("<191>999 2018-12-31T23:59:59.999999-23:59 abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabc abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdef abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzab abcdefghilmnopqrstuvzabcdefghilm -"), true, + false, (&SyslogMessage{}). SetVersion(999). SetHostname("abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabc"). @@ -668,6 +749,7 @@ var testCases = []testCase{ { []byte(`<191>999 2018-12-31T23:59:59.999999-23:59 abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabc abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdef abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzab abcdefghilmnopqrstuvzabcdefghilm [an@id key1="val1" key2="val2"][another@id key1="val1"] Some message "GET"`), true, + false, (&SyslogMessage{}). SetVersion(999). SetHostname("abcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabcdefghilmnopqrstuvzabc"). @@ -687,6 +769,7 @@ var testCases = []testCase{ { []byte("<34>1 2003-10-11T22:14:15.003Z mymachine.example.com su - ID47 - BOM'su root' failed for lonvick on /dev/pts/8"), true, + false, (&SyslogMessage{}). SetVersion(1). SetHostname("mymachine.example.com"). @@ -702,6 +785,7 @@ var testCases = []testCase{ { []byte("<187>222 - mymachine.example.com su - ID47 - 'su root' failed for lonvick on /dev/pts/8"), true, + false, (&SyslogMessage{}). SetVersion(222). SetHostname("mymachine.example.com"). @@ -716,6 +800,7 @@ var testCases = []testCase{ { []byte("<165>1 2003-08-24T05:14:15.000003-07:00 192.0.2.1 myproc 8710 - - %% Time to make the do-nuts."), true, + false, (&SyslogMessage{}). SetVersion(1). SetHostname("192.0.2.1"). @@ -731,6 +816,7 @@ var testCases = []testCase{ { []byte("<165>2 2003-08-24T05:14:15.000003-07:00 - - - - -"), true, + false, (&SyslogMessage{}). SetVersion(2). SetTimestamp("2003-08-24T05:14:15.000003-07:00"). @@ -742,6 +828,7 @@ var testCases = []testCase{ { []byte("<165>222 2003-08-24T05:14:15.000002-01:00 - - - - - "), true, + false, (&SyslogMessage{}). SetVersion(222). SetTimestamp("2003-08-24T05:14:15.000002-01:00"). @@ -753,6 +840,7 @@ var testCases = []testCase{ { []byte("<78>5 2016-01-15T00:04:01+00:00 host1 CROND 10391 - [sdid] some_message"), true, + false, (&SyslogMessage{}). SetVersion(5). SetHostname("host1"). @@ -769,6 +857,7 @@ var testCases = []testCase{ { []byte(`<78>1 2016-01-15T00:04:01+00:00 host1 CROND 10391 - [sdid x="⌘"] some_message`), true, + false, (&SyslogMessage{}). SetVersion(1). SetHostname("host1"). @@ -785,6 +874,7 @@ var testCases = []testCase{ { []byte(`<78>2 2016-01-15T00:04:01+00:00 host1 CROND 10391 - [sdid x="hey \\u2318 hey"] some_message`), true, + false, (&SyslogMessage{}). SetVersion(2). SetHostname("host1"). @@ -801,6 +891,7 @@ var testCases = []testCase{ { []byte(`<29>50 2016-01-15T01:00:43Z hn S - - [meta es="\\valid"] 127.0.0.1 - - 1452819643 "GET"`), true, + false, (&SyslogMessage{}). SetVersion(50). SetHostname("hn"). @@ -815,6 +906,7 @@ var testCases = []testCase{ { []byte(`<29>52 2016-01-15T01:00:43Z hn S - - [meta one="\\one" two="\\two"] 127.0.0.1 - - 1452819643 "GET"`), true, + false, (&SyslogMessage{}). SetVersion(52). SetHostname("hn"). @@ -830,6 +922,7 @@ var testCases = []testCase{ { []byte(`<29>53 2016-01-15T01:00:43Z hn S - - [meta one="\\one"][other two="\\two" double="\\a\\b"] 127.0.0.1 - - 1452819643 "GET"`), true, + false, (&SyslogMessage{}). SetVersion(53). SetTimestamp("2016-01-15T01:00:43Z"). @@ -846,6 +939,7 @@ var testCases = []testCase{ { []byte(`<29>51 2016-01-15T01:00:43Z hn S - - [meta es="\\double\\slash"] 127.0.0.1 - - 1452819643 "GET"`), true, + false, (&SyslogMessage{}). SetVersion(51). SetTimestamp("2016-01-15T01:00:43Z"). @@ -860,6 +954,7 @@ var testCases = []testCase{ { []byte(`<29>54 2016-01-15T01:00:43Z hn S - - [meta es="in \\middle of the string"] 127.0.0.1 - - 1452819643 "GET"`), true, + false, (&SyslogMessage{}). SetVersion(54). SetTimestamp("2016-01-15T01:00:43Z"). @@ -874,6 +969,7 @@ var testCases = []testCase{ { []byte(`<29>55 2016-01-15T01:00:43Z hn S - - [meta es="at the \\end"] 127.0.0.1 - - 1452819643 "GET"`), true, + false, (&SyslogMessage{}). SetVersion(55). SetTimestamp("2016-01-15T01:00:43Z"). @@ -889,6 +985,7 @@ var testCases = []testCase{ { []byte("<29>50 2016-01-15T01:00:43Z hn S - - [meta es=\"\t5Ὂg̀9!℃ᾭGa b\"] 127.0.0.1 - - 1452819643 \"GET\""), true, + false, (&SyslogMessage{}). SetVersion(50). SetTimestamp("2016-01-15T01:00:43Z"). @@ -904,6 +1001,7 @@ var testCases = []testCase{ { []byte(`<29>50 2016-01-15T01:00:43Z hn S - - [meta gr="κόσμε" es="ñ"][beta pr="₡"] 𐌼 "GET"`), true, + false, (&SyslogMessage{}). SetVersion(50). SetTimestamp("2016-01-15T01:00:43Z"). @@ -921,6 +1019,7 @@ var testCases = []testCase{ { []byte("<165>3 2003-10-11T22:14:15.003Z example.com evnts - ID27 [exampleSDID@32473 iut=\"3\" eventSource=\"Application\" eventID=\"1011\"][examplePriority@32473 class=\"high\"]"), true, + false, (&SyslogMessage{}). SetVersion(3). SetTimestamp("2003-10-11T22:14:15.003Z"). @@ -939,6 +1038,7 @@ var testCases = []testCase{ { []byte("<165>3 2003-10-11T22:14:15.003Z example.com evnts - ID27 [id1][id1]"), false, + false, nil, "duplicate structured data element id [col 66]", (&SyslogMessage{}). @@ -954,6 +1054,7 @@ var testCases = []testCase{ { []byte("<165>3 2003-10-12T22:14:15.003Z example.com evnts - ID27 [dupe e=\"1\"][id1][dupe class=\"l\"]"), false, + false, nil, "duplicate structured data element id [col 79]", (&SyslogMessage{}). @@ -970,6 +1071,7 @@ var testCases = []testCase{ { []byte(`<165>4 2003-10-11T22:14:15.003Z mymachine.it e - 1 [ex@32473 iut="3" eventSource="A"] An application event log entry...`), true, + false, (&SyslogMessage{}). SetVersion(4). SetMessage("An application event log entry..."). @@ -987,6 +1089,7 @@ var testCases = []testCase{ { []byte(`<29>1 2016-01-15T01:00:43Z some-host-name SEKRETPROGRAM prg - [origin x-service="svcname"][meta sequenceId="1"] 127.0.0.1 - - 1452819643 "GET"`), true, + false, (&SyslogMessage{}). SetVersion(1). SetMessage("127.0.0.1 - - 1452819643 \"GET\""). @@ -1004,6 +1107,7 @@ var testCases = []testCase{ { []byte(`<1>1 - - - - - [id pk=""]`), true, + false, (&SyslogMessage{}).SetVersion(1).SetParameter("id", "pk", "").SetPriority(1), "", nil, @@ -1012,6 +1116,7 @@ var testCases = []testCase{ { []byte(`<29>2 2016-01-15T01:00:44Z some-host-name SEKRETPROGRAM prg - [meta escape="\]"] some "mex"`), true, + false, (&SyslogMessage{}).SetVersion(2).SetMessage(`some "mex"`).SetTimestamp("2016-01-15T01:00:44Z").SetHostname("some-host-name").SetAppname("SEKRETPROGRAM").SetProcID("prg").SetParameter("meta", "escape", `\]`).SetPriority(29), "", nil, @@ -1019,6 +1124,7 @@ var testCases = []testCase{ { []byte(`<29>2 2016-01-15T01:00:43Z some-host-name SEKRETPROGRAM prg - [meta escape="\\"]`), true, + false, (&SyslogMessage{}).SetVersion(2).SetTimestamp("2016-01-15T01:00:43Z").SetHostname("some-host-name").SetAppname("SEKRETPROGRAM").SetProcID("prg").SetParameter("meta", "escape", `\\`).SetPriority(29), "", nil, @@ -1026,6 +1132,7 @@ var testCases = []testCase{ { []byte(`<29>2 2016-01-15T01:00:43Z some-host-name SEKRETPROGRAM prg - [meta escape="\""]`), true, + false, (&SyslogMessage{}).SetVersion(2).SetTimestamp("2016-01-15T01:00:43Z").SetHostname("some-host-name").SetAppname("SEKRETPROGRAM").SetProcID("prg").SetParameter("meta", "escape", `\"`).SetPriority(29), "", nil, @@ -1033,6 +1140,7 @@ var testCases = []testCase{ { []byte(`<29>2 2016-01-15T01:00:43Z some-host-name SEKRETPROGRAM prg - [meta escape="\]\"\\\\\]\""]`), true, + false, (&SyslogMessage{}).SetVersion(2).SetTimestamp("2016-01-15T01:00:43Z").SetHostname("some-host-name").SetAppname("SEKRETPROGRAM").SetProcID("prg").SetParameter("meta", "escape", `\]\"\\\\\]\"`).SetPriority(29), "", nil, @@ -1041,6 +1149,7 @@ var testCases = []testCase{ { []byte(`<29>3 2016-01-15T01:00:43Z hn S - - [meta escape="]"] 127.0.0.1 - - 1452819643 "GET"`), false, + false, nil, fmt.Sprintf(ErrEscape+ColumnPositionTemplate, 50), (&SyslogMessage{}).SetVersion(3).SetTimestamp("2016-01-15T01:00:43Z").SetHostname("hn").SetAppname("S").SetElementID("meta").SetPriority(29), @@ -1048,6 +1157,7 @@ var testCases = []testCase{ { []byte(`<29>5 2016-01-15T01:00:43Z hn S - - [meta escape="]q"] 127.0.0.1 - - 1452819643 "GET"`), false, + false, nil, fmt.Sprintf(ErrEscape+ColumnPositionTemplate, 50), (&SyslogMessage{}).SetVersion(5).SetTimestamp("2016-01-15T01:00:43Z").SetHostname("hn").SetAppname("S").SetElementID("meta").SetPriority(29), @@ -1055,6 +1165,7 @@ var testCases = []testCase{ { []byte(`<29>4 2016-01-15T01:00:43Z hn S - - [meta escape="p]"] 127.0.0.1 - - 1452819643 "GET"`), false, + false, nil, fmt.Sprintf(ErrEscape+ColumnPositionTemplate, 51), (&SyslogMessage{}).SetVersion(4).SetTimestamp("2016-01-15T01:00:43Z").SetHostname("hn").SetAppname("S").SetElementID("meta").SetPriority(29), @@ -1063,6 +1174,7 @@ var testCases = []testCase{ { []byte(`<29>4 2017-01-15T01:00:43Z hn S - - [meta escape="""] 127.0.0.1 - - 1452819643 "GET"`), false, + false, nil, fmt.Sprintf(ErrSdParam+ColumnPositionTemplate, 51), (&SyslogMessage{}).SetVersion(4).SetTimestamp("2017-01-15T01:00:43Z").SetHostname("hn").SetAppname("S").SetElementID("meta").SetPriority(29), @@ -1070,6 +1182,7 @@ var testCases = []testCase{ { []byte(`<29>6 2016-01-15T01:00:43Z hn S - - [meta escape="a""] 127.0.0.1 - - 1452819643 "GET"`), false, + false, nil, fmt.Sprintf(ErrSdParam+ColumnPositionTemplate, 52), (&SyslogMessage{}).SetVersion(6).SetTimestamp("2016-01-15T01:00:43Z").SetHostname("hn").SetAppname("S").SetElementID("meta").SetPriority(29), @@ -1077,6 +1190,7 @@ var testCases = []testCase{ { []byte(`<29>4 2018-01-15T01:00:43Z hn S - - [meta escape=""b"] 127.0.0.1 - - 1452819643 "GET"`), false, + false, nil, fmt.Sprintf(ErrSdParam+ColumnPositionTemplate, 51), (&SyslogMessage{}).SetVersion(4).SetTimestamp("2018-01-15T01:00:43Z").SetHostname("hn").SetAppname("S").SetElementID("meta").SetPriority(29), @@ -1085,6 +1199,7 @@ var testCases = []testCase{ { []byte(`<29>5 2019-01-15T01:00:43Z hn S - - [meta escape="\"] 127.0.0.1 - - 1452819643 "GET"`), false, + false, nil, fmt.Sprintf(ErrEscape+ColumnPositionTemplate, 52), (&SyslogMessage{}).SetVersion(5).SetTimestamp("2019-01-15T01:00:43Z").SetHostname("hn").SetAppname("S").SetElementID("meta").SetPriority(29), @@ -1092,6 +1207,7 @@ var testCases = []testCase{ { []byte(`<29>7 2019-01-15T01:00:43Z hn S - - [meta escape="a\"] 127.0.0.1 - - 1452819643 "GET"`), false, + false, nil, fmt.Sprintf(ErrEscape+ColumnPositionTemplate, 53), (&SyslogMessage{}).SetVersion(7).SetTimestamp("2016-01-15T01:00:43Z").SetHostname("hn").SetTimestamp("2019-01-15T01:00:43Z").SetAppname("S").SetElementID("meta").SetPriority(29), @@ -1099,6 +1215,7 @@ var testCases = []testCase{ { []byte(`<29>8 2016-01-15T01:00:43Z hn S - - [meta escape="\n"] 127.0.0.1 - - 1452819643 "GET"`), false, + false, nil, fmt.Sprintf(ErrEscape+ColumnPositionTemplate, 51), (&SyslogMessage{}).SetVersion(8).SetTimestamp("2016-01-15T01:00:43Z").SetHostname("hn").SetAppname("S").SetElementID("meta").SetPriority(29), @@ -1107,6 +1224,7 @@ var testCases = []testCase{ { []byte("<1>8 - - - - - - " + BOM), true, + false, (&SyslogMessage{}).SetVersion(8).SetMessage("\ufeff").SetPriority(1), "", nil, @@ -1115,6 +1233,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "κόσμε"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "κόσμε").SetPriority(1), "", nil, @@ -1123,6 +1242,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "€"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "€").SetPriority(1), "", nil, @@ -1131,6 +1251,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xc3\xb1"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "ñ").SetPriority(1), "", nil, @@ -1139,6 +1260,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xe2\x82\xa1"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "₡").SetPriority(1), "", nil, @@ -1147,6 +1269,7 @@ var testCases = []testCase{ { []byte("<3>1 - - - - - - " + BOM + " \xf0\x90\x8c\xbc"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + " 𐌼").SetPriority(3), "", nil, @@ -1155,6 +1278,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xC8\x80\x30\x30\x30"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "Ȁ000").SetPriority(1), "", nil, @@ -1163,6 +1287,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xE4\x80\x80\x30\x30\x30"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "䀀000").SetPriority(1), "", nil, @@ -1171,6 +1296,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xC4\x90\x30\x30\x30"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "Đ000").SetPriority(1), "", nil, @@ -1178,6 +1304,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\x0D\x37\x46\x46"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "\r7FF").SetPriority(1), "", nil, @@ -1186,6 +1313,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "யாமறிந்த மொழிகளிலே தமிழ்மொழி போல் இனிதாவது எங்கும் காணோம், பாமரராய் விலங்குகளாய், உலகனைத்தும் இகழ்ச்சிசொலப் பான்மை கெட்டு, நாமமது தமிழரெனக் கொண்டு இங்கு வாழ்ந்திடுதல் நன்றோ? சொல்லீர்! தேமதுரத் தமிழோசை உலகமெலாம் பரவும்வகை செய்தல் வேண்டும்."), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "யாமறிந்த மொழிகளிலே தமிழ்மொழி போல் இனிதாவது எங்கும் காணோம், பாமரராய் விலங்குகளாய், உலகனைத்தும் இகழ்ச்சிசொலப் பான்மை கெட்டு, நாமமது தமிழரெனக் கொண்டு இங்கு வாழ்ந்திடுதல் நன்றோ? சொல்லீர்! தேமதுரத் தமிழோசை உலகமெலாம் பரவும்வகை செய்தல் வேண்டும்.").SetPriority(1), "", nil, @@ -1194,6 +1322,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "Sôn bôn de magnà el véder, el me fa minga mal."), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "Sôn bôn de magnà el véder, el me fa minga mal.").SetPriority(1), "", nil, @@ -1202,6 +1331,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "Me posso magna' er vetro, e nun me fa male."), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "Me posso magna' er vetro, e nun me fa male.").SetPriority(1), "", nil, @@ -1210,6 +1340,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "⠊⠀⠉⠁⠝⠀⠑⠁⠞⠀⠛⠇⠁⠎⠎⠀⠁⠝⠙⠀⠊⠞⠀⠙⠕⠑⠎⠝⠞⠀⠓⠥⠗⠞⠀⠍⠑"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "⠊⠀⠉⠁⠝⠀⠑⠁⠞⠀⠛⠇⠁⠎⠎⠀⠁⠝⠙⠀⠊⠞⠀⠙⠕⠑⠎⠝⠞⠀⠓⠥⠗⠞⠀⠍⠑").SetPriority(1), "", nil, @@ -1218,6 +1349,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "काचं शक्नोम्यत्तुम् । नोपहिनस्ति माम् ॥"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "काचं शक्नोम्यत्तुम् । नोपहिनस्ति माम् ॥").SetPriority(1), "", nil, @@ -1226,6 +1358,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "میں کانچ کھا سکتا ہوں اور مجھے تکلیف نہیں ہوتی ۔"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "میں کانچ کھا سکتا ہوں اور مجھے تکلیف نہیں ہوتی ۔").SetPriority(1), "", nil, @@ -1234,6 +1367,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "איך קען עסן גלאָז און עס טוט מיר נישט װײ."), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "איך קען עסן גלאָז און עס טוט מיר נישט װײ.").SetPriority(1), "", nil, @@ -1242,6 +1376,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "Mogę jeść szkło, i mi nie szkodzi."), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "Mogę jeść szkło, i mi nie szkodzi.").SetPriority(1), "", nil, @@ -1250,6 +1385,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "私はガラスを食べられます。それは私を傷つけません。"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "私はガラスを食べられます。それは私を傷つけません。").SetPriority(1), "", nil, @@ -1258,6 +1394,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "أنا قادر على أكل الزجاج و هذا لا يؤلمني."), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "أنا قادر على أكل الزجاج و هذا لا يؤلمني.").SetPriority(1), "", nil, @@ -1266,6 +1403,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "абвгдеёжзийклмнопрстуфхцчшщъыьэюя"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "абвгдеёжзийклмнопрстуфхцчшщъыьэюя").SetPriority(1), "", nil, @@ -1274,6 +1412,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "԰ԱԲԳԴԵԶԷԸԹԺԻԼԽԾԿՀՁՂՃՄՅՆՇՈՉՊՋՌՍՎՏՐՑՒՓՔՕՖ՗՘ՙ՚՛՜՝՞՟աբգդեզէըթիլխծկհձղճմյնշոչպջռսվտրցւփքօֆևֈ։֊֋֌֍֎֏"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(BOM + "\u0530ԱԲԳԴԵԶԷԸԹԺԻԼԽԾԿՀՁՂՃՄՅՆՇՈՉՊՋՌՍՎՏՐՑՒՓՔՕՖ\u0557\u0558ՙ՚՛՜՝՞՟աբգդեզէըթիլխծկհձղճմյնշոչպջռսվտրցւփքօֆև\u0588։֊\u058b\u058c֍֎֏").SetPriority(1), "", nil, @@ -1283,6 +1422,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + isoLatin1String("fondü bruucht vell chääs")), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(isoLatin1String("fondü bruucht vell chääs")).SetPriority(1), "", nil, @@ -1290,6 +1430,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - not starting with" + BOM + isoLatin1String("fondü bruucht vell chääs")), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage("not starting with" + BOM + isoLatin1String("fondü bruucht vell chääs")).SetPriority(1), "", nil, @@ -1298,6 +1439,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + isoLatin1String("ö")), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(isoLatin1String("ö")).SetPriority(1), "", nil, @@ -1305,6 +1447,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + isoLatin1String("öö")), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(isoLatin1String("öö")).SetPriority(1), "", nil, @@ -1312,6 +1455,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + isoLatin1String("ööö")), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(isoLatin1String("ööö")).SetPriority(1), "", nil, @@ -1319,6 +1463,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + isoLatin1String("öööö")), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(isoLatin1String("öööö")).SetPriority(1), "", nil, @@ -1326,6 +1471,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - " + isoLatin1String("ööööö")), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage(isoLatin1String("ööööö")).SetPriority(1), "", nil, @@ -1334,6 +1480,7 @@ var testCases = []testCase{ { []byte("<1>1 - - - - - - x\x0Ay"), true, + false, (&SyslogMessage{}).SetVersion(1).SetMessage("x\ny").SetPriority(1), "", nil, @@ -1342,6 +1489,7 @@ var testCases = []testCase{ []byte(`<1>3 - - - - - - x y`), true, + false, (&SyslogMessage{}).SetVersion(3).SetMessage("x\ny").SetPriority(1), "", nil, @@ -1350,10 +1498,34 @@ y`), { []byte("<1>10 -- - - - -"), false, + false, nil, fmt.Sprintf(ErrParse+ColumnPositionTemplate, 7), (&SyslogMessage{}).SetVersion(10).SetPriority(1), }, + { + []byte("1 2003-10-11T22:14:15.003Z mymachine.example.com su - ID47 - BOM'su root' failed for lonvick on /dev/pts/8"), + true, + true, + (&SyslogMessage{}). + SetVersion(1). + SetHostname("mymachine.example.com"). + SetAppname("su"). + SetTimestamp("2003-10-11T22:14:15.003Z"). + SetMsgID("ID47"). + SetMessage("BOM'su root' failed for lonvick on /dev/pts/8"). + SetPriority(0), + "", + nil, + }, + { + []byte("1 2003-10-11T22:14:15.003Z mymachine.example.com su - ID47 - BOM'su root' failed for lonvick on /dev/pts/8"), + false, + false, + nil, + "expecting a priority value within angle brackets [col 0]", + nil, + }, } var nonCompliantMsgTestCases = []testCase{ @@ -1361,6 +1533,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xC1"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 20), (&SyslogMessage{}).SetVersion(1).SetMessage(BOM).SetPriority(1), @@ -1368,6 +1541,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>4 - - - - - - " + BOM + "\xc3\x28"), // invalid 2 octet sequence false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 4, syslogtesting.StringAddress(BOM+"\xc3")), @@ -1375,6 +1549,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<7>1 - - - - - - " + BOM + "\xa0\xa1"), // invalid sequence identifier false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 20), genMessageWithPartialMessage(7, 1, syslogtesting.StringAddress(BOM)), @@ -1382,6 +1557,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xe2\x28\xa1"), // invalid 3 octet sequence (2nd octet) false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xe2")), @@ -1389,6 +1565,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<6>1 - - - - - - " + BOM + "\xe2\x82\x28"), // invalid 3 octet sequence (3nd octet) false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 22), genMessageWithPartialMessage(6, 1, syslogtesting.StringAddress(BOM+"\xe2\x82")), @@ -1396,6 +1573,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xf0\x28\x8c\xbc"), // invalid 4 octet sequence (2nd octet) false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xf0")), @@ -1403,6 +1581,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xf0\x90\x28\xbc"), // invalid 4 octet sequence (3nd octet) false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 22), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xf0\x90")), @@ -1410,6 +1589,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xf0\x28\x8c\x28"), // invalid 4 octet sequence (4nd octet) false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xf0")), @@ -1418,6 +1598,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xfe\xfe\xff\xff"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 20), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM)), @@ -1425,6 +1606,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xfe"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 20), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM)), @@ -1432,6 +1614,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xff"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 20), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM)), @@ -1440,6 +1623,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xfc\x80\x80\x80\x80\xaf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 20), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM)), @@ -1447,6 +1631,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xf8\x80\x80\x80\xaf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 20), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM)), @@ -1454,6 +1639,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>3 - - - - - - " + BOM + "\xf0\x80\x80\xaf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 3, syslogtesting.StringAddress(BOM+"\xf0")), @@ -1461,6 +1647,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>3 - - - - - - " + BOM + "\xe0\x80\xaf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 3, syslogtesting.StringAddress(BOM+"\xe0")), @@ -1468,6 +1655,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xc0\xaf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 20), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM)), @@ -1476,6 +1664,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xfc\x83\xbf\xbf\xbf\xbf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 20), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM)), @@ -1483,6 +1672,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xf8\x87\xbf\xbf\xbf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 20), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM)), @@ -1490,6 +1680,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xf0\x8f\xbf\xbf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xf0")), @@ -1497,6 +1688,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xe0\x9f\xbf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xe0")), @@ -1504,6 +1696,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xc1\xbf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 20), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM)), @@ -1512,6 +1705,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xed\xa0\x80"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xed")), @@ -1519,6 +1713,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xed\xa0\x80"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xed")), @@ -1526,6 +1721,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xed\xad\xbf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xed")), @@ -1533,6 +1729,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xed\xae\x80"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xed")), @@ -1540,6 +1737,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<22>23 - - - - - - " + BOM + "\xed\xaf\xbf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 23), genMessageWithPartialMessage(22, 23, syslogtesting.StringAddress(BOM+"\xed")), @@ -1547,6 +1745,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xed\xb0\x80"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xed")), @@ -1554,6 +1753,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xed\xbe\x80"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xed")), @@ -1561,6 +1761,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xed\xbf\xbf"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xed")), @@ -1569,6 +1770,7 @@ var nonCompliantMsgTestCases = []testCase{ { []byte("<1>1 - - - - - - " + BOM + "\xed\xa0\x80\xed\xb0\x80"), false, + false, nil, fmt.Sprintf(ErrMsgNotCompliant+ColumnPositionTemplate, 21), genMessageWithPartialMessage(1, 1, syslogtesting.StringAddress(BOM+"\xed")), @@ -1638,6 +1840,7 @@ func genPartialMessagesTestCases(data []byte, part int) []testCase { t := testCase{ input, true, + false, mex, "", nil, @@ -1694,6 +1897,9 @@ func runTestCases(t *testing.T, tcs []testCase, machineOpts ...syslog.MachineOpt t.Run(syslogtesting.RightPad(string(tc.input), 50), func(t *testing.T) { t.Parallel() + if tc.shouldSkipPri { + machineOpts = append(machineOpts, WithAllowSkipPri()) + } message, merr := NewMachine(machineOpts...).Parse(tc.input) partial, perr := NewMachine(append(machineOpts, WithBestEffort())...).Parse(tc.input) @@ -1713,6 +1919,10 @@ func runTestCases(t *testing.T, tcs []testCase, machineOpts ...syslog.MachineOpt } assert.Equal(t, tc.value, message) + + if tc.shouldSkipPri { + machineOpts = machineOpts[:len(machineOpts)-1] + } }) } } diff --git a/rfc5424/options.go b/rfc5424/options.go index 05db009..2a5d07f 100644 --- a/rfc5424/options.go +++ b/rfc5424/options.go @@ -4,6 +4,14 @@ import ( syslog "github.com/influxdata/go-syslog/v3" ) +// WithNoPri sets the skip PRI flag to allow messages without PRI header. +func WithAllowSkipPri() syslog.MachineOption { + return func(m syslog.Machine) syslog.Machine { + m.WithAllowSkipPri() + return m + } +} + // WithBestEffort enables the best effort mode. func WithBestEffort() syslog.MachineOption { return func(m syslog.Machine) syslog.Machine { diff --git a/syslog.go b/syslog.go index e000794..7c11206 100644 --- a/syslog.go +++ b/syslog.go @@ -10,6 +10,10 @@ import ( ) // BestEfforter is an interface that wraps the HasBestEffort method. +type AllowPriSkiper interface { + WithAllowSkipPri() +} + type BestEfforter interface { WithBestEffort() HasBestEffort() bool @@ -24,6 +28,7 @@ type MaxMessager interface { type Machine interface { Parse(input []byte) (Message, error) BestEfforter + AllowPriSkiper } // MachineOption represents the type of option setters for Machine instances. From 3b9d5667fa325aa7f7e930c993f479589a0872d2 Mon Sep 17 00:00:00 2001 From: haim rubinstein Date: Sun, 7 Jan 2024 19:43:50 +0200 Subject: [PATCH 3/4] rfc 5424 --- rfc3164/machine_test.go | 66 ++++++++++++++++++++--------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/rfc3164/machine_test.go b/rfc3164/machine_test.go index 12a6147..b6be0c7 100644 --- a/rfc3164/machine_test.go +++ b/rfc3164/machine_test.go @@ -12,12 +12,12 @@ import ( // todo > add support for testing `best effort` mode type testCase struct { - input []byte - valid bool - shouldSkip bool - value syslog.Message - errorString string - partialValue syslog.Message + input []byte + valid bool + shouldSkipPri bool + value syslog.Message + errorString string + partialValue syslog.Message } var testCases = []testCase{ @@ -58,9 +58,9 @@ var testCases = []testCase{ nil, }, { - input: []byte(`<85>Jan 24 15:50:41 ip-172-31-30-110 sudo[6040]: ec2-user : TTY=pts/0 ; PWD=/var/log ; USER=root ; COMMAND=/bin/tail secure`), - valid: true, - shouldSkip: false, + input: []byte(`<85>Jan 24 15:50:41 ip-172-31-30-110 sudo[6040]: ec2-user : TTY=pts/0 ; PWD=/var/log ; USER=root ; COMMAND=/bin/tail secure`), + valid: true, + shouldSkipPri: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(85), @@ -75,9 +75,9 @@ var testCases = []testCase{ }, }, { - input: []byte(`<166>Jul 6 20:33:28 ABC-1-234567 Some message here`), - valid: true, - shouldSkip: false, + input: []byte(`<166>Jul 6 20:33:28 ABC-1-234567 Some message here`), + valid: true, + shouldSkipPri: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(166), @@ -90,9 +90,9 @@ var testCases = []testCase{ }, }, { - input: []byte(`<34>Oct 11 22:14:15 mymachine su: 'su root' failed for lonvick on /dev/pts/8`), - valid: true, - shouldSkip: false, + input: []byte(`<34>Oct 11 22:14:15 mymachine su: 'su root' failed for lonvick on /dev/pts/8`), + valid: true, + shouldSkipPri: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(34), @@ -106,9 +106,9 @@ var testCases = []testCase{ }, }, { - input: []byte(`<13>Feb 5 17:32:18 10.0.0.99 Use the BFG!`), - valid: true, - shouldSkip: false, + input: []byte(`<13>Feb 5 17:32:18 10.0.0.99 Use the BFG!`), + valid: true, + shouldSkipPri: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(13), @@ -121,9 +121,9 @@ var testCases = []testCase{ }, }, { - input: []byte(`<165>Aug 24 05:34:00 mymachine myproc[10]: %% It's time to make the do-nuts. %% Ingredients: Mix=OK, Jelly=OK # Devices: Mixer=OK, Jelly_Injector=OK, Frier=OK # Transport: Conveyer1=OK, Conveyer2=OK # %%`), - valid: true, - shouldSkip: false, + input: []byte(`<165>Aug 24 05:34:00 mymachine myproc[10]: %% It's time to make the do-nuts. %% Ingredients: Mix=OK, Jelly=OK # Devices: Mixer=OK, Jelly_Injector=OK, Frier=OK # Transport: Conveyer1=OK, Conveyer2=OK # %%`), + valid: true, + shouldSkipPri: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(165), @@ -138,9 +138,9 @@ var testCases = []testCase{ }, }, { - input: []byte(`<0>Oct 22 10:52:01 10.1.2.3 sched[0]: That's All Folks!`), - valid: true, - shouldSkip: false, + input: []byte(`<0>Oct 22 10:52:01 10.1.2.3 sched[0]: That's All Folks!`), + valid: true, + shouldSkipPri: false, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(0), @@ -155,9 +155,9 @@ var testCases = []testCase{ }, }, { - input: []byte(`Oct 22 10:52:01 10.1.2.3 sched[0]: That's All Folks!`), - valid: true, - shouldSkip: true, + input: []byte(`Oct 22 10:52:01 10.1.2.3 sched[0]: That's All Folks!`), + valid: true, + shouldSkipPri: true, value: &SyslogMessage{ Base: syslog.Base{ Priority: syslogtesting.Uint8Address(0), @@ -172,11 +172,11 @@ var testCases = []testCase{ }, }, { - input: []byte(`Oct 22 10:52:01 10.1.2.3 sched[0]: That's All Folks!`), - valid: false, - shouldSkip: false, - value: nil, - errorString: "expecting a priority value within angle brackets [col 0]", + input: []byte(`Oct 22 10:52:01 10.1.2.3 sched[0]: That's All Folks!`), + valid: false, + shouldSkipPri: false, + value: nil, + errorString: "expecting a priority value within angle brackets [col 0]", }, // todo > other test cases pleaaaase } @@ -189,7 +189,7 @@ func TestMachineParse(t *testing.T) { var merr, perr error var message, partial syslog.Message - if tc.shouldSkip { + if tc.shouldSkipPri { message, merr = NewMachine(WithAllowSkipPri()).Parse(tc.input) partial, perr = NewMachine(WithBestEffort(), WithAllowSkipPri()).Parse(tc.input) } else { From 538a56577cbddc7cd84b4fc252aa6bdd406758bb Mon Sep 17 00:00:00 2001 From: haim rubinstein Date: Thu, 18 Jan 2024 14:50:38 +0200 Subject: [PATCH 4/4] fix tests --- rfc3164/machine.go | 14095 ++++++++++++++++-------- rfc5424/machine.go | 22587 ++++++++++++++++++++++++++------------ rfc5424/machine_test.go | 23 +- 3 files changed, 25403 insertions(+), 11302 deletions(-) diff --git a/rfc3164/machine.go b/rfc3164/machine.go index 6dd3d29..a2287ca 100644 --- a/rfc3164/machine.go +++ b/rfc3164/machine.go @@ -1,3 +1,5 @@ + +//line rfc3164/machine.go.rl:1 package rfc3164 import ( @@ -9,34 +11,46 @@ import ( ) var ( - errPrival = "expecting a priority value in the range 1-191 or equal to 0 [col %d]" - errPri = "expecting a priority value within angle brackets [col %d]" - errTimestamp = "expecting a Stamp timestamp [col %d]" - errRFC3339 = "expecting a Stamp or a RFC3339 timestamp [col %d]" - errHostname = "expecting an hostname (from 1 to max 255 US-ASCII characters) [col %d]" - errTag = "expecting an alphanumeric tag (max 32 characters) [col %d]" - errContentStart = "expecting a content part starting with a non-alphanumeric character [col %d]" - errContent = "expecting a content part composed by visible characters only [col %d]" - errParse = "parsing error [col %d]" + errPrival = "expecting a priority value in the range 1-191 or equal to 0 [col %d]" + errPri = "expecting a priority value within angle brackets [col %d]" + errTimestamp = "expecting a Stamp timestamp [col %d]" + errRFC3339 = "expecting a Stamp or a RFC3339 timestamp [col %d]" + errHostname = "expecting an hostname (from 1 to max 255 US-ASCII characters) [col %d]" + errTag = "expecting an alphanumeric tag (max 32 characters) [col %d]" + errContentStart = "expecting a content part starting with a non-alphanumeric character [col %d]" + errContent = "expecting a content part composed by visible characters only [col %d]" + errParse = "parsing error [col %d]" ) + +//line rfc3164/machine.go.rl:174 + + + +//line rfc3164/machine.go:31 const start int = 1 -const firstFinal int = 333 +const first_final int = 659 + +const en_fail int = 699 +const en_myfsm int = 333 +const en_myfsm_STATE_NO_PRI int = 333 +const en_main int = 1 -const enFail int = 373 -const enMain int = 1 + +//line rfc3164/machine.go.rl:177 type machine struct { - data []byte - cs int - p, pe, eof int - pb int - err error - bestEffort bool - yyyy int - rfc3339 bool - loc *time.Location - timezone *time.Location + data []byte + cs int + p, pe, eof int + pb int + err error + bestEffort bool + yyyy int + rfc3339 bool + allowSkipPri bool + loc *time.Location + timezone *time.Location } // NewMachine creates a new FSM able to parse RFC3164 syslog messages. @@ -47,9 +61,25 @@ func NewMachine(options ...syslog.MachineOption) syslog.Machine { opt(m) } + +//line rfc3164/machine.go.rl:201 + +//line rfc3164/machine.go.rl:202 + +//line rfc3164/machine.go.rl:203 + +//line rfc3164/machine.go.rl:204 + +//line rfc3164/machine.go.rl:205 + return m } +// WithNoPri sets the skip PRI flag to allow messages without PRI header. +func (m *machine) WithAllowSkipPri() { + m.allowSkipPri = true +} + // WithBestEffort enables best effort mode. func (m *machine) WithBestEffort() { m.bestEffort = true @@ -103,884 +133,1631 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { m.err = nil output := &syslogMessage{} + +//line rfc3164/machine.go:138 { - m.cs = start + m.cs = start } +//line rfc3164/machine.go.rl:268 + +//line rfc3164/machine.go:145 { - var _widec int16 - if (m.p) == (m.pe) { - goto _testEof - } - switch m.cs { - case 1: - goto stCase1 - case 0: - goto stCase0 - case 2: - goto stCase2 - case 3: - goto stCase3 - case 4: - goto stCase4 - case 5: - goto stCase5 - case 6: - goto stCase6 - case 7: - goto stCase7 - case 8: - goto stCase8 - case 9: - goto stCase9 - case 10: - goto stCase10 - case 11: - goto stCase11 - case 12: - goto stCase12 - case 13: - goto stCase13 - case 14: - goto stCase14 - case 15: - goto stCase15 - case 16: - goto stCase16 - case 17: - goto stCase17 - case 18: - goto stCase18 - case 19: - goto stCase19 - case 20: - goto stCase20 - case 21: - goto stCase21 - case 22: - goto stCase22 - case 333: - goto stCase333 - case 334: - goto stCase334 - case 335: - goto stCase335 - case 336: - goto stCase336 - case 337: - goto stCase337 - case 338: - goto stCase338 - case 339: - goto stCase339 - case 340: - goto stCase340 - case 341: - goto stCase341 - case 342: - goto stCase342 - case 343: - goto stCase343 - case 344: - goto stCase344 - case 345: - goto stCase345 - case 346: - goto stCase346 - case 347: - goto stCase347 - case 348: - goto stCase348 - case 349: - goto stCase349 - case 350: - goto stCase350 - case 351: - goto stCase351 - case 352: - goto stCase352 - case 353: - goto stCase353 - case 354: - goto stCase354 - case 355: - goto stCase355 - case 356: - goto stCase356 - case 357: - goto stCase357 - case 358: - goto stCase358 - case 359: - goto stCase359 - case 360: - goto stCase360 - case 361: - goto stCase361 - case 362: - goto stCase362 - case 363: - goto stCase363 - case 364: - goto stCase364 - case 365: - goto stCase365 - case 366: - goto stCase366 - case 367: - goto stCase367 - case 368: - goto stCase368 - case 23: - goto stCase23 - case 24: - goto stCase24 - case 25: - goto stCase25 - case 26: - goto stCase26 - case 369: - goto stCase369 - case 370: - goto stCase370 - case 371: - goto stCase371 - case 372: - goto stCase372 - case 27: - goto stCase27 - case 28: - goto stCase28 - case 29: - goto stCase29 - case 30: - goto stCase30 - case 31: - goto stCase31 - case 32: - goto stCase32 - case 33: - goto stCase33 - case 34: - goto stCase34 - case 35: - goto stCase35 - case 36: - goto stCase36 - case 37: - goto stCase37 - case 38: - goto stCase38 - case 39: - goto stCase39 - case 40: - goto stCase40 - case 41: - goto stCase41 - case 42: - goto stCase42 - case 43: - goto stCase43 - case 44: - goto stCase44 - case 45: - goto stCase45 - case 46: - goto stCase46 - case 47: - goto stCase47 - case 48: - goto stCase48 - case 49: - goto stCase49 - case 50: - goto stCase50 - case 51: - goto stCase51 - case 52: - goto stCase52 - case 53: - goto stCase53 - case 54: - goto stCase54 - case 55: - goto stCase55 - case 56: - goto stCase56 - case 57: - goto stCase57 - case 58: - goto stCase58 - case 59: - goto stCase59 - case 60: - goto stCase60 - case 61: - goto stCase61 - case 62: - goto stCase62 - case 63: - goto stCase63 - case 64: - goto stCase64 - case 65: - goto stCase65 - case 66: - goto stCase66 - case 67: - goto stCase67 - case 68: - goto stCase68 - case 69: - goto stCase69 - case 70: - goto stCase70 - case 71: - goto stCase71 - case 72: - goto stCase72 - case 73: - goto stCase73 - case 74: - goto stCase74 - case 75: - goto stCase75 - case 76: - goto stCase76 - case 77: - goto stCase77 - case 78: - goto stCase78 - case 79: - goto stCase79 - case 80: - goto stCase80 - case 81: - goto stCase81 - case 82: - goto stCase82 - case 83: - goto stCase83 - case 84: - goto stCase84 - case 85: - goto stCase85 - case 86: - goto stCase86 - case 87: - goto stCase87 - case 88: - goto stCase88 - case 89: - goto stCase89 - case 90: - goto stCase90 - case 91: - goto stCase91 - case 92: - goto stCase92 - case 93: - goto stCase93 - case 94: - goto stCase94 - case 95: - goto stCase95 - case 96: - goto stCase96 - case 97: - goto stCase97 - case 98: - goto stCase98 - case 99: - goto stCase99 - case 100: - goto stCase100 - case 101: - goto stCase101 - case 102: - goto stCase102 - case 103: - goto stCase103 - case 104: - goto stCase104 - case 105: - goto stCase105 - case 106: - goto stCase106 - case 107: - goto stCase107 - case 108: - goto stCase108 - case 109: - goto stCase109 - case 110: - goto stCase110 - case 111: - goto stCase111 - case 112: - goto stCase112 - case 113: - goto stCase113 - case 114: - goto stCase114 - case 115: - goto stCase115 - case 116: - goto stCase116 - case 117: - goto stCase117 - case 118: - goto stCase118 - case 119: - goto stCase119 - case 120: - goto stCase120 - case 121: - goto stCase121 - case 122: - goto stCase122 - case 123: - goto stCase123 - case 124: - goto stCase124 - case 125: - goto stCase125 - case 126: - goto stCase126 - case 127: - goto stCase127 - case 128: - goto stCase128 - case 129: - goto stCase129 - case 130: - goto stCase130 - case 131: - goto stCase131 - case 132: - goto stCase132 - case 133: - goto stCase133 - case 134: - goto stCase134 - case 135: - goto stCase135 - case 136: - goto stCase136 - case 137: - goto stCase137 - case 138: - goto stCase138 - case 139: - goto stCase139 - case 140: - goto stCase140 - case 141: - goto stCase141 - case 142: - goto stCase142 - case 143: - goto stCase143 - case 144: - goto stCase144 - case 145: - goto stCase145 - case 146: - goto stCase146 - case 147: - goto stCase147 - case 148: - goto stCase148 - case 149: - goto stCase149 - case 150: - goto stCase150 - case 151: - goto stCase151 - case 152: - goto stCase152 - case 153: - goto stCase153 - case 154: - goto stCase154 - case 155: - goto stCase155 - case 156: - goto stCase156 - case 157: - goto stCase157 - case 158: - goto stCase158 - case 159: - goto stCase159 - case 160: - goto stCase160 - case 161: - goto stCase161 - case 162: - goto stCase162 - case 163: - goto stCase163 - case 164: - goto stCase164 - case 165: - goto stCase165 - case 166: - goto stCase166 - case 167: - goto stCase167 - case 168: - goto stCase168 - case 169: - goto stCase169 - case 170: - goto stCase170 - case 171: - goto stCase171 - case 172: - goto stCase172 - case 173: - goto stCase173 - case 174: - goto stCase174 - case 175: - goto stCase175 - case 176: - goto stCase176 - case 177: - goto stCase177 - case 178: - goto stCase178 - case 179: - goto stCase179 - case 180: - goto stCase180 - case 181: - goto stCase181 - case 182: - goto stCase182 - case 183: - goto stCase183 - case 184: - goto stCase184 - case 185: - goto stCase185 - case 186: - goto stCase186 - case 187: - goto stCase187 - case 188: - goto stCase188 - case 189: - goto stCase189 - case 190: - goto stCase190 - case 191: - goto stCase191 - case 192: - goto stCase192 - case 193: - goto stCase193 - case 194: - goto stCase194 - case 195: - goto stCase195 - case 196: - goto stCase196 - case 197: - goto stCase197 - case 198: - goto stCase198 - case 199: - goto stCase199 - case 200: - goto stCase200 - case 201: - goto stCase201 - case 202: - goto stCase202 - case 203: - goto stCase203 - case 204: - goto stCase204 - case 205: - goto stCase205 - case 206: - goto stCase206 - case 207: - goto stCase207 - case 208: - goto stCase208 - case 209: - goto stCase209 - case 210: - goto stCase210 - case 211: - goto stCase211 - case 212: - goto stCase212 - case 213: - goto stCase213 - case 214: - goto stCase214 - case 215: - goto stCase215 - case 216: - goto stCase216 - case 217: - goto stCase217 - case 218: - goto stCase218 - case 219: - goto stCase219 - case 220: - goto stCase220 - case 221: - goto stCase221 - case 222: - goto stCase222 - case 223: - goto stCase223 - case 224: - goto stCase224 - case 225: - goto stCase225 - case 226: - goto stCase226 - case 227: - goto stCase227 - case 228: - goto stCase228 - case 229: - goto stCase229 - case 230: - goto stCase230 - case 231: - goto stCase231 - case 232: - goto stCase232 - case 233: - goto stCase233 - case 234: - goto stCase234 - case 235: - goto stCase235 - case 236: - goto stCase236 - case 237: - goto stCase237 - case 238: - goto stCase238 - case 239: - goto stCase239 - case 240: - goto stCase240 - case 241: - goto stCase241 - case 242: - goto stCase242 - case 243: - goto stCase243 - case 244: - goto stCase244 - case 245: - goto stCase245 - case 246: - goto stCase246 - case 247: - goto stCase247 - case 248: - goto stCase248 - case 249: - goto stCase249 - case 250: - goto stCase250 - case 251: - goto stCase251 - case 252: - goto stCase252 - case 253: - goto stCase253 - case 254: - goto stCase254 - case 255: - goto stCase255 - case 256: - goto stCase256 - case 257: - goto stCase257 - case 258: - goto stCase258 - case 259: - goto stCase259 - case 260: - goto stCase260 - case 261: - goto stCase261 - case 262: - goto stCase262 - case 263: - goto stCase263 - case 264: - goto stCase264 - case 265: - goto stCase265 - case 266: - goto stCase266 - case 267: - goto stCase267 - case 268: - goto stCase268 - case 269: - goto stCase269 - case 270: - goto stCase270 - case 271: - goto stCase271 - case 272: - goto stCase272 - case 273: - goto stCase273 - case 274: - goto stCase274 - case 275: - goto stCase275 - case 276: - goto stCase276 - case 277: - goto stCase277 - case 278: - goto stCase278 - case 279: - goto stCase279 - case 280: - goto stCase280 - case 281: - goto stCase281 - case 282: - goto stCase282 - case 283: - goto stCase283 - case 284: - goto stCase284 - case 285: - goto stCase285 - case 286: - goto stCase286 - case 287: - goto stCase287 - case 288: - goto stCase288 - case 289: - goto stCase289 - case 290: - goto stCase290 - case 291: - goto stCase291 - case 292: - goto stCase292 - case 293: - goto stCase293 - case 294: - goto stCase294 - case 295: - goto stCase295 - case 296: - goto stCase296 - case 297: - goto stCase297 - case 298: - goto stCase298 - case 299: - goto stCase299 - case 300: - goto stCase300 - case 301: - goto stCase301 - case 302: - goto stCase302 - case 303: - goto stCase303 - case 304: - goto stCase304 - case 305: - goto stCase305 - case 306: - goto stCase306 - case 307: - goto stCase307 - case 308: - goto stCase308 - case 309: - goto stCase309 - case 310: - goto stCase310 - case 311: - goto stCase311 - case 312: - goto stCase312 - case 313: - goto stCase313 - case 314: - goto stCase314 - case 315: - goto stCase315 - case 316: - goto stCase316 - case 317: - goto stCase317 - case 318: - goto stCase318 - case 319: - goto stCase319 - case 320: - goto stCase320 - case 321: - goto stCase321 - case 322: - goto stCase322 - case 323: - goto stCase323 - case 324: - goto stCase324 - case 325: - goto stCase325 - case 326: - goto stCase326 - case 327: - goto stCase327 - case 328: - goto stCase328 - case 329: - goto stCase329 - case 330: - goto stCase330 - case 331: - goto stCase331 - case 332: - goto stCase332 - case 373: - goto stCase373 - } - goto stOut - stCase1: - if (m.data)[(m.p)] == 60 { + var _widec int16 + if ( m.p) == ( m.pe) { + goto _test_eof + } + switch m.cs { + case 1: + goto st_case_1 + case 0: + goto st_case_0 + case 2: + goto st_case_2 + case 3: + goto st_case_3 + case 4: + goto st_case_4 + case 5: + goto st_case_5 + case 6: + goto st_case_6 + case 7: + goto st_case_7 + case 8: + goto st_case_8 + case 9: + goto st_case_9 + case 10: + goto st_case_10 + case 11: + goto st_case_11 + case 12: + goto st_case_12 + case 13: + goto st_case_13 + case 14: + goto st_case_14 + case 15: + goto st_case_15 + case 16: + goto st_case_16 + case 17: + goto st_case_17 + case 18: + goto st_case_18 + case 19: + goto st_case_19 + case 20: + goto st_case_20 + case 21: + goto st_case_21 + case 22: + goto st_case_22 + case 659: + goto st_case_659 + case 660: + goto st_case_660 + case 661: + goto st_case_661 + case 662: + goto st_case_662 + case 663: + goto st_case_663 + case 664: + goto st_case_664 + case 665: + goto st_case_665 + case 666: + goto st_case_666 + case 667: + goto st_case_667 + case 668: + goto st_case_668 + case 669: + goto st_case_669 + case 670: + goto st_case_670 + case 671: + goto st_case_671 + case 672: + goto st_case_672 + case 673: + goto st_case_673 + case 674: + goto st_case_674 + case 675: + goto st_case_675 + case 676: + goto st_case_676 + case 677: + goto st_case_677 + case 678: + goto st_case_678 + case 679: + goto st_case_679 + case 680: + goto st_case_680 + case 681: + goto st_case_681 + case 682: + goto st_case_682 + case 683: + goto st_case_683 + case 684: + goto st_case_684 + case 685: + goto st_case_685 + case 686: + goto st_case_686 + case 687: + goto st_case_687 + case 688: + goto st_case_688 + case 689: + goto st_case_689 + case 690: + goto st_case_690 + case 691: + goto st_case_691 + case 692: + goto st_case_692 + case 693: + goto st_case_693 + case 694: + goto st_case_694 + case 23: + goto st_case_23 + case 24: + goto st_case_24 + case 25: + goto st_case_25 + case 26: + goto st_case_26 + case 695: + goto st_case_695 + case 696: + goto st_case_696 + case 697: + goto st_case_697 + case 698: + goto st_case_698 + case 27: + goto st_case_27 + case 28: + goto st_case_28 + case 29: + goto st_case_29 + case 30: + goto st_case_30 + case 31: + goto st_case_31 + case 32: + goto st_case_32 + case 33: + goto st_case_33 + case 34: + goto st_case_34 + case 35: + goto st_case_35 + case 36: + goto st_case_36 + case 37: + goto st_case_37 + case 38: + goto st_case_38 + case 39: + goto st_case_39 + case 40: + goto st_case_40 + case 41: + goto st_case_41 + case 42: + goto st_case_42 + case 43: + goto st_case_43 + case 44: + goto st_case_44 + case 45: + goto st_case_45 + case 46: + goto st_case_46 + case 47: + goto st_case_47 + case 48: + goto st_case_48 + case 49: + goto st_case_49 + case 50: + goto st_case_50 + case 51: + goto st_case_51 + case 52: + goto st_case_52 + case 53: + goto st_case_53 + case 54: + goto st_case_54 + case 55: + goto st_case_55 + case 56: + goto st_case_56 + case 57: + goto st_case_57 + case 58: + goto st_case_58 + case 59: + goto st_case_59 + case 60: + goto st_case_60 + case 61: + goto st_case_61 + case 62: + goto st_case_62 + case 63: + goto st_case_63 + case 64: + goto st_case_64 + case 65: + goto st_case_65 + case 66: + goto st_case_66 + case 67: + goto st_case_67 + case 68: + goto st_case_68 + case 69: + goto st_case_69 + case 70: + goto st_case_70 + case 71: + goto st_case_71 + case 72: + goto st_case_72 + case 73: + goto st_case_73 + case 74: + goto st_case_74 + case 75: + goto st_case_75 + case 76: + goto st_case_76 + case 77: + goto st_case_77 + case 78: + goto st_case_78 + case 79: + goto st_case_79 + case 80: + goto st_case_80 + case 81: + goto st_case_81 + case 82: + goto st_case_82 + case 83: + goto st_case_83 + case 84: + goto st_case_84 + case 85: + goto st_case_85 + case 86: + goto st_case_86 + case 87: + goto st_case_87 + case 88: + goto st_case_88 + case 89: + goto st_case_89 + case 90: + goto st_case_90 + case 91: + goto st_case_91 + case 92: + goto st_case_92 + case 93: + goto st_case_93 + case 94: + goto st_case_94 + case 95: + goto st_case_95 + case 96: + goto st_case_96 + case 97: + goto st_case_97 + case 98: + goto st_case_98 + case 99: + goto st_case_99 + case 100: + goto st_case_100 + case 101: + goto st_case_101 + case 102: + goto st_case_102 + case 103: + goto st_case_103 + case 104: + goto st_case_104 + case 105: + goto st_case_105 + case 106: + goto st_case_106 + case 107: + goto st_case_107 + case 108: + goto st_case_108 + case 109: + goto st_case_109 + case 110: + goto st_case_110 + case 111: + goto st_case_111 + case 112: + goto st_case_112 + case 113: + goto st_case_113 + case 114: + goto st_case_114 + case 115: + goto st_case_115 + case 116: + goto st_case_116 + case 117: + goto st_case_117 + case 118: + goto st_case_118 + case 119: + goto st_case_119 + case 120: + goto st_case_120 + case 121: + goto st_case_121 + case 122: + goto st_case_122 + case 123: + goto st_case_123 + case 124: + goto st_case_124 + case 125: + goto st_case_125 + case 126: + goto st_case_126 + case 127: + goto st_case_127 + case 128: + goto st_case_128 + case 129: + goto st_case_129 + case 130: + goto st_case_130 + case 131: + goto st_case_131 + case 132: + goto st_case_132 + case 133: + goto st_case_133 + case 134: + goto st_case_134 + case 135: + goto st_case_135 + case 136: + goto st_case_136 + case 137: + goto st_case_137 + case 138: + goto st_case_138 + case 139: + goto st_case_139 + case 140: + goto st_case_140 + case 141: + goto st_case_141 + case 142: + goto st_case_142 + case 143: + goto st_case_143 + case 144: + goto st_case_144 + case 145: + goto st_case_145 + case 146: + goto st_case_146 + case 147: + goto st_case_147 + case 148: + goto st_case_148 + case 149: + goto st_case_149 + case 150: + goto st_case_150 + case 151: + goto st_case_151 + case 152: + goto st_case_152 + case 153: + goto st_case_153 + case 154: + goto st_case_154 + case 155: + goto st_case_155 + case 156: + goto st_case_156 + case 157: + goto st_case_157 + case 158: + goto st_case_158 + case 159: + goto st_case_159 + case 160: + goto st_case_160 + case 161: + goto st_case_161 + case 162: + goto st_case_162 + case 163: + goto st_case_163 + case 164: + goto st_case_164 + case 165: + goto st_case_165 + case 166: + goto st_case_166 + case 167: + goto st_case_167 + case 168: + goto st_case_168 + case 169: + goto st_case_169 + case 170: + goto st_case_170 + case 171: + goto st_case_171 + case 172: + goto st_case_172 + case 173: + goto st_case_173 + case 174: + goto st_case_174 + case 175: + goto st_case_175 + case 176: + goto st_case_176 + case 177: + goto st_case_177 + case 178: + goto st_case_178 + case 179: + goto st_case_179 + case 180: + goto st_case_180 + case 181: + goto st_case_181 + case 182: + goto st_case_182 + case 183: + goto st_case_183 + case 184: + goto st_case_184 + case 185: + goto st_case_185 + case 186: + goto st_case_186 + case 187: + goto st_case_187 + case 188: + goto st_case_188 + case 189: + goto st_case_189 + case 190: + goto st_case_190 + case 191: + goto st_case_191 + case 192: + goto st_case_192 + case 193: + goto st_case_193 + case 194: + goto st_case_194 + case 195: + goto st_case_195 + case 196: + goto st_case_196 + case 197: + goto st_case_197 + case 198: + goto st_case_198 + case 199: + goto st_case_199 + case 200: + goto st_case_200 + case 201: + goto st_case_201 + case 202: + goto st_case_202 + case 203: + goto st_case_203 + case 204: + goto st_case_204 + case 205: + goto st_case_205 + case 206: + goto st_case_206 + case 207: + goto st_case_207 + case 208: + goto st_case_208 + case 209: + goto st_case_209 + case 210: + goto st_case_210 + case 211: + goto st_case_211 + case 212: + goto st_case_212 + case 213: + goto st_case_213 + case 214: + goto st_case_214 + case 215: + goto st_case_215 + case 216: + goto st_case_216 + case 217: + goto st_case_217 + case 218: + goto st_case_218 + case 219: + goto st_case_219 + case 220: + goto st_case_220 + case 221: + goto st_case_221 + case 222: + goto st_case_222 + case 223: + goto st_case_223 + case 224: + goto st_case_224 + case 225: + goto st_case_225 + case 226: + goto st_case_226 + case 227: + goto st_case_227 + case 228: + goto st_case_228 + case 229: + goto st_case_229 + case 230: + goto st_case_230 + case 231: + goto st_case_231 + case 232: + goto st_case_232 + case 233: + goto st_case_233 + case 234: + goto st_case_234 + case 235: + goto st_case_235 + case 236: + goto st_case_236 + case 237: + goto st_case_237 + case 238: + goto st_case_238 + case 239: + goto st_case_239 + case 240: + goto st_case_240 + case 241: + goto st_case_241 + case 242: + goto st_case_242 + case 243: + goto st_case_243 + case 244: + goto st_case_244 + case 245: + goto st_case_245 + case 246: + goto st_case_246 + case 247: + goto st_case_247 + case 248: + goto st_case_248 + case 249: + goto st_case_249 + case 250: + goto st_case_250 + case 251: + goto st_case_251 + case 252: + goto st_case_252 + case 253: + goto st_case_253 + case 254: + goto st_case_254 + case 255: + goto st_case_255 + case 256: + goto st_case_256 + case 257: + goto st_case_257 + case 258: + goto st_case_258 + case 259: + goto st_case_259 + case 260: + goto st_case_260 + case 261: + goto st_case_261 + case 262: + goto st_case_262 + case 263: + goto st_case_263 + case 264: + goto st_case_264 + case 265: + goto st_case_265 + case 266: + goto st_case_266 + case 267: + goto st_case_267 + case 268: + goto st_case_268 + case 269: + goto st_case_269 + case 270: + goto st_case_270 + case 271: + goto st_case_271 + case 272: + goto st_case_272 + case 273: + goto st_case_273 + case 274: + goto st_case_274 + case 275: + goto st_case_275 + case 276: + goto st_case_276 + case 277: + goto st_case_277 + case 278: + goto st_case_278 + case 279: + goto st_case_279 + case 280: + goto st_case_280 + case 281: + goto st_case_281 + case 282: + goto st_case_282 + case 283: + goto st_case_283 + case 284: + goto st_case_284 + case 285: + goto st_case_285 + case 286: + goto st_case_286 + case 287: + goto st_case_287 + case 288: + goto st_case_288 + case 289: + goto st_case_289 + case 290: + goto st_case_290 + case 291: + goto st_case_291 + case 292: + goto st_case_292 + case 293: + goto st_case_293 + case 294: + goto st_case_294 + case 295: + goto st_case_295 + case 296: + goto st_case_296 + case 297: + goto st_case_297 + case 298: + goto st_case_298 + case 299: + goto st_case_299 + case 300: + goto st_case_300 + case 301: + goto st_case_301 + case 302: + goto st_case_302 + case 303: + goto st_case_303 + case 304: + goto st_case_304 + case 305: + goto st_case_305 + case 306: + goto st_case_306 + case 307: + goto st_case_307 + case 308: + goto st_case_308 + case 309: + goto st_case_309 + case 310: + goto st_case_310 + case 311: + goto st_case_311 + case 312: + goto st_case_312 + case 313: + goto st_case_313 + case 314: + goto st_case_314 + case 315: + goto st_case_315 + case 316: + goto st_case_316 + case 317: + goto st_case_317 + case 318: + goto st_case_318 + case 319: + goto st_case_319 + case 320: + goto st_case_320 + case 321: + goto st_case_321 + case 322: + goto st_case_322 + case 323: + goto st_case_323 + case 324: + goto st_case_324 + case 325: + goto st_case_325 + case 326: + goto st_case_326 + case 327: + goto st_case_327 + case 328: + goto st_case_328 + case 329: + goto st_case_329 + case 330: + goto st_case_330 + case 331: + goto st_case_331 + case 332: + goto st_case_332 + case 333: + goto st_case_333 + case 334: + goto st_case_334 + case 335: + goto st_case_335 + case 336: + goto st_case_336 + case 337: + goto st_case_337 + case 338: + goto st_case_338 + case 339: + goto st_case_339 + case 340: + goto st_case_340 + case 341: + goto st_case_341 + case 342: + goto st_case_342 + case 343: + goto st_case_343 + case 344: + goto st_case_344 + case 345: + goto st_case_345 + case 346: + goto st_case_346 + case 347: + goto st_case_347 + case 348: + goto st_case_348 + case 349: + goto st_case_349 + case 350: + goto st_case_350 + case 351: + goto st_case_351 + case 700: + goto st_case_700 + case 701: + goto st_case_701 + case 702: + goto st_case_702 + case 703: + goto st_case_703 + case 704: + goto st_case_704 + case 705: + goto st_case_705 + case 706: + goto st_case_706 + case 707: + goto st_case_707 + case 708: + goto st_case_708 + case 709: + goto st_case_709 + case 710: + goto st_case_710 + case 711: + goto st_case_711 + case 712: + goto st_case_712 + case 713: + goto st_case_713 + case 714: + goto st_case_714 + case 715: + goto st_case_715 + case 716: + goto st_case_716 + case 717: + goto st_case_717 + case 718: + goto st_case_718 + case 719: + goto st_case_719 + case 720: + goto st_case_720 + case 721: + goto st_case_721 + case 722: + goto st_case_722 + case 723: + goto st_case_723 + case 724: + goto st_case_724 + case 725: + goto st_case_725 + case 726: + goto st_case_726 + case 727: + goto st_case_727 + case 728: + goto st_case_728 + case 729: + goto st_case_729 + case 730: + goto st_case_730 + case 731: + goto st_case_731 + case 732: + goto st_case_732 + case 733: + goto st_case_733 + case 734: + goto st_case_734 + case 735: + goto st_case_735 + case 352: + goto st_case_352 + case 353: + goto st_case_353 + case 354: + goto st_case_354 + case 355: + goto st_case_355 + case 736: + goto st_case_736 + case 737: + goto st_case_737 + case 738: + goto st_case_738 + case 739: + goto st_case_739 + case 356: + goto st_case_356 + case 357: + goto st_case_357 + case 358: + goto st_case_358 + case 359: + goto st_case_359 + case 360: + goto st_case_360 + case 361: + goto st_case_361 + case 362: + goto st_case_362 + case 363: + goto st_case_363 + case 364: + goto st_case_364 + case 365: + goto st_case_365 + case 366: + goto st_case_366 + case 367: + goto st_case_367 + case 368: + goto st_case_368 + case 369: + goto st_case_369 + case 370: + goto st_case_370 + case 371: + goto st_case_371 + case 372: + goto st_case_372 + case 373: + goto st_case_373 + case 374: + goto st_case_374 + case 375: + goto st_case_375 + case 376: + goto st_case_376 + case 377: + goto st_case_377 + case 378: + goto st_case_378 + case 379: + goto st_case_379 + case 380: + goto st_case_380 + case 381: + goto st_case_381 + case 382: + goto st_case_382 + case 383: + goto st_case_383 + case 384: + goto st_case_384 + case 385: + goto st_case_385 + case 386: + goto st_case_386 + case 387: + goto st_case_387 + case 388: + goto st_case_388 + case 389: + goto st_case_389 + case 390: + goto st_case_390 + case 391: + goto st_case_391 + case 392: + goto st_case_392 + case 393: + goto st_case_393 + case 394: + goto st_case_394 + case 395: + goto st_case_395 + case 396: + goto st_case_396 + case 397: + goto st_case_397 + case 398: + goto st_case_398 + case 399: + goto st_case_399 + case 400: + goto st_case_400 + case 401: + goto st_case_401 + case 402: + goto st_case_402 + case 403: + goto st_case_403 + case 404: + goto st_case_404 + case 405: + goto st_case_405 + case 406: + goto st_case_406 + case 407: + goto st_case_407 + case 408: + goto st_case_408 + case 409: + goto st_case_409 + case 410: + goto st_case_410 + case 411: + goto st_case_411 + case 412: + goto st_case_412 + case 413: + goto st_case_413 + case 414: + goto st_case_414 + case 415: + goto st_case_415 + case 416: + goto st_case_416 + case 417: + goto st_case_417 + case 418: + goto st_case_418 + case 419: + goto st_case_419 + case 420: + goto st_case_420 + case 421: + goto st_case_421 + case 422: + goto st_case_422 + case 423: + goto st_case_423 + case 424: + goto st_case_424 + case 425: + goto st_case_425 + case 426: + goto st_case_426 + case 427: + goto st_case_427 + case 428: + goto st_case_428 + case 429: + goto st_case_429 + case 430: + goto st_case_430 + case 431: + goto st_case_431 + case 432: + goto st_case_432 + case 433: + goto st_case_433 + case 434: + goto st_case_434 + case 435: + goto st_case_435 + case 436: + goto st_case_436 + case 437: + goto st_case_437 + case 438: + goto st_case_438 + case 439: + goto st_case_439 + case 440: + goto st_case_440 + case 441: + goto st_case_441 + case 442: + goto st_case_442 + case 443: + goto st_case_443 + case 444: + goto st_case_444 + case 445: + goto st_case_445 + case 446: + goto st_case_446 + case 447: + goto st_case_447 + case 448: + goto st_case_448 + case 449: + goto st_case_449 + case 450: + goto st_case_450 + case 451: + goto st_case_451 + case 452: + goto st_case_452 + case 453: + goto st_case_453 + case 454: + goto st_case_454 + case 455: + goto st_case_455 + case 456: + goto st_case_456 + case 457: + goto st_case_457 + case 458: + goto st_case_458 + case 459: + goto st_case_459 + case 460: + goto st_case_460 + case 461: + goto st_case_461 + case 462: + goto st_case_462 + case 463: + goto st_case_463 + case 464: + goto st_case_464 + case 465: + goto st_case_465 + case 466: + goto st_case_466 + case 467: + goto st_case_467 + case 468: + goto st_case_468 + case 469: + goto st_case_469 + case 470: + goto st_case_470 + case 471: + goto st_case_471 + case 472: + goto st_case_472 + case 473: + goto st_case_473 + case 474: + goto st_case_474 + case 475: + goto st_case_475 + case 476: + goto st_case_476 + case 477: + goto st_case_477 + case 478: + goto st_case_478 + case 479: + goto st_case_479 + case 480: + goto st_case_480 + case 481: + goto st_case_481 + case 482: + goto st_case_482 + case 483: + goto st_case_483 + case 484: + goto st_case_484 + case 485: + goto st_case_485 + case 486: + goto st_case_486 + case 487: + goto st_case_487 + case 488: + goto st_case_488 + case 489: + goto st_case_489 + case 490: + goto st_case_490 + case 491: + goto st_case_491 + case 492: + goto st_case_492 + case 493: + goto st_case_493 + case 494: + goto st_case_494 + case 495: + goto st_case_495 + case 496: + goto st_case_496 + case 497: + goto st_case_497 + case 498: + goto st_case_498 + case 499: + goto st_case_499 + case 500: + goto st_case_500 + case 501: + goto st_case_501 + case 502: + goto st_case_502 + case 503: + goto st_case_503 + case 504: + goto st_case_504 + case 505: + goto st_case_505 + case 506: + goto st_case_506 + case 507: + goto st_case_507 + case 508: + goto st_case_508 + case 509: + goto st_case_509 + case 510: + goto st_case_510 + case 511: + goto st_case_511 + case 512: + goto st_case_512 + case 513: + goto st_case_513 + case 514: + goto st_case_514 + case 515: + goto st_case_515 + case 516: + goto st_case_516 + case 517: + goto st_case_517 + case 518: + goto st_case_518 + case 519: + goto st_case_519 + case 520: + goto st_case_520 + case 521: + goto st_case_521 + case 522: + goto st_case_522 + case 523: + goto st_case_523 + case 524: + goto st_case_524 + case 525: + goto st_case_525 + case 526: + goto st_case_526 + case 527: + goto st_case_527 + case 528: + goto st_case_528 + case 529: + goto st_case_529 + case 530: + goto st_case_530 + case 531: + goto st_case_531 + case 532: + goto st_case_532 + case 533: + goto st_case_533 + case 534: + goto st_case_534 + case 535: + goto st_case_535 + case 536: + goto st_case_536 + case 537: + goto st_case_537 + case 538: + goto st_case_538 + case 539: + goto st_case_539 + case 540: + goto st_case_540 + case 541: + goto st_case_541 + case 542: + goto st_case_542 + case 543: + goto st_case_543 + case 544: + goto st_case_544 + case 545: + goto st_case_545 + case 546: + goto st_case_546 + case 547: + goto st_case_547 + case 548: + goto st_case_548 + case 549: + goto st_case_549 + case 550: + goto st_case_550 + case 551: + goto st_case_551 + case 552: + goto st_case_552 + case 553: + goto st_case_553 + case 554: + goto st_case_554 + case 555: + goto st_case_555 + case 556: + goto st_case_556 + case 557: + goto st_case_557 + case 558: + goto st_case_558 + case 559: + goto st_case_559 + case 560: + goto st_case_560 + case 561: + goto st_case_561 + case 562: + goto st_case_562 + case 563: + goto st_case_563 + case 564: + goto st_case_564 + case 565: + goto st_case_565 + case 566: + goto st_case_566 + case 567: + goto st_case_567 + case 568: + goto st_case_568 + case 569: + goto st_case_569 + case 570: + goto st_case_570 + case 571: + goto st_case_571 + case 572: + goto st_case_572 + case 573: + goto st_case_573 + case 574: + goto st_case_574 + case 575: + goto st_case_575 + case 576: + goto st_case_576 + case 577: + goto st_case_577 + case 578: + goto st_case_578 + case 579: + goto st_case_579 + case 580: + goto st_case_580 + case 581: + goto st_case_581 + case 582: + goto st_case_582 + case 583: + goto st_case_583 + case 584: + goto st_case_584 + case 585: + goto st_case_585 + case 586: + goto st_case_586 + case 587: + goto st_case_587 + case 588: + goto st_case_588 + case 589: + goto st_case_589 + case 590: + goto st_case_590 + case 591: + goto st_case_591 + case 592: + goto st_case_592 + case 593: + goto st_case_593 + case 594: + goto st_case_594 + case 595: + goto st_case_595 + case 596: + goto st_case_596 + case 597: + goto st_case_597 + case 598: + goto st_case_598 + case 599: + goto st_case_599 + case 600: + goto st_case_600 + case 601: + goto st_case_601 + case 602: + goto st_case_602 + case 603: + goto st_case_603 + case 604: + goto st_case_604 + case 605: + goto st_case_605 + case 606: + goto st_case_606 + case 607: + goto st_case_607 + case 608: + goto st_case_608 + case 609: + goto st_case_609 + case 610: + goto st_case_610 + case 611: + goto st_case_611 + case 612: + goto st_case_612 + case 613: + goto st_case_613 + case 614: + goto st_case_614 + case 615: + goto st_case_615 + case 616: + goto st_case_616 + case 617: + goto st_case_617 + case 618: + goto st_case_618 + case 619: + goto st_case_619 + case 620: + goto st_case_620 + case 621: + goto st_case_621 + case 622: + goto st_case_622 + case 623: + goto st_case_623 + case 624: + goto st_case_624 + case 625: + goto st_case_625 + case 626: + goto st_case_626 + case 627: + goto st_case_627 + case 628: + goto st_case_628 + case 629: + goto st_case_629 + case 630: + goto st_case_630 + case 631: + goto st_case_631 + case 632: + goto st_case_632 + case 633: + goto st_case_633 + case 634: + goto st_case_634 + case 635: + goto st_case_635 + case 636: + goto st_case_636 + case 637: + goto st_case_637 + case 638: + goto st_case_638 + case 639: + goto st_case_639 + case 640: + goto st_case_640 + case 641: + goto st_case_641 + case 642: + goto st_case_642 + case 643: + goto st_case_643 + case 644: + goto st_case_644 + case 645: + goto st_case_645 + case 646: + goto st_case_646 + case 647: + goto st_case_647 + case 648: + goto st_case_648 + case 649: + goto st_case_649 + case 650: + goto st_case_650 + case 651: + goto st_case_651 + case 652: + goto st_case_652 + case 653: + goto st_case_653 + case 654: + goto st_case_654 + case 655: + goto st_case_655 + case 656: + goto st_case_656 + case 657: + goto st_case_657 + case 658: + goto st_case_658 + case 699: + goto st_case_699 + } + goto st_out + st_case_1: + if ( m.data)[( m.p)] == 60 { goto st2 } goto tr0 - tr0: +tr0: +//line rfc3164/machine.go.rl:90 + if(!m.allowSkipPri) { m.err = fmt.Errorf(errPri, m.p) - (m.p)-- + ( m.p)-- - { - goto st373 - } + {goto st699 } + } else { + ( m.p)-- - goto st0 - tr2: + {goto st333 } + } - m.err = fmt.Errorf(errPrival, m.p) - (m.p)-- + goto st0 +tr2: +//line rfc3164/machine.go.rl:84 - { - goto st373 - } + m.err = fmt.Errorf(errPrival, m.p) + ( m.p)-- + + {goto st699 } + +//line rfc3164/machine.go.rl:90 + if(!m.allowSkipPri) { m.err = fmt.Errorf(errPri, m.p) - (m.p)-- + ( m.p)-- - { - goto st373 - } + {goto st699 } + } else { + ( m.p)-- - goto st0 - tr7: + {goto st333 } + } - m.err = fmt.Errorf(errTimestamp, m.p) - (m.p)-- + goto st0 +tr7: +//line rfc3164/machine.go.rl:101 - { - goto st373 - } + m.err = fmt.Errorf(errTimestamp, m.p) + ( m.p)-- - goto st0 - tr37: + {goto st699 } - m.err = fmt.Errorf(errHostname, m.p) - (m.p)-- + goto st0 +tr37: +//line rfc3164/machine.go.rl:113 - { - goto st373 - } + m.err = fmt.Errorf(errHostname, m.p) + ( m.p)-- - goto st0 - tr41: + {goto st699 } - m.err = fmt.Errorf(errTag, m.p) - (m.p)-- + goto st0 +tr41: +//line rfc3164/machine.go.rl:119 - { - goto st373 - } + m.err = fmt.Errorf(errTag, m.p) + ( m.p)-- - goto st0 - tr333: + {goto st699 } - m.err = fmt.Errorf(errRFC3339, m.p) - (m.p)-- + goto st0 +tr333: +//line rfc3164/machine.go.rl:107 - { - goto st373 - } + m.err = fmt.Errorf(errRFC3339, m.p) + ( m.p)-- - goto st0 - stCase0: + {goto st699 } + + goto st0 +//line rfc3164/machine.go:1712 +st_case_0: st0: - m.cs = 0 + m.cs = 0 goto _out st2: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof2 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof2 } - stCase2: - switch (m.data)[(m.p)] { + st_case_2: + switch ( m.data)[( m.p)] { case 48: goto tr3 case 49: goto tr4 } - if 50 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 50 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto tr5 } goto tr2 - tr3: +tr3: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st3 + goto st3 st3: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof3 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof3 } - stCase3: + st_case_3: +//line rfc3164/machine.go.rl:35 - output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - output.prioritySet = true + output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + output.prioritySet = true - if (m.data)[(m.p)] == 62 { +//line rfc3164/machine.go:1748 + if ( m.data)[( m.p)] == 62 { goto st4 } goto tr2 st4: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof4 - } - stCase4: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof4 + } + st_case_4: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -1006,17 +1783,19 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr16 } goto tr7 - tr8: +tr8: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st5 + goto st5 st5: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof5 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof5 } - stCase5: - switch (m.data)[(m.p)] { + st_case_5: +//line rfc3164/machine.go:1798 + switch ( m.data)[( m.p)] { case 112: goto st6 case 117: @@ -1024,1031 +1803,1046 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr7 st6: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof6 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof6 } - stCase6: - if (m.data)[(m.p)] == 114 { + st_case_6: + if ( m.data)[( m.p)] == 114 { goto st7 } goto tr7 st7: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof7 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof7 } - stCase7: - if (m.data)[(m.p)] == 32 { + st_case_7: + if ( m.data)[( m.p)] == 32 { goto st8 } goto tr7 st8: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof8 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof8 } - stCase8: - switch (m.data)[(m.p)] { + st_case_8: + switch ( m.data)[( m.p)] { case 32: goto st9 case 51: goto st283 } - if 49 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 50 { + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { goto st282 } goto tr7 st9: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof9 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof9 } - stCase9: - if 49 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_9: + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st10 } goto tr7 st10: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof10 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof10 } - stCase10: - if (m.data)[(m.p)] == 32 { + st_case_10: + if ( m.data)[( m.p)] == 32 { goto st11 } goto tr7 st11: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof11 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof11 } - stCase11: - if (m.data)[(m.p)] == 50 { + st_case_11: + if ( m.data)[( m.p)] == 50 { goto st281 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 49 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { goto st12 } goto tr7 st12: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof12 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof12 } - stCase12: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_12: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st13 } goto tr7 st13: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof13 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof13 } - stCase13: - if (m.data)[(m.p)] == 58 { + st_case_13: + if ( m.data)[( m.p)] == 58 { goto st14 } goto tr7 st14: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof14 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof14 } - stCase14: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 53 { + st_case_14: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { goto st15 } goto tr7 st15: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof15 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof15 } - stCase15: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_15: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st16 } goto tr7 st16: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof16 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof16 } - stCase16: - if (m.data)[(m.p)] == 58 { + st_case_16: + if ( m.data)[( m.p)] == 58 { goto st17 } goto tr7 st17: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof17 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof17 } - stCase17: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 53 { + st_case_17: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { goto st18 } goto tr7 st18: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof18 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof18 } - stCase18: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_18: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st19 } goto tr7 st19: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof19 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof19 } - stCase19: - if (m.data)[(m.p)] == 32 { + st_case_19: + if ( m.data)[( m.p)] == 32 { goto tr35 } goto st0 - tr35: +tr35: +//line rfc3164/machine.go.rl:40 - if t, e := time.Parse(time.Stamp, string(m.text())); e != nil { - m.err = fmt.Errorf("%s [col %d]", e, m.p) - (m.p)-- + if t, e := time.Parse(time.Stamp, string(m.text())); e != nil { + m.err = fmt.Errorf("%s [col %d]", e, m.p) + ( m.p)-- - { - goto st373 - } - } else { - if m.timezone != nil { - t, _ = time.ParseInLocation(time.Stamp, string(m.text()), m.timezone) - } - output.timestamp = t.AddDate(m.yyyy, 0, 0) - if m.loc != nil { - output.timestamp = output.timestamp.In(m.loc) - } - output.timestampSet = true + {goto st699 } + } else { + if m.timezone != nil { + t, _ = time.ParseInLocation(time.Stamp, string(m.text()), m.timezone) + } + output.timestamp = t.AddDate(m.yyyy, 0, 0) + if m.loc != nil { + output.timestamp = output.timestamp.In(m.loc) } + output.timestampSet = true + } - goto st20 - tr341: + goto st20 +tr341: +//line rfc3164/machine.go.rl:57 - if t, e := time.Parse(time.RFC3339, string(m.text())); e != nil { - m.err = fmt.Errorf("%s [col %d]", e, m.p) - (m.p)-- + if t, e := time.Parse(time.RFC3339, string(m.text())); e != nil { + m.err = fmt.Errorf("%s [col %d]", e, m.p) + ( m.p)-- - { - goto st373 - } - } else { - output.timestamp = t - output.timestampSet = true - } + {goto st699 } + } else { + output.timestamp = t + output.timestampSet = true + } - goto st20 + goto st20 st20: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof20 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof20 } - stCase20: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + st_case_20: +//line rfc3164/machine.go:1980 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto tr38 } goto tr37 - tr38: +tr38: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st21 + goto st21 st21: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof21 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof21 } - stCase21: - if (m.data)[(m.p)] == 32 { + st_case_21: +//line rfc3164/machine.go:1996 + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st27 } goto tr37 - tr39: +tr39: +//line rfc3164/machine.go.rl:68 - output.hostname = string(m.text()) + output.hostname = string(m.text()) - goto st22 + goto st22 st22: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof22 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof22 } - stCase22: - if (m.data)[(m.p)] == 127 { + st_case_22: +//line rfc3164/machine.go:2015 + if ( m.data)[( m.p)] == 127 { goto tr41 } switch { - case (m.data)[(m.p)] < 33: - if (m.data)[(m.p)] <= 31 { + case ( m.data)[( m.p)] < 33: + if ( m.data)[( m.p)] <= 31 { goto tr41 } - case (m.data)[(m.p)] > 57: + case ( m.data)[( m.p)] > 57: switch { - case (m.data)[(m.p)] > 90: - if 92 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 90: + if 92 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto tr43 } - case (m.data)[(m.p)] >= 59: + case ( m.data)[( m.p)] >= 59: goto tr43 } default: goto tr43 } goto tr42 - tr42: +tr42: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st333 - st333: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof333 + goto st659 + st659: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof659 } - stCase333: - if (m.data)[(m.p)] == 127 { + st_case_659: +//line rfc3164/machine.go:2048 + if ( m.data)[( m.p)] == 127 { goto st0 } - if (m.data)[(m.p)] <= 31 { + if ( m.data)[( m.p)] <= 31 { goto st0 } - goto st333 - tr43: + goto st659 +tr43: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st334 - st334: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof334 + goto st660 + st660: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof660 } - stCase334: - switch (m.data)[(m.p)] { + st_case_660: +//line rfc3164/machine.go:2067 + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st335 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st661 } default: goto st0 } - goto st333 - st335: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof335 + goto st659 + st661: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof661 } - stCase335: - switch (m.data)[(m.p)] { + st_case_661: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st336 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st662 } default: goto st0 } - goto st333 - st336: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof336 + goto st659 + st662: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof662 } - stCase336: - switch (m.data)[(m.p)] { + st_case_662: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st337 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st663 } default: goto st0 } - goto st333 - st337: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof337 + goto st659 + st663: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof663 } - stCase337: - switch (m.data)[(m.p)] { + st_case_663: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st338 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st664 } default: goto st0 } - goto st333 - st338: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof338 + goto st659 + st664: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof664 } - stCase338: - switch (m.data)[(m.p)] { + st_case_664: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st339 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st665 } default: goto st0 } - goto st333 - st339: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof339 + goto st659 + st665: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof665 } - stCase339: - switch (m.data)[(m.p)] { + st_case_665: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st340 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st666 } default: goto st0 } - goto st333 - st340: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof340 + goto st659 + st666: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof666 } - stCase340: - switch (m.data)[(m.p)] { + st_case_666: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st341 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st667 } default: goto st0 } - goto st333 - st341: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof341 + goto st659 + st667: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof667 } - stCase341: - switch (m.data)[(m.p)] { + st_case_667: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st342 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st668 } default: goto st0 } - goto st333 - st342: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof342 + goto st659 + st668: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof668 } - stCase342: - switch (m.data)[(m.p)] { + st_case_668: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st343 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st669 } default: goto st0 } - goto st333 - st343: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof343 + goto st659 + st669: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof669 } - stCase343: - switch (m.data)[(m.p)] { + st_case_669: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st344 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st670 } default: goto st0 } - goto st333 - st344: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof344 + goto st659 + st670: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof670 } - stCase344: - switch (m.data)[(m.p)] { + st_case_670: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st345 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st671 } default: goto st0 } - goto st333 - st345: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof345 + goto st659 + st671: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof671 } - stCase345: - switch (m.data)[(m.p)] { + st_case_671: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st346 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st672 } default: goto st0 } - goto st333 - st346: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof346 + goto st659 + st672: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof672 } - stCase346: - switch (m.data)[(m.p)] { + st_case_672: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st347 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st673 } default: goto st0 } - goto st333 - st347: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof347 + goto st659 + st673: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof673 } - stCase347: - switch (m.data)[(m.p)] { + st_case_673: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st348 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st674 } default: goto st0 } - goto st333 - st348: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof348 + goto st659 + st674: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof674 } - stCase348: - switch (m.data)[(m.p)] { + st_case_674: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st349 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st675 } default: goto st0 } - goto st333 - st349: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof349 + goto st659 + st675: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof675 } - stCase349: - switch (m.data)[(m.p)] { + st_case_675: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st350 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st676 } default: goto st0 } - goto st333 - st350: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof350 + goto st659 + st676: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof676 } - stCase350: - switch (m.data)[(m.p)] { + st_case_676: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st351 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st677 } default: goto st0 } - goto st333 - st351: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof351 + goto st659 + st677: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof677 } - stCase351: - switch (m.data)[(m.p)] { + st_case_677: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st352 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st678 } default: goto st0 } - goto st333 - st352: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof352 + goto st659 + st678: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof678 } - stCase352: - switch (m.data)[(m.p)] { + st_case_678: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st353 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st679 } default: goto st0 } - goto st333 - st353: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof353 + goto st659 + st679: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof679 } - stCase353: - switch (m.data)[(m.p)] { + st_case_679: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st354 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st680 } default: goto st0 } - goto st333 - st354: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof354 + goto st659 + st680: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof680 } - stCase354: - switch (m.data)[(m.p)] { + st_case_680: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st355 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st681 } default: goto st0 } - goto st333 - st355: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof355 + goto st659 + st681: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof681 } - stCase355: - switch (m.data)[(m.p)] { + st_case_681: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st356 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st682 } default: goto st0 } - goto st333 - st356: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof356 + goto st659 + st682: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof682 } - stCase356: - switch (m.data)[(m.p)] { + st_case_682: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st357 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st683 } default: goto st0 } - goto st333 - st357: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof357 + goto st659 + st683: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof683 } - stCase357: - switch (m.data)[(m.p)] { + st_case_683: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st358 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st684 } default: goto st0 } - goto st333 - st358: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof358 + goto st659 + st684: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof684 } - stCase358: - switch (m.data)[(m.p)] { + st_case_684: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st359 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st685 } default: goto st0 } - goto st333 - st359: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof359 + goto st659 + st685: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof685 } - stCase359: - switch (m.data)[(m.p)] { + st_case_685: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st360 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st686 } default: goto st0 } - goto st333 - st360: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof360 + goto st659 + st686: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof686 } - stCase360: - switch (m.data)[(m.p)] { + st_case_686: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st361 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st687 } default: goto st0 } - goto st333 - st361: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof361 + goto st659 + st687: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof687 } - stCase361: - switch (m.data)[(m.p)] { + st_case_687: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st362 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st688 } default: goto st0 } - goto st333 - st362: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof362 + goto st659 + st688: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof688 } - stCase362: - switch (m.data)[(m.p)] { + st_case_688: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st363 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st689 } default: goto st0 } - goto st333 - st363: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof363 + goto st659 + st689: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof689 } - stCase363: - switch (m.data)[(m.p)] { + st_case_689: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st364 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st690 } default: goto st0 } - goto st333 - st364: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof364 + goto st659 + st690: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof690 } - stCase364: - switch (m.data)[(m.p)] { + st_case_690: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } switch { - case (m.data)[(m.p)] > 31: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { - goto st365 + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st691 } default: goto st0 } - goto st333 - st365: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof365 + goto st659 + st691: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof691 } - stCase365: - switch (m.data)[(m.p)] { + st_case_691: + switch ( m.data)[( m.p)] { case 58: - goto tr347 + goto tr677 case 91: - goto tr348 + goto tr678 case 127: goto st0 } - if (m.data)[(m.p)] <= 31 { + if ( m.data)[( m.p)] <= 31 { goto st0 } - goto st333 - tr347: + goto st659 +tr677: +//line rfc3164/machine.go.rl:72 - output.tag = string(m.text()) + output.tag = string(m.text()) - goto st366 - st366: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof366 + goto st692 + st692: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof692 } - stCase366: - switch (m.data)[(m.p)] { + st_case_692: +//line rfc3164/machine.go:2773 + switch ( m.data)[( m.p)] { case 32: - goto st367 + goto st693 case 127: goto st0 } - if (m.data)[(m.p)] <= 31 { + if ( m.data)[( m.p)] <= 31 { goto st0 } - goto st333 - st367: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof367 + goto st659 + st693: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof693 } - stCase367: - if (m.data)[(m.p)] == 127 { + st_case_693: + if ( m.data)[( m.p)] == 127 { goto st0 } - if (m.data)[(m.p)] <= 31 { + if ( m.data)[( m.p)] <= 31 { goto st0 } goto tr42 - tr348: +tr678: +//line rfc3164/machine.go.rl:72 - output.tag = string(m.text()) + output.tag = string(m.text()) - goto st368 - st368: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof368 + goto st694 + st694: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof694 } - stCase368: - switch (m.data)[(m.p)] { + st_case_694: +//line rfc3164/machine.go:2807 + switch ( m.data)[( m.p)] { case 93: - goto tr381 + goto tr711 case 127: - goto tr380 + goto tr710 } - if (m.data)[(m.p)] <= 31 { - goto tr380 + if ( m.data)[( m.p)] <= 31 { + goto tr710 } goto tr48 - tr380: +tr710: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st23 + goto st23 st23: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof23 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof23 } - stCase23: - if (m.data)[(m.p)] == 93 { + st_case_23: +//line rfc3164/machine.go:2829 + if ( m.data)[( m.p)] == 93 { goto tr45 } goto st23 - tr45: +tr45: +//line rfc3164/machine.go.rl:76 - output.content = string(m.text()) + output.content = string(m.text()) - goto st24 + goto st24 st24: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof24 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof24 } - stCase24: - switch (m.data)[(m.p)] { + st_case_24: +//line rfc3164/machine.go:2845 + switch ( m.data)[( m.p)] { case 58: goto st25 case 93: @@ -2056,11 +2850,11 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st23 st25: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof25 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof25 } - stCase25: - switch (m.data)[(m.p)] { + st_case_25: + switch ( m.data)[( m.p)] { case 32: goto st26 case 93: @@ -2068,3246 +2862,3262 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st23 st26: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof26 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof26 } - stCase26: - switch (m.data)[(m.p)] { + st_case_26: + switch ( m.data)[( m.p)] { case 93: goto tr49 case 127: goto st23 } - if (m.data)[(m.p)] <= 31 { + if ( m.data)[( m.p)] <= 31 { goto st23 } goto tr48 - tr48: +tr48: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st369 - st369: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof369 + goto st695 + st695: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof695 } - stCase369: - switch (m.data)[(m.p)] { + st_case_695: +//line rfc3164/machine.go:2891 + switch ( m.data)[( m.p)] { case 93: - goto tr383 + goto tr713 case 127: goto st23 } - if (m.data)[(m.p)] <= 31 { + if ( m.data)[( m.p)] <= 31 { goto st23 } - goto st369 - tr383: + goto st695 +tr713: +//line rfc3164/machine.go.rl:76 - output.content = string(m.text()) + output.content = string(m.text()) - goto st370 - tr49: + goto st696 +tr49: +//line rfc3164/machine.go.rl:76 - output.content = string(m.text()) + output.content = string(m.text()) - m.pb = m.p +//line rfc3164/machine.go.rl:31 - goto st370 - tr381: + m.pb = m.p - m.pb = m.p + goto st696 +tr711: +//line rfc3164/machine.go.rl:31 - output.content = string(m.text()) + m.pb = m.p - goto st370 - st370: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof370 +//line rfc3164/machine.go.rl:76 + + output.content = string(m.text()) + + goto st696 + st696: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof696 } - stCase370: - switch (m.data)[(m.p)] { + st_case_696: +//line rfc3164/machine.go:2933 + switch ( m.data)[( m.p)] { case 58: - goto st371 + goto st697 case 93: - goto tr383 + goto tr713 case 127: goto st23 } - if (m.data)[(m.p)] <= 31 { + if ( m.data)[( m.p)] <= 31 { goto st23 } - goto st369 - st371: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof371 + goto st695 + st697: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof697 } - stCase371: - switch (m.data)[(m.p)] { + st_case_697: + switch ( m.data)[( m.p)] { case 32: - goto st372 + goto st698 case 93: - goto tr383 + goto tr713 case 127: goto st23 } - if (m.data)[(m.p)] <= 31 { + if ( m.data)[( m.p)] <= 31 { goto st23 } - goto st369 - st372: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof372 + goto st695 + st698: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof698 } - stCase372: - switch (m.data)[(m.p)] { + st_case_698: + switch ( m.data)[( m.p)] { case 93: goto tr49 case 127: goto st23 } - if (m.data)[(m.p)] <= 31 { + if ( m.data)[( m.p)] <= 31 { goto st23 } goto tr48 st27: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof27 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof27 } - stCase27: - if (m.data)[(m.p)] == 32 { + st_case_27: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st28 } goto tr37 st28: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof28 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof28 } - stCase28: - if (m.data)[(m.p)] == 32 { + st_case_28: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st29 } goto tr37 st29: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof29 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof29 } - stCase29: - if (m.data)[(m.p)] == 32 { + st_case_29: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st30 } goto tr37 st30: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof30 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof30 } - stCase30: - if (m.data)[(m.p)] == 32 { + st_case_30: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st31 } goto tr37 st31: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof31 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof31 } - stCase31: - if (m.data)[(m.p)] == 32 { + st_case_31: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st32 } goto tr37 st32: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof32 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof32 } - stCase32: - if (m.data)[(m.p)] == 32 { + st_case_32: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st33 } goto tr37 st33: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof33 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof33 } - stCase33: - if (m.data)[(m.p)] == 32 { + st_case_33: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st34 } goto tr37 st34: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof34 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof34 } - stCase34: - if (m.data)[(m.p)] == 32 { + st_case_34: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st35 } goto tr37 st35: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof35 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof35 } - stCase35: - if (m.data)[(m.p)] == 32 { + st_case_35: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st36 } goto tr37 st36: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof36 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof36 } - stCase36: - if (m.data)[(m.p)] == 32 { + st_case_36: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st37 } goto tr37 st37: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof37 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof37 } - stCase37: - if (m.data)[(m.p)] == 32 { + st_case_37: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st38 } goto tr37 st38: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof38 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof38 } - stCase38: - if (m.data)[(m.p)] == 32 { + st_case_38: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st39 } goto tr37 st39: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof39 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof39 } - stCase39: - if (m.data)[(m.p)] == 32 { + st_case_39: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st40 } goto tr37 st40: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof40 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof40 } - stCase40: - if (m.data)[(m.p)] == 32 { + st_case_40: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st41 } goto tr37 st41: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof41 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof41 } - stCase41: - if (m.data)[(m.p)] == 32 { + st_case_41: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st42 } goto tr37 st42: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof42 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof42 } - stCase42: - if (m.data)[(m.p)] == 32 { + st_case_42: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st43 } goto tr37 st43: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof43 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof43 } - stCase43: - if (m.data)[(m.p)] == 32 { + st_case_43: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st44 } goto tr37 st44: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof44 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof44 } - stCase44: - if (m.data)[(m.p)] == 32 { + st_case_44: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st45 } goto tr37 st45: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof45 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof45 } - stCase45: - if (m.data)[(m.p)] == 32 { + st_case_45: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st46 } goto tr37 st46: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof46 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof46 } - stCase46: - if (m.data)[(m.p)] == 32 { + st_case_46: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st47 } goto tr37 st47: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof47 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof47 } - stCase47: - if (m.data)[(m.p)] == 32 { + st_case_47: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st48 } goto tr37 st48: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof48 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof48 } - stCase48: - if (m.data)[(m.p)] == 32 { + st_case_48: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st49 } goto tr37 st49: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof49 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof49 } - stCase49: - if (m.data)[(m.p)] == 32 { + st_case_49: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st50 } goto tr37 st50: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof50 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof50 } - stCase50: - if (m.data)[(m.p)] == 32 { + st_case_50: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st51 } goto tr37 st51: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof51 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof51 } - stCase51: - if (m.data)[(m.p)] == 32 { + st_case_51: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st52 } goto tr37 st52: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof52 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof52 } - stCase52: - if (m.data)[(m.p)] == 32 { + st_case_52: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st53 } goto tr37 st53: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof53 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof53 } - stCase53: - if (m.data)[(m.p)] == 32 { + st_case_53: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st54 } goto tr37 st54: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof54 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof54 } - stCase54: - if (m.data)[(m.p)] == 32 { + st_case_54: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st55 } goto tr37 st55: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof55 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof55 } - stCase55: - if (m.data)[(m.p)] == 32 { + st_case_55: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st56 } goto tr37 st56: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof56 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof56 } - stCase56: - if (m.data)[(m.p)] == 32 { + st_case_56: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st57 } goto tr37 st57: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof57 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof57 } - stCase57: - if (m.data)[(m.p)] == 32 { + st_case_57: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st58 } goto tr37 st58: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof58 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof58 } - stCase58: - if (m.data)[(m.p)] == 32 { + st_case_58: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st59 } goto tr37 st59: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof59 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof59 } - stCase59: - if (m.data)[(m.p)] == 32 { + st_case_59: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st60 } goto tr37 st60: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof60 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof60 } - stCase60: - if (m.data)[(m.p)] == 32 { + st_case_60: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st61 } goto tr37 st61: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof61 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof61 } - stCase61: - if (m.data)[(m.p)] == 32 { + st_case_61: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st62 } goto tr37 st62: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof62 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof62 } - stCase62: - if (m.data)[(m.p)] == 32 { + st_case_62: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st63 } goto tr37 st63: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof63 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof63 } - stCase63: - if (m.data)[(m.p)] == 32 { + st_case_63: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st64 } goto tr37 st64: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof64 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof64 } - stCase64: - if (m.data)[(m.p)] == 32 { + st_case_64: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st65 } goto tr37 st65: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof65 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof65 } - stCase65: - if (m.data)[(m.p)] == 32 { + st_case_65: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st66 } goto tr37 st66: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof66 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof66 } - stCase66: - if (m.data)[(m.p)] == 32 { + st_case_66: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st67 } goto tr37 st67: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof67 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof67 } - stCase67: - if (m.data)[(m.p)] == 32 { + st_case_67: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st68 } goto tr37 st68: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof68 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof68 } - stCase68: - if (m.data)[(m.p)] == 32 { + st_case_68: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st69 } goto tr37 st69: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof69 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof69 } - stCase69: - if (m.data)[(m.p)] == 32 { + st_case_69: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st70 } goto tr37 st70: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof70 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof70 } - stCase70: - if (m.data)[(m.p)] == 32 { + st_case_70: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st71 } goto tr37 st71: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof71 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof71 } - stCase71: - if (m.data)[(m.p)] == 32 { + st_case_71: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st72 } goto tr37 st72: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof72 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof72 } - stCase72: - if (m.data)[(m.p)] == 32 { + st_case_72: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st73 } goto tr37 st73: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof73 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof73 } - stCase73: - if (m.data)[(m.p)] == 32 { + st_case_73: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st74 } goto tr37 st74: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof74 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof74 } - stCase74: - if (m.data)[(m.p)] == 32 { + st_case_74: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st75 } goto tr37 st75: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof75 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof75 } - stCase75: - if (m.data)[(m.p)] == 32 { + st_case_75: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st76 } goto tr37 st76: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof76 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof76 } - stCase76: - if (m.data)[(m.p)] == 32 { + st_case_76: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st77 } goto tr37 st77: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof77 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof77 } - stCase77: - if (m.data)[(m.p)] == 32 { + st_case_77: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st78 } goto tr37 st78: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof78 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof78 } - stCase78: - if (m.data)[(m.p)] == 32 { + st_case_78: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st79 } goto tr37 st79: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof79 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof79 } - stCase79: - if (m.data)[(m.p)] == 32 { + st_case_79: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st80 } goto tr37 st80: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof80 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof80 } - stCase80: - if (m.data)[(m.p)] == 32 { + st_case_80: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st81 } goto tr37 st81: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof81 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof81 } - stCase81: - if (m.data)[(m.p)] == 32 { + st_case_81: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st82 } goto tr37 st82: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof82 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof82 } - stCase82: - if (m.data)[(m.p)] == 32 { + st_case_82: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st83 } goto tr37 st83: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof83 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof83 } - stCase83: - if (m.data)[(m.p)] == 32 { + st_case_83: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st84 } goto tr37 st84: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof84 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof84 } - stCase84: - if (m.data)[(m.p)] == 32 { + st_case_84: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st85 } goto tr37 st85: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof85 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof85 } - stCase85: - if (m.data)[(m.p)] == 32 { + st_case_85: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st86 } goto tr37 st86: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof86 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof86 } - stCase86: - if (m.data)[(m.p)] == 32 { + st_case_86: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st87 } goto tr37 st87: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof87 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof87 } - stCase87: - if (m.data)[(m.p)] == 32 { + st_case_87: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st88 } goto tr37 st88: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof88 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof88 } - stCase88: - if (m.data)[(m.p)] == 32 { + st_case_88: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st89 } goto tr37 st89: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof89 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof89 } - stCase89: - if (m.data)[(m.p)] == 32 { + st_case_89: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st90 } goto tr37 st90: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof90 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof90 } - stCase90: - if (m.data)[(m.p)] == 32 { + st_case_90: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st91 } goto tr37 st91: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof91 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof91 } - stCase91: - if (m.data)[(m.p)] == 32 { + st_case_91: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st92 } goto tr37 st92: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof92 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof92 } - stCase92: - if (m.data)[(m.p)] == 32 { + st_case_92: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st93 } goto tr37 st93: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof93 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof93 } - stCase93: - if (m.data)[(m.p)] == 32 { + st_case_93: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st94 } goto tr37 st94: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof94 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof94 } - stCase94: - if (m.data)[(m.p)] == 32 { + st_case_94: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st95 } goto tr37 st95: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof95 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof95 } - stCase95: - if (m.data)[(m.p)] == 32 { + st_case_95: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st96 } goto tr37 st96: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof96 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof96 } - stCase96: - if (m.data)[(m.p)] == 32 { + st_case_96: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st97 } goto tr37 st97: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof97 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof97 } - stCase97: - if (m.data)[(m.p)] == 32 { + st_case_97: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st98 } goto tr37 st98: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof98 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof98 } - stCase98: - if (m.data)[(m.p)] == 32 { + st_case_98: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st99 } goto tr37 st99: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof99 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof99 } - stCase99: - if (m.data)[(m.p)] == 32 { + st_case_99: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st100 } goto tr37 st100: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof100 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof100 } - stCase100: - if (m.data)[(m.p)] == 32 { + st_case_100: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st101 } goto tr37 st101: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof101 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof101 } - stCase101: - if (m.data)[(m.p)] == 32 { + st_case_101: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st102 } goto tr37 st102: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof102 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof102 } - stCase102: - if (m.data)[(m.p)] == 32 { + st_case_102: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st103 } goto tr37 st103: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof103 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof103 } - stCase103: - if (m.data)[(m.p)] == 32 { + st_case_103: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st104 } goto tr37 st104: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof104 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof104 } - stCase104: - if (m.data)[(m.p)] == 32 { + st_case_104: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st105 } goto tr37 st105: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof105 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof105 } - stCase105: - if (m.data)[(m.p)] == 32 { + st_case_105: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st106 } goto tr37 st106: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof106 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof106 } - stCase106: - if (m.data)[(m.p)] == 32 { + st_case_106: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st107 } goto tr37 st107: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof107 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof107 } - stCase107: - if (m.data)[(m.p)] == 32 { + st_case_107: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st108 } goto tr37 st108: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof108 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof108 } - stCase108: - if (m.data)[(m.p)] == 32 { + st_case_108: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st109 } goto tr37 st109: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof109 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof109 } - stCase109: - if (m.data)[(m.p)] == 32 { + st_case_109: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st110 } goto tr37 st110: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof110 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof110 } - stCase110: - if (m.data)[(m.p)] == 32 { + st_case_110: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st111 } goto tr37 st111: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof111 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof111 } - stCase111: - if (m.data)[(m.p)] == 32 { + st_case_111: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st112 } goto tr37 st112: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof112 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof112 } - stCase112: - if (m.data)[(m.p)] == 32 { + st_case_112: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st113 } goto tr37 st113: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof113 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof113 } - stCase113: - if (m.data)[(m.p)] == 32 { + st_case_113: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st114 } goto tr37 st114: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof114 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof114 } - stCase114: - if (m.data)[(m.p)] == 32 { + st_case_114: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st115 } goto tr37 st115: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof115 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof115 } - stCase115: - if (m.data)[(m.p)] == 32 { + st_case_115: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st116 } goto tr37 st116: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof116 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof116 } - stCase116: - if (m.data)[(m.p)] == 32 { + st_case_116: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st117 } goto tr37 st117: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof117 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof117 } - stCase117: - if (m.data)[(m.p)] == 32 { + st_case_117: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st118 } goto tr37 st118: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof118 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof118 } - stCase118: - if (m.data)[(m.p)] == 32 { + st_case_118: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st119 } goto tr37 st119: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof119 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof119 } - stCase119: - if (m.data)[(m.p)] == 32 { + st_case_119: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st120 } goto tr37 st120: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof120 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof120 } - stCase120: - if (m.data)[(m.p)] == 32 { + st_case_120: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st121 } goto tr37 st121: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof121 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof121 } - stCase121: - if (m.data)[(m.p)] == 32 { + st_case_121: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st122 } goto tr37 st122: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof122 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof122 } - stCase122: - if (m.data)[(m.p)] == 32 { + st_case_122: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st123 } goto tr37 st123: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof123 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof123 } - stCase123: - if (m.data)[(m.p)] == 32 { + st_case_123: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st124 } goto tr37 st124: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof124 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof124 } - stCase124: - if (m.data)[(m.p)] == 32 { + st_case_124: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st125 } goto tr37 st125: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof125 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof125 } - stCase125: - if (m.data)[(m.p)] == 32 { + st_case_125: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st126 } goto tr37 st126: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof126 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof126 } - stCase126: - if (m.data)[(m.p)] == 32 { + st_case_126: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st127 } goto tr37 st127: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof127 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof127 } - stCase127: - if (m.data)[(m.p)] == 32 { + st_case_127: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st128 } goto tr37 st128: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof128 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof128 } - stCase128: - if (m.data)[(m.p)] == 32 { + st_case_128: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st129 } goto tr37 st129: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof129 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof129 } - stCase129: - if (m.data)[(m.p)] == 32 { + st_case_129: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st130 } goto tr37 st130: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof130 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof130 } - stCase130: - if (m.data)[(m.p)] == 32 { + st_case_130: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st131 } goto tr37 st131: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof131 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof131 } - stCase131: - if (m.data)[(m.p)] == 32 { + st_case_131: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st132 } goto tr37 st132: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof132 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof132 } - stCase132: - if (m.data)[(m.p)] == 32 { + st_case_132: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st133 } goto tr37 st133: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof133 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof133 } - stCase133: - if (m.data)[(m.p)] == 32 { + st_case_133: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st134 } goto tr37 st134: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof134 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof134 } - stCase134: - if (m.data)[(m.p)] == 32 { + st_case_134: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st135 } goto tr37 st135: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof135 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof135 } - stCase135: - if (m.data)[(m.p)] == 32 { + st_case_135: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st136 } goto tr37 st136: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof136 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof136 } - stCase136: - if (m.data)[(m.p)] == 32 { + st_case_136: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st137 } goto tr37 st137: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof137 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof137 } - stCase137: - if (m.data)[(m.p)] == 32 { + st_case_137: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st138 } goto tr37 st138: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof138 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof138 } - stCase138: - if (m.data)[(m.p)] == 32 { + st_case_138: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st139 } goto tr37 st139: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof139 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof139 } - stCase139: - if (m.data)[(m.p)] == 32 { + st_case_139: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st140 } goto tr37 st140: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof140 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof140 } - stCase140: - if (m.data)[(m.p)] == 32 { + st_case_140: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st141 } goto tr37 st141: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof141 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof141 } - stCase141: - if (m.data)[(m.p)] == 32 { + st_case_141: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st142 } goto tr37 st142: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof142 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof142 } - stCase142: - if (m.data)[(m.p)] == 32 { + st_case_142: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st143 } goto tr37 st143: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof143 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof143 } - stCase143: - if (m.data)[(m.p)] == 32 { + st_case_143: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st144 } goto tr37 st144: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof144 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof144 } - stCase144: - if (m.data)[(m.p)] == 32 { + st_case_144: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st145 } goto tr37 st145: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof145 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof145 } - stCase145: - if (m.data)[(m.p)] == 32 { + st_case_145: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st146 } goto tr37 st146: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof146 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof146 } - stCase146: - if (m.data)[(m.p)] == 32 { + st_case_146: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st147 } goto tr37 st147: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof147 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof147 } - stCase147: - if (m.data)[(m.p)] == 32 { + st_case_147: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st148 } goto tr37 st148: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof148 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof148 } - stCase148: - if (m.data)[(m.p)] == 32 { + st_case_148: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st149 } goto tr37 st149: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof149 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof149 } - stCase149: - if (m.data)[(m.p)] == 32 { + st_case_149: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st150 } goto tr37 st150: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof150 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof150 } - stCase150: - if (m.data)[(m.p)] == 32 { + st_case_150: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st151 } goto tr37 st151: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof151 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof151 } - stCase151: - if (m.data)[(m.p)] == 32 { + st_case_151: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st152 } goto tr37 st152: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof152 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof152 } - stCase152: - if (m.data)[(m.p)] == 32 { + st_case_152: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st153 } goto tr37 st153: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof153 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof153 } - stCase153: - if (m.data)[(m.p)] == 32 { + st_case_153: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st154 } goto tr37 st154: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof154 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof154 } - stCase154: - if (m.data)[(m.p)] == 32 { + st_case_154: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st155 } goto tr37 st155: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof155 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof155 } - stCase155: - if (m.data)[(m.p)] == 32 { + st_case_155: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st156 } goto tr37 st156: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof156 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof156 } - stCase156: - if (m.data)[(m.p)] == 32 { + st_case_156: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st157 } goto tr37 st157: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof157 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof157 } - stCase157: - if (m.data)[(m.p)] == 32 { + st_case_157: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st158 } goto tr37 st158: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof158 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof158 } - stCase158: - if (m.data)[(m.p)] == 32 { + st_case_158: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st159 } goto tr37 st159: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof159 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof159 } - stCase159: - if (m.data)[(m.p)] == 32 { + st_case_159: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st160 } goto tr37 st160: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof160 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof160 } - stCase160: - if (m.data)[(m.p)] == 32 { + st_case_160: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st161 } goto tr37 st161: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof161 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof161 } - stCase161: - if (m.data)[(m.p)] == 32 { + st_case_161: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st162 } goto tr37 st162: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof162 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof162 } - stCase162: - if (m.data)[(m.p)] == 32 { + st_case_162: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st163 } goto tr37 st163: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof163 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof163 } - stCase163: - if (m.data)[(m.p)] == 32 { + st_case_163: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st164 } goto tr37 st164: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof164 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof164 } - stCase164: - if (m.data)[(m.p)] == 32 { + st_case_164: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st165 } goto tr37 st165: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof165 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof165 } - stCase165: - if (m.data)[(m.p)] == 32 { + st_case_165: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st166 } goto tr37 st166: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof166 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof166 } - stCase166: - if (m.data)[(m.p)] == 32 { + st_case_166: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st167 } goto tr37 st167: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof167 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof167 } - stCase167: - if (m.data)[(m.p)] == 32 { + st_case_167: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st168 } goto tr37 st168: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof168 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof168 } - stCase168: - if (m.data)[(m.p)] == 32 { + st_case_168: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st169 } goto tr37 st169: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof169 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof169 } - stCase169: - if (m.data)[(m.p)] == 32 { + st_case_169: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st170 } goto tr37 st170: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof170 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof170 } - stCase170: - if (m.data)[(m.p)] == 32 { + st_case_170: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st171 } goto tr37 st171: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof171 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof171 } - stCase171: - if (m.data)[(m.p)] == 32 { + st_case_171: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st172 } goto tr37 st172: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof172 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof172 } - stCase172: - if (m.data)[(m.p)] == 32 { + st_case_172: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st173 } goto tr37 st173: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof173 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof173 } - stCase173: - if (m.data)[(m.p)] == 32 { + st_case_173: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st174 } goto tr37 st174: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof174 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof174 } - stCase174: - if (m.data)[(m.p)] == 32 { + st_case_174: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st175 } goto tr37 st175: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof175 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof175 } - stCase175: - if (m.data)[(m.p)] == 32 { + st_case_175: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st176 } goto tr37 st176: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof176 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof176 } - stCase176: - if (m.data)[(m.p)] == 32 { + st_case_176: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st177 } goto tr37 st177: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof177 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof177 } - stCase177: - if (m.data)[(m.p)] == 32 { + st_case_177: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st178 } goto tr37 st178: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof178 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof178 } - stCase178: - if (m.data)[(m.p)] == 32 { + st_case_178: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st179 } goto tr37 st179: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof179 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof179 } - stCase179: - if (m.data)[(m.p)] == 32 { + st_case_179: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st180 } goto tr37 st180: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof180 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof180 } - stCase180: - if (m.data)[(m.p)] == 32 { + st_case_180: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st181 } goto tr37 st181: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof181 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof181 } - stCase181: - if (m.data)[(m.p)] == 32 { + st_case_181: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st182 } goto tr37 st182: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof182 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof182 } - stCase182: - if (m.data)[(m.p)] == 32 { + st_case_182: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st183 } goto tr37 st183: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof183 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof183 } - stCase183: - if (m.data)[(m.p)] == 32 { + st_case_183: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st184 } goto tr37 st184: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof184 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof184 } - stCase184: - if (m.data)[(m.p)] == 32 { + st_case_184: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st185 } goto tr37 st185: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof185 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof185 } - stCase185: - if (m.data)[(m.p)] == 32 { + st_case_185: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st186 } goto tr37 st186: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof186 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof186 } - stCase186: - if (m.data)[(m.p)] == 32 { + st_case_186: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st187 } goto tr37 st187: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof187 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof187 } - stCase187: - if (m.data)[(m.p)] == 32 { + st_case_187: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st188 } goto tr37 st188: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof188 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof188 } - stCase188: - if (m.data)[(m.p)] == 32 { + st_case_188: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st189 } goto tr37 st189: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof189 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof189 } - stCase189: - if (m.data)[(m.p)] == 32 { + st_case_189: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st190 } goto tr37 st190: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof190 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof190 } - stCase190: - if (m.data)[(m.p)] == 32 { + st_case_190: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st191 } goto tr37 st191: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof191 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof191 } - stCase191: - if (m.data)[(m.p)] == 32 { + st_case_191: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st192 } goto tr37 st192: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof192 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof192 } - stCase192: - if (m.data)[(m.p)] == 32 { + st_case_192: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st193 } goto tr37 st193: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof193 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof193 } - stCase193: - if (m.data)[(m.p)] == 32 { + st_case_193: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st194 } goto tr37 st194: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof194 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof194 } - stCase194: - if (m.data)[(m.p)] == 32 { + st_case_194: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st195 } goto tr37 st195: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof195 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof195 } - stCase195: - if (m.data)[(m.p)] == 32 { + st_case_195: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st196 } goto tr37 st196: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof196 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof196 } - stCase196: - if (m.data)[(m.p)] == 32 { + st_case_196: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st197 } goto tr37 st197: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof197 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof197 } - stCase197: - if (m.data)[(m.p)] == 32 { + st_case_197: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st198 } goto tr37 st198: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof198 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof198 } - stCase198: - if (m.data)[(m.p)] == 32 { + st_case_198: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st199 } goto tr37 st199: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof199 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof199 } - stCase199: - if (m.data)[(m.p)] == 32 { + st_case_199: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st200 } goto tr37 st200: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof200 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof200 } - stCase200: - if (m.data)[(m.p)] == 32 { + st_case_200: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st201 } goto tr37 st201: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof201 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof201 } - stCase201: - if (m.data)[(m.p)] == 32 { + st_case_201: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st202 } goto tr37 st202: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof202 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof202 } - stCase202: - if (m.data)[(m.p)] == 32 { + st_case_202: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st203 } goto tr37 st203: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof203 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof203 } - stCase203: - if (m.data)[(m.p)] == 32 { + st_case_203: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st204 } goto tr37 st204: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof204 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof204 } - stCase204: - if (m.data)[(m.p)] == 32 { + st_case_204: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st205 } goto tr37 st205: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof205 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof205 } - stCase205: - if (m.data)[(m.p)] == 32 { + st_case_205: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st206 } goto tr37 st206: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof206 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof206 } - stCase206: - if (m.data)[(m.p)] == 32 { + st_case_206: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st207 } goto tr37 st207: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof207 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof207 } - stCase207: - if (m.data)[(m.p)] == 32 { + st_case_207: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st208 } goto tr37 st208: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof208 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof208 } - stCase208: - if (m.data)[(m.p)] == 32 { + st_case_208: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st209 } goto tr37 st209: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof209 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof209 } - stCase209: - if (m.data)[(m.p)] == 32 { + st_case_209: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st210 } goto tr37 st210: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof210 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof210 } - stCase210: - if (m.data)[(m.p)] == 32 { + st_case_210: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st211 } goto tr37 st211: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof211 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof211 } - stCase211: - if (m.data)[(m.p)] == 32 { + st_case_211: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st212 } goto tr37 st212: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof212 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof212 } - stCase212: - if (m.data)[(m.p)] == 32 { + st_case_212: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st213 } goto tr37 st213: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof213 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof213 } - stCase213: - if (m.data)[(m.p)] == 32 { + st_case_213: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st214 } goto tr37 st214: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof214 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof214 } - stCase214: - if (m.data)[(m.p)] == 32 { + st_case_214: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st215 } goto tr37 st215: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof215 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof215 } - stCase215: - if (m.data)[(m.p)] == 32 { + st_case_215: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st216 } goto tr37 st216: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof216 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof216 } - stCase216: - if (m.data)[(m.p)] == 32 { + st_case_216: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st217 } goto tr37 st217: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof217 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof217 } - stCase217: - if (m.data)[(m.p)] == 32 { + st_case_217: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st218 } goto tr37 st218: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof218 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof218 } - stCase218: - if (m.data)[(m.p)] == 32 { + st_case_218: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st219 } goto tr37 st219: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof219 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof219 } - stCase219: - if (m.data)[(m.p)] == 32 { + st_case_219: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st220 } goto tr37 st220: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof220 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof220 } - stCase220: - if (m.data)[(m.p)] == 32 { + st_case_220: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st221 } goto tr37 st221: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof221 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof221 } - stCase221: - if (m.data)[(m.p)] == 32 { + st_case_221: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st222 } goto tr37 st222: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof222 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof222 } - stCase222: - if (m.data)[(m.p)] == 32 { + st_case_222: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st223 } goto tr37 st223: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof223 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof223 } - stCase223: - if (m.data)[(m.p)] == 32 { + st_case_223: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st224 } goto tr37 st224: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof224 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof224 } - stCase224: - if (m.data)[(m.p)] == 32 { + st_case_224: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st225 } goto tr37 st225: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof225 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof225 } - stCase225: - if (m.data)[(m.p)] == 32 { + st_case_225: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st226 } goto tr37 st226: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof226 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof226 } - stCase226: - if (m.data)[(m.p)] == 32 { + st_case_226: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st227 } goto tr37 st227: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof227 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof227 } - stCase227: - if (m.data)[(m.p)] == 32 { + st_case_227: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st228 } goto tr37 st228: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof228 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof228 } - stCase228: - if (m.data)[(m.p)] == 32 { + st_case_228: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st229 } goto tr37 st229: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof229 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof229 } - stCase229: - if (m.data)[(m.p)] == 32 { + st_case_229: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st230 } goto tr37 st230: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof230 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof230 } - stCase230: - if (m.data)[(m.p)] == 32 { + st_case_230: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st231 } goto tr37 st231: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof231 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof231 } - stCase231: - if (m.data)[(m.p)] == 32 { + st_case_231: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st232 } goto tr37 st232: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof232 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof232 } - stCase232: - if (m.data)[(m.p)] == 32 { + st_case_232: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st233 } goto tr37 st233: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof233 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof233 } - stCase233: - if (m.data)[(m.p)] == 32 { + st_case_233: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st234 } goto tr37 st234: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof234 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof234 } - stCase234: - if (m.data)[(m.p)] == 32 { + st_case_234: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st235 } goto tr37 st235: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof235 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof235 } - stCase235: - if (m.data)[(m.p)] == 32 { + st_case_235: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st236 } goto tr37 st236: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof236 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof236 } - stCase236: - if (m.data)[(m.p)] == 32 { + st_case_236: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st237 } goto tr37 st237: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof237 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof237 } - stCase237: - if (m.data)[(m.p)] == 32 { + st_case_237: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st238 } goto tr37 st238: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof238 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof238 } - stCase238: - if (m.data)[(m.p)] == 32 { + st_case_238: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st239 } goto tr37 st239: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof239 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof239 } - stCase239: - if (m.data)[(m.p)] == 32 { + st_case_239: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st240 } goto tr37 st240: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof240 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof240 } - stCase240: - if (m.data)[(m.p)] == 32 { + st_case_240: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st241 } goto tr37 st241: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof241 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof241 } - stCase241: - if (m.data)[(m.p)] == 32 { + st_case_241: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st242 } goto tr37 st242: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof242 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof242 } - stCase242: - if (m.data)[(m.p)] == 32 { + st_case_242: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st243 } goto tr37 st243: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof243 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof243 } - stCase243: - if (m.data)[(m.p)] == 32 { + st_case_243: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st244 } goto tr37 st244: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof244 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof244 } - stCase244: - if (m.data)[(m.p)] == 32 { + st_case_244: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st245 } goto tr37 st245: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof245 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof245 } - stCase245: - if (m.data)[(m.p)] == 32 { + st_case_245: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st246 } goto tr37 st246: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof246 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof246 } - stCase246: - if (m.data)[(m.p)] == 32 { + st_case_246: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st247 } goto tr37 st247: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof247 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof247 } - stCase247: - if (m.data)[(m.p)] == 32 { + st_case_247: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st248 } goto tr37 st248: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof248 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof248 } - stCase248: - if (m.data)[(m.p)] == 32 { + st_case_248: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st249 } goto tr37 st249: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof249 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof249 } - stCase249: - if (m.data)[(m.p)] == 32 { + st_case_249: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st250 } goto tr37 st250: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof250 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof250 } - stCase250: - if (m.data)[(m.p)] == 32 { + st_case_250: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st251 } goto tr37 st251: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof251 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof251 } - stCase251: - if (m.data)[(m.p)] == 32 { + st_case_251: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st252 } goto tr37 st252: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof252 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof252 } - stCase252: - if (m.data)[(m.p)] == 32 { + st_case_252: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st253 } goto tr37 st253: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof253 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof253 } - stCase253: - if (m.data)[(m.p)] == 32 { + st_case_253: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st254 } goto tr37 st254: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof254 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof254 } - stCase254: - if (m.data)[(m.p)] == 32 { + st_case_254: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st255 } goto tr37 st255: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof255 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof255 } - stCase255: - if (m.data)[(m.p)] == 32 { + st_case_255: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st256 } goto tr37 st256: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof256 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof256 } - stCase256: - if (m.data)[(m.p)] == 32 { + st_case_256: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st257 } goto tr37 st257: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof257 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof257 } - stCase257: - if (m.data)[(m.p)] == 32 { + st_case_257: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st258 } goto tr37 st258: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof258 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof258 } - stCase258: - if (m.data)[(m.p)] == 32 { + st_case_258: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st259 } goto tr37 st259: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof259 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof259 } - stCase259: - if (m.data)[(m.p)] == 32 { + st_case_259: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st260 } goto tr37 st260: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof260 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof260 } - stCase260: - if (m.data)[(m.p)] == 32 { + st_case_260: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st261 } goto tr37 st261: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof261 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof261 } - stCase261: - if (m.data)[(m.p)] == 32 { + st_case_261: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st262 } goto tr37 st262: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof262 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof262 } - stCase262: - if (m.data)[(m.p)] == 32 { + st_case_262: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st263 } goto tr37 st263: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof263 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof263 } - stCase263: - if (m.data)[(m.p)] == 32 { + st_case_263: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st264 } goto tr37 st264: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof264 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof264 } - stCase264: - if (m.data)[(m.p)] == 32 { + st_case_264: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st265 } goto tr37 st265: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof265 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof265 } - stCase265: - if (m.data)[(m.p)] == 32 { + st_case_265: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st266 } goto tr37 st266: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof266 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof266 } - stCase266: - if (m.data)[(m.p)] == 32 { + st_case_266: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st267 } goto tr37 st267: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof267 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof267 } - stCase267: - if (m.data)[(m.p)] == 32 { + st_case_267: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st268 } goto tr37 st268: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof268 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof268 } - stCase268: - if (m.data)[(m.p)] == 32 { + st_case_268: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st269 } goto tr37 st269: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof269 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof269 } - stCase269: - if (m.data)[(m.p)] == 32 { + st_case_269: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st270 } goto tr37 st270: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof270 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof270 } - stCase270: - if (m.data)[(m.p)] == 32 { + st_case_270: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st271 } goto tr37 st271: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof271 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof271 } - stCase271: - if (m.data)[(m.p)] == 32 { + st_case_271: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st272 } goto tr37 st272: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof272 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof272 } - stCase272: - if (m.data)[(m.p)] == 32 { + st_case_272: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st273 } goto tr37 st273: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof273 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof273 } - stCase273: - if (m.data)[(m.p)] == 32 { + st_case_273: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st274 } goto tr37 st274: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof274 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof274 } - stCase274: - if (m.data)[(m.p)] == 32 { + st_case_274: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st275 } goto tr37 st275: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof275 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof275 } - stCase275: - if (m.data)[(m.p)] == 32 { + st_case_275: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st276 } goto tr37 st276: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof276 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof276 } - stCase276: - if (m.data)[(m.p)] == 32 { + st_case_276: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st277 } goto tr37 st277: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof277 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof277 } - stCase277: - if (m.data)[(m.p)] == 32 { + st_case_277: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st278 } goto tr37 st278: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof278 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof278 } - stCase278: - if (m.data)[(m.p)] == 32 { + st_case_278: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st279 } goto tr37 st279: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof279 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof279 } - stCase279: - if (m.data)[(m.p)] == 32 { + st_case_279: + if ( m.data)[( m.p)] == 32 { goto tr39 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st280 } goto tr37 st280: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof280 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof280 } - stCase280: - if (m.data)[(m.p)] == 32 { + st_case_280: + if ( m.data)[( m.p)] == 32 { goto tr39 } goto tr37 st281: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof281 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof281 } - stCase281: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 51 { + st_case_281: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { goto st13 } goto tr7 st282: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof282 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof282 } - stCase282: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_282: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st10 } goto tr7 st283: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof283 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof283 } - stCase283: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 49 { + st_case_283: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { goto st10 } goto tr7 st284: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof284 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof284 } - stCase284: - if (m.data)[(m.p)] == 103 { + st_case_284: + if ( m.data)[( m.p)] == 103 { goto st7 } goto tr7 - tr9: +tr9: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st285 + goto st285 st285: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof285 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof285 } - stCase285: - if (m.data)[(m.p)] == 101 { + st_case_285: +//line rfc3164/machine.go:6070 + if ( m.data)[( m.p)] == 101 { goto st286 } goto tr7 st286: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof286 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof286 } - stCase286: - if (m.data)[(m.p)] == 99 { + st_case_286: + if ( m.data)[( m.p)] == 99 { goto st7 } goto tr7 - tr10: +tr10: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st287 + goto st287 st287: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof287 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof287 } - stCase287: - if (m.data)[(m.p)] == 101 { + st_case_287: +//line rfc3164/machine.go:6095 + if ( m.data)[( m.p)] == 101 { goto st288 } goto tr7 st288: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof288 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof288 } - stCase288: - if (m.data)[(m.p)] == 98 { + st_case_288: + if ( m.data)[( m.p)] == 98 { goto st7 } goto tr7 - tr11: +tr11: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st289 + goto st289 st289: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof289 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof289 } - stCase289: - switch (m.data)[(m.p)] { + st_case_289: +//line rfc3164/machine.go:6120 + switch ( m.data)[( m.p)] { case 97: goto st290 case 117: @@ -5315,135 +6125,145 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr7 st290: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof290 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof290 } - stCase290: - if (m.data)[(m.p)] == 110 { + st_case_290: + if ( m.data)[( m.p)] == 110 { goto st7 } goto tr7 st291: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof291 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof291 } - stCase291: - switch (m.data)[(m.p)] { + st_case_291: + switch ( m.data)[( m.p)] { case 108: goto st7 case 110: goto st7 } goto tr7 - tr12: +tr12: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st292 + goto st292 st292: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof292 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof292 } - stCase292: - if (m.data)[(m.p)] == 97 { + st_case_292: +//line rfc3164/machine.go:6160 + if ( m.data)[( m.p)] == 97 { goto st293 } goto tr7 st293: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof293 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof293 } - stCase293: - switch (m.data)[(m.p)] { + st_case_293: + switch ( m.data)[( m.p)] { case 114: goto st7 case 121: goto st7 } goto tr7 - tr13: +tr13: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st294 + goto st294 st294: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof294 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof294 } - stCase294: - if (m.data)[(m.p)] == 111 { + st_case_294: +//line rfc3164/machine.go:6188 + if ( m.data)[( m.p)] == 111 { goto st295 } goto tr7 st295: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof295 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof295 } - stCase295: - if (m.data)[(m.p)] == 118 { + st_case_295: + if ( m.data)[( m.p)] == 118 { goto st7 } goto tr7 - tr14: +tr14: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st296 + goto st296 st296: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof296 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof296 } - stCase296: - if (m.data)[(m.p)] == 99 { + st_case_296: +//line rfc3164/machine.go:6213 + if ( m.data)[( m.p)] == 99 { goto st297 } goto tr7 st297: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof297 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof297 } - stCase297: - if (m.data)[(m.p)] == 116 { + st_case_297: + if ( m.data)[( m.p)] == 116 { goto st7 } goto tr7 - tr15: +tr15: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st298 + goto st298 st298: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof298 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof298 } - stCase298: - if (m.data)[(m.p)] == 101 { + st_case_298: +//line rfc3164/machine.go:6238 + if ( m.data)[( m.p)] == 101 { goto st299 } goto tr7 st299: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof299 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof299 } - stCase299: - if (m.data)[(m.p)] == 112 { + st_case_299: + if ( m.data)[( m.p)] == 112 { goto st7 } goto tr7 - tr16: +tr16: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st300 + goto st300 st300: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof300 - } - stCase300: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof300 + } + st_case_300: +//line rfc3164/machine.go:6263 + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5452,14 +6272,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st301: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof301 - } - stCase301: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof301 + } + st_case_301: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5468,14 +6288,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st302: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof302 - } - stCase302: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof302 + } + st_case_302: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5484,14 +6304,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st303: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof303 - } - stCase303: - _widec = int16((m.data)[(m.p)]) - if 45 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 45 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof303 + } + st_case_303: + _widec = int16(( m.data)[( m.p)]) + if 45 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 45 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5500,22 +6320,22 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st304: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof304 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof304 } - stCase304: - _widec = int16((m.data)[(m.p)]) + st_case_304: + _widec = int16(( m.data)[( m.p)]) switch { - case (m.data)[(m.p)] > 48: - if 49 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 49 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + case ( m.data)[( m.p)] > 48: + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } - case (m.data)[(m.p)] >= 48: - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + case ( m.data)[( m.p)] >= 48: + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5527,14 +6347,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st305: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof305 - } - stCase305: - _widec = int16((m.data)[(m.p)]) - if 49 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof305 + } + st_case_305: + _widec = int16(( m.data)[( m.p)]) + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5543,14 +6363,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st306: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof306 - } - stCase306: - _widec = int16((m.data)[(m.p)]) - if 45 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 45 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof306 + } + st_case_306: + _widec = int16(( m.data)[( m.p)]) + if 45 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 45 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5559,29 +6379,29 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st307: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof307 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof307 } - stCase307: - _widec = int16((m.data)[(m.p)]) + st_case_307: + _widec = int16(( m.data)[( m.p)]) switch { - case (m.data)[(m.p)] < 49: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 48 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + case ( m.data)[( m.p)] < 49: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 48 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } - case (m.data)[(m.p)] > 50: - if 51 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 51 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + case ( m.data)[( m.p)] > 50: + if 51 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } default: - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5596,14 +6416,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st308: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof308 - } - stCase308: - _widec = int16((m.data)[(m.p)]) - if 49 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof308 + } + st_case_308: + _widec = int16(( m.data)[( m.p)]) + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5612,14 +6432,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st309: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof309 - } - stCase309: - _widec = int16((m.data)[(m.p)]) - if 84 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 84 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof309 + } + st_case_309: + _widec = int16(( m.data)[( m.p)]) + if 84 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 84 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5628,22 +6448,22 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st310: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof310 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof310 } - stCase310: - _widec = int16((m.data)[(m.p)]) + st_case_310: + _widec = int16(( m.data)[( m.p)]) switch { - case (m.data)[(m.p)] > 49: - if 50 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 50 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + case ( m.data)[( m.p)] > 49: + if 50 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } - case (m.data)[(m.p)] >= 48: - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + case ( m.data)[( m.p)] >= 48: + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5655,14 +6475,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st311: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof311 - } - stCase311: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof311 + } + st_case_311: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5671,14 +6491,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st312: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof312 - } - stCase312: - _widec = int16((m.data)[(m.p)]) - if 58 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 58 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof312 + } + st_case_312: + _widec = int16(( m.data)[( m.p)]) + if 58 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 58 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5687,14 +6507,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st313: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof313 - } - stCase313: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 53 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof313 + } + st_case_313: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5703,14 +6523,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st314: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof314 - } - stCase314: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof314 + } + st_case_314: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5719,14 +6539,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st315: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof315 - } - stCase315: - _widec = int16((m.data)[(m.p)]) - if 58 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 58 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof315 + } + st_case_315: + _widec = int16(( m.data)[( m.p)]) + if 58 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 58 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5735,14 +6555,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st316: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof316 - } - stCase316: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 53 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof316 + } + st_case_316: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5751,14 +6571,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st317: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof317 - } - stCase317: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof317 + } + st_case_317: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5767,29 +6587,29 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st318: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof318 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof318 } - stCase318: - _widec = int16((m.data)[(m.p)]) + st_case_318: + _widec = int16(( m.data)[( m.p)]) switch { - case (m.data)[(m.p)] < 45: - if 43 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 43 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + case ( m.data)[( m.p)] < 45: + if 43 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 43 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } - case (m.data)[(m.p)] > 45: - if 90 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 90 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + case ( m.data)[( m.p)] > 45: + if 90 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 90 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } default: - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5803,22 +6623,22 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr333 st319: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof319 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof319 } - stCase319: - _widec = int16((m.data)[(m.p)]) + st_case_319: + _widec = int16(( m.data)[( m.p)]) switch { - case (m.data)[(m.p)] > 49: - if 50 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 50 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + case ( m.data)[( m.p)] > 49: + if 50 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } - case (m.data)[(m.p)] >= 48: - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + case ( m.data)[( m.p)] >= 48: + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5830,14 +6650,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr333 st320: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof320 - } - stCase320: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof320 + } + st_case_320: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5846,14 +6666,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr333 st321: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof321 - } - stCase321: - _widec = int16((m.data)[(m.p)]) - if 58 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 58 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof321 + } + st_case_321: + _widec = int16(( m.data)[( m.p)]) + if 58 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 58 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5862,14 +6682,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr333 st322: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof322 - } - stCase322: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 53 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof322 + } + st_case_322: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5878,14 +6698,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr333 st323: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof323 - } - stCase323: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof323 + } + st_case_323: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5894,23 +6714,23 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr333 st324: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof324 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof324 } - stCase324: - if (m.data)[(m.p)] == 32 { + st_case_324: + if ( m.data)[( m.p)] == 32 { goto tr341 } goto st0 st325: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof325 - } - stCase325: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 51 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof325 + } + st_case_325: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5919,14 +6739,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr333 st326: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof326 - } - stCase326: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 51 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof326 + } + st_case_326: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5935,14 +6755,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st327: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof327 - } - stCase327: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof327 + } + st_case_327: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5951,14 +6771,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st328: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof328 - } - stCase328: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 49 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof328 + } + st_case_328: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5967,14 +6787,14 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto st0 st329: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof329 - } - stCase329: - _widec = int16((m.data)[(m.p)]) - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 50 { - _widec = 256 + (int16((m.data)[(m.p)]) - 0) - if m.rfc3339 { + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof329 + } + st_case_329: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { _widec += 256 } } @@ -5982,1282 +6802,5971 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto st306 } goto st0 - tr4: +tr4: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st330 + goto st330 st330: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof330 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof330 } - stCase330: + st_case_330: +//line rfc3164/machine.go.rl:35 - output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - output.prioritySet = true + output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + output.prioritySet = true - switch (m.data)[(m.p)] { +//line rfc3164/machine.go:6822 + switch ( m.data)[( m.p)] { case 57: goto st332 case 62: goto st4 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 56 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 56 { goto st331 } goto tr2 - tr5: +tr5: +//line rfc3164/machine.go.rl:31 - m.pb = m.p + m.pb = m.p - goto st331 + goto st331 st331: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof331 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof331 } - stCase331: + st_case_331: +//line rfc3164/machine.go.rl:35 - output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - output.prioritySet = true + output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + output.prioritySet = true - if (m.data)[(m.p)] == 62 { +//line rfc3164/machine.go:6849 + if ( m.data)[( m.p)] == 62 { goto st4 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st3 } goto tr2 st332: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof332 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof332 } - stCase332: + st_case_332: +//line rfc3164/machine.go.rl:35 - output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - output.prioritySet = true + output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + output.prioritySet = true - if (m.data)[(m.p)] == 62 { +//line rfc3164/machine.go:6867 + if ( m.data)[( m.p)] == 62 { goto st4 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 49 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { goto st3 } goto tr2 - st373: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof373 + st333: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof333 + } + st_case_333: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } } - stCase373: - switch (m.data)[(m.p)] { - case 10: - goto st0 - case 13: - goto st0 + switch _widec { + case 65: + goto tr345 + case 68: + goto tr346 + case 70: + goto tr347 + case 74: + goto tr348 + case 77: + goto tr349 + case 78: + goto tr350 + case 79: + goto tr351 + case 83: + goto tr352 } - goto st373 - stOut: - _testEof2: - m.cs = 2 - goto _testEof - _testEof3: - m.cs = 3 - goto _testEof - _testEof4: - m.cs = 4 - goto _testEof - _testEof5: - m.cs = 5 - goto _testEof - _testEof6: - m.cs = 6 - goto _testEof - _testEof7: - m.cs = 7 - goto _testEof - _testEof8: - m.cs = 8 - goto _testEof - _testEof9: - m.cs = 9 - goto _testEof - _testEof10: - m.cs = 10 - goto _testEof - _testEof11: - m.cs = 11 - goto _testEof - _testEof12: - m.cs = 12 - goto _testEof - _testEof13: - m.cs = 13 - goto _testEof - _testEof14: - m.cs = 14 - goto _testEof - _testEof15: - m.cs = 15 - goto _testEof - _testEof16: - m.cs = 16 - goto _testEof - _testEof17: - m.cs = 17 - goto _testEof - _testEof18: - m.cs = 18 - goto _testEof - _testEof19: - m.cs = 19 - goto _testEof - _testEof20: - m.cs = 20 - goto _testEof - _testEof21: - m.cs = 21 - goto _testEof - _testEof22: - m.cs = 22 - goto _testEof - _testEof333: - m.cs = 333 - goto _testEof - _testEof334: - m.cs = 334 - goto _testEof - _testEof335: - m.cs = 335 - goto _testEof - _testEof336: - m.cs = 336 - goto _testEof - _testEof337: - m.cs = 337 - goto _testEof - _testEof338: - m.cs = 338 - goto _testEof - _testEof339: - m.cs = 339 - goto _testEof - _testEof340: - m.cs = 340 - goto _testEof - _testEof341: - m.cs = 341 - goto _testEof - _testEof342: - m.cs = 342 - goto _testEof - _testEof343: - m.cs = 343 - goto _testEof - _testEof344: - m.cs = 344 - goto _testEof - _testEof345: - m.cs = 345 - goto _testEof - _testEof346: - m.cs = 346 - goto _testEof - _testEof347: - m.cs = 347 - goto _testEof - _testEof348: - m.cs = 348 - goto _testEof - _testEof349: - m.cs = 349 - goto _testEof - _testEof350: - m.cs = 350 - goto _testEof - _testEof351: - m.cs = 351 - goto _testEof - _testEof352: - m.cs = 352 - goto _testEof - _testEof353: - m.cs = 353 - goto _testEof - _testEof354: - m.cs = 354 - goto _testEof - _testEof355: - m.cs = 355 - goto _testEof - _testEof356: - m.cs = 356 - goto _testEof - _testEof357: - m.cs = 357 - goto _testEof - _testEof358: - m.cs = 358 - goto _testEof - _testEof359: - m.cs = 359 - goto _testEof - _testEof360: - m.cs = 360 - goto _testEof - _testEof361: - m.cs = 361 - goto _testEof - _testEof362: - m.cs = 362 - goto _testEof - _testEof363: - m.cs = 363 - goto _testEof - _testEof364: - m.cs = 364 - goto _testEof - _testEof365: - m.cs = 365 - goto _testEof - _testEof366: - m.cs = 366 - goto _testEof - _testEof367: - m.cs = 367 - goto _testEof - _testEof368: - m.cs = 368 - goto _testEof - _testEof23: - m.cs = 23 - goto _testEof - _testEof24: - m.cs = 24 - goto _testEof - _testEof25: - m.cs = 25 - goto _testEof - _testEof26: - m.cs = 26 - goto _testEof - _testEof369: - m.cs = 369 - goto _testEof - _testEof370: - m.cs = 370 - goto _testEof - _testEof371: - m.cs = 371 - goto _testEof - _testEof372: - m.cs = 372 - goto _testEof - _testEof27: - m.cs = 27 - goto _testEof - _testEof28: - m.cs = 28 - goto _testEof - _testEof29: - m.cs = 29 - goto _testEof - _testEof30: - m.cs = 30 - goto _testEof - _testEof31: - m.cs = 31 - goto _testEof - _testEof32: - m.cs = 32 - goto _testEof - _testEof33: - m.cs = 33 - goto _testEof - _testEof34: - m.cs = 34 - goto _testEof - _testEof35: - m.cs = 35 - goto _testEof - _testEof36: - m.cs = 36 - goto _testEof - _testEof37: - m.cs = 37 - goto _testEof - _testEof38: - m.cs = 38 - goto _testEof - _testEof39: - m.cs = 39 - goto _testEof - _testEof40: - m.cs = 40 - goto _testEof - _testEof41: - m.cs = 41 - goto _testEof - _testEof42: - m.cs = 42 - goto _testEof - _testEof43: - m.cs = 43 - goto _testEof - _testEof44: - m.cs = 44 - goto _testEof - _testEof45: - m.cs = 45 - goto _testEof - _testEof46: - m.cs = 46 - goto _testEof - _testEof47: - m.cs = 47 - goto _testEof - _testEof48: - m.cs = 48 - goto _testEof - _testEof49: - m.cs = 49 - goto _testEof - _testEof50: - m.cs = 50 - goto _testEof - _testEof51: - m.cs = 51 - goto _testEof - _testEof52: - m.cs = 52 - goto _testEof - _testEof53: - m.cs = 53 - goto _testEof - _testEof54: - m.cs = 54 - goto _testEof - _testEof55: - m.cs = 55 - goto _testEof - _testEof56: - m.cs = 56 - goto _testEof - _testEof57: - m.cs = 57 - goto _testEof - _testEof58: - m.cs = 58 - goto _testEof - _testEof59: - m.cs = 59 - goto _testEof - _testEof60: - m.cs = 60 - goto _testEof - _testEof61: - m.cs = 61 - goto _testEof - _testEof62: - m.cs = 62 - goto _testEof - _testEof63: - m.cs = 63 - goto _testEof - _testEof64: - m.cs = 64 - goto _testEof - _testEof65: - m.cs = 65 - goto _testEof - _testEof66: - m.cs = 66 - goto _testEof - _testEof67: - m.cs = 67 - goto _testEof - _testEof68: - m.cs = 68 - goto _testEof - _testEof69: - m.cs = 69 - goto _testEof - _testEof70: - m.cs = 70 - goto _testEof - _testEof71: - m.cs = 71 - goto _testEof - _testEof72: - m.cs = 72 - goto _testEof - _testEof73: - m.cs = 73 - goto _testEof - _testEof74: - m.cs = 74 - goto _testEof - _testEof75: - m.cs = 75 - goto _testEof - _testEof76: - m.cs = 76 - goto _testEof - _testEof77: - m.cs = 77 - goto _testEof - _testEof78: - m.cs = 78 - goto _testEof - _testEof79: - m.cs = 79 - goto _testEof - _testEof80: - m.cs = 80 - goto _testEof - _testEof81: - m.cs = 81 - goto _testEof - _testEof82: - m.cs = 82 - goto _testEof - _testEof83: - m.cs = 83 - goto _testEof - _testEof84: - m.cs = 84 - goto _testEof - _testEof85: - m.cs = 85 - goto _testEof - _testEof86: - m.cs = 86 - goto _testEof - _testEof87: - m.cs = 87 - goto _testEof - _testEof88: - m.cs = 88 - goto _testEof - _testEof89: - m.cs = 89 - goto _testEof - _testEof90: - m.cs = 90 - goto _testEof - _testEof91: - m.cs = 91 - goto _testEof - _testEof92: - m.cs = 92 - goto _testEof - _testEof93: - m.cs = 93 - goto _testEof - _testEof94: - m.cs = 94 - goto _testEof - _testEof95: - m.cs = 95 - goto _testEof - _testEof96: - m.cs = 96 - goto _testEof - _testEof97: - m.cs = 97 - goto _testEof - _testEof98: - m.cs = 98 - goto _testEof - _testEof99: - m.cs = 99 - goto _testEof - _testEof100: - m.cs = 100 - goto _testEof - _testEof101: - m.cs = 101 - goto _testEof - _testEof102: - m.cs = 102 - goto _testEof - _testEof103: - m.cs = 103 - goto _testEof - _testEof104: - m.cs = 104 - goto _testEof - _testEof105: - m.cs = 105 - goto _testEof - _testEof106: - m.cs = 106 - goto _testEof - _testEof107: - m.cs = 107 - goto _testEof - _testEof108: - m.cs = 108 - goto _testEof - _testEof109: - m.cs = 109 - goto _testEof - _testEof110: - m.cs = 110 - goto _testEof - _testEof111: - m.cs = 111 - goto _testEof - _testEof112: - m.cs = 112 - goto _testEof - _testEof113: - m.cs = 113 - goto _testEof - _testEof114: - m.cs = 114 - goto _testEof - _testEof115: - m.cs = 115 - goto _testEof - _testEof116: - m.cs = 116 - goto _testEof - _testEof117: - m.cs = 117 - goto _testEof - _testEof118: - m.cs = 118 - goto _testEof - _testEof119: - m.cs = 119 - goto _testEof - _testEof120: - m.cs = 120 - goto _testEof - _testEof121: - m.cs = 121 - goto _testEof - _testEof122: - m.cs = 122 - goto _testEof - _testEof123: - m.cs = 123 - goto _testEof - _testEof124: - m.cs = 124 - goto _testEof - _testEof125: - m.cs = 125 - goto _testEof - _testEof126: - m.cs = 126 - goto _testEof - _testEof127: - m.cs = 127 - goto _testEof - _testEof128: - m.cs = 128 - goto _testEof - _testEof129: - m.cs = 129 - goto _testEof - _testEof130: - m.cs = 130 - goto _testEof - _testEof131: - m.cs = 131 - goto _testEof - _testEof132: - m.cs = 132 - goto _testEof - _testEof133: - m.cs = 133 - goto _testEof - _testEof134: - m.cs = 134 - goto _testEof - _testEof135: - m.cs = 135 - goto _testEof - _testEof136: - m.cs = 136 - goto _testEof - _testEof137: - m.cs = 137 - goto _testEof - _testEof138: - m.cs = 138 - goto _testEof - _testEof139: - m.cs = 139 - goto _testEof - _testEof140: - m.cs = 140 - goto _testEof - _testEof141: - m.cs = 141 - goto _testEof - _testEof142: - m.cs = 142 - goto _testEof - _testEof143: - m.cs = 143 - goto _testEof - _testEof144: - m.cs = 144 - goto _testEof - _testEof145: - m.cs = 145 - goto _testEof - _testEof146: - m.cs = 146 - goto _testEof - _testEof147: - m.cs = 147 - goto _testEof - _testEof148: - m.cs = 148 - goto _testEof - _testEof149: - m.cs = 149 - goto _testEof - _testEof150: - m.cs = 150 - goto _testEof - _testEof151: - m.cs = 151 - goto _testEof - _testEof152: - m.cs = 152 - goto _testEof - _testEof153: - m.cs = 153 - goto _testEof - _testEof154: - m.cs = 154 - goto _testEof - _testEof155: - m.cs = 155 - goto _testEof - _testEof156: - m.cs = 156 - goto _testEof - _testEof157: - m.cs = 157 - goto _testEof - _testEof158: - m.cs = 158 - goto _testEof - _testEof159: - m.cs = 159 - goto _testEof - _testEof160: - m.cs = 160 - goto _testEof - _testEof161: - m.cs = 161 - goto _testEof - _testEof162: - m.cs = 162 - goto _testEof - _testEof163: - m.cs = 163 - goto _testEof - _testEof164: - m.cs = 164 - goto _testEof - _testEof165: - m.cs = 165 - goto _testEof - _testEof166: - m.cs = 166 - goto _testEof - _testEof167: - m.cs = 167 - goto _testEof - _testEof168: - m.cs = 168 - goto _testEof - _testEof169: - m.cs = 169 - goto _testEof - _testEof170: - m.cs = 170 - goto _testEof - _testEof171: - m.cs = 171 - goto _testEof - _testEof172: - m.cs = 172 - goto _testEof - _testEof173: - m.cs = 173 - goto _testEof - _testEof174: - m.cs = 174 - goto _testEof - _testEof175: - m.cs = 175 - goto _testEof - _testEof176: - m.cs = 176 - goto _testEof - _testEof177: - m.cs = 177 - goto _testEof - _testEof178: - m.cs = 178 - goto _testEof - _testEof179: - m.cs = 179 - goto _testEof - _testEof180: - m.cs = 180 - goto _testEof - _testEof181: - m.cs = 181 - goto _testEof - _testEof182: - m.cs = 182 - goto _testEof - _testEof183: - m.cs = 183 - goto _testEof - _testEof184: - m.cs = 184 - goto _testEof - _testEof185: - m.cs = 185 - goto _testEof - _testEof186: - m.cs = 186 - goto _testEof - _testEof187: - m.cs = 187 - goto _testEof - _testEof188: - m.cs = 188 - goto _testEof - _testEof189: - m.cs = 189 - goto _testEof - _testEof190: - m.cs = 190 - goto _testEof - _testEof191: - m.cs = 191 - goto _testEof - _testEof192: - m.cs = 192 - goto _testEof - _testEof193: - m.cs = 193 - goto _testEof - _testEof194: - m.cs = 194 - goto _testEof - _testEof195: - m.cs = 195 - goto _testEof - _testEof196: - m.cs = 196 - goto _testEof - _testEof197: - m.cs = 197 - goto _testEof - _testEof198: - m.cs = 198 - goto _testEof - _testEof199: - m.cs = 199 - goto _testEof - _testEof200: - m.cs = 200 - goto _testEof - _testEof201: - m.cs = 201 - goto _testEof - _testEof202: - m.cs = 202 - goto _testEof - _testEof203: - m.cs = 203 - goto _testEof - _testEof204: - m.cs = 204 - goto _testEof - _testEof205: - m.cs = 205 - goto _testEof - _testEof206: - m.cs = 206 - goto _testEof - _testEof207: - m.cs = 207 - goto _testEof - _testEof208: - m.cs = 208 - goto _testEof - _testEof209: - m.cs = 209 - goto _testEof - _testEof210: - m.cs = 210 - goto _testEof - _testEof211: - m.cs = 211 - goto _testEof - _testEof212: - m.cs = 212 - goto _testEof - _testEof213: - m.cs = 213 - goto _testEof - _testEof214: - m.cs = 214 - goto _testEof - _testEof215: - m.cs = 215 - goto _testEof - _testEof216: - m.cs = 216 - goto _testEof - _testEof217: - m.cs = 217 - goto _testEof - _testEof218: - m.cs = 218 - goto _testEof - _testEof219: - m.cs = 219 - goto _testEof - _testEof220: - m.cs = 220 - goto _testEof - _testEof221: - m.cs = 221 - goto _testEof - _testEof222: - m.cs = 222 - goto _testEof - _testEof223: - m.cs = 223 - goto _testEof - _testEof224: - m.cs = 224 - goto _testEof - _testEof225: - m.cs = 225 - goto _testEof - _testEof226: - m.cs = 226 - goto _testEof - _testEof227: - m.cs = 227 - goto _testEof - _testEof228: - m.cs = 228 - goto _testEof - _testEof229: - m.cs = 229 - goto _testEof - _testEof230: - m.cs = 230 - goto _testEof - _testEof231: - m.cs = 231 - goto _testEof - _testEof232: - m.cs = 232 - goto _testEof - _testEof233: - m.cs = 233 - goto _testEof - _testEof234: - m.cs = 234 - goto _testEof - _testEof235: - m.cs = 235 - goto _testEof - _testEof236: - m.cs = 236 - goto _testEof - _testEof237: - m.cs = 237 - goto _testEof - _testEof238: - m.cs = 238 - goto _testEof - _testEof239: - m.cs = 239 - goto _testEof - _testEof240: - m.cs = 240 - goto _testEof - _testEof241: - m.cs = 241 - goto _testEof - _testEof242: - m.cs = 242 - goto _testEof - _testEof243: - m.cs = 243 - goto _testEof - _testEof244: - m.cs = 244 - goto _testEof - _testEof245: - m.cs = 245 - goto _testEof - _testEof246: - m.cs = 246 - goto _testEof - _testEof247: - m.cs = 247 - goto _testEof - _testEof248: - m.cs = 248 - goto _testEof - _testEof249: - m.cs = 249 - goto _testEof - _testEof250: - m.cs = 250 - goto _testEof - _testEof251: - m.cs = 251 - goto _testEof - _testEof252: - m.cs = 252 - goto _testEof - _testEof253: - m.cs = 253 - goto _testEof - _testEof254: - m.cs = 254 - goto _testEof - _testEof255: - m.cs = 255 - goto _testEof - _testEof256: - m.cs = 256 - goto _testEof - _testEof257: - m.cs = 257 - goto _testEof - _testEof258: - m.cs = 258 - goto _testEof - _testEof259: - m.cs = 259 - goto _testEof - _testEof260: - m.cs = 260 - goto _testEof - _testEof261: - m.cs = 261 - goto _testEof - _testEof262: - m.cs = 262 - goto _testEof - _testEof263: - m.cs = 263 - goto _testEof - _testEof264: - m.cs = 264 - goto _testEof - _testEof265: - m.cs = 265 - goto _testEof - _testEof266: - m.cs = 266 - goto _testEof - _testEof267: - m.cs = 267 - goto _testEof - _testEof268: - m.cs = 268 - goto _testEof - _testEof269: - m.cs = 269 - goto _testEof - _testEof270: - m.cs = 270 - goto _testEof - _testEof271: - m.cs = 271 - goto _testEof - _testEof272: - m.cs = 272 - goto _testEof - _testEof273: - m.cs = 273 - goto _testEof - _testEof274: - m.cs = 274 - goto _testEof - _testEof275: - m.cs = 275 - goto _testEof - _testEof276: - m.cs = 276 - goto _testEof - _testEof277: - m.cs = 277 - goto _testEof - _testEof278: - m.cs = 278 - goto _testEof - _testEof279: - m.cs = 279 - goto _testEof - _testEof280: - m.cs = 280 - goto _testEof - _testEof281: - m.cs = 281 - goto _testEof - _testEof282: - m.cs = 282 - goto _testEof - _testEof283: - m.cs = 283 - goto _testEof - _testEof284: - m.cs = 284 - goto _testEof - _testEof285: - m.cs = 285 - goto _testEof - _testEof286: - m.cs = 286 - goto _testEof - _testEof287: - m.cs = 287 - goto _testEof - _testEof288: - m.cs = 288 - goto _testEof - _testEof289: - m.cs = 289 - goto _testEof - _testEof290: - m.cs = 290 - goto _testEof - _testEof291: - m.cs = 291 - goto _testEof - _testEof292: - m.cs = 292 - goto _testEof - _testEof293: - m.cs = 293 - goto _testEof - _testEof294: - m.cs = 294 - goto _testEof - _testEof295: - m.cs = 295 - goto _testEof - _testEof296: - m.cs = 296 - goto _testEof - _testEof297: - m.cs = 297 - goto _testEof - _testEof298: - m.cs = 298 - goto _testEof - _testEof299: - m.cs = 299 - goto _testEof - _testEof300: - m.cs = 300 - goto _testEof - _testEof301: - m.cs = 301 - goto _testEof - _testEof302: - m.cs = 302 - goto _testEof - _testEof303: - m.cs = 303 - goto _testEof - _testEof304: - m.cs = 304 - goto _testEof - _testEof305: - m.cs = 305 - goto _testEof - _testEof306: - m.cs = 306 - goto _testEof - _testEof307: - m.cs = 307 - goto _testEof - _testEof308: - m.cs = 308 - goto _testEof - _testEof309: - m.cs = 309 - goto _testEof - _testEof310: - m.cs = 310 - goto _testEof - _testEof311: - m.cs = 311 - goto _testEof - _testEof312: - m.cs = 312 - goto _testEof - _testEof313: - m.cs = 313 - goto _testEof - _testEof314: - m.cs = 314 - goto _testEof - _testEof315: - m.cs = 315 - goto _testEof - _testEof316: - m.cs = 316 - goto _testEof - _testEof317: - m.cs = 317 - goto _testEof - _testEof318: - m.cs = 318 - goto _testEof - _testEof319: - m.cs = 319 - goto _testEof - _testEof320: - m.cs = 320 - goto _testEof - _testEof321: - m.cs = 321 - goto _testEof - _testEof322: - m.cs = 322 - goto _testEof - _testEof323: - m.cs = 323 - goto _testEof - _testEof324: - m.cs = 324 - goto _testEof - _testEof325: - m.cs = 325 - goto _testEof - _testEof326: - m.cs = 326 - goto _testEof - _testEof327: - m.cs = 327 - goto _testEof - _testEof328: - m.cs = 328 - goto _testEof - _testEof329: - m.cs = 329 - goto _testEof - _testEof330: - m.cs = 330 - goto _testEof - _testEof331: - m.cs = 331 - goto _testEof - _testEof332: - m.cs = 332 - goto _testEof - _testEof373: - m.cs = 373 - goto _testEof - - _testEof: - { - } - if (m.p) == (m.eof) { - switch m.cs { - case 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372: - - output.message = string(m.text()) - - case 1: - - m.err = fmt.Errorf(errPri, m.p) - (m.p)-- - - { - goto st373 - } - - case 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299: - - m.err = fmt.Errorf(errTimestamp, m.p) - (m.p)-- - - { - goto st373 - } - - case 318, 319, 320, 321, 322, 323, 325: - - m.err = fmt.Errorf(errRFC3339, m.p) - (m.p)-- - - { - goto st373 - } - - case 20, 21, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280: - - m.err = fmt.Errorf(errHostname, m.p) - (m.p)-- - - { - goto st373 - } - - case 22: - - m.err = fmt.Errorf(errTag, m.p) - (m.p)-- - - { - goto st373 - } - - case 2, 3, 330, 331, 332: - - m.err = fmt.Errorf(errPrival, m.p) - (m.p)-- - - { - goto st373 - } - - m.err = fmt.Errorf(errPri, m.p) - (m.p)-- + if 560 <= _widec && _widec <= 569 { + goto tr353 + } + goto tr7 +tr345: +//line rfc3164/machine.go.rl:31 - { - goto st373 - } + m.pb = m.p - } + goto st334 + st334: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof334 } - - _out: - { + st_case_334: +//line rfc3164/machine.go:6920 + switch ( m.data)[( m.p)] { + case 112: + goto st335 + case 117: + goto st613 } - } - - if m.cs < firstFinal || m.cs == enFail { - if m.bestEffort && output.minimal() { - // An error occurred but partial parsing is on and partial message is minimally valid - return output.export(), m.err + goto tr7 + st335: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof335 } - return nil, m.err - } - - return output.export(), nil -} + st_case_335: + if ( m.data)[( m.p)] == 114 { + goto st336 + } + goto tr7 + st336: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof336 + } + st_case_336: + if ( m.data)[( m.p)] == 32 { + goto st337 + } + goto tr7 + st337: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof337 + } + st_case_337: + switch ( m.data)[( m.p)] { + case 32: + goto st338 + case 51: + goto st612 + } + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { + goto st611 + } + goto tr7 + st338: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof338 + } + st_case_338: + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st339 + } + goto tr7 + st339: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof339 + } + st_case_339: + if ( m.data)[( m.p)] == 32 { + goto st340 + } + goto tr7 + st340: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof340 + } + st_case_340: + if ( m.data)[( m.p)] == 50 { + goto st610 + } + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { + goto st341 + } + goto tr7 + st341: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof341 + } + st_case_341: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st342 + } + goto tr7 + st342: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof342 + } + st_case_342: + if ( m.data)[( m.p)] == 58 { + goto st343 + } + goto tr7 + st343: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof343 + } + st_case_343: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { + goto st344 + } + goto tr7 + st344: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof344 + } + st_case_344: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st345 + } + goto tr7 + st345: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof345 + } + st_case_345: + if ( m.data)[( m.p)] == 58 { + goto st346 + } + goto tr7 + st346: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof346 + } + st_case_346: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { + goto st347 + } + goto tr7 + st347: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof347 + } + st_case_347: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st348 + } + goto tr7 + st348: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof348 + } + st_case_348: + if ( m.data)[( m.p)] == 32 { + goto tr372 + } + goto st0 +tr372: +//line rfc3164/machine.go.rl:40 + + if t, e := time.Parse(time.Stamp, string(m.text())); e != nil { + m.err = fmt.Errorf("%s [col %d]", e, m.p) + ( m.p)-- + + {goto st699 } + } else { + if m.timezone != nil { + t, _ = time.ParseInLocation(time.Stamp, string(m.text()), m.timezone) + } + output.timestamp = t.AddDate(m.yyyy, 0, 0) + if m.loc != nil { + output.timestamp = output.timestamp.In(m.loc) + } + output.timestampSet = true + } + + goto st349 +tr674: +//line rfc3164/machine.go.rl:57 + + if t, e := time.Parse(time.RFC3339, string(m.text())); e != nil { + m.err = fmt.Errorf("%s [col %d]", e, m.p) + ( m.p)-- + + {goto st699 } + } else { + output.timestamp = t + output.timestampSet = true + } + + goto st349 + st349: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof349 + } + st_case_349: +//line rfc3164/machine.go:7102 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto tr373 + } + goto tr37 +tr373: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st350 + st350: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof350 + } + st_case_350: +//line rfc3164/machine.go:7118 + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st356 + } + goto tr37 +tr374: +//line rfc3164/machine.go.rl:68 + + output.hostname = string(m.text()) + + goto st351 + st351: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof351 + } + st_case_351: +//line rfc3164/machine.go:7137 + if ( m.data)[( m.p)] == 127 { + goto tr41 + } + switch { + case ( m.data)[( m.p)] < 33: + if ( m.data)[( m.p)] <= 31 { + goto tr41 + } + case ( m.data)[( m.p)] > 57: + switch { + case ( m.data)[( m.p)] > 90: + if 92 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto tr377 + } + case ( m.data)[( m.p)] >= 59: + goto tr377 + } + default: + goto tr377 + } + goto tr376 +tr376: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st700 + st700: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof700 + } + st_case_700: +//line rfc3164/machine.go:7170 + if ( m.data)[( m.p)] == 127 { + goto st0 + } + if ( m.data)[( m.p)] <= 31 { + goto st0 + } + goto st700 +tr377: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st701 + st701: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof701 + } + st_case_701: +//line rfc3164/machine.go:7189 + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st702 + } + default: + goto st0 + } + goto st700 + st702: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof702 + } + st_case_702: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st703 + } + default: + goto st0 + } + goto st700 + st703: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof703 + } + st_case_703: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st704 + } + default: + goto st0 + } + goto st700 + st704: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof704 + } + st_case_704: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st705 + } + default: + goto st0 + } + goto st700 + st705: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof705 + } + st_case_705: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st706 + } + default: + goto st0 + } + goto st700 + st706: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof706 + } + st_case_706: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st707 + } + default: + goto st0 + } + goto st700 + st707: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof707 + } + st_case_707: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st708 + } + default: + goto st0 + } + goto st700 + st708: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof708 + } + st_case_708: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st709 + } + default: + goto st0 + } + goto st700 + st709: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof709 + } + st_case_709: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st710 + } + default: + goto st0 + } + goto st700 + st710: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof710 + } + st_case_710: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st711 + } + default: + goto st0 + } + goto st700 + st711: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof711 + } + st_case_711: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st712 + } + default: + goto st0 + } + goto st700 + st712: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof712 + } + st_case_712: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st713 + } + default: + goto st0 + } + goto st700 + st713: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof713 + } + st_case_713: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st714 + } + default: + goto st0 + } + goto st700 + st714: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof714 + } + st_case_714: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st715 + } + default: + goto st0 + } + goto st700 + st715: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof715 + } + st_case_715: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st716 + } + default: + goto st0 + } + goto st700 + st716: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof716 + } + st_case_716: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st717 + } + default: + goto st0 + } + goto st700 + st717: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof717 + } + st_case_717: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st718 + } + default: + goto st0 + } + goto st700 + st718: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof718 + } + st_case_718: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st719 + } + default: + goto st0 + } + goto st700 + st719: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof719 + } + st_case_719: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st720 + } + default: + goto st0 + } + goto st700 + st720: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof720 + } + st_case_720: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st721 + } + default: + goto st0 + } + goto st700 + st721: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof721 + } + st_case_721: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st722 + } + default: + goto st0 + } + goto st700 + st722: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof722 + } + st_case_722: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st723 + } + default: + goto st0 + } + goto st700 + st723: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof723 + } + st_case_723: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st724 + } + default: + goto st0 + } + goto st700 + st724: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof724 + } + st_case_724: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st725 + } + default: + goto st0 + } + goto st700 + st725: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof725 + } + st_case_725: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st726 + } + default: + goto st0 + } + goto st700 + st726: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof726 + } + st_case_726: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st727 + } + default: + goto st0 + } + goto st700 + st727: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof727 + } + st_case_727: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st728 + } + default: + goto st0 + } + goto st700 + st728: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof728 + } + st_case_728: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st729 + } + default: + goto st0 + } + goto st700 + st729: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof729 + } + st_case_729: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st730 + } + default: + goto st0 + } + goto st700 + st730: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof730 + } + st_case_730: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st731 + } + default: + goto st0 + } + goto st700 + st731: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof731 + } + st_case_731: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + switch { + case ( m.data)[( m.p)] > 31: + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st732 + } + default: + goto st0 + } + goto st700 + st732: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof732 + } + st_case_732: + switch ( m.data)[( m.p)] { + case 58: + goto tr719 + case 91: + goto tr720 + case 127: + goto st0 + } + if ( m.data)[( m.p)] <= 31 { + goto st0 + } + goto st700 +tr719: +//line rfc3164/machine.go.rl:72 + + output.tag = string(m.text()) + + goto st733 + st733: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof733 + } + st_case_733: +//line rfc3164/machine.go:7895 + switch ( m.data)[( m.p)] { + case 32: + goto st734 + case 127: + goto st0 + } + if ( m.data)[( m.p)] <= 31 { + goto st0 + } + goto st700 + st734: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof734 + } + st_case_734: + if ( m.data)[( m.p)] == 127 { + goto st0 + } + if ( m.data)[( m.p)] <= 31 { + goto st0 + } + goto tr376 +tr720: +//line rfc3164/machine.go.rl:72 + + output.tag = string(m.text()) + + goto st735 + st735: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof735 + } + st_case_735: +//line rfc3164/machine.go:7929 + switch ( m.data)[( m.p)] { + case 93: + goto tr753 + case 127: + goto tr752 + } + if ( m.data)[( m.p)] <= 31 { + goto tr752 + } + goto tr382 +tr752: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st352 + st352: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof352 + } + st_case_352: +//line rfc3164/machine.go:7951 + if ( m.data)[( m.p)] == 93 { + goto tr379 + } + goto st352 +tr379: +//line rfc3164/machine.go.rl:76 + + output.content = string(m.text()) + + goto st353 + st353: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof353 + } + st_case_353: +//line rfc3164/machine.go:7967 + switch ( m.data)[( m.p)] { + case 58: + goto st354 + case 93: + goto tr379 + } + goto st352 + st354: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof354 + } + st_case_354: + switch ( m.data)[( m.p)] { + case 32: + goto st355 + case 93: + goto tr379 + } + goto st352 + st355: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof355 + } + st_case_355: + switch ( m.data)[( m.p)] { + case 93: + goto tr383 + case 127: + goto st352 + } + if ( m.data)[( m.p)] <= 31 { + goto st352 + } + goto tr382 +tr382: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st736 + st736: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof736 + } + st_case_736: +//line rfc3164/machine.go:8013 + switch ( m.data)[( m.p)] { + case 93: + goto tr755 + case 127: + goto st352 + } + if ( m.data)[( m.p)] <= 31 { + goto st352 + } + goto st736 +tr755: +//line rfc3164/machine.go.rl:76 + + output.content = string(m.text()) + + goto st737 +tr383: +//line rfc3164/machine.go.rl:76 + + output.content = string(m.text()) + +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st737 +tr753: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + +//line rfc3164/machine.go.rl:76 + + output.content = string(m.text()) + + goto st737 + st737: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof737 + } + st_case_737: +//line rfc3164/machine.go:8055 + switch ( m.data)[( m.p)] { + case 58: + goto st738 + case 93: + goto tr755 + case 127: + goto st352 + } + if ( m.data)[( m.p)] <= 31 { + goto st352 + } + goto st736 + st738: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof738 + } + st_case_738: + switch ( m.data)[( m.p)] { + case 32: + goto st739 + case 93: + goto tr755 + case 127: + goto st352 + } + if ( m.data)[( m.p)] <= 31 { + goto st352 + } + goto st736 + st739: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof739 + } + st_case_739: + switch ( m.data)[( m.p)] { + case 93: + goto tr383 + case 127: + goto st352 + } + if ( m.data)[( m.p)] <= 31 { + goto st352 + } + goto tr382 + st356: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof356 + } + st_case_356: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st357 + } + goto tr37 + st357: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof357 + } + st_case_357: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st358 + } + goto tr37 + st358: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof358 + } + st_case_358: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st359 + } + goto tr37 + st359: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof359 + } + st_case_359: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st360 + } + goto tr37 + st360: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof360 + } + st_case_360: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st361 + } + goto tr37 + st361: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof361 + } + st_case_361: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st362 + } + goto tr37 + st362: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof362 + } + st_case_362: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st363 + } + goto tr37 + st363: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof363 + } + st_case_363: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st364 + } + goto tr37 + st364: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof364 + } + st_case_364: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st365 + } + goto tr37 + st365: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof365 + } + st_case_365: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st366 + } + goto tr37 + st366: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof366 + } + st_case_366: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st367 + } + goto tr37 + st367: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof367 + } + st_case_367: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st368 + } + goto tr37 + st368: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof368 + } + st_case_368: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st369 + } + goto tr37 + st369: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof369 + } + st_case_369: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st370 + } + goto tr37 + st370: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof370 + } + st_case_370: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st371 + } + goto tr37 + st371: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof371 + } + st_case_371: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st372 + } + goto tr37 + st372: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof372 + } + st_case_372: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st373 + } + goto tr37 + st373: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof373 + } + st_case_373: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st374 + } + goto tr37 + st374: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof374 + } + st_case_374: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st375 + } + goto tr37 + st375: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof375 + } + st_case_375: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st376 + } + goto tr37 + st376: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof376 + } + st_case_376: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st377 + } + goto tr37 + st377: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof377 + } + st_case_377: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st378 + } + goto tr37 + st378: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof378 + } + st_case_378: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st379 + } + goto tr37 + st379: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof379 + } + st_case_379: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st380 + } + goto tr37 + st380: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof380 + } + st_case_380: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st381 + } + goto tr37 + st381: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof381 + } + st_case_381: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st382 + } + goto tr37 + st382: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof382 + } + st_case_382: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st383 + } + goto tr37 + st383: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof383 + } + st_case_383: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st384 + } + goto tr37 + st384: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof384 + } + st_case_384: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st385 + } + goto tr37 + st385: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof385 + } + st_case_385: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st386 + } + goto tr37 + st386: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof386 + } + st_case_386: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st387 + } + goto tr37 + st387: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof387 + } + st_case_387: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st388 + } + goto tr37 + st388: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof388 + } + st_case_388: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st389 + } + goto tr37 + st389: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof389 + } + st_case_389: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st390 + } + goto tr37 + st390: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof390 + } + st_case_390: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st391 + } + goto tr37 + st391: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof391 + } + st_case_391: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st392 + } + goto tr37 + st392: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof392 + } + st_case_392: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st393 + } + goto tr37 + st393: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof393 + } + st_case_393: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st394 + } + goto tr37 + st394: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof394 + } + st_case_394: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st395 + } + goto tr37 + st395: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof395 + } + st_case_395: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st396 + } + goto tr37 + st396: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof396 + } + st_case_396: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st397 + } + goto tr37 + st397: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof397 + } + st_case_397: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st398 + } + goto tr37 + st398: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof398 + } + st_case_398: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st399 + } + goto tr37 + st399: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof399 + } + st_case_399: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st400 + } + goto tr37 + st400: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof400 + } + st_case_400: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st401 + } + goto tr37 + st401: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof401 + } + st_case_401: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st402 + } + goto tr37 + st402: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof402 + } + st_case_402: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st403 + } + goto tr37 + st403: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof403 + } + st_case_403: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st404 + } + goto tr37 + st404: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof404 + } + st_case_404: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st405 + } + goto tr37 + st405: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof405 + } + st_case_405: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st406 + } + goto tr37 + st406: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof406 + } + st_case_406: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st407 + } + goto tr37 + st407: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof407 + } + st_case_407: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st408 + } + goto tr37 + st408: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof408 + } + st_case_408: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st409 + } + goto tr37 + st409: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof409 + } + st_case_409: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st410 + } + goto tr37 + st410: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof410 + } + st_case_410: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st411 + } + goto tr37 + st411: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof411 + } + st_case_411: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st412 + } + goto tr37 + st412: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof412 + } + st_case_412: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st413 + } + goto tr37 + st413: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof413 + } + st_case_413: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st414 + } + goto tr37 + st414: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof414 + } + st_case_414: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st415 + } + goto tr37 + st415: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof415 + } + st_case_415: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st416 + } + goto tr37 + st416: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof416 + } + st_case_416: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st417 + } + goto tr37 + st417: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof417 + } + st_case_417: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st418 + } + goto tr37 + st418: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof418 + } + st_case_418: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st419 + } + goto tr37 + st419: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof419 + } + st_case_419: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st420 + } + goto tr37 + st420: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof420 + } + st_case_420: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st421 + } + goto tr37 + st421: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof421 + } + st_case_421: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st422 + } + goto tr37 + st422: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof422 + } + st_case_422: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st423 + } + goto tr37 + st423: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof423 + } + st_case_423: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st424 + } + goto tr37 + st424: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof424 + } + st_case_424: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st425 + } + goto tr37 + st425: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof425 + } + st_case_425: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st426 + } + goto tr37 + st426: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof426 + } + st_case_426: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st427 + } + goto tr37 + st427: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof427 + } + st_case_427: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st428 + } + goto tr37 + st428: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof428 + } + st_case_428: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st429 + } + goto tr37 + st429: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof429 + } + st_case_429: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st430 + } + goto tr37 + st430: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof430 + } + st_case_430: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st431 + } + goto tr37 + st431: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof431 + } + st_case_431: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st432 + } + goto tr37 + st432: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof432 + } + st_case_432: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st433 + } + goto tr37 + st433: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof433 + } + st_case_433: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st434 + } + goto tr37 + st434: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof434 + } + st_case_434: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st435 + } + goto tr37 + st435: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof435 + } + st_case_435: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st436 + } + goto tr37 + st436: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof436 + } + st_case_436: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st437 + } + goto tr37 + st437: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof437 + } + st_case_437: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st438 + } + goto tr37 + st438: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof438 + } + st_case_438: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st439 + } + goto tr37 + st439: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof439 + } + st_case_439: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st440 + } + goto tr37 + st440: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof440 + } + st_case_440: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st441 + } + goto tr37 + st441: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof441 + } + st_case_441: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st442 + } + goto tr37 + st442: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof442 + } + st_case_442: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st443 + } + goto tr37 + st443: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof443 + } + st_case_443: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st444 + } + goto tr37 + st444: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof444 + } + st_case_444: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st445 + } + goto tr37 + st445: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof445 + } + st_case_445: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st446 + } + goto tr37 + st446: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof446 + } + st_case_446: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st447 + } + goto tr37 + st447: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof447 + } + st_case_447: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st448 + } + goto tr37 + st448: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof448 + } + st_case_448: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st449 + } + goto tr37 + st449: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof449 + } + st_case_449: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st450 + } + goto tr37 + st450: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof450 + } + st_case_450: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st451 + } + goto tr37 + st451: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof451 + } + st_case_451: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st452 + } + goto tr37 + st452: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof452 + } + st_case_452: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st453 + } + goto tr37 + st453: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof453 + } + st_case_453: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st454 + } + goto tr37 + st454: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof454 + } + st_case_454: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st455 + } + goto tr37 + st455: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof455 + } + st_case_455: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st456 + } + goto tr37 + st456: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof456 + } + st_case_456: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st457 + } + goto tr37 + st457: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof457 + } + st_case_457: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st458 + } + goto tr37 + st458: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof458 + } + st_case_458: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st459 + } + goto tr37 + st459: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof459 + } + st_case_459: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st460 + } + goto tr37 + st460: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof460 + } + st_case_460: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st461 + } + goto tr37 + st461: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof461 + } + st_case_461: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st462 + } + goto tr37 + st462: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof462 + } + st_case_462: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st463 + } + goto tr37 + st463: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof463 + } + st_case_463: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st464 + } + goto tr37 + st464: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof464 + } + st_case_464: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st465 + } + goto tr37 + st465: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof465 + } + st_case_465: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st466 + } + goto tr37 + st466: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof466 + } + st_case_466: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st467 + } + goto tr37 + st467: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof467 + } + st_case_467: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st468 + } + goto tr37 + st468: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof468 + } + st_case_468: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st469 + } + goto tr37 + st469: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof469 + } + st_case_469: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st470 + } + goto tr37 + st470: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof470 + } + st_case_470: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st471 + } + goto tr37 + st471: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof471 + } + st_case_471: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st472 + } + goto tr37 + st472: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof472 + } + st_case_472: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st473 + } + goto tr37 + st473: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof473 + } + st_case_473: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st474 + } + goto tr37 + st474: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof474 + } + st_case_474: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st475 + } + goto tr37 + st475: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof475 + } + st_case_475: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st476 + } + goto tr37 + st476: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof476 + } + st_case_476: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st477 + } + goto tr37 + st477: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof477 + } + st_case_477: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st478 + } + goto tr37 + st478: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof478 + } + st_case_478: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st479 + } + goto tr37 + st479: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof479 + } + st_case_479: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st480 + } + goto tr37 + st480: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof480 + } + st_case_480: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st481 + } + goto tr37 + st481: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof481 + } + st_case_481: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st482 + } + goto tr37 + st482: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof482 + } + st_case_482: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st483 + } + goto tr37 + st483: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof483 + } + st_case_483: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st484 + } + goto tr37 + st484: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof484 + } + st_case_484: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st485 + } + goto tr37 + st485: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof485 + } + st_case_485: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st486 + } + goto tr37 + st486: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof486 + } + st_case_486: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st487 + } + goto tr37 + st487: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof487 + } + st_case_487: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st488 + } + goto tr37 + st488: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof488 + } + st_case_488: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st489 + } + goto tr37 + st489: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof489 + } + st_case_489: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st490 + } + goto tr37 + st490: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof490 + } + st_case_490: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st491 + } + goto tr37 + st491: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof491 + } + st_case_491: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st492 + } + goto tr37 + st492: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof492 + } + st_case_492: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st493 + } + goto tr37 + st493: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof493 + } + st_case_493: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st494 + } + goto tr37 + st494: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof494 + } + st_case_494: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st495 + } + goto tr37 + st495: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof495 + } + st_case_495: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st496 + } + goto tr37 + st496: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof496 + } + st_case_496: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st497 + } + goto tr37 + st497: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof497 + } + st_case_497: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st498 + } + goto tr37 + st498: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof498 + } + st_case_498: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st499 + } + goto tr37 + st499: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof499 + } + st_case_499: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st500 + } + goto tr37 + st500: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof500 + } + st_case_500: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st501 + } + goto tr37 + st501: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof501 + } + st_case_501: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st502 + } + goto tr37 + st502: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof502 + } + st_case_502: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st503 + } + goto tr37 + st503: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof503 + } + st_case_503: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st504 + } + goto tr37 + st504: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof504 + } + st_case_504: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st505 + } + goto tr37 + st505: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof505 + } + st_case_505: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st506 + } + goto tr37 + st506: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof506 + } + st_case_506: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st507 + } + goto tr37 + st507: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof507 + } + st_case_507: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st508 + } + goto tr37 + st508: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof508 + } + st_case_508: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st509 + } + goto tr37 + st509: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof509 + } + st_case_509: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st510 + } + goto tr37 + st510: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof510 + } + st_case_510: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st511 + } + goto tr37 + st511: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof511 + } + st_case_511: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st512 + } + goto tr37 + st512: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof512 + } + st_case_512: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st513 + } + goto tr37 + st513: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof513 + } + st_case_513: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st514 + } + goto tr37 + st514: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof514 + } + st_case_514: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st515 + } + goto tr37 + st515: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof515 + } + st_case_515: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st516 + } + goto tr37 + st516: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof516 + } + st_case_516: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st517 + } + goto tr37 + st517: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof517 + } + st_case_517: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st518 + } + goto tr37 + st518: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof518 + } + st_case_518: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st519 + } + goto tr37 + st519: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof519 + } + st_case_519: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st520 + } + goto tr37 + st520: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof520 + } + st_case_520: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st521 + } + goto tr37 + st521: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof521 + } + st_case_521: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st522 + } + goto tr37 + st522: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof522 + } + st_case_522: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st523 + } + goto tr37 + st523: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof523 + } + st_case_523: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st524 + } + goto tr37 + st524: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof524 + } + st_case_524: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st525 + } + goto tr37 + st525: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof525 + } + st_case_525: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st526 + } + goto tr37 + st526: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof526 + } + st_case_526: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st527 + } + goto tr37 + st527: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof527 + } + st_case_527: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st528 + } + goto tr37 + st528: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof528 + } + st_case_528: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st529 + } + goto tr37 + st529: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof529 + } + st_case_529: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st530 + } + goto tr37 + st530: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof530 + } + st_case_530: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st531 + } + goto tr37 + st531: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof531 + } + st_case_531: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st532 + } + goto tr37 + st532: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof532 + } + st_case_532: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st533 + } + goto tr37 + st533: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof533 + } + st_case_533: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st534 + } + goto tr37 + st534: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof534 + } + st_case_534: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st535 + } + goto tr37 + st535: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof535 + } + st_case_535: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st536 + } + goto tr37 + st536: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof536 + } + st_case_536: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st537 + } + goto tr37 + st537: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof537 + } + st_case_537: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st538 + } + goto tr37 + st538: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof538 + } + st_case_538: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st539 + } + goto tr37 + st539: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof539 + } + st_case_539: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st540 + } + goto tr37 + st540: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof540 + } + st_case_540: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st541 + } + goto tr37 + st541: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof541 + } + st_case_541: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st542 + } + goto tr37 + st542: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof542 + } + st_case_542: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st543 + } + goto tr37 + st543: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof543 + } + st_case_543: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st544 + } + goto tr37 + st544: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof544 + } + st_case_544: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st545 + } + goto tr37 + st545: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof545 + } + st_case_545: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st546 + } + goto tr37 + st546: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof546 + } + st_case_546: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st547 + } + goto tr37 + st547: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof547 + } + st_case_547: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st548 + } + goto tr37 + st548: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof548 + } + st_case_548: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st549 + } + goto tr37 + st549: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof549 + } + st_case_549: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st550 + } + goto tr37 + st550: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof550 + } + st_case_550: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st551 + } + goto tr37 + st551: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof551 + } + st_case_551: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st552 + } + goto tr37 + st552: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof552 + } + st_case_552: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st553 + } + goto tr37 + st553: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof553 + } + st_case_553: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st554 + } + goto tr37 + st554: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof554 + } + st_case_554: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st555 + } + goto tr37 + st555: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof555 + } + st_case_555: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st556 + } + goto tr37 + st556: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof556 + } + st_case_556: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st557 + } + goto tr37 + st557: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof557 + } + st_case_557: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st558 + } + goto tr37 + st558: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof558 + } + st_case_558: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st559 + } + goto tr37 + st559: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof559 + } + st_case_559: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st560 + } + goto tr37 + st560: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof560 + } + st_case_560: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st561 + } + goto tr37 + st561: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof561 + } + st_case_561: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st562 + } + goto tr37 + st562: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof562 + } + st_case_562: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st563 + } + goto tr37 + st563: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof563 + } + st_case_563: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st564 + } + goto tr37 + st564: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof564 + } + st_case_564: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st565 + } + goto tr37 + st565: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof565 + } + st_case_565: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st566 + } + goto tr37 + st566: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof566 + } + st_case_566: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st567 + } + goto tr37 + st567: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof567 + } + st_case_567: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st568 + } + goto tr37 + st568: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof568 + } + st_case_568: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st569 + } + goto tr37 + st569: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof569 + } + st_case_569: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st570 + } + goto tr37 + st570: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof570 + } + st_case_570: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st571 + } + goto tr37 + st571: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof571 + } + st_case_571: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st572 + } + goto tr37 + st572: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof572 + } + st_case_572: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st573 + } + goto tr37 + st573: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof573 + } + st_case_573: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st574 + } + goto tr37 + st574: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof574 + } + st_case_574: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st575 + } + goto tr37 + st575: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof575 + } + st_case_575: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st576 + } + goto tr37 + st576: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof576 + } + st_case_576: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st577 + } + goto tr37 + st577: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof577 + } + st_case_577: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st578 + } + goto tr37 + st578: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof578 + } + st_case_578: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st579 + } + goto tr37 + st579: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof579 + } + st_case_579: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st580 + } + goto tr37 + st580: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof580 + } + st_case_580: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st581 + } + goto tr37 + st581: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof581 + } + st_case_581: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st582 + } + goto tr37 + st582: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof582 + } + st_case_582: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st583 + } + goto tr37 + st583: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof583 + } + st_case_583: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st584 + } + goto tr37 + st584: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof584 + } + st_case_584: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st585 + } + goto tr37 + st585: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof585 + } + st_case_585: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st586 + } + goto tr37 + st586: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof586 + } + st_case_586: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st587 + } + goto tr37 + st587: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof587 + } + st_case_587: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st588 + } + goto tr37 + st588: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof588 + } + st_case_588: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st589 + } + goto tr37 + st589: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof589 + } + st_case_589: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st590 + } + goto tr37 + st590: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof590 + } + st_case_590: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st591 + } + goto tr37 + st591: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof591 + } + st_case_591: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st592 + } + goto tr37 + st592: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof592 + } + st_case_592: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st593 + } + goto tr37 + st593: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof593 + } + st_case_593: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st594 + } + goto tr37 + st594: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof594 + } + st_case_594: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st595 + } + goto tr37 + st595: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof595 + } + st_case_595: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st596 + } + goto tr37 + st596: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof596 + } + st_case_596: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st597 + } + goto tr37 + st597: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof597 + } + st_case_597: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st598 + } + goto tr37 + st598: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof598 + } + st_case_598: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st599 + } + goto tr37 + st599: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof599 + } + st_case_599: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st600 + } + goto tr37 + st600: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof600 + } + st_case_600: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st601 + } + goto tr37 + st601: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof601 + } + st_case_601: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st602 + } + goto tr37 + st602: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof602 + } + st_case_602: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st603 + } + goto tr37 + st603: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof603 + } + st_case_603: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st604 + } + goto tr37 + st604: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof604 + } + st_case_604: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st605 + } + goto tr37 + st605: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof605 + } + st_case_605: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st606 + } + goto tr37 + st606: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof606 + } + st_case_606: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st607 + } + goto tr37 + st607: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof607 + } + st_case_607: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st608 + } + goto tr37 + st608: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof608 + } + st_case_608: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st609 + } + goto tr37 + st609: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof609 + } + st_case_609: + if ( m.data)[( m.p)] == 32 { + goto tr374 + } + goto tr37 + st610: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof610 + } + st_case_610: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { + goto st342 + } + goto tr7 + st611: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof611 + } + st_case_611: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st339 + } + goto tr7 + st612: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof612 + } + st_case_612: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { + goto st339 + } + goto tr7 + st613: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof613 + } + st_case_613: + if ( m.data)[( m.p)] == 103 { + goto st336 + } + goto tr7 +tr346: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st614 + st614: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof614 + } + st_case_614: +//line rfc3164/machine.go:11192 + if ( m.data)[( m.p)] == 101 { + goto st615 + } + goto tr7 + st615: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof615 + } + st_case_615: + if ( m.data)[( m.p)] == 99 { + goto st336 + } + goto tr7 +tr347: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st616 + st616: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof616 + } + st_case_616: +//line rfc3164/machine.go:11217 + if ( m.data)[( m.p)] == 101 { + goto st617 + } + goto tr7 + st617: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof617 + } + st_case_617: + if ( m.data)[( m.p)] == 98 { + goto st336 + } + goto tr7 +tr348: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st618 + st618: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof618 + } + st_case_618: +//line rfc3164/machine.go:11242 + switch ( m.data)[( m.p)] { + case 97: + goto st619 + case 117: + goto st620 + } + goto tr7 + st619: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof619 + } + st_case_619: + if ( m.data)[( m.p)] == 110 { + goto st336 + } + goto tr7 + st620: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof620 + } + st_case_620: + switch ( m.data)[( m.p)] { + case 108: + goto st336 + case 110: + goto st336 + } + goto tr7 +tr349: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st621 + st621: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof621 + } + st_case_621: +//line rfc3164/machine.go:11282 + if ( m.data)[( m.p)] == 97 { + goto st622 + } + goto tr7 + st622: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof622 + } + st_case_622: + switch ( m.data)[( m.p)] { + case 114: + goto st336 + case 121: + goto st336 + } + goto tr7 +tr350: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st623 + st623: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof623 + } + st_case_623: +//line rfc3164/machine.go:11310 + if ( m.data)[( m.p)] == 111 { + goto st624 + } + goto tr7 + st624: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof624 + } + st_case_624: + if ( m.data)[( m.p)] == 118 { + goto st336 + } + goto tr7 +tr351: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st625 + st625: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof625 + } + st_case_625: +//line rfc3164/machine.go:11335 + if ( m.data)[( m.p)] == 99 { + goto st626 + } + goto tr7 + st626: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof626 + } + st_case_626: + if ( m.data)[( m.p)] == 116 { + goto st336 + } + goto tr7 +tr352: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st627 + st627: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof627 + } + st_case_627: +//line rfc3164/machine.go:11360 + if ( m.data)[( m.p)] == 101 { + goto st628 + } + goto tr7 + st628: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof628 + } + st_case_628: + if ( m.data)[( m.p)] == 112 { + goto st336 + } + goto tr7 +tr353: +//line rfc3164/machine.go.rl:31 + + m.pb = m.p + + goto st629 + st629: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof629 + } + st_case_629: +//line rfc3164/machine.go:11385 + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 569 { + goto st630 + } + goto st0 + st630: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof630 + } + st_case_630: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 569 { + goto st631 + } + goto st0 + st631: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof631 + } + st_case_631: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 569 { + goto st632 + } + goto st0 + st632: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof632 + } + st_case_632: + _widec = int16(( m.data)[( m.p)]) + if 45 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 45 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if _widec == 557 { + goto st633 + } + goto st0 + st633: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof633 + } + st_case_633: + _widec = int16(( m.data)[( m.p)]) + switch { + case ( m.data)[( m.p)] > 48: + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + case ( m.data)[( m.p)] >= 48: + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + switch _widec { + case 560: + goto st634 + case 561: + goto st658 + } + goto st0 + st634: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof634 + } + st_case_634: + _widec = int16(( m.data)[( m.p)]) + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 561 <= _widec && _widec <= 569 { + goto st635 + } + goto st0 + st635: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof635 + } + st_case_635: + _widec = int16(( m.data)[( m.p)]) + if 45 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 45 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if _widec == 557 { + goto st636 + } + goto st0 + st636: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof636 + } + st_case_636: + _widec = int16(( m.data)[( m.p)]) + switch { + case ( m.data)[( m.p)] < 49: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 48 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + case ( m.data)[( m.p)] > 50: + if 51 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + default: + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + switch _widec { + case 560: + goto st637 + case 563: + goto st657 + } + if 561 <= _widec && _widec <= 562 { + goto st656 + } + goto st0 + st637: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof637 + } + st_case_637: + _widec = int16(( m.data)[( m.p)]) + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 561 <= _widec && _widec <= 569 { + goto st638 + } + goto st0 + st638: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof638 + } + st_case_638: + _widec = int16(( m.data)[( m.p)]) + if 84 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 84 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if _widec == 596 { + goto st639 + } + goto st0 + st639: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof639 + } + st_case_639: + _widec = int16(( m.data)[( m.p)]) + switch { + case ( m.data)[( m.p)] > 49: + if 50 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + case ( m.data)[( m.p)] >= 48: + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if _widec == 562 { + goto st655 + } + if 560 <= _widec && _widec <= 561 { + goto st640 + } + goto st0 + st640: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof640 + } + st_case_640: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 569 { + goto st641 + } + goto st0 + st641: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof641 + } + st_case_641: + _widec = int16(( m.data)[( m.p)]) + if 58 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 58 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if _widec == 570 { + goto st642 + } + goto st0 + st642: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof642 + } + st_case_642: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 565 { + goto st643 + } + goto st0 + st643: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof643 + } + st_case_643: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 569 { + goto st644 + } + goto st0 + st644: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof644 + } + st_case_644: + _widec = int16(( m.data)[( m.p)]) + if 58 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 58 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if _widec == 570 { + goto st645 + } + goto st0 + st645: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof645 + } + st_case_645: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 565 { + goto st646 + } + goto st0 + st646: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof646 + } + st_case_646: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 569 { + goto st647 + } + goto st0 + st647: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof647 + } + st_case_647: + _widec = int16(( m.data)[( m.p)]) + switch { + case ( m.data)[( m.p)] < 45: + if 43 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 43 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + case ( m.data)[( m.p)] > 45: + if 90 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 90 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + default: + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + switch _widec { + case 555: + goto st648 + case 557: + goto st648 + case 602: + goto st653 + } + goto tr333 + st648: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof648 + } + st_case_648: + _widec = int16(( m.data)[( m.p)]) + switch { + case ( m.data)[( m.p)] > 49: + if 50 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + case ( m.data)[( m.p)] >= 48: + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if _widec == 562 { + goto st654 + } + if 560 <= _widec && _widec <= 561 { + goto st649 + } + goto tr333 + st649: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof649 + } + st_case_649: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 569 { + goto st650 + } + goto tr333 + st650: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof650 + } + st_case_650: + _widec = int16(( m.data)[( m.p)]) + if 58 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 58 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if _widec == 570 { + goto st651 + } + goto tr333 + st651: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof651 + } + st_case_651: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 565 { + goto st652 + } + goto tr333 + st652: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof652 + } + st_case_652: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 569 { + goto st653 + } + goto tr333 + st653: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof653 + } + st_case_653: + if ( m.data)[( m.p)] == 32 { + goto tr674 + } + goto st0 + st654: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof654 + } + st_case_654: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 563 { + goto st650 + } + goto tr333 + st655: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof655 + } + st_case_655: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 563 { + goto st641 + } + goto st0 + st656: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof656 + } + st_case_656: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 569 { + goto st638 + } + goto st0 + st657: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof657 + } + st_case_657: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 561 { + goto st638 + } + goto st0 + st658: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof658 + } + st_case_658: + _widec = int16(( m.data)[( m.p)]) + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { + _widec = 256 + (int16(( m.data)[( m.p)]) - 0) + if m.rfc3339 { + _widec += 256 + } + } + if 560 <= _widec && _widec <= 562 { + goto st635 + } + goto st0 + st699: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof699 + } + st_case_699: + switch ( m.data)[( m.p)] { + case 10: + goto st0 + case 13: + goto st0 + } + goto st699 + st_out: + _test_eof2: m.cs = 2; goto _test_eof + _test_eof3: m.cs = 3; goto _test_eof + _test_eof4: m.cs = 4; goto _test_eof + _test_eof5: m.cs = 5; goto _test_eof + _test_eof6: m.cs = 6; goto _test_eof + _test_eof7: m.cs = 7; goto _test_eof + _test_eof8: m.cs = 8; goto _test_eof + _test_eof9: m.cs = 9; goto _test_eof + _test_eof10: m.cs = 10; goto _test_eof + _test_eof11: m.cs = 11; goto _test_eof + _test_eof12: m.cs = 12; goto _test_eof + _test_eof13: m.cs = 13; goto _test_eof + _test_eof14: m.cs = 14; goto _test_eof + _test_eof15: m.cs = 15; goto _test_eof + _test_eof16: m.cs = 16; goto _test_eof + _test_eof17: m.cs = 17; goto _test_eof + _test_eof18: m.cs = 18; goto _test_eof + _test_eof19: m.cs = 19; goto _test_eof + _test_eof20: m.cs = 20; goto _test_eof + _test_eof21: m.cs = 21; goto _test_eof + _test_eof22: m.cs = 22; goto _test_eof + _test_eof659: m.cs = 659; goto _test_eof + _test_eof660: m.cs = 660; goto _test_eof + _test_eof661: m.cs = 661; goto _test_eof + _test_eof662: m.cs = 662; goto _test_eof + _test_eof663: m.cs = 663; goto _test_eof + _test_eof664: m.cs = 664; goto _test_eof + _test_eof665: m.cs = 665; goto _test_eof + _test_eof666: m.cs = 666; goto _test_eof + _test_eof667: m.cs = 667; goto _test_eof + _test_eof668: m.cs = 668; goto _test_eof + _test_eof669: m.cs = 669; goto _test_eof + _test_eof670: m.cs = 670; goto _test_eof + _test_eof671: m.cs = 671; goto _test_eof + _test_eof672: m.cs = 672; goto _test_eof + _test_eof673: m.cs = 673; goto _test_eof + _test_eof674: m.cs = 674; goto _test_eof + _test_eof675: m.cs = 675; goto _test_eof + _test_eof676: m.cs = 676; goto _test_eof + _test_eof677: m.cs = 677; goto _test_eof + _test_eof678: m.cs = 678; goto _test_eof + _test_eof679: m.cs = 679; goto _test_eof + _test_eof680: m.cs = 680; goto _test_eof + _test_eof681: m.cs = 681; goto _test_eof + _test_eof682: m.cs = 682; goto _test_eof + _test_eof683: m.cs = 683; goto _test_eof + _test_eof684: m.cs = 684; goto _test_eof + _test_eof685: m.cs = 685; goto _test_eof + _test_eof686: m.cs = 686; goto _test_eof + _test_eof687: m.cs = 687; goto _test_eof + _test_eof688: m.cs = 688; goto _test_eof + _test_eof689: m.cs = 689; goto _test_eof + _test_eof690: m.cs = 690; goto _test_eof + _test_eof691: m.cs = 691; goto _test_eof + _test_eof692: m.cs = 692; goto _test_eof + _test_eof693: m.cs = 693; goto _test_eof + _test_eof694: m.cs = 694; goto _test_eof + _test_eof23: m.cs = 23; goto _test_eof + _test_eof24: m.cs = 24; goto _test_eof + _test_eof25: m.cs = 25; goto _test_eof + _test_eof26: m.cs = 26; goto _test_eof + _test_eof695: m.cs = 695; goto _test_eof + _test_eof696: m.cs = 696; goto _test_eof + _test_eof697: m.cs = 697; goto _test_eof + _test_eof698: m.cs = 698; goto _test_eof + _test_eof27: m.cs = 27; goto _test_eof + _test_eof28: m.cs = 28; goto _test_eof + _test_eof29: m.cs = 29; goto _test_eof + _test_eof30: m.cs = 30; goto _test_eof + _test_eof31: m.cs = 31; goto _test_eof + _test_eof32: m.cs = 32; goto _test_eof + _test_eof33: m.cs = 33; goto _test_eof + _test_eof34: m.cs = 34; goto _test_eof + _test_eof35: m.cs = 35; goto _test_eof + _test_eof36: m.cs = 36; goto _test_eof + _test_eof37: m.cs = 37; goto _test_eof + _test_eof38: m.cs = 38; goto _test_eof + _test_eof39: m.cs = 39; goto _test_eof + _test_eof40: m.cs = 40; goto _test_eof + _test_eof41: m.cs = 41; goto _test_eof + _test_eof42: m.cs = 42; goto _test_eof + _test_eof43: m.cs = 43; goto _test_eof + _test_eof44: m.cs = 44; goto _test_eof + _test_eof45: m.cs = 45; goto _test_eof + _test_eof46: m.cs = 46; goto _test_eof + _test_eof47: m.cs = 47; goto _test_eof + _test_eof48: m.cs = 48; goto _test_eof + _test_eof49: m.cs = 49; goto _test_eof + _test_eof50: m.cs = 50; goto _test_eof + _test_eof51: m.cs = 51; goto _test_eof + _test_eof52: m.cs = 52; goto _test_eof + _test_eof53: m.cs = 53; goto _test_eof + _test_eof54: m.cs = 54; goto _test_eof + _test_eof55: m.cs = 55; goto _test_eof + _test_eof56: m.cs = 56; goto _test_eof + _test_eof57: m.cs = 57; goto _test_eof + _test_eof58: m.cs = 58; goto _test_eof + _test_eof59: m.cs = 59; goto _test_eof + _test_eof60: m.cs = 60; goto _test_eof + _test_eof61: m.cs = 61; goto _test_eof + _test_eof62: m.cs = 62; goto _test_eof + _test_eof63: m.cs = 63; goto _test_eof + _test_eof64: m.cs = 64; goto _test_eof + _test_eof65: m.cs = 65; goto _test_eof + _test_eof66: m.cs = 66; goto _test_eof + _test_eof67: m.cs = 67; goto _test_eof + _test_eof68: m.cs = 68; goto _test_eof + _test_eof69: m.cs = 69; goto _test_eof + _test_eof70: m.cs = 70; goto _test_eof + _test_eof71: m.cs = 71; goto _test_eof + _test_eof72: m.cs = 72; goto _test_eof + _test_eof73: m.cs = 73; goto _test_eof + _test_eof74: m.cs = 74; goto _test_eof + _test_eof75: m.cs = 75; goto _test_eof + _test_eof76: m.cs = 76; goto _test_eof + _test_eof77: m.cs = 77; goto _test_eof + _test_eof78: m.cs = 78; goto _test_eof + _test_eof79: m.cs = 79; goto _test_eof + _test_eof80: m.cs = 80; goto _test_eof + _test_eof81: m.cs = 81; goto _test_eof + _test_eof82: m.cs = 82; goto _test_eof + _test_eof83: m.cs = 83; goto _test_eof + _test_eof84: m.cs = 84; goto _test_eof + _test_eof85: m.cs = 85; goto _test_eof + _test_eof86: m.cs = 86; goto _test_eof + _test_eof87: m.cs = 87; goto _test_eof + _test_eof88: m.cs = 88; goto _test_eof + _test_eof89: m.cs = 89; goto _test_eof + _test_eof90: m.cs = 90; goto _test_eof + _test_eof91: m.cs = 91; goto _test_eof + _test_eof92: m.cs = 92; goto _test_eof + _test_eof93: m.cs = 93; goto _test_eof + _test_eof94: m.cs = 94; goto _test_eof + _test_eof95: m.cs = 95; goto _test_eof + _test_eof96: m.cs = 96; goto _test_eof + _test_eof97: m.cs = 97; goto _test_eof + _test_eof98: m.cs = 98; goto _test_eof + _test_eof99: m.cs = 99; goto _test_eof + _test_eof100: m.cs = 100; goto _test_eof + _test_eof101: m.cs = 101; goto _test_eof + _test_eof102: m.cs = 102; goto _test_eof + _test_eof103: m.cs = 103; goto _test_eof + _test_eof104: m.cs = 104; goto _test_eof + _test_eof105: m.cs = 105; goto _test_eof + _test_eof106: m.cs = 106; goto _test_eof + _test_eof107: m.cs = 107; goto _test_eof + _test_eof108: m.cs = 108; goto _test_eof + _test_eof109: m.cs = 109; goto _test_eof + _test_eof110: m.cs = 110; goto _test_eof + _test_eof111: m.cs = 111; goto _test_eof + _test_eof112: m.cs = 112; goto _test_eof + _test_eof113: m.cs = 113; goto _test_eof + _test_eof114: m.cs = 114; goto _test_eof + _test_eof115: m.cs = 115; goto _test_eof + _test_eof116: m.cs = 116; goto _test_eof + _test_eof117: m.cs = 117; goto _test_eof + _test_eof118: m.cs = 118; goto _test_eof + _test_eof119: m.cs = 119; goto _test_eof + _test_eof120: m.cs = 120; goto _test_eof + _test_eof121: m.cs = 121; goto _test_eof + _test_eof122: m.cs = 122; goto _test_eof + _test_eof123: m.cs = 123; goto _test_eof + _test_eof124: m.cs = 124; goto _test_eof + _test_eof125: m.cs = 125; goto _test_eof + _test_eof126: m.cs = 126; goto _test_eof + _test_eof127: m.cs = 127; goto _test_eof + _test_eof128: m.cs = 128; goto _test_eof + _test_eof129: m.cs = 129; goto _test_eof + _test_eof130: m.cs = 130; goto _test_eof + _test_eof131: m.cs = 131; goto _test_eof + _test_eof132: m.cs = 132; goto _test_eof + _test_eof133: m.cs = 133; goto _test_eof + _test_eof134: m.cs = 134; goto _test_eof + _test_eof135: m.cs = 135; goto _test_eof + _test_eof136: m.cs = 136; goto _test_eof + _test_eof137: m.cs = 137; goto _test_eof + _test_eof138: m.cs = 138; goto _test_eof + _test_eof139: m.cs = 139; goto _test_eof + _test_eof140: m.cs = 140; goto _test_eof + _test_eof141: m.cs = 141; goto _test_eof + _test_eof142: m.cs = 142; goto _test_eof + _test_eof143: m.cs = 143; goto _test_eof + _test_eof144: m.cs = 144; goto _test_eof + _test_eof145: m.cs = 145; goto _test_eof + _test_eof146: m.cs = 146; goto _test_eof + _test_eof147: m.cs = 147; goto _test_eof + _test_eof148: m.cs = 148; goto _test_eof + _test_eof149: m.cs = 149; goto _test_eof + _test_eof150: m.cs = 150; goto _test_eof + _test_eof151: m.cs = 151; goto _test_eof + _test_eof152: m.cs = 152; goto _test_eof + _test_eof153: m.cs = 153; goto _test_eof + _test_eof154: m.cs = 154; goto _test_eof + _test_eof155: m.cs = 155; goto _test_eof + _test_eof156: m.cs = 156; goto _test_eof + _test_eof157: m.cs = 157; goto _test_eof + _test_eof158: m.cs = 158; goto _test_eof + _test_eof159: m.cs = 159; goto _test_eof + _test_eof160: m.cs = 160; goto _test_eof + _test_eof161: m.cs = 161; goto _test_eof + _test_eof162: m.cs = 162; goto _test_eof + _test_eof163: m.cs = 163; goto _test_eof + _test_eof164: m.cs = 164; goto _test_eof + _test_eof165: m.cs = 165; goto _test_eof + _test_eof166: m.cs = 166; goto _test_eof + _test_eof167: m.cs = 167; goto _test_eof + _test_eof168: m.cs = 168; goto _test_eof + _test_eof169: m.cs = 169; goto _test_eof + _test_eof170: m.cs = 170; goto _test_eof + _test_eof171: m.cs = 171; goto _test_eof + _test_eof172: m.cs = 172; goto _test_eof + _test_eof173: m.cs = 173; goto _test_eof + _test_eof174: m.cs = 174; goto _test_eof + _test_eof175: m.cs = 175; goto _test_eof + _test_eof176: m.cs = 176; goto _test_eof + _test_eof177: m.cs = 177; goto _test_eof + _test_eof178: m.cs = 178; goto _test_eof + _test_eof179: m.cs = 179; goto _test_eof + _test_eof180: m.cs = 180; goto _test_eof + _test_eof181: m.cs = 181; goto _test_eof + _test_eof182: m.cs = 182; goto _test_eof + _test_eof183: m.cs = 183; goto _test_eof + _test_eof184: m.cs = 184; goto _test_eof + _test_eof185: m.cs = 185; goto _test_eof + _test_eof186: m.cs = 186; goto _test_eof + _test_eof187: m.cs = 187; goto _test_eof + _test_eof188: m.cs = 188; goto _test_eof + _test_eof189: m.cs = 189; goto _test_eof + _test_eof190: m.cs = 190; goto _test_eof + _test_eof191: m.cs = 191; goto _test_eof + _test_eof192: m.cs = 192; goto _test_eof + _test_eof193: m.cs = 193; goto _test_eof + _test_eof194: m.cs = 194; goto _test_eof + _test_eof195: m.cs = 195; goto _test_eof + _test_eof196: m.cs = 196; goto _test_eof + _test_eof197: m.cs = 197; goto _test_eof + _test_eof198: m.cs = 198; goto _test_eof + _test_eof199: m.cs = 199; goto _test_eof + _test_eof200: m.cs = 200; goto _test_eof + _test_eof201: m.cs = 201; goto _test_eof + _test_eof202: m.cs = 202; goto _test_eof + _test_eof203: m.cs = 203; goto _test_eof + _test_eof204: m.cs = 204; goto _test_eof + _test_eof205: m.cs = 205; goto _test_eof + _test_eof206: m.cs = 206; goto _test_eof + _test_eof207: m.cs = 207; goto _test_eof + _test_eof208: m.cs = 208; goto _test_eof + _test_eof209: m.cs = 209; goto _test_eof + _test_eof210: m.cs = 210; goto _test_eof + _test_eof211: m.cs = 211; goto _test_eof + _test_eof212: m.cs = 212; goto _test_eof + _test_eof213: m.cs = 213; goto _test_eof + _test_eof214: m.cs = 214; goto _test_eof + _test_eof215: m.cs = 215; goto _test_eof + _test_eof216: m.cs = 216; goto _test_eof + _test_eof217: m.cs = 217; goto _test_eof + _test_eof218: m.cs = 218; goto _test_eof + _test_eof219: m.cs = 219; goto _test_eof + _test_eof220: m.cs = 220; goto _test_eof + _test_eof221: m.cs = 221; goto _test_eof + _test_eof222: m.cs = 222; goto _test_eof + _test_eof223: m.cs = 223; goto _test_eof + _test_eof224: m.cs = 224; goto _test_eof + _test_eof225: m.cs = 225; goto _test_eof + _test_eof226: m.cs = 226; goto _test_eof + _test_eof227: m.cs = 227; goto _test_eof + _test_eof228: m.cs = 228; goto _test_eof + _test_eof229: m.cs = 229; goto _test_eof + _test_eof230: m.cs = 230; goto _test_eof + _test_eof231: m.cs = 231; goto _test_eof + _test_eof232: m.cs = 232; goto _test_eof + _test_eof233: m.cs = 233; goto _test_eof + _test_eof234: m.cs = 234; goto _test_eof + _test_eof235: m.cs = 235; goto _test_eof + _test_eof236: m.cs = 236; goto _test_eof + _test_eof237: m.cs = 237; goto _test_eof + _test_eof238: m.cs = 238; goto _test_eof + _test_eof239: m.cs = 239; goto _test_eof + _test_eof240: m.cs = 240; goto _test_eof + _test_eof241: m.cs = 241; goto _test_eof + _test_eof242: m.cs = 242; goto _test_eof + _test_eof243: m.cs = 243; goto _test_eof + _test_eof244: m.cs = 244; goto _test_eof + _test_eof245: m.cs = 245; goto _test_eof + _test_eof246: m.cs = 246; goto _test_eof + _test_eof247: m.cs = 247; goto _test_eof + _test_eof248: m.cs = 248; goto _test_eof + _test_eof249: m.cs = 249; goto _test_eof + _test_eof250: m.cs = 250; goto _test_eof + _test_eof251: m.cs = 251; goto _test_eof + _test_eof252: m.cs = 252; goto _test_eof + _test_eof253: m.cs = 253; goto _test_eof + _test_eof254: m.cs = 254; goto _test_eof + _test_eof255: m.cs = 255; goto _test_eof + _test_eof256: m.cs = 256; goto _test_eof + _test_eof257: m.cs = 257; goto _test_eof + _test_eof258: m.cs = 258; goto _test_eof + _test_eof259: m.cs = 259; goto _test_eof + _test_eof260: m.cs = 260; goto _test_eof + _test_eof261: m.cs = 261; goto _test_eof + _test_eof262: m.cs = 262; goto _test_eof + _test_eof263: m.cs = 263; goto _test_eof + _test_eof264: m.cs = 264; goto _test_eof + _test_eof265: m.cs = 265; goto _test_eof + _test_eof266: m.cs = 266; goto _test_eof + _test_eof267: m.cs = 267; goto _test_eof + _test_eof268: m.cs = 268; goto _test_eof + _test_eof269: m.cs = 269; goto _test_eof + _test_eof270: m.cs = 270; goto _test_eof + _test_eof271: m.cs = 271; goto _test_eof + _test_eof272: m.cs = 272; goto _test_eof + _test_eof273: m.cs = 273; goto _test_eof + _test_eof274: m.cs = 274; goto _test_eof + _test_eof275: m.cs = 275; goto _test_eof + _test_eof276: m.cs = 276; goto _test_eof + _test_eof277: m.cs = 277; goto _test_eof + _test_eof278: m.cs = 278; goto _test_eof + _test_eof279: m.cs = 279; goto _test_eof + _test_eof280: m.cs = 280; goto _test_eof + _test_eof281: m.cs = 281; goto _test_eof + _test_eof282: m.cs = 282; goto _test_eof + _test_eof283: m.cs = 283; goto _test_eof + _test_eof284: m.cs = 284; goto _test_eof + _test_eof285: m.cs = 285; goto _test_eof + _test_eof286: m.cs = 286; goto _test_eof + _test_eof287: m.cs = 287; goto _test_eof + _test_eof288: m.cs = 288; goto _test_eof + _test_eof289: m.cs = 289; goto _test_eof + _test_eof290: m.cs = 290; goto _test_eof + _test_eof291: m.cs = 291; goto _test_eof + _test_eof292: m.cs = 292; goto _test_eof + _test_eof293: m.cs = 293; goto _test_eof + _test_eof294: m.cs = 294; goto _test_eof + _test_eof295: m.cs = 295; goto _test_eof + _test_eof296: m.cs = 296; goto _test_eof + _test_eof297: m.cs = 297; goto _test_eof + _test_eof298: m.cs = 298; goto _test_eof + _test_eof299: m.cs = 299; goto _test_eof + _test_eof300: m.cs = 300; goto _test_eof + _test_eof301: m.cs = 301; goto _test_eof + _test_eof302: m.cs = 302; goto _test_eof + _test_eof303: m.cs = 303; goto _test_eof + _test_eof304: m.cs = 304; goto _test_eof + _test_eof305: m.cs = 305; goto _test_eof + _test_eof306: m.cs = 306; goto _test_eof + _test_eof307: m.cs = 307; goto _test_eof + _test_eof308: m.cs = 308; goto _test_eof + _test_eof309: m.cs = 309; goto _test_eof + _test_eof310: m.cs = 310; goto _test_eof + _test_eof311: m.cs = 311; goto _test_eof + _test_eof312: m.cs = 312; goto _test_eof + _test_eof313: m.cs = 313; goto _test_eof + _test_eof314: m.cs = 314; goto _test_eof + _test_eof315: m.cs = 315; goto _test_eof + _test_eof316: m.cs = 316; goto _test_eof + _test_eof317: m.cs = 317; goto _test_eof + _test_eof318: m.cs = 318; goto _test_eof + _test_eof319: m.cs = 319; goto _test_eof + _test_eof320: m.cs = 320; goto _test_eof + _test_eof321: m.cs = 321; goto _test_eof + _test_eof322: m.cs = 322; goto _test_eof + _test_eof323: m.cs = 323; goto _test_eof + _test_eof324: m.cs = 324; goto _test_eof + _test_eof325: m.cs = 325; goto _test_eof + _test_eof326: m.cs = 326; goto _test_eof + _test_eof327: m.cs = 327; goto _test_eof + _test_eof328: m.cs = 328; goto _test_eof + _test_eof329: m.cs = 329; goto _test_eof + _test_eof330: m.cs = 330; goto _test_eof + _test_eof331: m.cs = 331; goto _test_eof + _test_eof332: m.cs = 332; goto _test_eof + _test_eof333: m.cs = 333; goto _test_eof + _test_eof334: m.cs = 334; goto _test_eof + _test_eof335: m.cs = 335; goto _test_eof + _test_eof336: m.cs = 336; goto _test_eof + _test_eof337: m.cs = 337; goto _test_eof + _test_eof338: m.cs = 338; goto _test_eof + _test_eof339: m.cs = 339; goto _test_eof + _test_eof340: m.cs = 340; goto _test_eof + _test_eof341: m.cs = 341; goto _test_eof + _test_eof342: m.cs = 342; goto _test_eof + _test_eof343: m.cs = 343; goto _test_eof + _test_eof344: m.cs = 344; goto _test_eof + _test_eof345: m.cs = 345; goto _test_eof + _test_eof346: m.cs = 346; goto _test_eof + _test_eof347: m.cs = 347; goto _test_eof + _test_eof348: m.cs = 348; goto _test_eof + _test_eof349: m.cs = 349; goto _test_eof + _test_eof350: m.cs = 350; goto _test_eof + _test_eof351: m.cs = 351; goto _test_eof + _test_eof700: m.cs = 700; goto _test_eof + _test_eof701: m.cs = 701; goto _test_eof + _test_eof702: m.cs = 702; goto _test_eof + _test_eof703: m.cs = 703; goto _test_eof + _test_eof704: m.cs = 704; goto _test_eof + _test_eof705: m.cs = 705; goto _test_eof + _test_eof706: m.cs = 706; goto _test_eof + _test_eof707: m.cs = 707; goto _test_eof + _test_eof708: m.cs = 708; goto _test_eof + _test_eof709: m.cs = 709; goto _test_eof + _test_eof710: m.cs = 710; goto _test_eof + _test_eof711: m.cs = 711; goto _test_eof + _test_eof712: m.cs = 712; goto _test_eof + _test_eof713: m.cs = 713; goto _test_eof + _test_eof714: m.cs = 714; goto _test_eof + _test_eof715: m.cs = 715; goto _test_eof + _test_eof716: m.cs = 716; goto _test_eof + _test_eof717: m.cs = 717; goto _test_eof + _test_eof718: m.cs = 718; goto _test_eof + _test_eof719: m.cs = 719; goto _test_eof + _test_eof720: m.cs = 720; goto _test_eof + _test_eof721: m.cs = 721; goto _test_eof + _test_eof722: m.cs = 722; goto _test_eof + _test_eof723: m.cs = 723; goto _test_eof + _test_eof724: m.cs = 724; goto _test_eof + _test_eof725: m.cs = 725; goto _test_eof + _test_eof726: m.cs = 726; goto _test_eof + _test_eof727: m.cs = 727; goto _test_eof + _test_eof728: m.cs = 728; goto _test_eof + _test_eof729: m.cs = 729; goto _test_eof + _test_eof730: m.cs = 730; goto _test_eof + _test_eof731: m.cs = 731; goto _test_eof + _test_eof732: m.cs = 732; goto _test_eof + _test_eof733: m.cs = 733; goto _test_eof + _test_eof734: m.cs = 734; goto _test_eof + _test_eof735: m.cs = 735; goto _test_eof + _test_eof352: m.cs = 352; goto _test_eof + _test_eof353: m.cs = 353; goto _test_eof + _test_eof354: m.cs = 354; goto _test_eof + _test_eof355: m.cs = 355; goto _test_eof + _test_eof736: m.cs = 736; goto _test_eof + _test_eof737: m.cs = 737; goto _test_eof + _test_eof738: m.cs = 738; goto _test_eof + _test_eof739: m.cs = 739; goto _test_eof + _test_eof356: m.cs = 356; goto _test_eof + _test_eof357: m.cs = 357; goto _test_eof + _test_eof358: m.cs = 358; goto _test_eof + _test_eof359: m.cs = 359; goto _test_eof + _test_eof360: m.cs = 360; goto _test_eof + _test_eof361: m.cs = 361; goto _test_eof + _test_eof362: m.cs = 362; goto _test_eof + _test_eof363: m.cs = 363; goto _test_eof + _test_eof364: m.cs = 364; goto _test_eof + _test_eof365: m.cs = 365; goto _test_eof + _test_eof366: m.cs = 366; goto _test_eof + _test_eof367: m.cs = 367; goto _test_eof + _test_eof368: m.cs = 368; goto _test_eof + _test_eof369: m.cs = 369; goto _test_eof + _test_eof370: m.cs = 370; goto _test_eof + _test_eof371: m.cs = 371; goto _test_eof + _test_eof372: m.cs = 372; goto _test_eof + _test_eof373: m.cs = 373; goto _test_eof + _test_eof374: m.cs = 374; goto _test_eof + _test_eof375: m.cs = 375; goto _test_eof + _test_eof376: m.cs = 376; goto _test_eof + _test_eof377: m.cs = 377; goto _test_eof + _test_eof378: m.cs = 378; goto _test_eof + _test_eof379: m.cs = 379; goto _test_eof + _test_eof380: m.cs = 380; goto _test_eof + _test_eof381: m.cs = 381; goto _test_eof + _test_eof382: m.cs = 382; goto _test_eof + _test_eof383: m.cs = 383; goto _test_eof + _test_eof384: m.cs = 384; goto _test_eof + _test_eof385: m.cs = 385; goto _test_eof + _test_eof386: m.cs = 386; goto _test_eof + _test_eof387: m.cs = 387; goto _test_eof + _test_eof388: m.cs = 388; goto _test_eof + _test_eof389: m.cs = 389; goto _test_eof + _test_eof390: m.cs = 390; goto _test_eof + _test_eof391: m.cs = 391; goto _test_eof + _test_eof392: m.cs = 392; goto _test_eof + _test_eof393: m.cs = 393; goto _test_eof + _test_eof394: m.cs = 394; goto _test_eof + _test_eof395: m.cs = 395; goto _test_eof + _test_eof396: m.cs = 396; goto _test_eof + _test_eof397: m.cs = 397; goto _test_eof + _test_eof398: m.cs = 398; goto _test_eof + _test_eof399: m.cs = 399; goto _test_eof + _test_eof400: m.cs = 400; goto _test_eof + _test_eof401: m.cs = 401; goto _test_eof + _test_eof402: m.cs = 402; goto _test_eof + _test_eof403: m.cs = 403; goto _test_eof + _test_eof404: m.cs = 404; goto _test_eof + _test_eof405: m.cs = 405; goto _test_eof + _test_eof406: m.cs = 406; goto _test_eof + _test_eof407: m.cs = 407; goto _test_eof + _test_eof408: m.cs = 408; goto _test_eof + _test_eof409: m.cs = 409; goto _test_eof + _test_eof410: m.cs = 410; goto _test_eof + _test_eof411: m.cs = 411; goto _test_eof + _test_eof412: m.cs = 412; goto _test_eof + _test_eof413: m.cs = 413; goto _test_eof + _test_eof414: m.cs = 414; goto _test_eof + _test_eof415: m.cs = 415; goto _test_eof + _test_eof416: m.cs = 416; goto _test_eof + _test_eof417: m.cs = 417; goto _test_eof + _test_eof418: m.cs = 418; goto _test_eof + _test_eof419: m.cs = 419; goto _test_eof + _test_eof420: m.cs = 420; goto _test_eof + _test_eof421: m.cs = 421; goto _test_eof + _test_eof422: m.cs = 422; goto _test_eof + _test_eof423: m.cs = 423; goto _test_eof + _test_eof424: m.cs = 424; goto _test_eof + _test_eof425: m.cs = 425; goto _test_eof + _test_eof426: m.cs = 426; goto _test_eof + _test_eof427: m.cs = 427; goto _test_eof + _test_eof428: m.cs = 428; goto _test_eof + _test_eof429: m.cs = 429; goto _test_eof + _test_eof430: m.cs = 430; goto _test_eof + _test_eof431: m.cs = 431; goto _test_eof + _test_eof432: m.cs = 432; goto _test_eof + _test_eof433: m.cs = 433; goto _test_eof + _test_eof434: m.cs = 434; goto _test_eof + _test_eof435: m.cs = 435; goto _test_eof + _test_eof436: m.cs = 436; goto _test_eof + _test_eof437: m.cs = 437; goto _test_eof + _test_eof438: m.cs = 438; goto _test_eof + _test_eof439: m.cs = 439; goto _test_eof + _test_eof440: m.cs = 440; goto _test_eof + _test_eof441: m.cs = 441; goto _test_eof + _test_eof442: m.cs = 442; goto _test_eof + _test_eof443: m.cs = 443; goto _test_eof + _test_eof444: m.cs = 444; goto _test_eof + _test_eof445: m.cs = 445; goto _test_eof + _test_eof446: m.cs = 446; goto _test_eof + _test_eof447: m.cs = 447; goto _test_eof + _test_eof448: m.cs = 448; goto _test_eof + _test_eof449: m.cs = 449; goto _test_eof + _test_eof450: m.cs = 450; goto _test_eof + _test_eof451: m.cs = 451; goto _test_eof + _test_eof452: m.cs = 452; goto _test_eof + _test_eof453: m.cs = 453; goto _test_eof + _test_eof454: m.cs = 454; goto _test_eof + _test_eof455: m.cs = 455; goto _test_eof + _test_eof456: m.cs = 456; goto _test_eof + _test_eof457: m.cs = 457; goto _test_eof + _test_eof458: m.cs = 458; goto _test_eof + _test_eof459: m.cs = 459; goto _test_eof + _test_eof460: m.cs = 460; goto _test_eof + _test_eof461: m.cs = 461; goto _test_eof + _test_eof462: m.cs = 462; goto _test_eof + _test_eof463: m.cs = 463; goto _test_eof + _test_eof464: m.cs = 464; goto _test_eof + _test_eof465: m.cs = 465; goto _test_eof + _test_eof466: m.cs = 466; goto _test_eof + _test_eof467: m.cs = 467; goto _test_eof + _test_eof468: m.cs = 468; goto _test_eof + _test_eof469: m.cs = 469; goto _test_eof + _test_eof470: m.cs = 470; goto _test_eof + _test_eof471: m.cs = 471; goto _test_eof + _test_eof472: m.cs = 472; goto _test_eof + _test_eof473: m.cs = 473; goto _test_eof + _test_eof474: m.cs = 474; goto _test_eof + _test_eof475: m.cs = 475; goto _test_eof + _test_eof476: m.cs = 476; goto _test_eof + _test_eof477: m.cs = 477; goto _test_eof + _test_eof478: m.cs = 478; goto _test_eof + _test_eof479: m.cs = 479; goto _test_eof + _test_eof480: m.cs = 480; goto _test_eof + _test_eof481: m.cs = 481; goto _test_eof + _test_eof482: m.cs = 482; goto _test_eof + _test_eof483: m.cs = 483; goto _test_eof + _test_eof484: m.cs = 484; goto _test_eof + _test_eof485: m.cs = 485; goto _test_eof + _test_eof486: m.cs = 486; goto _test_eof + _test_eof487: m.cs = 487; goto _test_eof + _test_eof488: m.cs = 488; goto _test_eof + _test_eof489: m.cs = 489; goto _test_eof + _test_eof490: m.cs = 490; goto _test_eof + _test_eof491: m.cs = 491; goto _test_eof + _test_eof492: m.cs = 492; goto _test_eof + _test_eof493: m.cs = 493; goto _test_eof + _test_eof494: m.cs = 494; goto _test_eof + _test_eof495: m.cs = 495; goto _test_eof + _test_eof496: m.cs = 496; goto _test_eof + _test_eof497: m.cs = 497; goto _test_eof + _test_eof498: m.cs = 498; goto _test_eof + _test_eof499: m.cs = 499; goto _test_eof + _test_eof500: m.cs = 500; goto _test_eof + _test_eof501: m.cs = 501; goto _test_eof + _test_eof502: m.cs = 502; goto _test_eof + _test_eof503: m.cs = 503; goto _test_eof + _test_eof504: m.cs = 504; goto _test_eof + _test_eof505: m.cs = 505; goto _test_eof + _test_eof506: m.cs = 506; goto _test_eof + _test_eof507: m.cs = 507; goto _test_eof + _test_eof508: m.cs = 508; goto _test_eof + _test_eof509: m.cs = 509; goto _test_eof + _test_eof510: m.cs = 510; goto _test_eof + _test_eof511: m.cs = 511; goto _test_eof + _test_eof512: m.cs = 512; goto _test_eof + _test_eof513: m.cs = 513; goto _test_eof + _test_eof514: m.cs = 514; goto _test_eof + _test_eof515: m.cs = 515; goto _test_eof + _test_eof516: m.cs = 516; goto _test_eof + _test_eof517: m.cs = 517; goto _test_eof + _test_eof518: m.cs = 518; goto _test_eof + _test_eof519: m.cs = 519; goto _test_eof + _test_eof520: m.cs = 520; goto _test_eof + _test_eof521: m.cs = 521; goto _test_eof + _test_eof522: m.cs = 522; goto _test_eof + _test_eof523: m.cs = 523; goto _test_eof + _test_eof524: m.cs = 524; goto _test_eof + _test_eof525: m.cs = 525; goto _test_eof + _test_eof526: m.cs = 526; goto _test_eof + _test_eof527: m.cs = 527; goto _test_eof + _test_eof528: m.cs = 528; goto _test_eof + _test_eof529: m.cs = 529; goto _test_eof + _test_eof530: m.cs = 530; goto _test_eof + _test_eof531: m.cs = 531; goto _test_eof + _test_eof532: m.cs = 532; goto _test_eof + _test_eof533: m.cs = 533; goto _test_eof + _test_eof534: m.cs = 534; goto _test_eof + _test_eof535: m.cs = 535; goto _test_eof + _test_eof536: m.cs = 536; goto _test_eof + _test_eof537: m.cs = 537; goto _test_eof + _test_eof538: m.cs = 538; goto _test_eof + _test_eof539: m.cs = 539; goto _test_eof + _test_eof540: m.cs = 540; goto _test_eof + _test_eof541: m.cs = 541; goto _test_eof + _test_eof542: m.cs = 542; goto _test_eof + _test_eof543: m.cs = 543; goto _test_eof + _test_eof544: m.cs = 544; goto _test_eof + _test_eof545: m.cs = 545; goto _test_eof + _test_eof546: m.cs = 546; goto _test_eof + _test_eof547: m.cs = 547; goto _test_eof + _test_eof548: m.cs = 548; goto _test_eof + _test_eof549: m.cs = 549; goto _test_eof + _test_eof550: m.cs = 550; goto _test_eof + _test_eof551: m.cs = 551; goto _test_eof + _test_eof552: m.cs = 552; goto _test_eof + _test_eof553: m.cs = 553; goto _test_eof + _test_eof554: m.cs = 554; goto _test_eof + _test_eof555: m.cs = 555; goto _test_eof + _test_eof556: m.cs = 556; goto _test_eof + _test_eof557: m.cs = 557; goto _test_eof + _test_eof558: m.cs = 558; goto _test_eof + _test_eof559: m.cs = 559; goto _test_eof + _test_eof560: m.cs = 560; goto _test_eof + _test_eof561: m.cs = 561; goto _test_eof + _test_eof562: m.cs = 562; goto _test_eof + _test_eof563: m.cs = 563; goto _test_eof + _test_eof564: m.cs = 564; goto _test_eof + _test_eof565: m.cs = 565; goto _test_eof + _test_eof566: m.cs = 566; goto _test_eof + _test_eof567: m.cs = 567; goto _test_eof + _test_eof568: m.cs = 568; goto _test_eof + _test_eof569: m.cs = 569; goto _test_eof + _test_eof570: m.cs = 570; goto _test_eof + _test_eof571: m.cs = 571; goto _test_eof + _test_eof572: m.cs = 572; goto _test_eof + _test_eof573: m.cs = 573; goto _test_eof + _test_eof574: m.cs = 574; goto _test_eof + _test_eof575: m.cs = 575; goto _test_eof + _test_eof576: m.cs = 576; goto _test_eof + _test_eof577: m.cs = 577; goto _test_eof + _test_eof578: m.cs = 578; goto _test_eof + _test_eof579: m.cs = 579; goto _test_eof + _test_eof580: m.cs = 580; goto _test_eof + _test_eof581: m.cs = 581; goto _test_eof + _test_eof582: m.cs = 582; goto _test_eof + _test_eof583: m.cs = 583; goto _test_eof + _test_eof584: m.cs = 584; goto _test_eof + _test_eof585: m.cs = 585; goto _test_eof + _test_eof586: m.cs = 586; goto _test_eof + _test_eof587: m.cs = 587; goto _test_eof + _test_eof588: m.cs = 588; goto _test_eof + _test_eof589: m.cs = 589; goto _test_eof + _test_eof590: m.cs = 590; goto _test_eof + _test_eof591: m.cs = 591; goto _test_eof + _test_eof592: m.cs = 592; goto _test_eof + _test_eof593: m.cs = 593; goto _test_eof + _test_eof594: m.cs = 594; goto _test_eof + _test_eof595: m.cs = 595; goto _test_eof + _test_eof596: m.cs = 596; goto _test_eof + _test_eof597: m.cs = 597; goto _test_eof + _test_eof598: m.cs = 598; goto _test_eof + _test_eof599: m.cs = 599; goto _test_eof + _test_eof600: m.cs = 600; goto _test_eof + _test_eof601: m.cs = 601; goto _test_eof + _test_eof602: m.cs = 602; goto _test_eof + _test_eof603: m.cs = 603; goto _test_eof + _test_eof604: m.cs = 604; goto _test_eof + _test_eof605: m.cs = 605; goto _test_eof + _test_eof606: m.cs = 606; goto _test_eof + _test_eof607: m.cs = 607; goto _test_eof + _test_eof608: m.cs = 608; goto _test_eof + _test_eof609: m.cs = 609; goto _test_eof + _test_eof610: m.cs = 610; goto _test_eof + _test_eof611: m.cs = 611; goto _test_eof + _test_eof612: m.cs = 612; goto _test_eof + _test_eof613: m.cs = 613; goto _test_eof + _test_eof614: m.cs = 614; goto _test_eof + _test_eof615: m.cs = 615; goto _test_eof + _test_eof616: m.cs = 616; goto _test_eof + _test_eof617: m.cs = 617; goto _test_eof + _test_eof618: m.cs = 618; goto _test_eof + _test_eof619: m.cs = 619; goto _test_eof + _test_eof620: m.cs = 620; goto _test_eof + _test_eof621: m.cs = 621; goto _test_eof + _test_eof622: m.cs = 622; goto _test_eof + _test_eof623: m.cs = 623; goto _test_eof + _test_eof624: m.cs = 624; goto _test_eof + _test_eof625: m.cs = 625; goto _test_eof + _test_eof626: m.cs = 626; goto _test_eof + _test_eof627: m.cs = 627; goto _test_eof + _test_eof628: m.cs = 628; goto _test_eof + _test_eof629: m.cs = 629; goto _test_eof + _test_eof630: m.cs = 630; goto _test_eof + _test_eof631: m.cs = 631; goto _test_eof + _test_eof632: m.cs = 632; goto _test_eof + _test_eof633: m.cs = 633; goto _test_eof + _test_eof634: m.cs = 634; goto _test_eof + _test_eof635: m.cs = 635; goto _test_eof + _test_eof636: m.cs = 636; goto _test_eof + _test_eof637: m.cs = 637; goto _test_eof + _test_eof638: m.cs = 638; goto _test_eof + _test_eof639: m.cs = 639; goto _test_eof + _test_eof640: m.cs = 640; goto _test_eof + _test_eof641: m.cs = 641; goto _test_eof + _test_eof642: m.cs = 642; goto _test_eof + _test_eof643: m.cs = 643; goto _test_eof + _test_eof644: m.cs = 644; goto _test_eof + _test_eof645: m.cs = 645; goto _test_eof + _test_eof646: m.cs = 646; goto _test_eof + _test_eof647: m.cs = 647; goto _test_eof + _test_eof648: m.cs = 648; goto _test_eof + _test_eof649: m.cs = 649; goto _test_eof + _test_eof650: m.cs = 650; goto _test_eof + _test_eof651: m.cs = 651; goto _test_eof + _test_eof652: m.cs = 652; goto _test_eof + _test_eof653: m.cs = 653; goto _test_eof + _test_eof654: m.cs = 654; goto _test_eof + _test_eof655: m.cs = 655; goto _test_eof + _test_eof656: m.cs = 656; goto _test_eof + _test_eof657: m.cs = 657; goto _test_eof + _test_eof658: m.cs = 658; goto _test_eof + _test_eof699: m.cs = 699; goto _test_eof + + _test_eof: {} + if ( m.p) == ( m.eof) { + switch m.cs { + case 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739: +//line rfc3164/machine.go.rl:80 + + output.message = string(m.text()) + + case 1: +//line rfc3164/machine.go.rl:90 + + if(!m.allowSkipPri) { + m.err = fmt.Errorf(errPri, m.p) + ( m.p)-- + + {goto st699 } + } else { + ( m.p)-- + + {goto st333 } + } + + case 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628: +//line rfc3164/machine.go.rl:101 + + m.err = fmt.Errorf(errTimestamp, m.p) + ( m.p)-- + + {goto st699 } + + case 318, 319, 320, 321, 322, 323, 325, 647, 648, 649, 650, 651, 652, 654: +//line rfc3164/machine.go.rl:107 + + m.err = fmt.Errorf(errRFC3339, m.p) + ( m.p)-- + + {goto st699 } + + case 20, 21, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 349, 350, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609: +//line rfc3164/machine.go.rl:113 + + m.err = fmt.Errorf(errHostname, m.p) + ( m.p)-- + + {goto st699 } + + case 22, 351: +//line rfc3164/machine.go.rl:119 + + m.err = fmt.Errorf(errTag, m.p) + ( m.p)-- + + {goto st699 } + + case 2, 3, 330, 331, 332: +//line rfc3164/machine.go.rl:84 + + m.err = fmt.Errorf(errPrival, m.p) + ( m.p)-- + + {goto st699 } + +//line rfc3164/machine.go.rl:90 + + if(!m.allowSkipPri) { + m.err = fmt.Errorf(errPri, m.p) + ( m.p)-- + + {goto st699 } + } else { + ( m.p)-- + + {goto st333 } + } + +//line rfc3164/machine.go:12755 + } + } + + _out: {} + } + +//line rfc3164/machine.go.rl:269 + + if m.cs < first_final || m.cs == en_fail { + if m.bestEffort && output.minimal() { + // An error occurred but partial parsing is on and partial message is minimally valid + return output.export(), m.err + } + return nil, m.err + } + + return output.export(), nil +} \ No newline at end of file diff --git a/rfc5424/machine.go b/rfc5424/machine.go index ddd4a7c..bb322e7 100644 --- a/rfc5424/machine.go +++ b/rfc5424/machine.go @@ -1,8 +1,10 @@ + +//line rfc5424/machine.go.rl:1 package rfc5424 import ( - "fmt" "time" + "fmt" "github.com/influxdata/go-syslog/v3" "github.com/influxdata/go-syslog/v3/common" @@ -13,49 +15,60 @@ var ColumnPositionTemplate = " [col %d]" const ( // ErrPrival represents an error in the priority value (PRIVAL) inside the PRI part of the RFC5424 syslog message. - ErrPrival = "expecting a priority value in the range 1-191 or equal to 0" + ErrPrival = "expecting a priority value in the range 1-191 or equal to 0" // ErrPri represents an error in the PRI part of the RFC5424 syslog message. - ErrPri = "expecting a priority value within angle brackets" + ErrPri = "expecting a priority value within angle brackets" // ErrVersion represents an error in the VERSION part of the RFC5424 syslog message. - ErrVersion = "expecting a version value in the range 1-999" + ErrVersion = "expecting a version value in the range 1-999" // ErrTimestamp represents an error in the TIMESTAMP part of the RFC5424 syslog message. - ErrTimestamp = "expecting a RFC3339MICRO timestamp or a nil value" + ErrTimestamp = "expecting a RFC3339MICRO timestamp or a nil value" // ErrHostname represents an error in the HOSTNAME part of the RFC5424 syslog message. - ErrHostname = "expecting an hostname (from 1 to max 255 US-ASCII characters) or a nil value" + ErrHostname = "expecting an hostname (from 1 to max 255 US-ASCII characters) or a nil value" // ErrAppname represents an error in the APP-NAME part of the RFC5424 syslog message. - ErrAppname = "expecting an app-name (from 1 to max 48 US-ASCII characters) or a nil value" + ErrAppname = "expecting an app-name (from 1 to max 48 US-ASCII characters) or a nil value" // ErrProcID represents an error in the PROCID part of the RFC5424 syslog message. - ErrProcID = "expecting a procid (from 1 to max 128 US-ASCII characters) or a nil value" + ErrProcID = "expecting a procid (from 1 to max 128 US-ASCII characters) or a nil value" // ErrMsgID represents an error in the MSGID part of the RFC5424 syslog message. - ErrMsgID = "expecting a msgid (from 1 to max 32 US-ASCII characters) or a nil value" + ErrMsgID = "expecting a msgid (from 1 to max 32 US-ASCII characters) or a nil value" // ErrStructuredData represents an error in the STRUCTURED DATA part of the RFC5424 syslog message. - ErrStructuredData = "expecting a structured data section containing one or more elements (`[id( key=\"value\")*]+`) or a nil value" + ErrStructuredData = "expecting a structured data section containing one or more elements (`[id( key=\"value\")*]+`) or a nil value" // ErrSdID represents an error regarding the ID of a STRUCTURED DATA element of the RFC5424 syslog message. - ErrSdID = "expecting a structured data element id (from 1 to max 32 US-ASCII characters; except `=`, ` `, `]`, and `\"`" + ErrSdID = "expecting a structured data element id (from 1 to max 32 US-ASCII characters; except `=`, ` `, `]`, and `\"`" // ErrSdIDDuplicated represents an error occurring when two STRUCTURED DATA elementes have the same ID in a RFC5424 syslog message. - ErrSdIDDuplicated = "duplicate structured data element id" + ErrSdIDDuplicated = "duplicate structured data element id" // ErrSdParam represents an error regarding a STRUCTURED DATA PARAM of the RFC5424 syslog message. - ErrSdParam = "expecting a structured data parameter (`key=\"value\"`, both part from 1 to max 32 US-ASCII characters; key cannot contain `=`, ` `, `]`, and `\"`, while value cannot contain `]`, backslash, and `\"` unless escaped)" + ErrSdParam = "expecting a structured data parameter (`key=\"value\"`, both part from 1 to max 32 US-ASCII characters; key cannot contain `=`, ` `, `]`, and `\"`, while value cannot contain `]`, backslash, and `\"` unless escaped)" // ErrMsg represents an error in the MESSAGE part of the RFC5424 syslog message. - ErrMsg = "expecting a free-form optional message in UTF-8 (starting with or without BOM)" + ErrMsg = "expecting a free-form optional message in UTF-8 (starting with or without BOM)" // ErrMsgNotCompliant represents an error in the MESSAGE part of the RFC5424 syslog message if WithCompliatMsg option is on. ErrMsgNotCompliant = ErrMsg + " or a free-form optional message in any encoding (starting without BOM)" // ErrEscape represents the error for a RFC5424 syslog message occurring when a STRUCTURED DATA PARAM value contains '"', '\', or ']' not escaped. - ErrEscape = "expecting chars `]`, `\"`, and `\\` to be escaped within param value" + ErrEscape = "expecting chars `]`, `\"`, and `\\` to be escaped within param value" // ErrParse represents a general parsing error for a RFC5424 syslog message. - ErrParse = "parsing error" + ErrParse = "parsing error" ) // RFC3339MICRO represents the timestamp format that RFC5424 mandates. const RFC3339MICRO = "2006-01-02T15:04:05.999999Z07:00" + +//line rfc5424/machine.go.rl:326 + + + +//line rfc5424/machine.go:60 const start int = 1 -const firstFinal int = 603 +const first_final int = 1192 + +const en_msg_any int = 1196 +const en_msg_compliant int = 1198 +const en_fail int = 1203 +const en_myfsm int = 603 +const en_myfsm_STATE_NO_PRI int = 603 +const en_main int = 1 -const enMsgAny int = 607 -const enMsgCompliant int = 609 -const enFail int = 614 -const enMain int = 1 + +//line rfc5424/machine.go.rl:329 type machine struct { data []byte @@ -67,8 +80,9 @@ type machine struct { currentparam string msgat int backslashat []int - bestEffort bool + bestEffort bool compliantMsg bool + allowSkipPri bool } // NewMachine creates a new FSM able to parse RFC5424 syslog messages. @@ -79,9 +93,25 @@ func NewMachine(options ...syslog.MachineOption) syslog.Machine { opt(m) } + +//line rfc5424/machine.go.rl:354 + +//line rfc5424/machine.go.rl:355 + +//line rfc5424/machine.go.rl:356 + +//line rfc5424/machine.go.rl:357 + +//line rfc5424/machine.go.rl:358 + return m } +// WithNoPri sets the skip PRI flag to allow messages without PRI header. +func (m *machine) WithAllowSkipPri() { + m.allowSkipPri = true +} + // WithBestEffort enables best effort mode. func (m *machine) WithBestEffort() { m.bestEffort = true @@ -121,1892 +151,3105 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { m.err = nil output := &syslogMessage{} + +//line rfc5424/machine.go:156 { - m.cs = start + m.cs = start } +//line rfc5424/machine.go.rl:407 + +//line rfc5424/machine.go:163 { - if (m.p) == (m.pe) { - goto _testEof - } - switch m.cs { - case 1: - goto stCase1 - case 0: - goto stCase0 - case 2: - goto stCase2 - case 3: - goto stCase3 - case 4: - goto stCase4 - case 5: - goto stCase5 - case 6: - goto stCase6 - case 7: - goto stCase7 - case 8: - goto stCase8 - case 9: - goto stCase9 - case 10: - goto stCase10 - case 11: - goto stCase11 - case 12: - goto stCase12 - case 13: - goto stCase13 - case 14: - goto stCase14 - case 15: - goto stCase15 - case 16: - goto stCase16 - case 603: - goto stCase603 - case 604: - goto stCase604 - case 605: - goto stCase605 - case 17: - goto stCase17 - case 18: - goto stCase18 - case 19: - goto stCase19 - case 20: - goto stCase20 - case 21: - goto stCase21 - case 22: - goto stCase22 - case 23: - goto stCase23 - case 24: - goto stCase24 - case 25: - goto stCase25 - case 26: - goto stCase26 - case 27: - goto stCase27 - case 28: - goto stCase28 - case 29: - goto stCase29 - case 30: - goto stCase30 - case 31: - goto stCase31 - case 32: - goto stCase32 - case 33: - goto stCase33 - case 34: - goto stCase34 - case 35: - goto stCase35 - case 36: - goto stCase36 - case 37: - goto stCase37 - case 38: - goto stCase38 - case 39: - goto stCase39 - case 40: - goto stCase40 - case 41: - goto stCase41 - case 42: - goto stCase42 - case 43: - goto stCase43 - case 44: - goto stCase44 - case 45: - goto stCase45 - case 46: - goto stCase46 - case 47: - goto stCase47 - case 48: - goto stCase48 - case 49: - goto stCase49 - case 50: - goto stCase50 - case 51: - goto stCase51 - case 52: - goto stCase52 - case 53: - goto stCase53 - case 54: - goto stCase54 - case 55: - goto stCase55 - case 606: - goto stCase606 - case 56: - goto stCase56 - case 57: - goto stCase57 - case 58: - goto stCase58 - case 59: - goto stCase59 - case 60: - goto stCase60 - case 61: - goto stCase61 - case 62: - goto stCase62 - case 63: - goto stCase63 - case 64: - goto stCase64 - case 65: - goto stCase65 - case 66: - goto stCase66 - case 67: - goto stCase67 - case 68: - goto stCase68 - case 69: - goto stCase69 - case 70: - goto stCase70 - case 71: - goto stCase71 - case 72: - goto stCase72 - case 73: - goto stCase73 - case 74: - goto stCase74 - case 75: - goto stCase75 - case 76: - goto stCase76 - case 77: - goto stCase77 - case 78: - goto stCase78 - case 79: - goto stCase79 - case 80: - goto stCase80 - case 81: - goto stCase81 - case 82: - goto stCase82 - case 83: - goto stCase83 - case 84: - goto stCase84 - case 85: - goto stCase85 - case 86: - goto stCase86 - case 87: - goto stCase87 - case 88: - goto stCase88 - case 89: - goto stCase89 - case 90: - goto stCase90 - case 91: - goto stCase91 - case 92: - goto stCase92 - case 93: - goto stCase93 - case 94: - goto stCase94 - case 95: - goto stCase95 - case 96: - goto stCase96 - case 97: - goto stCase97 - case 98: - goto stCase98 - case 99: - goto stCase99 - case 100: - goto stCase100 - case 101: - goto stCase101 - case 102: - goto stCase102 - case 103: - goto stCase103 - case 104: - goto stCase104 - case 105: - goto stCase105 - case 106: - goto stCase106 - case 107: - goto stCase107 - case 108: - goto stCase108 - case 109: - goto stCase109 - case 110: - goto stCase110 - case 111: - goto stCase111 - case 112: - goto stCase112 - case 113: - goto stCase113 - case 114: - goto stCase114 - case 115: - goto stCase115 - case 116: - goto stCase116 - case 117: - goto stCase117 - case 118: - goto stCase118 - case 119: - goto stCase119 - case 120: - goto stCase120 - case 121: - goto stCase121 - case 122: - goto stCase122 - case 123: - goto stCase123 - case 124: - goto stCase124 - case 125: - goto stCase125 - case 126: - goto stCase126 - case 127: - goto stCase127 - case 128: - goto stCase128 - case 129: - goto stCase129 - case 130: - goto stCase130 - case 131: - goto stCase131 - case 132: - goto stCase132 - case 133: - goto stCase133 - case 134: - goto stCase134 - case 135: - goto stCase135 - case 136: - goto stCase136 - case 137: - goto stCase137 - case 138: - goto stCase138 - case 139: - goto stCase139 - case 140: - goto stCase140 - case 141: - goto stCase141 - case 142: - goto stCase142 - case 143: - goto stCase143 - case 144: - goto stCase144 - case 145: - goto stCase145 - case 146: - goto stCase146 - case 147: - goto stCase147 - case 148: - goto stCase148 - case 149: - goto stCase149 - case 150: - goto stCase150 - case 151: - goto stCase151 - case 152: - goto stCase152 - case 153: - goto stCase153 - case 154: - goto stCase154 - case 155: - goto stCase155 - case 156: - goto stCase156 - case 157: - goto stCase157 - case 158: - goto stCase158 - case 159: - goto stCase159 - case 160: - goto stCase160 - case 161: - goto stCase161 - case 162: - goto stCase162 - case 163: - goto stCase163 - case 164: - goto stCase164 - case 165: - goto stCase165 - case 166: - goto stCase166 - case 167: - goto stCase167 - case 168: - goto stCase168 - case 169: - goto stCase169 - case 170: - goto stCase170 - case 171: - goto stCase171 - case 172: - goto stCase172 - case 173: - goto stCase173 - case 174: - goto stCase174 - case 175: - goto stCase175 - case 176: - goto stCase176 - case 177: - goto stCase177 - case 178: - goto stCase178 - case 179: - goto stCase179 - case 180: - goto stCase180 - case 181: - goto stCase181 - case 182: - goto stCase182 - case 183: - goto stCase183 - case 184: - goto stCase184 - case 185: - goto stCase185 - case 186: - goto stCase186 - case 187: - goto stCase187 - case 188: - goto stCase188 - case 189: - goto stCase189 - case 190: - goto stCase190 - case 191: - goto stCase191 - case 192: - goto stCase192 - case 193: - goto stCase193 - case 194: - goto stCase194 - case 195: - goto stCase195 - case 196: - goto stCase196 - case 197: - goto stCase197 - case 198: - goto stCase198 - case 199: - goto stCase199 - case 200: - goto stCase200 - case 201: - goto stCase201 - case 202: - goto stCase202 - case 203: - goto stCase203 - case 204: - goto stCase204 - case 205: - goto stCase205 - case 206: - goto stCase206 - case 207: - goto stCase207 - case 208: - goto stCase208 - case 209: - goto stCase209 - case 210: - goto stCase210 - case 211: - goto stCase211 - case 212: - goto stCase212 - case 213: - goto stCase213 - case 214: - goto stCase214 - case 215: - goto stCase215 - case 216: - goto stCase216 - case 217: - goto stCase217 - case 218: - goto stCase218 - case 219: - goto stCase219 - case 220: - goto stCase220 - case 221: - goto stCase221 - case 222: - goto stCase222 - case 223: - goto stCase223 - case 224: - goto stCase224 - case 225: - goto stCase225 - case 226: - goto stCase226 - case 227: - goto stCase227 - case 228: - goto stCase228 - case 229: - goto stCase229 - case 230: - goto stCase230 - case 231: - goto stCase231 - case 232: - goto stCase232 - case 233: - goto stCase233 - case 234: - goto stCase234 - case 235: - goto stCase235 - case 236: - goto stCase236 - case 237: - goto stCase237 - case 238: - goto stCase238 - case 239: - goto stCase239 - case 240: - goto stCase240 - case 241: - goto stCase241 - case 242: - goto stCase242 - case 243: - goto stCase243 - case 244: - goto stCase244 - case 245: - goto stCase245 - case 246: - goto stCase246 - case 247: - goto stCase247 - case 248: - goto stCase248 - case 249: - goto stCase249 - case 250: - goto stCase250 - case 251: - goto stCase251 - case 252: - goto stCase252 - case 253: - goto stCase253 - case 254: - goto stCase254 - case 255: - goto stCase255 - case 256: - goto stCase256 - case 257: - goto stCase257 - case 258: - goto stCase258 - case 259: - goto stCase259 - case 260: - goto stCase260 - case 261: - goto stCase261 - case 262: - goto stCase262 - case 263: - goto stCase263 - case 264: - goto stCase264 - case 265: - goto stCase265 - case 266: - goto stCase266 - case 267: - goto stCase267 - case 268: - goto stCase268 - case 269: - goto stCase269 - case 270: - goto stCase270 - case 271: - goto stCase271 - case 272: - goto stCase272 - case 273: - goto stCase273 - case 274: - goto stCase274 - case 275: - goto stCase275 - case 276: - goto stCase276 - case 277: - goto stCase277 - case 278: - goto stCase278 - case 279: - goto stCase279 - case 280: - goto stCase280 - case 281: - goto stCase281 - case 282: - goto stCase282 - case 283: - goto stCase283 - case 284: - goto stCase284 - case 285: - goto stCase285 - case 286: - goto stCase286 - case 287: - goto stCase287 - case 288: - goto stCase288 - case 289: - goto stCase289 - case 290: - goto stCase290 - case 291: - goto stCase291 - case 292: - goto stCase292 - case 293: - goto stCase293 - case 294: - goto stCase294 - case 295: - goto stCase295 - case 296: - goto stCase296 - case 297: - goto stCase297 - case 298: - goto stCase298 - case 299: - goto stCase299 - case 300: - goto stCase300 - case 301: - goto stCase301 - case 302: - goto stCase302 - case 303: - goto stCase303 - case 304: - goto stCase304 - case 305: - goto stCase305 - case 306: - goto stCase306 - case 307: - goto stCase307 - case 308: - goto stCase308 - case 309: - goto stCase309 - case 310: - goto stCase310 - case 311: - goto stCase311 - case 312: - goto stCase312 - case 313: - goto stCase313 - case 314: - goto stCase314 - case 315: - goto stCase315 - case 316: - goto stCase316 - case 317: - goto stCase317 - case 318: - goto stCase318 - case 319: - goto stCase319 - case 320: - goto stCase320 - case 321: - goto stCase321 - case 322: - goto stCase322 - case 323: - goto stCase323 - case 324: - goto stCase324 - case 325: - goto stCase325 - case 326: - goto stCase326 - case 327: - goto stCase327 - case 328: - goto stCase328 - case 329: - goto stCase329 - case 330: - goto stCase330 - case 331: - goto stCase331 - case 332: - goto stCase332 - case 333: - goto stCase333 - case 334: - goto stCase334 - case 335: - goto stCase335 - case 336: - goto stCase336 - case 337: - goto stCase337 - case 338: - goto stCase338 - case 339: - goto stCase339 - case 340: - goto stCase340 - case 341: - goto stCase341 - case 342: - goto stCase342 - case 343: - goto stCase343 - case 344: - goto stCase344 - case 345: - goto stCase345 - case 346: - goto stCase346 - case 347: - goto stCase347 - case 348: - goto stCase348 - case 349: - goto stCase349 - case 350: - goto stCase350 - case 351: - goto stCase351 - case 352: - goto stCase352 - case 353: - goto stCase353 - case 354: - goto stCase354 - case 355: - goto stCase355 - case 356: - goto stCase356 - case 357: - goto stCase357 - case 358: - goto stCase358 - case 359: - goto stCase359 - case 360: - goto stCase360 - case 361: - goto stCase361 - case 362: - goto stCase362 - case 363: - goto stCase363 - case 364: - goto stCase364 - case 365: - goto stCase365 - case 366: - goto stCase366 - case 367: - goto stCase367 - case 368: - goto stCase368 - case 369: - goto stCase369 - case 370: - goto stCase370 - case 371: - goto stCase371 - case 372: - goto stCase372 - case 373: - goto stCase373 - case 374: - goto stCase374 - case 375: - goto stCase375 - case 376: - goto stCase376 - case 377: - goto stCase377 - case 378: - goto stCase378 - case 379: - goto stCase379 - case 380: - goto stCase380 - case 381: - goto stCase381 - case 382: - goto stCase382 - case 383: - goto stCase383 - case 384: - goto stCase384 - case 385: - goto stCase385 - case 386: - goto stCase386 - case 387: - goto stCase387 - case 388: - goto stCase388 - case 389: - goto stCase389 - case 390: - goto stCase390 - case 391: - goto stCase391 - case 392: - goto stCase392 - case 393: - goto stCase393 - case 394: - goto stCase394 - case 395: - goto stCase395 - case 396: - goto stCase396 - case 397: - goto stCase397 - case 398: - goto stCase398 - case 399: - goto stCase399 - case 400: - goto stCase400 - case 401: - goto stCase401 - case 402: - goto stCase402 - case 403: - goto stCase403 - case 404: - goto stCase404 - case 405: - goto stCase405 - case 406: - goto stCase406 - case 407: - goto stCase407 - case 408: - goto stCase408 - case 409: - goto stCase409 - case 410: - goto stCase410 - case 411: - goto stCase411 - case 412: - goto stCase412 - case 413: - goto stCase413 - case 414: - goto stCase414 - case 415: - goto stCase415 - case 416: - goto stCase416 - case 417: - goto stCase417 - case 418: - goto stCase418 - case 419: - goto stCase419 - case 420: - goto stCase420 - case 421: - goto stCase421 - case 422: - goto stCase422 - case 423: - goto stCase423 - case 424: - goto stCase424 - case 425: - goto stCase425 - case 426: - goto stCase426 - case 427: - goto stCase427 - case 428: - goto stCase428 - case 429: - goto stCase429 - case 430: - goto stCase430 - case 431: - goto stCase431 - case 432: - goto stCase432 - case 433: - goto stCase433 - case 434: - goto stCase434 - case 435: - goto stCase435 - case 436: - goto stCase436 - case 437: - goto stCase437 - case 438: - goto stCase438 - case 439: - goto stCase439 - case 440: - goto stCase440 - case 441: - goto stCase441 - case 442: - goto stCase442 - case 443: - goto stCase443 - case 444: - goto stCase444 - case 445: - goto stCase445 - case 446: - goto stCase446 - case 447: - goto stCase447 - case 448: - goto stCase448 - case 449: - goto stCase449 - case 450: - goto stCase450 - case 451: - goto stCase451 - case 452: - goto stCase452 - case 453: - goto stCase453 - case 454: - goto stCase454 - case 455: - goto stCase455 - case 456: - goto stCase456 - case 457: - goto stCase457 - case 458: - goto stCase458 - case 459: - goto stCase459 - case 460: - goto stCase460 - case 461: - goto stCase461 - case 462: - goto stCase462 - case 463: - goto stCase463 - case 464: - goto stCase464 - case 465: - goto stCase465 - case 466: - goto stCase466 - case 467: - goto stCase467 - case 468: - goto stCase468 - case 469: - goto stCase469 - case 470: - goto stCase470 - case 471: - goto stCase471 - case 472: - goto stCase472 - case 473: - goto stCase473 - case 474: - goto stCase474 - case 475: - goto stCase475 - case 476: - goto stCase476 - case 477: - goto stCase477 - case 478: - goto stCase478 - case 479: - goto stCase479 - case 480: - goto stCase480 - case 481: - goto stCase481 - case 482: - goto stCase482 - case 483: - goto stCase483 - case 484: - goto stCase484 - case 485: - goto stCase485 - case 486: - goto stCase486 - case 487: - goto stCase487 - case 488: - goto stCase488 - case 489: - goto stCase489 - case 490: - goto stCase490 - case 491: - goto stCase491 - case 492: - goto stCase492 - case 493: - goto stCase493 - case 494: - goto stCase494 - case 495: - goto stCase495 - case 496: - goto stCase496 - case 497: - goto stCase497 - case 498: - goto stCase498 - case 499: - goto stCase499 - case 500: - goto stCase500 - case 501: - goto stCase501 - case 502: - goto stCase502 - case 503: - goto stCase503 - case 504: - goto stCase504 - case 505: - goto stCase505 - case 506: - goto stCase506 - case 507: - goto stCase507 - case 508: - goto stCase508 - case 509: - goto stCase509 - case 510: - goto stCase510 - case 511: - goto stCase511 - case 512: - goto stCase512 - case 513: - goto stCase513 - case 514: - goto stCase514 - case 515: - goto stCase515 - case 516: - goto stCase516 - case 517: - goto stCase517 - case 518: - goto stCase518 - case 519: - goto stCase519 - case 520: - goto stCase520 - case 521: - goto stCase521 - case 522: - goto stCase522 - case 523: - goto stCase523 - case 524: - goto stCase524 - case 525: - goto stCase525 - case 526: - goto stCase526 - case 527: - goto stCase527 - case 528: - goto stCase528 - case 529: - goto stCase529 - case 530: - goto stCase530 - case 531: - goto stCase531 - case 532: - goto stCase532 - case 533: - goto stCase533 - case 534: - goto stCase534 - case 535: - goto stCase535 - case 536: - goto stCase536 - case 537: - goto stCase537 - case 538: - goto stCase538 - case 539: - goto stCase539 - case 540: - goto stCase540 - case 541: - goto stCase541 - case 542: - goto stCase542 - case 543: - goto stCase543 - case 544: - goto stCase544 - case 545: - goto stCase545 - case 546: - goto stCase546 - case 547: - goto stCase547 - case 548: - goto stCase548 - case 549: - goto stCase549 - case 550: - goto stCase550 - case 551: - goto stCase551 - case 552: - goto stCase552 - case 553: - goto stCase553 - case 554: - goto stCase554 - case 555: - goto stCase555 - case 556: - goto stCase556 - case 557: - goto stCase557 - case 558: - goto stCase558 - case 559: - goto stCase559 - case 560: - goto stCase560 - case 561: - goto stCase561 - case 562: - goto stCase562 - case 563: - goto stCase563 - case 564: - goto stCase564 - case 565: - goto stCase565 - case 566: - goto stCase566 - case 567: - goto stCase567 - case 568: - goto stCase568 - case 569: - goto stCase569 - case 570: - goto stCase570 - case 571: - goto stCase571 - case 572: - goto stCase572 - case 573: - goto stCase573 - case 574: - goto stCase574 - case 575: - goto stCase575 - case 576: - goto stCase576 - case 577: - goto stCase577 - case 578: - goto stCase578 - case 579: - goto stCase579 - case 580: - goto stCase580 - case 581: - goto stCase581 - case 582: - goto stCase582 - case 583: - goto stCase583 - case 584: - goto stCase584 - case 585: - goto stCase585 - case 586: - goto stCase586 - case 587: - goto stCase587 - case 588: - goto stCase588 - case 589: - goto stCase589 - case 590: - goto stCase590 - case 591: - goto stCase591 - case 592: - goto stCase592 - case 593: - goto stCase593 - case 594: - goto stCase594 - case 595: - goto stCase595 - case 607: - goto stCase607 - case 608: - goto stCase608 - case 609: - goto stCase609 - case 610: - goto stCase610 - case 611: - goto stCase611 - case 612: - goto stCase612 - case 613: - goto stCase613 - case 596: - goto stCase596 - case 597: - goto stCase597 - case 598: - goto stCase598 - case 599: - goto stCase599 - case 600: - goto stCase600 - case 601: - goto stCase601 - case 602: - goto stCase602 - case 614: - goto stCase614 - } - goto stOut - stCase1: - if (m.data)[(m.p)] == 60 { + if ( m.p) == ( m.pe) { + goto _test_eof + } + switch m.cs { + case 1: + goto st_case_1 + case 0: + goto st_case_0 + case 2: + goto st_case_2 + case 3: + goto st_case_3 + case 4: + goto st_case_4 + case 5: + goto st_case_5 + case 6: + goto st_case_6 + case 7: + goto st_case_7 + case 8: + goto st_case_8 + case 9: + goto st_case_9 + case 10: + goto st_case_10 + case 11: + goto st_case_11 + case 12: + goto st_case_12 + case 13: + goto st_case_13 + case 14: + goto st_case_14 + case 15: + goto st_case_15 + case 16: + goto st_case_16 + case 1192: + goto st_case_1192 + case 1193: + goto st_case_1193 + case 1194: + goto st_case_1194 + case 17: + goto st_case_17 + case 18: + goto st_case_18 + case 19: + goto st_case_19 + case 20: + goto st_case_20 + case 21: + goto st_case_21 + case 22: + goto st_case_22 + case 23: + goto st_case_23 + case 24: + goto st_case_24 + case 25: + goto st_case_25 + case 26: + goto st_case_26 + case 27: + goto st_case_27 + case 28: + goto st_case_28 + case 29: + goto st_case_29 + case 30: + goto st_case_30 + case 31: + goto st_case_31 + case 32: + goto st_case_32 + case 33: + goto st_case_33 + case 34: + goto st_case_34 + case 35: + goto st_case_35 + case 36: + goto st_case_36 + case 37: + goto st_case_37 + case 38: + goto st_case_38 + case 39: + goto st_case_39 + case 40: + goto st_case_40 + case 41: + goto st_case_41 + case 42: + goto st_case_42 + case 43: + goto st_case_43 + case 44: + goto st_case_44 + case 45: + goto st_case_45 + case 46: + goto st_case_46 + case 47: + goto st_case_47 + case 48: + goto st_case_48 + case 49: + goto st_case_49 + case 50: + goto st_case_50 + case 51: + goto st_case_51 + case 52: + goto st_case_52 + case 53: + goto st_case_53 + case 54: + goto st_case_54 + case 55: + goto st_case_55 + case 1195: + goto st_case_1195 + case 56: + goto st_case_56 + case 57: + goto st_case_57 + case 58: + goto st_case_58 + case 59: + goto st_case_59 + case 60: + goto st_case_60 + case 61: + goto st_case_61 + case 62: + goto st_case_62 + case 63: + goto st_case_63 + case 64: + goto st_case_64 + case 65: + goto st_case_65 + case 66: + goto st_case_66 + case 67: + goto st_case_67 + case 68: + goto st_case_68 + case 69: + goto st_case_69 + case 70: + goto st_case_70 + case 71: + goto st_case_71 + case 72: + goto st_case_72 + case 73: + goto st_case_73 + case 74: + goto st_case_74 + case 75: + goto st_case_75 + case 76: + goto st_case_76 + case 77: + goto st_case_77 + case 78: + goto st_case_78 + case 79: + goto st_case_79 + case 80: + goto st_case_80 + case 81: + goto st_case_81 + case 82: + goto st_case_82 + case 83: + goto st_case_83 + case 84: + goto st_case_84 + case 85: + goto st_case_85 + case 86: + goto st_case_86 + case 87: + goto st_case_87 + case 88: + goto st_case_88 + case 89: + goto st_case_89 + case 90: + goto st_case_90 + case 91: + goto st_case_91 + case 92: + goto st_case_92 + case 93: + goto st_case_93 + case 94: + goto st_case_94 + case 95: + goto st_case_95 + case 96: + goto st_case_96 + case 97: + goto st_case_97 + case 98: + goto st_case_98 + case 99: + goto st_case_99 + case 100: + goto st_case_100 + case 101: + goto st_case_101 + case 102: + goto st_case_102 + case 103: + goto st_case_103 + case 104: + goto st_case_104 + case 105: + goto st_case_105 + case 106: + goto st_case_106 + case 107: + goto st_case_107 + case 108: + goto st_case_108 + case 109: + goto st_case_109 + case 110: + goto st_case_110 + case 111: + goto st_case_111 + case 112: + goto st_case_112 + case 113: + goto st_case_113 + case 114: + goto st_case_114 + case 115: + goto st_case_115 + case 116: + goto st_case_116 + case 117: + goto st_case_117 + case 118: + goto st_case_118 + case 119: + goto st_case_119 + case 120: + goto st_case_120 + case 121: + goto st_case_121 + case 122: + goto st_case_122 + case 123: + goto st_case_123 + case 124: + goto st_case_124 + case 125: + goto st_case_125 + case 126: + goto st_case_126 + case 127: + goto st_case_127 + case 128: + goto st_case_128 + case 129: + goto st_case_129 + case 130: + goto st_case_130 + case 131: + goto st_case_131 + case 132: + goto st_case_132 + case 133: + goto st_case_133 + case 134: + goto st_case_134 + case 135: + goto st_case_135 + case 136: + goto st_case_136 + case 137: + goto st_case_137 + case 138: + goto st_case_138 + case 139: + goto st_case_139 + case 140: + goto st_case_140 + case 141: + goto st_case_141 + case 142: + goto st_case_142 + case 143: + goto st_case_143 + case 144: + goto st_case_144 + case 145: + goto st_case_145 + case 146: + goto st_case_146 + case 147: + goto st_case_147 + case 148: + goto st_case_148 + case 149: + goto st_case_149 + case 150: + goto st_case_150 + case 151: + goto st_case_151 + case 152: + goto st_case_152 + case 153: + goto st_case_153 + case 154: + goto st_case_154 + case 155: + goto st_case_155 + case 156: + goto st_case_156 + case 157: + goto st_case_157 + case 158: + goto st_case_158 + case 159: + goto st_case_159 + case 160: + goto st_case_160 + case 161: + goto st_case_161 + case 162: + goto st_case_162 + case 163: + goto st_case_163 + case 164: + goto st_case_164 + case 165: + goto st_case_165 + case 166: + goto st_case_166 + case 167: + goto st_case_167 + case 168: + goto st_case_168 + case 169: + goto st_case_169 + case 170: + goto st_case_170 + case 171: + goto st_case_171 + case 172: + goto st_case_172 + case 173: + goto st_case_173 + case 174: + goto st_case_174 + case 175: + goto st_case_175 + case 176: + goto st_case_176 + case 177: + goto st_case_177 + case 178: + goto st_case_178 + case 179: + goto st_case_179 + case 180: + goto st_case_180 + case 181: + goto st_case_181 + case 182: + goto st_case_182 + case 183: + goto st_case_183 + case 184: + goto st_case_184 + case 185: + goto st_case_185 + case 186: + goto st_case_186 + case 187: + goto st_case_187 + case 188: + goto st_case_188 + case 189: + goto st_case_189 + case 190: + goto st_case_190 + case 191: + goto st_case_191 + case 192: + goto st_case_192 + case 193: + goto st_case_193 + case 194: + goto st_case_194 + case 195: + goto st_case_195 + case 196: + goto st_case_196 + case 197: + goto st_case_197 + case 198: + goto st_case_198 + case 199: + goto st_case_199 + case 200: + goto st_case_200 + case 201: + goto st_case_201 + case 202: + goto st_case_202 + case 203: + goto st_case_203 + case 204: + goto st_case_204 + case 205: + goto st_case_205 + case 206: + goto st_case_206 + case 207: + goto st_case_207 + case 208: + goto st_case_208 + case 209: + goto st_case_209 + case 210: + goto st_case_210 + case 211: + goto st_case_211 + case 212: + goto st_case_212 + case 213: + goto st_case_213 + case 214: + goto st_case_214 + case 215: + goto st_case_215 + case 216: + goto st_case_216 + case 217: + goto st_case_217 + case 218: + goto st_case_218 + case 219: + goto st_case_219 + case 220: + goto st_case_220 + case 221: + goto st_case_221 + case 222: + goto st_case_222 + case 223: + goto st_case_223 + case 224: + goto st_case_224 + case 225: + goto st_case_225 + case 226: + goto st_case_226 + case 227: + goto st_case_227 + case 228: + goto st_case_228 + case 229: + goto st_case_229 + case 230: + goto st_case_230 + case 231: + goto st_case_231 + case 232: + goto st_case_232 + case 233: + goto st_case_233 + case 234: + goto st_case_234 + case 235: + goto st_case_235 + case 236: + goto st_case_236 + case 237: + goto st_case_237 + case 238: + goto st_case_238 + case 239: + goto st_case_239 + case 240: + goto st_case_240 + case 241: + goto st_case_241 + case 242: + goto st_case_242 + case 243: + goto st_case_243 + case 244: + goto st_case_244 + case 245: + goto st_case_245 + case 246: + goto st_case_246 + case 247: + goto st_case_247 + case 248: + goto st_case_248 + case 249: + goto st_case_249 + case 250: + goto st_case_250 + case 251: + goto st_case_251 + case 252: + goto st_case_252 + case 253: + goto st_case_253 + case 254: + goto st_case_254 + case 255: + goto st_case_255 + case 256: + goto st_case_256 + case 257: + goto st_case_257 + case 258: + goto st_case_258 + case 259: + goto st_case_259 + case 260: + goto st_case_260 + case 261: + goto st_case_261 + case 262: + goto st_case_262 + case 263: + goto st_case_263 + case 264: + goto st_case_264 + case 265: + goto st_case_265 + case 266: + goto st_case_266 + case 267: + goto st_case_267 + case 268: + goto st_case_268 + case 269: + goto st_case_269 + case 270: + goto st_case_270 + case 271: + goto st_case_271 + case 272: + goto st_case_272 + case 273: + goto st_case_273 + case 274: + goto st_case_274 + case 275: + goto st_case_275 + case 276: + goto st_case_276 + case 277: + goto st_case_277 + case 278: + goto st_case_278 + case 279: + goto st_case_279 + case 280: + goto st_case_280 + case 281: + goto st_case_281 + case 282: + goto st_case_282 + case 283: + goto st_case_283 + case 284: + goto st_case_284 + case 285: + goto st_case_285 + case 286: + goto st_case_286 + case 287: + goto st_case_287 + case 288: + goto st_case_288 + case 289: + goto st_case_289 + case 290: + goto st_case_290 + case 291: + goto st_case_291 + case 292: + goto st_case_292 + case 293: + goto st_case_293 + case 294: + goto st_case_294 + case 295: + goto st_case_295 + case 296: + goto st_case_296 + case 297: + goto st_case_297 + case 298: + goto st_case_298 + case 299: + goto st_case_299 + case 300: + goto st_case_300 + case 301: + goto st_case_301 + case 302: + goto st_case_302 + case 303: + goto st_case_303 + case 304: + goto st_case_304 + case 305: + goto st_case_305 + case 306: + goto st_case_306 + case 307: + goto st_case_307 + case 308: + goto st_case_308 + case 309: + goto st_case_309 + case 310: + goto st_case_310 + case 311: + goto st_case_311 + case 312: + goto st_case_312 + case 313: + goto st_case_313 + case 314: + goto st_case_314 + case 315: + goto st_case_315 + case 316: + goto st_case_316 + case 317: + goto st_case_317 + case 318: + goto st_case_318 + case 319: + goto st_case_319 + case 320: + goto st_case_320 + case 321: + goto st_case_321 + case 322: + goto st_case_322 + case 323: + goto st_case_323 + case 324: + goto st_case_324 + case 325: + goto st_case_325 + case 326: + goto st_case_326 + case 327: + goto st_case_327 + case 328: + goto st_case_328 + case 329: + goto st_case_329 + case 330: + goto st_case_330 + case 331: + goto st_case_331 + case 332: + goto st_case_332 + case 333: + goto st_case_333 + case 334: + goto st_case_334 + case 335: + goto st_case_335 + case 336: + goto st_case_336 + case 337: + goto st_case_337 + case 338: + goto st_case_338 + case 339: + goto st_case_339 + case 340: + goto st_case_340 + case 341: + goto st_case_341 + case 342: + goto st_case_342 + case 343: + goto st_case_343 + case 344: + goto st_case_344 + case 345: + goto st_case_345 + case 346: + goto st_case_346 + case 347: + goto st_case_347 + case 348: + goto st_case_348 + case 349: + goto st_case_349 + case 350: + goto st_case_350 + case 351: + goto st_case_351 + case 352: + goto st_case_352 + case 353: + goto st_case_353 + case 354: + goto st_case_354 + case 355: + goto st_case_355 + case 356: + goto st_case_356 + case 357: + goto st_case_357 + case 358: + goto st_case_358 + case 359: + goto st_case_359 + case 360: + goto st_case_360 + case 361: + goto st_case_361 + case 362: + goto st_case_362 + case 363: + goto st_case_363 + case 364: + goto st_case_364 + case 365: + goto st_case_365 + case 366: + goto st_case_366 + case 367: + goto st_case_367 + case 368: + goto st_case_368 + case 369: + goto st_case_369 + case 370: + goto st_case_370 + case 371: + goto st_case_371 + case 372: + goto st_case_372 + case 373: + goto st_case_373 + case 374: + goto st_case_374 + case 375: + goto st_case_375 + case 376: + goto st_case_376 + case 377: + goto st_case_377 + case 378: + goto st_case_378 + case 379: + goto st_case_379 + case 380: + goto st_case_380 + case 381: + goto st_case_381 + case 382: + goto st_case_382 + case 383: + goto st_case_383 + case 384: + goto st_case_384 + case 385: + goto st_case_385 + case 386: + goto st_case_386 + case 387: + goto st_case_387 + case 388: + goto st_case_388 + case 389: + goto st_case_389 + case 390: + goto st_case_390 + case 391: + goto st_case_391 + case 392: + goto st_case_392 + case 393: + goto st_case_393 + case 394: + goto st_case_394 + case 395: + goto st_case_395 + case 396: + goto st_case_396 + case 397: + goto st_case_397 + case 398: + goto st_case_398 + case 399: + goto st_case_399 + case 400: + goto st_case_400 + case 401: + goto st_case_401 + case 402: + goto st_case_402 + case 403: + goto st_case_403 + case 404: + goto st_case_404 + case 405: + goto st_case_405 + case 406: + goto st_case_406 + case 407: + goto st_case_407 + case 408: + goto st_case_408 + case 409: + goto st_case_409 + case 410: + goto st_case_410 + case 411: + goto st_case_411 + case 412: + goto st_case_412 + case 413: + goto st_case_413 + case 414: + goto st_case_414 + case 415: + goto st_case_415 + case 416: + goto st_case_416 + case 417: + goto st_case_417 + case 418: + goto st_case_418 + case 419: + goto st_case_419 + case 420: + goto st_case_420 + case 421: + goto st_case_421 + case 422: + goto st_case_422 + case 423: + goto st_case_423 + case 424: + goto st_case_424 + case 425: + goto st_case_425 + case 426: + goto st_case_426 + case 427: + goto st_case_427 + case 428: + goto st_case_428 + case 429: + goto st_case_429 + case 430: + goto st_case_430 + case 431: + goto st_case_431 + case 432: + goto st_case_432 + case 433: + goto st_case_433 + case 434: + goto st_case_434 + case 435: + goto st_case_435 + case 436: + goto st_case_436 + case 437: + goto st_case_437 + case 438: + goto st_case_438 + case 439: + goto st_case_439 + case 440: + goto st_case_440 + case 441: + goto st_case_441 + case 442: + goto st_case_442 + case 443: + goto st_case_443 + case 444: + goto st_case_444 + case 445: + goto st_case_445 + case 446: + goto st_case_446 + case 447: + goto st_case_447 + case 448: + goto st_case_448 + case 449: + goto st_case_449 + case 450: + goto st_case_450 + case 451: + goto st_case_451 + case 452: + goto st_case_452 + case 453: + goto st_case_453 + case 454: + goto st_case_454 + case 455: + goto st_case_455 + case 456: + goto st_case_456 + case 457: + goto st_case_457 + case 458: + goto st_case_458 + case 459: + goto st_case_459 + case 460: + goto st_case_460 + case 461: + goto st_case_461 + case 462: + goto st_case_462 + case 463: + goto st_case_463 + case 464: + goto st_case_464 + case 465: + goto st_case_465 + case 466: + goto st_case_466 + case 467: + goto st_case_467 + case 468: + goto st_case_468 + case 469: + goto st_case_469 + case 470: + goto st_case_470 + case 471: + goto st_case_471 + case 472: + goto st_case_472 + case 473: + goto st_case_473 + case 474: + goto st_case_474 + case 475: + goto st_case_475 + case 476: + goto st_case_476 + case 477: + goto st_case_477 + case 478: + goto st_case_478 + case 479: + goto st_case_479 + case 480: + goto st_case_480 + case 481: + goto st_case_481 + case 482: + goto st_case_482 + case 483: + goto st_case_483 + case 484: + goto st_case_484 + case 485: + goto st_case_485 + case 486: + goto st_case_486 + case 487: + goto st_case_487 + case 488: + goto st_case_488 + case 489: + goto st_case_489 + case 490: + goto st_case_490 + case 491: + goto st_case_491 + case 492: + goto st_case_492 + case 493: + goto st_case_493 + case 494: + goto st_case_494 + case 495: + goto st_case_495 + case 496: + goto st_case_496 + case 497: + goto st_case_497 + case 498: + goto st_case_498 + case 499: + goto st_case_499 + case 500: + goto st_case_500 + case 501: + goto st_case_501 + case 502: + goto st_case_502 + case 503: + goto st_case_503 + case 504: + goto st_case_504 + case 505: + goto st_case_505 + case 506: + goto st_case_506 + case 507: + goto st_case_507 + case 508: + goto st_case_508 + case 509: + goto st_case_509 + case 510: + goto st_case_510 + case 511: + goto st_case_511 + case 512: + goto st_case_512 + case 513: + goto st_case_513 + case 514: + goto st_case_514 + case 515: + goto st_case_515 + case 516: + goto st_case_516 + case 517: + goto st_case_517 + case 518: + goto st_case_518 + case 519: + goto st_case_519 + case 520: + goto st_case_520 + case 521: + goto st_case_521 + case 522: + goto st_case_522 + case 523: + goto st_case_523 + case 524: + goto st_case_524 + case 525: + goto st_case_525 + case 526: + goto st_case_526 + case 527: + goto st_case_527 + case 528: + goto st_case_528 + case 529: + goto st_case_529 + case 530: + goto st_case_530 + case 531: + goto st_case_531 + case 532: + goto st_case_532 + case 533: + goto st_case_533 + case 534: + goto st_case_534 + case 535: + goto st_case_535 + case 536: + goto st_case_536 + case 537: + goto st_case_537 + case 538: + goto st_case_538 + case 539: + goto st_case_539 + case 540: + goto st_case_540 + case 541: + goto st_case_541 + case 542: + goto st_case_542 + case 543: + goto st_case_543 + case 544: + goto st_case_544 + case 545: + goto st_case_545 + case 546: + goto st_case_546 + case 547: + goto st_case_547 + case 548: + goto st_case_548 + case 549: + goto st_case_549 + case 550: + goto st_case_550 + case 551: + goto st_case_551 + case 552: + goto st_case_552 + case 553: + goto st_case_553 + case 554: + goto st_case_554 + case 555: + goto st_case_555 + case 556: + goto st_case_556 + case 557: + goto st_case_557 + case 558: + goto st_case_558 + case 559: + goto st_case_559 + case 560: + goto st_case_560 + case 561: + goto st_case_561 + case 562: + goto st_case_562 + case 563: + goto st_case_563 + case 564: + goto st_case_564 + case 565: + goto st_case_565 + case 566: + goto st_case_566 + case 567: + goto st_case_567 + case 568: + goto st_case_568 + case 569: + goto st_case_569 + case 570: + goto st_case_570 + case 571: + goto st_case_571 + case 572: + goto st_case_572 + case 573: + goto st_case_573 + case 574: + goto st_case_574 + case 575: + goto st_case_575 + case 576: + goto st_case_576 + case 577: + goto st_case_577 + case 578: + goto st_case_578 + case 579: + goto st_case_579 + case 580: + goto st_case_580 + case 581: + goto st_case_581 + case 582: + goto st_case_582 + case 583: + goto st_case_583 + case 584: + goto st_case_584 + case 585: + goto st_case_585 + case 586: + goto st_case_586 + case 587: + goto st_case_587 + case 588: + goto st_case_588 + case 589: + goto st_case_589 + case 590: + goto st_case_590 + case 591: + goto st_case_591 + case 592: + goto st_case_592 + case 593: + goto st_case_593 + case 594: + goto st_case_594 + case 595: + goto st_case_595 + case 603: + goto st_case_603 + case 604: + goto st_case_604 + case 605: + goto st_case_605 + case 606: + goto st_case_606 + case 607: + goto st_case_607 + case 608: + goto st_case_608 + case 609: + goto st_case_609 + case 610: + goto st_case_610 + case 611: + goto st_case_611 + case 612: + goto st_case_612 + case 613: + goto st_case_613 + case 614: + goto st_case_614 + case 615: + goto st_case_615 + case 1204: + goto st_case_1204 + case 1205: + goto st_case_1205 + case 1206: + goto st_case_1206 + case 616: + goto st_case_616 + case 617: + goto st_case_617 + case 618: + goto st_case_618 + case 619: + goto st_case_619 + case 620: + goto st_case_620 + case 621: + goto st_case_621 + case 622: + goto st_case_622 + case 623: + goto st_case_623 + case 624: + goto st_case_624 + case 625: + goto st_case_625 + case 626: + goto st_case_626 + case 627: + goto st_case_627 + case 628: + goto st_case_628 + case 629: + goto st_case_629 + case 630: + goto st_case_630 + case 631: + goto st_case_631 + case 632: + goto st_case_632 + case 633: + goto st_case_633 + case 634: + goto st_case_634 + case 635: + goto st_case_635 + case 636: + goto st_case_636 + case 637: + goto st_case_637 + case 638: + goto st_case_638 + case 639: + goto st_case_639 + case 640: + goto st_case_640 + case 641: + goto st_case_641 + case 642: + goto st_case_642 + case 643: + goto st_case_643 + case 644: + goto st_case_644 + case 645: + goto st_case_645 + case 646: + goto st_case_646 + case 647: + goto st_case_647 + case 648: + goto st_case_648 + case 649: + goto st_case_649 + case 650: + goto st_case_650 + case 651: + goto st_case_651 + case 652: + goto st_case_652 + case 653: + goto st_case_653 + case 654: + goto st_case_654 + case 1207: + goto st_case_1207 + case 655: + goto st_case_655 + case 656: + goto st_case_656 + case 657: + goto st_case_657 + case 658: + goto st_case_658 + case 659: + goto st_case_659 + case 660: + goto st_case_660 + case 661: + goto st_case_661 + case 662: + goto st_case_662 + case 663: + goto st_case_663 + case 664: + goto st_case_664 + case 665: + goto st_case_665 + case 666: + goto st_case_666 + case 667: + goto st_case_667 + case 668: + goto st_case_668 + case 669: + goto st_case_669 + case 670: + goto st_case_670 + case 671: + goto st_case_671 + case 672: + goto st_case_672 + case 673: + goto st_case_673 + case 674: + goto st_case_674 + case 675: + goto st_case_675 + case 676: + goto st_case_676 + case 677: + goto st_case_677 + case 678: + goto st_case_678 + case 679: + goto st_case_679 + case 680: + goto st_case_680 + case 681: + goto st_case_681 + case 682: + goto st_case_682 + case 683: + goto st_case_683 + case 684: + goto st_case_684 + case 685: + goto st_case_685 + case 686: + goto st_case_686 + case 687: + goto st_case_687 + case 688: + goto st_case_688 + case 689: + goto st_case_689 + case 690: + goto st_case_690 + case 691: + goto st_case_691 + case 692: + goto st_case_692 + case 693: + goto st_case_693 + case 694: + goto st_case_694 + case 695: + goto st_case_695 + case 696: + goto st_case_696 + case 697: + goto st_case_697 + case 698: + goto st_case_698 + case 699: + goto st_case_699 + case 700: + goto st_case_700 + case 701: + goto st_case_701 + case 702: + goto st_case_702 + case 703: + goto st_case_703 + case 704: + goto st_case_704 + case 705: + goto st_case_705 + case 706: + goto st_case_706 + case 707: + goto st_case_707 + case 708: + goto st_case_708 + case 709: + goto st_case_709 + case 710: + goto st_case_710 + case 711: + goto st_case_711 + case 712: + goto st_case_712 + case 713: + goto st_case_713 + case 714: + goto st_case_714 + case 715: + goto st_case_715 + case 716: + goto st_case_716 + case 717: + goto st_case_717 + case 718: + goto st_case_718 + case 719: + goto st_case_719 + case 720: + goto st_case_720 + case 721: + goto st_case_721 + case 722: + goto st_case_722 + case 723: + goto st_case_723 + case 724: + goto st_case_724 + case 725: + goto st_case_725 + case 726: + goto st_case_726 + case 727: + goto st_case_727 + case 728: + goto st_case_728 + case 729: + goto st_case_729 + case 730: + goto st_case_730 + case 731: + goto st_case_731 + case 732: + goto st_case_732 + case 733: + goto st_case_733 + case 734: + goto st_case_734 + case 735: + goto st_case_735 + case 736: + goto st_case_736 + case 737: + goto st_case_737 + case 738: + goto st_case_738 + case 739: + goto st_case_739 + case 740: + goto st_case_740 + case 741: + goto st_case_741 + case 742: + goto st_case_742 + case 743: + goto st_case_743 + case 744: + goto st_case_744 + case 745: + goto st_case_745 + case 746: + goto st_case_746 + case 747: + goto st_case_747 + case 748: + goto st_case_748 + case 749: + goto st_case_749 + case 750: + goto st_case_750 + case 751: + goto st_case_751 + case 752: + goto st_case_752 + case 753: + goto st_case_753 + case 754: + goto st_case_754 + case 755: + goto st_case_755 + case 756: + goto st_case_756 + case 757: + goto st_case_757 + case 758: + goto st_case_758 + case 759: + goto st_case_759 + case 760: + goto st_case_760 + case 761: + goto st_case_761 + case 762: + goto st_case_762 + case 763: + goto st_case_763 + case 764: + goto st_case_764 + case 765: + goto st_case_765 + case 766: + goto st_case_766 + case 767: + goto st_case_767 + case 768: + goto st_case_768 + case 769: + goto st_case_769 + case 770: + goto st_case_770 + case 771: + goto st_case_771 + case 772: + goto st_case_772 + case 773: + goto st_case_773 + case 774: + goto st_case_774 + case 775: + goto st_case_775 + case 776: + goto st_case_776 + case 777: + goto st_case_777 + case 778: + goto st_case_778 + case 779: + goto st_case_779 + case 780: + goto st_case_780 + case 781: + goto st_case_781 + case 782: + goto st_case_782 + case 783: + goto st_case_783 + case 784: + goto st_case_784 + case 785: + goto st_case_785 + case 786: + goto st_case_786 + case 787: + goto st_case_787 + case 788: + goto st_case_788 + case 789: + goto st_case_789 + case 790: + goto st_case_790 + case 791: + goto st_case_791 + case 792: + goto st_case_792 + case 793: + goto st_case_793 + case 794: + goto st_case_794 + case 795: + goto st_case_795 + case 796: + goto st_case_796 + case 797: + goto st_case_797 + case 798: + goto st_case_798 + case 799: + goto st_case_799 + case 800: + goto st_case_800 + case 801: + goto st_case_801 + case 802: + goto st_case_802 + case 803: + goto st_case_803 + case 804: + goto st_case_804 + case 805: + goto st_case_805 + case 806: + goto st_case_806 + case 807: + goto st_case_807 + case 808: + goto st_case_808 + case 809: + goto st_case_809 + case 810: + goto st_case_810 + case 811: + goto st_case_811 + case 812: + goto st_case_812 + case 813: + goto st_case_813 + case 814: + goto st_case_814 + case 815: + goto st_case_815 + case 816: + goto st_case_816 + case 817: + goto st_case_817 + case 818: + goto st_case_818 + case 819: + goto st_case_819 + case 820: + goto st_case_820 + case 821: + goto st_case_821 + case 822: + goto st_case_822 + case 823: + goto st_case_823 + case 824: + goto st_case_824 + case 825: + goto st_case_825 + case 826: + goto st_case_826 + case 827: + goto st_case_827 + case 828: + goto st_case_828 + case 829: + goto st_case_829 + case 830: + goto st_case_830 + case 831: + goto st_case_831 + case 832: + goto st_case_832 + case 833: + goto st_case_833 + case 834: + goto st_case_834 + case 835: + goto st_case_835 + case 836: + goto st_case_836 + case 837: + goto st_case_837 + case 838: + goto st_case_838 + case 839: + goto st_case_839 + case 840: + goto st_case_840 + case 841: + goto st_case_841 + case 842: + goto st_case_842 + case 843: + goto st_case_843 + case 844: + goto st_case_844 + case 845: + goto st_case_845 + case 846: + goto st_case_846 + case 847: + goto st_case_847 + case 848: + goto st_case_848 + case 849: + goto st_case_849 + case 850: + goto st_case_850 + case 851: + goto st_case_851 + case 852: + goto st_case_852 + case 853: + goto st_case_853 + case 854: + goto st_case_854 + case 855: + goto st_case_855 + case 856: + goto st_case_856 + case 857: + goto st_case_857 + case 858: + goto st_case_858 + case 859: + goto st_case_859 + case 860: + goto st_case_860 + case 861: + goto st_case_861 + case 862: + goto st_case_862 + case 863: + goto st_case_863 + case 864: + goto st_case_864 + case 865: + goto st_case_865 + case 866: + goto st_case_866 + case 867: + goto st_case_867 + case 868: + goto st_case_868 + case 869: + goto st_case_869 + case 870: + goto st_case_870 + case 871: + goto st_case_871 + case 872: + goto st_case_872 + case 873: + goto st_case_873 + case 874: + goto st_case_874 + case 875: + goto st_case_875 + case 876: + goto st_case_876 + case 877: + goto st_case_877 + case 878: + goto st_case_878 + case 879: + goto st_case_879 + case 880: + goto st_case_880 + case 881: + goto st_case_881 + case 882: + goto st_case_882 + case 883: + goto st_case_883 + case 884: + goto st_case_884 + case 885: + goto st_case_885 + case 886: + goto st_case_886 + case 887: + goto st_case_887 + case 888: + goto st_case_888 + case 889: + goto st_case_889 + case 890: + goto st_case_890 + case 891: + goto st_case_891 + case 892: + goto st_case_892 + case 893: + goto st_case_893 + case 894: + goto st_case_894 + case 895: + goto st_case_895 + case 896: + goto st_case_896 + case 897: + goto st_case_897 + case 898: + goto st_case_898 + case 899: + goto st_case_899 + case 900: + goto st_case_900 + case 901: + goto st_case_901 + case 902: + goto st_case_902 + case 903: + goto st_case_903 + case 904: + goto st_case_904 + case 905: + goto st_case_905 + case 906: + goto st_case_906 + case 907: + goto st_case_907 + case 908: + goto st_case_908 + case 909: + goto st_case_909 + case 910: + goto st_case_910 + case 911: + goto st_case_911 + case 912: + goto st_case_912 + case 913: + goto st_case_913 + case 914: + goto st_case_914 + case 915: + goto st_case_915 + case 916: + goto st_case_916 + case 917: + goto st_case_917 + case 918: + goto st_case_918 + case 919: + goto st_case_919 + case 920: + goto st_case_920 + case 921: + goto st_case_921 + case 922: + goto st_case_922 + case 923: + goto st_case_923 + case 924: + goto st_case_924 + case 925: + goto st_case_925 + case 926: + goto st_case_926 + case 927: + goto st_case_927 + case 928: + goto st_case_928 + case 929: + goto st_case_929 + case 930: + goto st_case_930 + case 931: + goto st_case_931 + case 932: + goto st_case_932 + case 933: + goto st_case_933 + case 934: + goto st_case_934 + case 935: + goto st_case_935 + case 936: + goto st_case_936 + case 937: + goto st_case_937 + case 938: + goto st_case_938 + case 939: + goto st_case_939 + case 940: + goto st_case_940 + case 941: + goto st_case_941 + case 942: + goto st_case_942 + case 943: + goto st_case_943 + case 944: + goto st_case_944 + case 945: + goto st_case_945 + case 946: + goto st_case_946 + case 947: + goto st_case_947 + case 948: + goto st_case_948 + case 949: + goto st_case_949 + case 950: + goto st_case_950 + case 951: + goto st_case_951 + case 952: + goto st_case_952 + case 953: + goto st_case_953 + case 954: + goto st_case_954 + case 955: + goto st_case_955 + case 956: + goto st_case_956 + case 957: + goto st_case_957 + case 958: + goto st_case_958 + case 959: + goto st_case_959 + case 960: + goto st_case_960 + case 961: + goto st_case_961 + case 962: + goto st_case_962 + case 963: + goto st_case_963 + case 964: + goto st_case_964 + case 965: + goto st_case_965 + case 966: + goto st_case_966 + case 967: + goto st_case_967 + case 968: + goto st_case_968 + case 969: + goto st_case_969 + case 970: + goto st_case_970 + case 971: + goto st_case_971 + case 972: + goto st_case_972 + case 973: + goto st_case_973 + case 974: + goto st_case_974 + case 975: + goto st_case_975 + case 976: + goto st_case_976 + case 977: + goto st_case_977 + case 978: + goto st_case_978 + case 979: + goto st_case_979 + case 980: + goto st_case_980 + case 981: + goto st_case_981 + case 982: + goto st_case_982 + case 983: + goto st_case_983 + case 984: + goto st_case_984 + case 985: + goto st_case_985 + case 986: + goto st_case_986 + case 987: + goto st_case_987 + case 988: + goto st_case_988 + case 989: + goto st_case_989 + case 990: + goto st_case_990 + case 991: + goto st_case_991 + case 992: + goto st_case_992 + case 993: + goto st_case_993 + case 994: + goto st_case_994 + case 995: + goto st_case_995 + case 996: + goto st_case_996 + case 997: + goto st_case_997 + case 998: + goto st_case_998 + case 999: + goto st_case_999 + case 1000: + goto st_case_1000 + case 1001: + goto st_case_1001 + case 1002: + goto st_case_1002 + case 1003: + goto st_case_1003 + case 1004: + goto st_case_1004 + case 1005: + goto st_case_1005 + case 1006: + goto st_case_1006 + case 1007: + goto st_case_1007 + case 1008: + goto st_case_1008 + case 1009: + goto st_case_1009 + case 1010: + goto st_case_1010 + case 1011: + goto st_case_1011 + case 1012: + goto st_case_1012 + case 1013: + goto st_case_1013 + case 1014: + goto st_case_1014 + case 1015: + goto st_case_1015 + case 1016: + goto st_case_1016 + case 1017: + goto st_case_1017 + case 1018: + goto st_case_1018 + case 1019: + goto st_case_1019 + case 1020: + goto st_case_1020 + case 1021: + goto st_case_1021 + case 1022: + goto st_case_1022 + case 1023: + goto st_case_1023 + case 1024: + goto st_case_1024 + case 1025: + goto st_case_1025 + case 1026: + goto st_case_1026 + case 1027: + goto st_case_1027 + case 1028: + goto st_case_1028 + case 1029: + goto st_case_1029 + case 1030: + goto st_case_1030 + case 1031: + goto st_case_1031 + case 1032: + goto st_case_1032 + case 1033: + goto st_case_1033 + case 1034: + goto st_case_1034 + case 1035: + goto st_case_1035 + case 1036: + goto st_case_1036 + case 1037: + goto st_case_1037 + case 1038: + goto st_case_1038 + case 1039: + goto st_case_1039 + case 1040: + goto st_case_1040 + case 1041: + goto st_case_1041 + case 1042: + goto st_case_1042 + case 1043: + goto st_case_1043 + case 1044: + goto st_case_1044 + case 1045: + goto st_case_1045 + case 1046: + goto st_case_1046 + case 1047: + goto st_case_1047 + case 1048: + goto st_case_1048 + case 1049: + goto st_case_1049 + case 1050: + goto st_case_1050 + case 1051: + goto st_case_1051 + case 1052: + goto st_case_1052 + case 1053: + goto st_case_1053 + case 1054: + goto st_case_1054 + case 1055: + goto st_case_1055 + case 1056: + goto st_case_1056 + case 1057: + goto st_case_1057 + case 1058: + goto st_case_1058 + case 1059: + goto st_case_1059 + case 1060: + goto st_case_1060 + case 1061: + goto st_case_1061 + case 1062: + goto st_case_1062 + case 1063: + goto st_case_1063 + case 1064: + goto st_case_1064 + case 1065: + goto st_case_1065 + case 1066: + goto st_case_1066 + case 1067: + goto st_case_1067 + case 1068: + goto st_case_1068 + case 1069: + goto st_case_1069 + case 1070: + goto st_case_1070 + case 1071: + goto st_case_1071 + case 1072: + goto st_case_1072 + case 1073: + goto st_case_1073 + case 1074: + goto st_case_1074 + case 1075: + goto st_case_1075 + case 1076: + goto st_case_1076 + case 1077: + goto st_case_1077 + case 1078: + goto st_case_1078 + case 1079: + goto st_case_1079 + case 1080: + goto st_case_1080 + case 1081: + goto st_case_1081 + case 1082: + goto st_case_1082 + case 1083: + goto st_case_1083 + case 1084: + goto st_case_1084 + case 1085: + goto st_case_1085 + case 1086: + goto st_case_1086 + case 1087: + goto st_case_1087 + case 1088: + goto st_case_1088 + case 1089: + goto st_case_1089 + case 1090: + goto st_case_1090 + case 1091: + goto st_case_1091 + case 1092: + goto st_case_1092 + case 1093: + goto st_case_1093 + case 1094: + goto st_case_1094 + case 1095: + goto st_case_1095 + case 1096: + goto st_case_1096 + case 1097: + goto st_case_1097 + case 1098: + goto st_case_1098 + case 1099: + goto st_case_1099 + case 1100: + goto st_case_1100 + case 1101: + goto st_case_1101 + case 1102: + goto st_case_1102 + case 1103: + goto st_case_1103 + case 1104: + goto st_case_1104 + case 1105: + goto st_case_1105 + case 1106: + goto st_case_1106 + case 1107: + goto st_case_1107 + case 1108: + goto st_case_1108 + case 1109: + goto st_case_1109 + case 1110: + goto st_case_1110 + case 1111: + goto st_case_1111 + case 1112: + goto st_case_1112 + case 1113: + goto st_case_1113 + case 1114: + goto st_case_1114 + case 1115: + goto st_case_1115 + case 1116: + goto st_case_1116 + case 1117: + goto st_case_1117 + case 1118: + goto st_case_1118 + case 1119: + goto st_case_1119 + case 1120: + goto st_case_1120 + case 1121: + goto st_case_1121 + case 1122: + goto st_case_1122 + case 1123: + goto st_case_1123 + case 1124: + goto st_case_1124 + case 1125: + goto st_case_1125 + case 1126: + goto st_case_1126 + case 1127: + goto st_case_1127 + case 1128: + goto st_case_1128 + case 1129: + goto st_case_1129 + case 1130: + goto st_case_1130 + case 1131: + goto st_case_1131 + case 1132: + goto st_case_1132 + case 1133: + goto st_case_1133 + case 1134: + goto st_case_1134 + case 1135: + goto st_case_1135 + case 1136: + goto st_case_1136 + case 1137: + goto st_case_1137 + case 1138: + goto st_case_1138 + case 1139: + goto st_case_1139 + case 1140: + goto st_case_1140 + case 1141: + goto st_case_1141 + case 1142: + goto st_case_1142 + case 1143: + goto st_case_1143 + case 1144: + goto st_case_1144 + case 1145: + goto st_case_1145 + case 1146: + goto st_case_1146 + case 1147: + goto st_case_1147 + case 1148: + goto st_case_1148 + case 1149: + goto st_case_1149 + case 1150: + goto st_case_1150 + case 1151: + goto st_case_1151 + case 1152: + goto st_case_1152 + case 1153: + goto st_case_1153 + case 1154: + goto st_case_1154 + case 1155: + goto st_case_1155 + case 1156: + goto st_case_1156 + case 1157: + goto st_case_1157 + case 1158: + goto st_case_1158 + case 1159: + goto st_case_1159 + case 1160: + goto st_case_1160 + case 1161: + goto st_case_1161 + case 1162: + goto st_case_1162 + case 1163: + goto st_case_1163 + case 1164: + goto st_case_1164 + case 1165: + goto st_case_1165 + case 1166: + goto st_case_1166 + case 1167: + goto st_case_1167 + case 1168: + goto st_case_1168 + case 1169: + goto st_case_1169 + case 1170: + goto st_case_1170 + case 1171: + goto st_case_1171 + case 1172: + goto st_case_1172 + case 1173: + goto st_case_1173 + case 1174: + goto st_case_1174 + case 1175: + goto st_case_1175 + case 1176: + goto st_case_1176 + case 1177: + goto st_case_1177 + case 1178: + goto st_case_1178 + case 1179: + goto st_case_1179 + case 1180: + goto st_case_1180 + case 1181: + goto st_case_1181 + case 1182: + goto st_case_1182 + case 1183: + goto st_case_1183 + case 1184: + goto st_case_1184 + case 1185: + goto st_case_1185 + case 1186: + goto st_case_1186 + case 1187: + goto st_case_1187 + case 1188: + goto st_case_1188 + case 1189: + goto st_case_1189 + case 1190: + goto st_case_1190 + case 1191: + goto st_case_1191 + case 1196: + goto st_case_1196 + case 1197: + goto st_case_1197 + case 1198: + goto st_case_1198 + case 1199: + goto st_case_1199 + case 1200: + goto st_case_1200 + case 1201: + goto st_case_1201 + case 1202: + goto st_case_1202 + case 596: + goto st_case_596 + case 597: + goto st_case_597 + case 598: + goto st_case_598 + case 599: + goto st_case_599 + case 600: + goto st_case_600 + case 601: + goto st_case_601 + case 602: + goto st_case_602 + case 1203: + goto st_case_1203 + } + goto st_out + st_case_1: + if ( m.data)[( m.p)] == 60 { goto st2 } goto tr0 - tr0: +tr0: +//line rfc5424/machine.go.rl:168 - m.err = fmt.Errorf(ErrPri+ColumnPositionTemplate, m.p) - (m.p)-- + if(!m.allowSkipPri) { + m.err = fmt.Errorf(ErrPri + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } + } else { + ( m.p)-- - goto st0 - tr2: + {goto st603 } + } - m.err = fmt.Errorf(ErrPrival+ColumnPositionTemplate, m.p) - (m.p)-- + goto st0 +tr2: +//line rfc5424/machine.go.rl:162 - { - goto st614 - } + m.err = fmt.Errorf(ErrPrival + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrPri+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } +//line rfc5424/machine.go.rl:168 - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + if(!m.allowSkipPri) { + m.err = fmt.Errorf(ErrPri + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } + } else { + ( m.p)-- - goto st0 - tr7: + {goto st603 } + } - m.err = fmt.Errorf(ErrVersion+ColumnPositionTemplate, m.p) - (m.p)-- + goto st0 +tr7: +//line rfc5424/machine.go.rl:179 - { - goto st614 - } + m.err = fmt.Errorf(ErrVersion + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } + goto st0 +tr9: +//line rfc5424/machine.go.rl:263 - goto st0 - tr9: + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } + goto st0 +tr12: +//line rfc5424/machine.go.rl:185 - goto st0 - tr12: + m.err = fmt.Errorf(ErrTimestamp + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrTimestamp+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } +//line rfc5424/machine.go.rl:263 - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - goto st0 - tr16: + goto st0 +tr16: +//line rfc5424/machine.go.rl:191 - m.err = fmt.Errorf(ErrHostname+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrHostname + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- +//line rfc5424/machine.go.rl:263 - { - goto st614 - } + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - goto st0 - tr20: + {goto st1203 } - m.err = fmt.Errorf(ErrAppname+ColumnPositionTemplate, m.p) - (m.p)-- + goto st0 +tr20: +//line rfc5424/machine.go.rl:197 - { - goto st614 - } + m.err = fmt.Errorf(ErrAppname + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } +//line rfc5424/machine.go.rl:263 - goto st0 - tr24: + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrProcID+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } + goto st0 +tr24: +//line rfc5424/machine.go.rl:203 - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrProcID + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - goto st0 - tr28: +//line rfc5424/machine.go.rl:263 - m.err = fmt.Errorf(ErrMsgID+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + goto st0 +tr28: +//line rfc5424/machine.go.rl:209 - { - goto st614 - } + m.err = fmt.Errorf(ErrMsgID + ColumnPositionTemplate, m.p) + ( m.p)-- - goto st0 - tr30: + {goto st1203 } - m.err = fmt.Errorf(ErrMsgID+ColumnPositionTemplate, m.p) - (m.p)-- +//line rfc5424/machine.go.rl:263 - { - goto st614 - } + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - goto st0 - tr33: + {goto st1203 } - m.err = fmt.Errorf(ErrStructuredData+ColumnPositionTemplate, m.p) - (m.p)-- + goto st0 +tr30: +//line rfc5424/machine.go.rl:209 - { - goto st614 - } + m.err = fmt.Errorf(ErrMsgID + ColumnPositionTemplate, m.p) + ( m.p)-- - goto st0 - tr36: + {goto st1203 } - delete(output.structuredData, m.currentelem) - if len(output.structuredData) == 0 { - output.hasElements = false - } - m.err = fmt.Errorf(ErrSdID+ColumnPositionTemplate, m.p) - (m.p)-- + goto st0 +tr33: +//line rfc5424/machine.go.rl:215 - { - goto st614 - } + m.err = fmt.Errorf(ErrStructuredData + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrStructuredData+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } + goto st0 +tr36: +//line rfc5424/machine.go.rl:221 - goto st0 - tr38: + delete(output.structuredData, m.currentelem) + if len(output.structuredData) == 0 { + output.hasElements = false + } + m.err = fmt.Errorf(ErrSdID + ColumnPositionTemplate, m.p) + ( m.p)-- - if _, ok := output.structuredData[string(m.text())]; ok { - // As per RFC5424 section 6.3.2 SD-ID MUST NOT exist more than once in a message - m.err = fmt.Errorf(ErrSdIDDuplicated+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } - } else { - id := string(m.text()) - output.structuredData[id] = map[string]string{} - output.hasElements = true - m.currentelem = id - } +//line rfc5424/machine.go.rl:215 - delete(output.structuredData, m.currentelem) - if len(output.structuredData) == 0 { - output.hasElements = false - } - m.err = fmt.Errorf(ErrSdID+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrStructuredData + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - m.err = fmt.Errorf(ErrStructuredData+ColumnPositionTemplate, m.p) - (m.p)-- + goto st0 +tr38: +//line rfc5424/machine.go.rl:117 - { - goto st614 - } + if _, ok := output.structuredData[string(m.text())]; ok { + // As per RFC5424 section 6.3.2 SD-ID MUST NOT exist more than once in a message + m.err = fmt.Errorf(ErrSdIDDuplicated + ColumnPositionTemplate, m.p) + ( m.p)-- - goto st0 - tr42: + {goto st1203 } + } else { + id := string(m.text()) + output.structuredData[id] = map[string]string{} + output.hasElements = true + m.currentelem = id + } - if len(output.structuredData) > 0 { - delete(output.structuredData[m.currentelem], m.currentparam) - } - m.err = fmt.Errorf(ErrSdParam+ColumnPositionTemplate, m.p) - (m.p)-- +//line rfc5424/machine.go.rl:221 - { - goto st614 - } + delete(output.structuredData, m.currentelem) + if len(output.structuredData) == 0 { + output.hasElements = false + } + m.err = fmt.Errorf(ErrSdID + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrStructuredData+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } +//line rfc5424/machine.go.rl:215 - goto st0 - tr80: + m.err = fmt.Errorf(ErrStructuredData + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrEscape+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } + goto st0 +tr42: +//line rfc5424/machine.go.rl:231 - if len(output.structuredData) > 0 { - delete(output.structuredData[m.currentelem], m.currentparam) - } - m.err = fmt.Errorf(ErrSdParam+ColumnPositionTemplate, m.p) - (m.p)-- + if len(output.structuredData) > 0 { + delete(output.structuredData[m.currentelem], m.currentparam) + } + m.err = fmt.Errorf(ErrSdParam + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - m.err = fmt.Errorf(ErrStructuredData+ColumnPositionTemplate, m.p) - (m.p)-- +//line rfc5424/machine.go.rl:215 - { - goto st614 - } + m.err = fmt.Errorf(ErrStructuredData + ColumnPositionTemplate, m.p) + ( m.p)-- - goto st0 - tr615: + {goto st1203 } - if t, e := time.Parse(RFC3339MICRO, string(m.text())); e != nil { - m.err = fmt.Errorf("%s [col %d]", e, m.p) - (m.p)-- + goto st0 +tr80: +//line rfc5424/machine.go.rl:257 - { - goto st614 - } - } else { - output.timestamp = t - output.timestampSet = true - } + m.err = fmt.Errorf(ErrEscape + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } +//line rfc5424/machine.go.rl:231 + + if len(output.structuredData) > 0 { + delete(output.structuredData[m.currentelem], m.currentparam) + } + m.err = fmt.Errorf(ErrSdParam + ColumnPositionTemplate, m.p) + ( m.p)-- - goto st0 - tr627: + {goto st1203 } - // If error encountered within the message rule ... - if m.msgat > 0 { - // Save the text until valid (m.p is where the parser has stopped) - output.message = string(m.data[m.msgat:m.p]) - } +//line rfc5424/machine.go.rl:215 - if m.compliantMsg { - m.err = fmt.Errorf(ErrMsgNotCompliant+ColumnPositionTemplate, m.p) - } else { - m.err = fmt.Errorf(ErrMsg+ColumnPositionTemplate, m.p) - } + m.err = fmt.Errorf(ErrStructuredData + ColumnPositionTemplate, m.p) + ( m.p)-- - (m.p)-- + {goto st1203 } - { - goto st614 - } + goto st0 +tr615: +//line rfc5424/machine.go.rl:86 - goto st0 - tr633: + if t, e := time.Parse(RFC3339MICRO, string(m.text())); e != nil { + m.err = fmt.Errorf("%s [col %d]", e, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrStructuredData+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } + } else { + output.timestamp = t + output.timestampSet = true + } - { - goto st614 - } +//line rfc5424/machine.go.rl:263 - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } + + goto st0 +tr623: +//line rfc5424/machine.go.rl:179 + + m.err = fmt.Errorf(ErrVersion + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + +//line rfc5424/machine.go.rl:263 + + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + + goto st0 +tr628: +//line rfc5424/machine.go.rl:240 + + // If error encountered within the message rule ... + if m.msgat > 0 { + // Save the text until valid (m.p is where the parser has stopped) + output.message = string(m.data[m.msgat:m.p]) + } - goto st0 - stCase0: + if m.compliantMsg { + m.err = fmt.Errorf(ErrMsgNotCompliant + ColumnPositionTemplate, m.p) + } else { + m.err = fmt.Errorf(ErrMsg + ColumnPositionTemplate, m.p) + } + + ( m.p)-- + + {goto st1203 } + + goto st0 +tr1237: +//line rfc5424/machine.go.rl:215 + + m.err = fmt.Errorf(ErrStructuredData + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + +//line rfc5424/machine.go.rl:263 + + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + + goto st0 +//line rfc5424/machine.go:2918 +st_case_0: st0: - m.cs = 0 + m.cs = 0 goto _out st2: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof2 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof2 } - stCase2: - switch (m.data)[(m.p)] { + st_case_2: + switch ( m.data)[( m.p)] { case 48: goto tr3 case 49: goto tr4 } - if 50 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 50 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto tr5 } goto tr2 - tr3: +tr3: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st3 + goto st3 st3: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof3 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof3 } - stCase3: + st_case_3: +//line rfc5424/machine.go.rl:77 - output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - output.prioritySet = true + output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + output.prioritySet = true - if (m.data)[(m.p)] == 62 { +//line rfc5424/machine.go:2954 + if ( m.data)[( m.p)] == 62 { goto st4 } goto tr2 st4: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof4 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof4 } - stCase4: - if 49 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_4: + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto tr8 } goto tr7 - tr8: +tr8: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st5 + goto st5 st5: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof5 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof5 } - stCase5: + st_case_5: +//line rfc5424/machine.go.rl:82 - output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - if (m.data)[(m.p)] == 32 { +//line rfc5424/machine.go:2983 + if ( m.data)[( m.p)] == 32 { goto st6 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st591 } goto tr9 st6: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof6 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof6 } - stCase6: - if (m.data)[(m.p)] == 45 { + st_case_6: + if ( m.data)[( m.p)] == 45 { goto st7 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto tr14 } goto tr12 st7: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof7 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof7 } - stCase7: - if (m.data)[(m.p)] == 32 { + st_case_7: + if ( m.data)[( m.p)] == 32 { goto st8 } goto tr9 - tr616: +tr616: +//line rfc5424/machine.go.rl:86 - if t, e := time.Parse(RFC3339MICRO, string(m.text())); e != nil { - m.err = fmt.Errorf("%s [col %d]", e, m.p) - (m.p)-- + if t, e := time.Parse(RFC3339MICRO, string(m.text())); e != nil { + m.err = fmt.Errorf("%s [col %d]", e, m.p) + ( m.p)-- - { - goto st614 - } - } else { - output.timestamp = t - output.timestampSet = true - } + {goto st1203 } + } else { + output.timestamp = t + output.timestampSet = true + } - goto st8 + goto st8 st8: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof8 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof8 } - stCase8: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + st_case_8: +//line rfc5424/machine.go:3031 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto tr17 } goto tr16 - tr17: +tr17: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st9 + goto st9 st9: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof9 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof9 } - stCase9: - if (m.data)[(m.p)] == 32 { + st_case_9: +//line rfc5424/machine.go:3047 + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st300 } goto tr16 - tr18: +tr18: +//line rfc5424/machine.go.rl:97 - output.hostname = string(m.text()) + output.hostname = string(m.text()) - goto st10 + goto st10 st10: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof10 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof10 } - stCase10: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + st_case_10: +//line rfc5424/machine.go:3066 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto tr21 } goto tr20 - tr21: +tr21: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st11 + goto st11 st11: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof11 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof11 } - stCase11: - if (m.data)[(m.p)] == 32 { + st_case_11: +//line rfc5424/machine.go:3082 + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st253 } goto tr20 - tr22: +tr22: +//line rfc5424/machine.go.rl:101 - output.appname = string(m.text()) + output.appname = string(m.text()) - goto st12 + goto st12 st12: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof12 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof12 } - stCase12: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + st_case_12: +//line rfc5424/machine.go:3101 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto tr25 } goto tr24 - tr25: +tr25: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st13 + goto st13 st13: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof13 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof13 } - stCase13: - if (m.data)[(m.p)] == 32 { + st_case_13: +//line rfc5424/machine.go:3117 + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st126 } goto tr24 - tr26: +tr26: +//line rfc5424/machine.go.rl:105 - output.procID = string(m.text()) + output.procID = string(m.text()) - goto st14 + goto st14 st14: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof14 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof14 } - stCase14: - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + st_case_14: +//line rfc5424/machine.go:3136 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto tr29 } goto tr28 - tr29: +tr29: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st15 + goto st15 st15: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof15 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof15 } - stCase15: - if (m.data)[(m.p)] == 32 { + st_case_15: +//line rfc5424/machine.go:3152 + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st95 } goto tr30 - tr31: +tr31: +//line rfc5424/machine.go.rl:109 - output.msgID = string(m.text()) + output.msgID = string(m.text()) - goto st16 + goto st16 st16: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof16 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof16 } - stCase16: - switch (m.data)[(m.p)] { + st_case_16: +//line rfc5424/machine.go:3171 + switch ( m.data)[( m.p)] { case 45: - goto st603 + goto st1192 case 91: goto tr35 } goto tr33 - st603: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof603 + st1192: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1192 } - stCase603: - if (m.data)[(m.p)] == 32 { - goto st604 + st_case_1192: + if ( m.data)[( m.p)] == 32 { + goto st1193 } goto tr9 - st604: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof604 + st1193: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1193 } - stCase604: - goto tr632 - tr632: + st_case_1193: + goto tr1236 +tr1236: +//line rfc5424/machine.go.rl:68 - (m.p)-- + ( m.p)-- - if m.compliantMsg { - { - goto st609 - } - } - { - goto st607 - } - goto st605 - st605: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof605 + if m.compliantMsg { + {goto st1198 } + } + {goto st1196 } + + goto st1194 + st1194: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1194 } - stCase605: + st_case_1194: +//line rfc5424/machine.go:3211 goto tr9 - tr35: +tr35: +//line rfc5424/machine.go.rl:113 - output.structuredData = map[string]map[string]string{} + output.structuredData = map[string]map[string]string{} - goto st17 + goto st17 st17: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof17 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof17 } - stCase17: - if (m.data)[(m.p)] == 33 { + st_case_17: +//line rfc5424/machine.go:3224 + if ( m.data)[( m.p)] == 33 { goto tr37 } switch { - case (m.data)[(m.p)] < 62: - if 35 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 60 { + case ( m.data)[( m.p)] < 62: + if 35 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 60 { goto tr37 } - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto tr37 } default: goto tr37 } goto tr36 - tr37: +tr37: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st18 + goto st18 st18: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof18 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof18 } - stCase18: - switch (m.data)[(m.p)] { + st_case_18: +//line rfc5424/machine.go:3252 + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -2015,709 +3258,715 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st64 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st64 } goto tr38 - tr39: - - if _, ok := output.structuredData[string(m.text())]; ok { - // As per RFC5424 section 6.3.2 SD-ID MUST NOT exist more than once in a message - m.err = fmt.Errorf(ErrSdIDDuplicated+ColumnPositionTemplate, m.p) - (m.p)-- - - { - goto st614 - } - } else { - id := string(m.text()) - output.structuredData[id] = map[string]string{} - output.hasElements = true - m.currentelem = id - } +tr39: +//line rfc5424/machine.go.rl:117 + + if _, ok := output.structuredData[string(m.text())]; ok { + // As per RFC5424 section 6.3.2 SD-ID MUST NOT exist more than once in a message + m.err = fmt.Errorf(ErrSdIDDuplicated + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + } else { + id := string(m.text()) + output.structuredData[id] = map[string]string{} + output.hasElements = true + m.currentelem = id + } - goto st19 + goto st19 st19: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof19 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof19 } - stCase19: - if (m.data)[(m.p)] == 33 { + st_case_19: +//line rfc5424/machine.go:3292 + if ( m.data)[( m.p)] == 33 { goto tr43 } switch { - case (m.data)[(m.p)] < 62: - if 35 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 60 { + case ( m.data)[( m.p)] < 62: + if 35 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 60 { goto tr43 } - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto tr43 } default: goto tr43 } goto tr42 - tr43: +tr43: +//line rfc5424/machine.go.rl:131 + + m.backslashat = []int{} - m.backslashat = []int{} +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st20 + goto st20 st20: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof20 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof20 } - stCase20: - switch (m.data)[(m.p)] { + st_case_20: +//line rfc5424/machine.go:3324 + switch ( m.data)[( m.p)] { case 33: goto st21 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st21 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st21 } goto tr42 st21: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof21 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof21 } - stCase21: - switch (m.data)[(m.p)] { + st_case_21: + switch ( m.data)[( m.p)] { case 33: goto st22 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st22 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st22 } goto tr42 st22: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof22 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof22 } - stCase22: - switch (m.data)[(m.p)] { + st_case_22: + switch ( m.data)[( m.p)] { case 33: goto st23 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st23 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st23 } goto tr42 st23: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof23 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof23 } - stCase23: - switch (m.data)[(m.p)] { + st_case_23: + switch ( m.data)[( m.p)] { case 33: goto st24 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st24 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st24 } goto tr42 st24: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof24 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof24 } - stCase24: - switch (m.data)[(m.p)] { + st_case_24: + switch ( m.data)[( m.p)] { case 33: goto st25 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st25 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st25 } goto tr42 st25: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof25 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof25 } - stCase25: - switch (m.data)[(m.p)] { + st_case_25: + switch ( m.data)[( m.p)] { case 33: goto st26 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st26 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st26 } goto tr42 st26: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof26 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof26 } - stCase26: - switch (m.data)[(m.p)] { + st_case_26: + switch ( m.data)[( m.p)] { case 33: goto st27 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st27 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st27 } goto tr42 st27: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof27 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof27 } - stCase27: - switch (m.data)[(m.p)] { + st_case_27: + switch ( m.data)[( m.p)] { case 33: goto st28 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st28 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st28 } goto tr42 st28: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof28 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof28 } - stCase28: - switch (m.data)[(m.p)] { + st_case_28: + switch ( m.data)[( m.p)] { case 33: goto st29 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st29 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st29 } goto tr42 st29: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof29 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof29 } - stCase29: - switch (m.data)[(m.p)] { + st_case_29: + switch ( m.data)[( m.p)] { case 33: goto st30 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st30 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st30 } goto tr42 st30: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof30 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof30 } - stCase30: - switch (m.data)[(m.p)] { + st_case_30: + switch ( m.data)[( m.p)] { case 33: goto st31 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st31 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st31 } goto tr42 st31: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof31 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof31 } - stCase31: - switch (m.data)[(m.p)] { + st_case_31: + switch ( m.data)[( m.p)] { case 33: goto st32 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st32 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st32 } goto tr42 st32: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof32 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof32 } - stCase32: - switch (m.data)[(m.p)] { + st_case_32: + switch ( m.data)[( m.p)] { case 33: goto st33 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st33 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st33 } goto tr42 st33: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof33 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof33 } - stCase33: - switch (m.data)[(m.p)] { + st_case_33: + switch ( m.data)[( m.p)] { case 33: goto st34 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st34 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st34 } goto tr42 st34: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof34 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof34 } - stCase34: - switch (m.data)[(m.p)] { + st_case_34: + switch ( m.data)[( m.p)] { case 33: goto st35 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st35 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st35 } goto tr42 st35: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof35 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof35 } - stCase35: - switch (m.data)[(m.p)] { + st_case_35: + switch ( m.data)[( m.p)] { case 33: goto st36 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st36 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st36 } goto tr42 st36: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof36 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof36 } - stCase36: - switch (m.data)[(m.p)] { + st_case_36: + switch ( m.data)[( m.p)] { case 33: goto st37 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st37 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st37 } goto tr42 st37: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof37 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof37 } - stCase37: - switch (m.data)[(m.p)] { + st_case_37: + switch ( m.data)[( m.p)] { case 33: goto st38 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st38 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st38 } goto tr42 st38: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof38 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof38 } - stCase38: - switch (m.data)[(m.p)] { + st_case_38: + switch ( m.data)[( m.p)] { case 33: goto st39 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st39 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st39 } goto tr42 st39: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof39 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof39 } - stCase39: - switch (m.data)[(m.p)] { + st_case_39: + switch ( m.data)[( m.p)] { case 33: goto st40 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st40 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st40 } goto tr42 st40: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof40 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof40 } - stCase40: - switch (m.data)[(m.p)] { + st_case_40: + switch ( m.data)[( m.p)] { case 33: goto st41 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st41 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st41 } goto tr42 st41: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof41 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof41 } - stCase41: - switch (m.data)[(m.p)] { + st_case_41: + switch ( m.data)[( m.p)] { case 33: goto st42 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st42 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st42 } goto tr42 st42: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof42 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof42 } - stCase42: - switch (m.data)[(m.p)] { + st_case_42: + switch ( m.data)[( m.p)] { case 33: goto st43 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st43 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st43 } goto tr42 st43: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof43 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof43 } - stCase43: - switch (m.data)[(m.p)] { + st_case_43: + switch ( m.data)[( m.p)] { case 33: goto st44 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st44 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st44 } goto tr42 st44: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof44 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof44 } - stCase44: - switch (m.data)[(m.p)] { + st_case_44: + switch ( m.data)[( m.p)] { case 33: goto st45 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st45 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st45 } goto tr42 st45: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof45 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof45 } - stCase45: - switch (m.data)[(m.p)] { + st_case_45: + switch ( m.data)[( m.p)] { case 33: goto st46 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st46 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st46 } goto tr42 st46: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof46 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof46 } - stCase46: - switch (m.data)[(m.p)] { + st_case_46: + switch ( m.data)[( m.p)] { case 33: goto st47 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st47 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st47 } goto tr42 st47: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof47 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof47 } - stCase47: - switch (m.data)[(m.p)] { + st_case_47: + switch ( m.data)[( m.p)] { case 33: goto st48 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st48 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st48 } goto tr42 st48: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof48 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof48 } - stCase48: - switch (m.data)[(m.p)] { + st_case_48: + switch ( m.data)[( m.p)] { case 33: goto st49 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st49 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st49 } goto tr42 st49: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof49 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof49 } - stCase49: - switch (m.data)[(m.p)] { + st_case_49: + switch ( m.data)[( m.p)] { case 33: goto st50 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st50 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st50 } goto tr42 st50: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof50 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof50 } - stCase50: - switch (m.data)[(m.p)] { + st_case_50: + switch ( m.data)[( m.p)] { case 33: goto st51 case 61: goto tr45 } switch { - case (m.data)[(m.p)] > 92: - if 94 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st51 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st51 } goto tr42 st51: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof51 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof51 } - stCase51: - if (m.data)[(m.p)] == 61 { + st_case_51: + if ( m.data)[( m.p)] == 61 { goto tr45 } goto tr42 - tr45: +tr45: +//line rfc5424/machine.go.rl:139 - m.currentparam = string(m.text()) + m.currentparam = string(m.text()) - goto st52 + goto st52 st52: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof52 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof52 } - stCase52: - if (m.data)[(m.p)] == 34 { + st_case_52: +//line rfc5424/machine.go:3960 + if ( m.data)[( m.p)] == 34 { goto st53 } goto tr42 st53: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof53 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof53 } - stCase53: - switch (m.data)[(m.p)] { + st_case_53: + switch ( m.data)[( m.p)] { case 34: goto tr78 case 92: @@ -2734,39 +3983,41 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr87 } switch { - case (m.data)[(m.p)] < 225: + case ( m.data)[( m.p)] < 225: switch { - case (m.data)[(m.p)] > 193: - if 194 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 223 { + case ( m.data)[( m.p)] > 193: + if 194 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 223 { goto tr81 } - case (m.data)[(m.p)] >= 128: + case ( m.data)[( m.p)] >= 128: goto tr80 } - case (m.data)[(m.p)] > 239: + case ( m.data)[( m.p)] > 239: switch { - case (m.data)[(m.p)] > 243: - if 245 <= (m.data)[(m.p)] { + case ( m.data)[( m.p)] > 243: + if 245 <= ( m.data)[( m.p)] { goto tr80 } - case (m.data)[(m.p)] >= 241: + case ( m.data)[( m.p)] >= 241: goto tr86 } default: goto tr83 } goto tr77 - tr77: +tr77: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st54 + goto st54 st54: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof54 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof54 } - stCase54: - switch (m.data)[(m.p)] { + st_case_54: +//line rfc5424/machine.go:4020 + switch ( m.data)[( m.p)] { case 34: goto tr89 case 92: @@ -2783,232 +4034,256 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto st63 } switch { - case (m.data)[(m.p)] < 225: + case ( m.data)[( m.p)] < 225: switch { - case (m.data)[(m.p)] > 193: - if 194 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 223 { + case ( m.data)[( m.p)] > 193: + if 194 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 223 { goto st57 } - case (m.data)[(m.p)] >= 128: + case ( m.data)[( m.p)] >= 128: goto tr80 } - case (m.data)[(m.p)] > 239: + case ( m.data)[( m.p)] > 239: switch { - case (m.data)[(m.p)] > 243: - if 245 <= (m.data)[(m.p)] { + case ( m.data)[( m.p)] > 243: + if 245 <= ( m.data)[( m.p)] { goto tr80 } - case (m.data)[(m.p)] >= 241: + case ( m.data)[( m.p)] >= 241: goto st62 } default: goto st59 } goto st54 - tr78: +tr78: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - if output.hasElements { - // (fixme) > what if SD-PARAM-NAME already exist for the current element (ie., current SD-ID)? +//line rfc5424/machine.go.rl:143 - // Store text - text := m.text() + if output.hasElements { + // (fixme) > what if SD-PARAM-NAME already exist for the current element (ie., current SD-ID)? - // Strip backslashes only when there are ... - if len(m.backslashat) > 0 { - text = common.RemoveBytes(text, m.backslashat, m.pb) - } - output.structuredData[m.currentelem][m.currentparam] = string(text) + // Store text + text := m.text() + + // Strip backslashes only when there are ... + if len(m.backslashat) > 0 { + text = common.RemoveBytes(text, m.backslashat, m.pb) } + output.structuredData[m.currentelem][m.currentparam] = string(text) + } - goto st55 - tr89: + goto st55 +tr89: +//line rfc5424/machine.go.rl:143 - if output.hasElements { - // (fixme) > what if SD-PARAM-NAME already exist for the current element (ie., current SD-ID)? + if output.hasElements { + // (fixme) > what if SD-PARAM-NAME already exist for the current element (ie., current SD-ID)? - // Store text - text := m.text() + // Store text + text := m.text() - // Strip backslashes only when there are ... - if len(m.backslashat) > 0 { - text = common.RemoveBytes(text, m.backslashat, m.pb) - } - output.structuredData[m.currentelem][m.currentparam] = string(text) + // Strip backslashes only when there are ... + if len(m.backslashat) > 0 { + text = common.RemoveBytes(text, m.backslashat, m.pb) } + output.structuredData[m.currentelem][m.currentparam] = string(text) + } - goto st55 + goto st55 st55: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof55 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof55 } - stCase55: - switch (m.data)[(m.p)] { + st_case_55: +//line rfc5424/machine.go:4103 + switch ( m.data)[( m.p)] { case 32: goto st19 case 93: - goto st606 + goto st1195 } goto tr42 - tr41: - - if _, ok := output.structuredData[string(m.text())]; ok { - // As per RFC5424 section 6.3.2 SD-ID MUST NOT exist more than once in a message - m.err = fmt.Errorf(ErrSdIDDuplicated+ColumnPositionTemplate, m.p) - (m.p)-- - - { - goto st614 - } - } else { - id := string(m.text()) - output.structuredData[id] = map[string]string{} - output.hasElements = true - m.currentelem = id - } +tr41: +//line rfc5424/machine.go.rl:117 + + if _, ok := output.structuredData[string(m.text())]; ok { + // As per RFC5424 section 6.3.2 SD-ID MUST NOT exist more than once in a message + m.err = fmt.Errorf(ErrSdIDDuplicated + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + } else { + id := string(m.text()) + output.structuredData[id] = map[string]string{} + output.hasElements = true + m.currentelem = id + } - goto st606 - st606: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof606 + goto st1195 + st1195: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1195 } - stCase606: - switch (m.data)[(m.p)] { + st_case_1195: +//line rfc5424/machine.go:4133 + switch ( m.data)[( m.p)] { case 32: - goto st604 + goto st1193 case 91: goto st17 } - goto tr633 - tr79: + goto tr1237 +tr79: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - m.backslashat = append(m.backslashat, m.p) +//line rfc5424/machine.go.rl:135 - goto st56 - tr90: + m.backslashat = append(m.backslashat, m.p) - m.backslashat = append(m.backslashat, m.p) + goto st56 +tr90: +//line rfc5424/machine.go.rl:135 - goto st56 + m.backslashat = append(m.backslashat, m.p) + + goto st56 st56: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof56 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof56 } - stCase56: - if (m.data)[(m.p)] == 34 { + st_case_56: +//line rfc5424/machine.go:4162 + if ( m.data)[( m.p)] == 34 { goto st54 } - if 92 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 93 { + if 92 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 93 { goto st54 } goto tr80 - tr81: +tr81: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st57 + goto st57 st57: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof57 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof57 } - stCase57: - if 128 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 191 { + st_case_57: +//line rfc5424/machine.go:4181 + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { goto st54 } goto tr42 - tr82: +tr82: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st58 + goto st58 st58: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof58 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof58 } - stCase58: - if 160 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 191 { + st_case_58: +//line rfc5424/machine.go:4197 + if 160 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { goto st57 } goto tr42 - tr83: +tr83: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st59 + goto st59 st59: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof59 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof59 } - stCase59: - if 128 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 191 { + st_case_59: +//line rfc5424/machine.go:4213 + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { goto st57 } goto tr42 - tr84: +tr84: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st60 + goto st60 st60: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof60 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof60 } - stCase60: - if 128 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 159 { + st_case_60: +//line rfc5424/machine.go:4229 + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 159 { goto st57 } goto tr42 - tr85: +tr85: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st61 + goto st61 st61: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof61 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof61 } - stCase61: - if 144 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 191 { + st_case_61: +//line rfc5424/machine.go:4245 + if 144 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { goto st59 } goto tr42 - tr86: +tr86: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st62 + goto st62 st62: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof62 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof62 } - stCase62: - if 128 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 191 { + st_case_62: +//line rfc5424/machine.go:4261 + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { goto st59 } goto tr42 - tr87: +tr87: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st63 + goto st63 st63: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof63 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof63 } - stCase63: - if 128 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 143 { + st_case_63: +//line rfc5424/machine.go:4277 + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 143 { goto st59 } goto tr42 st64: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof64 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof64 } - stCase64: - switch (m.data)[(m.p)] { + st_case_64: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3017,20 +4292,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st65 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st65 } goto tr38 st65: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof65 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof65 } - stCase65: - switch (m.data)[(m.p)] { + st_case_65: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3039,20 +4314,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st66 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st66 } goto tr38 st66: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof66 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof66 } - stCase66: - switch (m.data)[(m.p)] { + st_case_66: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3061,20 +4336,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st67 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st67 } goto tr38 st67: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof67 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof67 } - stCase67: - switch (m.data)[(m.p)] { + st_case_67: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3083,20 +4358,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st68 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st68 } goto tr38 st68: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof68 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof68 } - stCase68: - switch (m.data)[(m.p)] { + st_case_68: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3105,20 +4380,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st69 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st69 } goto tr38 st69: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof69 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof69 } - stCase69: - switch (m.data)[(m.p)] { + st_case_69: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3127,20 +4402,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st70 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st70 } goto tr38 st70: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof70 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof70 } - stCase70: - switch (m.data)[(m.p)] { + st_case_70: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3149,20 +4424,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st71 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st71 } goto tr38 st71: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof71 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof71 } - stCase71: - switch (m.data)[(m.p)] { + st_case_71: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3171,20 +4446,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st72 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st72 } goto tr38 st72: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof72 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof72 } - stCase72: - switch (m.data)[(m.p)] { + st_case_72: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3193,20 +4468,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st73 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st73 } goto tr38 st73: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof73 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof73 } - stCase73: - switch (m.data)[(m.p)] { + st_case_73: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3215,20 +4490,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st74 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st74 } goto tr38 st74: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof74 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof74 } - stCase74: - switch (m.data)[(m.p)] { + st_case_74: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3237,20 +4512,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st75 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st75 } goto tr38 st75: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof75 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof75 } - stCase75: - switch (m.data)[(m.p)] { + st_case_75: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3259,20 +4534,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st76 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st76 } goto tr38 st76: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof76 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof76 } - stCase76: - switch (m.data)[(m.p)] { + st_case_76: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3281,20 +4556,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st77 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st77 } goto tr38 st77: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof77 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof77 } - stCase77: - switch (m.data)[(m.p)] { + st_case_77: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3303,20 +4578,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st78 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st78 } goto tr38 st78: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof78 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof78 } - stCase78: - switch (m.data)[(m.p)] { + st_case_78: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3325,20 +4600,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st79 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st79 } goto tr38 st79: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof79 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof79 } - stCase79: - switch (m.data)[(m.p)] { + st_case_79: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3347,20 +4622,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st80 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st80 } goto tr38 st80: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof80 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof80 } - stCase80: - switch (m.data)[(m.p)] { + st_case_80: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3369,20 +4644,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st81 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st81 } goto tr38 st81: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof81 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof81 } - stCase81: - switch (m.data)[(m.p)] { + st_case_81: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3391,20 +4666,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st82 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st82 } goto tr38 st82: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof82 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof82 } - stCase82: - switch (m.data)[(m.p)] { + st_case_82: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3413,20 +4688,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st83 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st83 } goto tr38 st83: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof83 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof83 } - stCase83: - switch (m.data)[(m.p)] { + st_case_83: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3435,20 +4710,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st84 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st84 } goto tr38 st84: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof84 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof84 } - stCase84: - switch (m.data)[(m.p)] { + st_case_84: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3457,20 +4732,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st85 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st85 } goto tr38 st85: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof85 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof85 } - stCase85: - switch (m.data)[(m.p)] { + st_case_85: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3479,20 +4754,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st86 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st86 } goto tr38 st86: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof86 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof86 } - stCase86: - switch (m.data)[(m.p)] { + st_case_86: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3501,20 +4776,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st87 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st87 } goto tr38 st87: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof87 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof87 } - stCase87: - switch (m.data)[(m.p)] { + st_case_87: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3523,20 +4798,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st88 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st88 } goto tr38 st88: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof88 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof88 } - stCase88: - switch (m.data)[(m.p)] { + st_case_88: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3545,20 +4820,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st89 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st89 } goto tr38 st89: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof89 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof89 } - stCase89: - switch (m.data)[(m.p)] { + st_case_89: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3567,20 +4842,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st90 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st90 } goto tr38 st90: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof90 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof90 } - stCase90: - switch (m.data)[(m.p)] { + st_case_90: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3589,20 +4864,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st91 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st91 } goto tr38 st91: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof91 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof91 } - stCase91: - switch (m.data)[(m.p)] { + st_case_91: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3611,20 +4886,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st92 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st92 } goto tr38 st92: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof92 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof92 } - stCase92: - switch (m.data)[(m.p)] { + st_case_92: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3633,20 +4908,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st93 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st93 } goto tr38 st93: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof93 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof93 } - stCase93: - switch (m.data)[(m.p)] { + st_case_93: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 33: @@ -3655,20 +4930,20 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { goto tr41 } switch { - case (m.data)[(m.p)] > 60: - if 62 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st94 } - case (m.data)[(m.p)] >= 35: + case ( m.data)[( m.p)] >= 35: goto st94 } goto tr38 st94: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof94 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof94 } - stCase94: - switch (m.data)[(m.p)] { + st_case_94: + switch ( m.data)[( m.p)] { case 32: goto tr39 case 93: @@ -3676,5548 +4951,5550 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr38 st95: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof95 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof95 } - stCase95: - if (m.data)[(m.p)] == 32 { + st_case_95: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st96 } goto tr30 st96: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof96 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof96 } - stCase96: - if (m.data)[(m.p)] == 32 { + st_case_96: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st97 } goto tr30 st97: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof97 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof97 } - stCase97: - if (m.data)[(m.p)] == 32 { + st_case_97: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st98 } goto tr30 st98: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof98 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof98 } - stCase98: - if (m.data)[(m.p)] == 32 { + st_case_98: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st99 } goto tr30 st99: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof99 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof99 } - stCase99: - if (m.data)[(m.p)] == 32 { + st_case_99: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st100 } goto tr30 st100: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof100 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof100 } - stCase100: - if (m.data)[(m.p)] == 32 { + st_case_100: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st101 } goto tr30 st101: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof101 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof101 } - stCase101: - if (m.data)[(m.p)] == 32 { + st_case_101: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st102 } goto tr30 st102: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof102 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof102 } - stCase102: - if (m.data)[(m.p)] == 32 { + st_case_102: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st103 } goto tr30 st103: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof103 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof103 } - stCase103: - if (m.data)[(m.p)] == 32 { + st_case_103: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st104 } goto tr30 st104: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof104 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof104 } - stCase104: - if (m.data)[(m.p)] == 32 { + st_case_104: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st105 } goto tr30 st105: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof105 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof105 } - stCase105: - if (m.data)[(m.p)] == 32 { + st_case_105: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st106 } goto tr30 st106: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof106 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof106 } - stCase106: - if (m.data)[(m.p)] == 32 { + st_case_106: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st107 } goto tr30 st107: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof107 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof107 } - stCase107: - if (m.data)[(m.p)] == 32 { + st_case_107: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st108 } goto tr30 st108: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof108 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof108 } - stCase108: - if (m.data)[(m.p)] == 32 { + st_case_108: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st109 } goto tr30 st109: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof109 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof109 } - stCase109: - if (m.data)[(m.p)] == 32 { + st_case_109: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st110 } goto tr30 st110: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof110 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof110 } - stCase110: - if (m.data)[(m.p)] == 32 { + st_case_110: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st111 } goto tr30 st111: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof111 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof111 } - stCase111: - if (m.data)[(m.p)] == 32 { + st_case_111: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st112 } goto tr30 st112: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof112 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof112 } - stCase112: - if (m.data)[(m.p)] == 32 { + st_case_112: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st113 } goto tr30 st113: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof113 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof113 } - stCase113: - if (m.data)[(m.p)] == 32 { + st_case_113: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st114 } goto tr30 st114: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof114 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof114 } - stCase114: - if (m.data)[(m.p)] == 32 { + st_case_114: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st115 } goto tr30 st115: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof115 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof115 } - stCase115: - if (m.data)[(m.p)] == 32 { + st_case_115: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st116 } goto tr30 st116: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof116 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof116 } - stCase116: - if (m.data)[(m.p)] == 32 { + st_case_116: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st117 } goto tr30 st117: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof117 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof117 } - stCase117: - if (m.data)[(m.p)] == 32 { + st_case_117: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st118 } goto tr30 st118: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof118 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof118 } - stCase118: - if (m.data)[(m.p)] == 32 { + st_case_118: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st119 } goto tr30 st119: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof119 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof119 } - stCase119: - if (m.data)[(m.p)] == 32 { + st_case_119: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st120 } goto tr30 st120: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof120 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof120 } - stCase120: - if (m.data)[(m.p)] == 32 { + st_case_120: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st121 } goto tr30 st121: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof121 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof121 } - stCase121: - if (m.data)[(m.p)] == 32 { + st_case_121: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st122 } goto tr30 st122: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof122 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof122 } - stCase122: - if (m.data)[(m.p)] == 32 { + st_case_122: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st123 } goto tr30 st123: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof123 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof123 } - stCase123: - if (m.data)[(m.p)] == 32 { + st_case_123: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st124 } goto tr30 st124: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof124 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof124 } - stCase124: - if (m.data)[(m.p)] == 32 { + st_case_124: + if ( m.data)[( m.p)] == 32 { goto tr31 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st125 } goto tr30 st125: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof125 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof125 } - stCase125: - if (m.data)[(m.p)] == 32 { + st_case_125: + if ( m.data)[( m.p)] == 32 { goto tr31 } goto tr30 st126: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof126 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof126 } - stCase126: - if (m.data)[(m.p)] == 32 { + st_case_126: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st127 } goto tr24 st127: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof127 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof127 } - stCase127: - if (m.data)[(m.p)] == 32 { + st_case_127: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st128 } goto tr24 st128: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof128 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof128 } - stCase128: - if (m.data)[(m.p)] == 32 { + st_case_128: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st129 } goto tr24 st129: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof129 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof129 } - stCase129: - if (m.data)[(m.p)] == 32 { + st_case_129: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st130 } goto tr24 st130: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof130 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof130 } - stCase130: - if (m.data)[(m.p)] == 32 { + st_case_130: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st131 } goto tr24 st131: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof131 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof131 } - stCase131: - if (m.data)[(m.p)] == 32 { + st_case_131: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st132 } goto tr24 st132: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof132 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof132 } - stCase132: - if (m.data)[(m.p)] == 32 { + st_case_132: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st133 } goto tr24 st133: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof133 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof133 } - stCase133: - if (m.data)[(m.p)] == 32 { + st_case_133: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st134 } goto tr24 st134: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof134 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof134 } - stCase134: - if (m.data)[(m.p)] == 32 { + st_case_134: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st135 } goto tr24 st135: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof135 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof135 } - stCase135: - if (m.data)[(m.p)] == 32 { + st_case_135: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st136 } goto tr24 st136: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof136 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof136 } - stCase136: - if (m.data)[(m.p)] == 32 { + st_case_136: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st137 } goto tr24 st137: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof137 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof137 } - stCase137: - if (m.data)[(m.p)] == 32 { + st_case_137: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st138 } goto tr24 st138: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof138 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof138 } - stCase138: - if (m.data)[(m.p)] == 32 { + st_case_138: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st139 } goto tr24 st139: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof139 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof139 } - stCase139: - if (m.data)[(m.p)] == 32 { + st_case_139: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st140 } goto tr24 st140: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof140 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof140 } - stCase140: - if (m.data)[(m.p)] == 32 { + st_case_140: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st141 } goto tr24 st141: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof141 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof141 } - stCase141: - if (m.data)[(m.p)] == 32 { + st_case_141: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st142 } goto tr24 st142: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof142 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof142 } - stCase142: - if (m.data)[(m.p)] == 32 { + st_case_142: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st143 } goto tr24 st143: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof143 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof143 } - stCase143: - if (m.data)[(m.p)] == 32 { + st_case_143: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st144 } goto tr24 st144: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof144 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof144 } - stCase144: - if (m.data)[(m.p)] == 32 { + st_case_144: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st145 } goto tr24 st145: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof145 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof145 } - stCase145: - if (m.data)[(m.p)] == 32 { + st_case_145: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st146 } goto tr24 st146: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof146 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof146 } - stCase146: - if (m.data)[(m.p)] == 32 { + st_case_146: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st147 } goto tr24 st147: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof147 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof147 } - stCase147: - if (m.data)[(m.p)] == 32 { + st_case_147: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st148 } goto tr24 st148: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof148 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof148 } - stCase148: - if (m.data)[(m.p)] == 32 { + st_case_148: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st149 } goto tr24 st149: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof149 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof149 } - stCase149: - if (m.data)[(m.p)] == 32 { + st_case_149: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st150 } goto tr24 st150: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof150 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof150 } - stCase150: - if (m.data)[(m.p)] == 32 { + st_case_150: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st151 } goto tr24 st151: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof151 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof151 } - stCase151: - if (m.data)[(m.p)] == 32 { + st_case_151: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st152 } goto tr24 st152: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof152 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof152 } - stCase152: - if (m.data)[(m.p)] == 32 { + st_case_152: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st153 } goto tr24 st153: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof153 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof153 } - stCase153: - if (m.data)[(m.p)] == 32 { + st_case_153: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st154 } goto tr24 st154: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof154 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof154 } - stCase154: - if (m.data)[(m.p)] == 32 { + st_case_154: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st155 } goto tr24 st155: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof155 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof155 } - stCase155: - if (m.data)[(m.p)] == 32 { + st_case_155: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st156 } goto tr24 st156: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof156 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof156 } - stCase156: - if (m.data)[(m.p)] == 32 { + st_case_156: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st157 } goto tr24 st157: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof157 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof157 } - stCase157: - if (m.data)[(m.p)] == 32 { + st_case_157: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st158 } goto tr24 st158: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof158 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof158 } - stCase158: - if (m.data)[(m.p)] == 32 { + st_case_158: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st159 } goto tr24 st159: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof159 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof159 } - stCase159: - if (m.data)[(m.p)] == 32 { + st_case_159: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st160 } goto tr24 st160: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof160 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof160 } - stCase160: - if (m.data)[(m.p)] == 32 { + st_case_160: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st161 } goto tr24 st161: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof161 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof161 } - stCase161: - if (m.data)[(m.p)] == 32 { + st_case_161: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st162 } goto tr24 st162: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof162 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof162 } - stCase162: - if (m.data)[(m.p)] == 32 { + st_case_162: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st163 } goto tr24 st163: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof163 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof163 } - stCase163: - if (m.data)[(m.p)] == 32 { + st_case_163: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st164 } goto tr24 st164: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof164 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof164 } - stCase164: - if (m.data)[(m.p)] == 32 { + st_case_164: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st165 } goto tr24 st165: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof165 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof165 } - stCase165: - if (m.data)[(m.p)] == 32 { + st_case_165: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st166 } goto tr24 st166: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof166 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof166 } - stCase166: - if (m.data)[(m.p)] == 32 { + st_case_166: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st167 } goto tr24 st167: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof167 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof167 } - stCase167: - if (m.data)[(m.p)] == 32 { + st_case_167: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st168 } goto tr24 st168: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof168 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof168 } - stCase168: - if (m.data)[(m.p)] == 32 { + st_case_168: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st169 } goto tr24 st169: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof169 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof169 } - stCase169: - if (m.data)[(m.p)] == 32 { + st_case_169: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st170 } goto tr24 st170: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof170 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof170 } - stCase170: - if (m.data)[(m.p)] == 32 { + st_case_170: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st171 } goto tr24 st171: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof171 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof171 } - stCase171: - if (m.data)[(m.p)] == 32 { + st_case_171: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st172 } goto tr24 st172: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof172 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof172 } - stCase172: - if (m.data)[(m.p)] == 32 { + st_case_172: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st173 } goto tr24 st173: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof173 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof173 } - stCase173: - if (m.data)[(m.p)] == 32 { + st_case_173: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st174 } goto tr24 st174: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof174 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof174 } - stCase174: - if (m.data)[(m.p)] == 32 { + st_case_174: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st175 } goto tr24 st175: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof175 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof175 } - stCase175: - if (m.data)[(m.p)] == 32 { + st_case_175: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st176 } goto tr24 st176: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof176 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof176 } - stCase176: - if (m.data)[(m.p)] == 32 { + st_case_176: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st177 } goto tr24 st177: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof177 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof177 } - stCase177: - if (m.data)[(m.p)] == 32 { + st_case_177: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st178 } goto tr24 st178: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof178 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof178 } - stCase178: - if (m.data)[(m.p)] == 32 { + st_case_178: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st179 } goto tr24 st179: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof179 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof179 } - stCase179: - if (m.data)[(m.p)] == 32 { + st_case_179: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st180 } goto tr24 st180: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof180 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof180 } - stCase180: - if (m.data)[(m.p)] == 32 { + st_case_180: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st181 } goto tr24 st181: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof181 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof181 } - stCase181: - if (m.data)[(m.p)] == 32 { + st_case_181: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st182 } goto tr24 st182: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof182 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof182 } - stCase182: - if (m.data)[(m.p)] == 32 { + st_case_182: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st183 } goto tr24 st183: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof183 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof183 } - stCase183: - if (m.data)[(m.p)] == 32 { + st_case_183: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st184 } goto tr24 st184: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof184 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof184 } - stCase184: - if (m.data)[(m.p)] == 32 { + st_case_184: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st185 } goto tr24 st185: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof185 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof185 } - stCase185: - if (m.data)[(m.p)] == 32 { + st_case_185: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st186 } goto tr24 st186: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof186 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof186 } - stCase186: - if (m.data)[(m.p)] == 32 { + st_case_186: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st187 } goto tr24 st187: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof187 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof187 } - stCase187: - if (m.data)[(m.p)] == 32 { + st_case_187: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st188 } goto tr24 st188: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof188 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof188 } - stCase188: - if (m.data)[(m.p)] == 32 { + st_case_188: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st189 } goto tr24 st189: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof189 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof189 } - stCase189: - if (m.data)[(m.p)] == 32 { + st_case_189: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st190 } goto tr24 st190: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof190 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof190 } - stCase190: - if (m.data)[(m.p)] == 32 { + st_case_190: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st191 } goto tr24 st191: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof191 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof191 } - stCase191: - if (m.data)[(m.p)] == 32 { + st_case_191: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st192 } goto tr24 st192: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof192 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof192 } - stCase192: - if (m.data)[(m.p)] == 32 { + st_case_192: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st193 } goto tr24 st193: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof193 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof193 } - stCase193: - if (m.data)[(m.p)] == 32 { + st_case_193: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st194 } goto tr24 st194: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof194 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof194 } - stCase194: - if (m.data)[(m.p)] == 32 { + st_case_194: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st195 } goto tr24 st195: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof195 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof195 } - stCase195: - if (m.data)[(m.p)] == 32 { + st_case_195: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st196 } goto tr24 st196: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof196 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof196 } - stCase196: - if (m.data)[(m.p)] == 32 { + st_case_196: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st197 } goto tr24 st197: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof197 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof197 } - stCase197: - if (m.data)[(m.p)] == 32 { + st_case_197: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st198 } goto tr24 st198: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof198 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof198 } - stCase198: - if (m.data)[(m.p)] == 32 { + st_case_198: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st199 } goto tr24 st199: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof199 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof199 } - stCase199: - if (m.data)[(m.p)] == 32 { + st_case_199: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st200 } goto tr24 st200: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof200 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof200 } - stCase200: - if (m.data)[(m.p)] == 32 { + st_case_200: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st201 } goto tr24 st201: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof201 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof201 } - stCase201: - if (m.data)[(m.p)] == 32 { + st_case_201: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st202 } goto tr24 st202: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof202 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof202 } - stCase202: - if (m.data)[(m.p)] == 32 { + st_case_202: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st203 } goto tr24 st203: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof203 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof203 } - stCase203: - if (m.data)[(m.p)] == 32 { + st_case_203: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st204 } goto tr24 st204: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof204 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof204 } - stCase204: - if (m.data)[(m.p)] == 32 { + st_case_204: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st205 } goto tr24 st205: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof205 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof205 } - stCase205: - if (m.data)[(m.p)] == 32 { + st_case_205: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st206 } goto tr24 st206: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof206 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof206 } - stCase206: - if (m.data)[(m.p)] == 32 { + st_case_206: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st207 } goto tr24 st207: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof207 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof207 } - stCase207: - if (m.data)[(m.p)] == 32 { + st_case_207: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st208 } goto tr24 st208: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof208 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof208 } - stCase208: - if (m.data)[(m.p)] == 32 { + st_case_208: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st209 } goto tr24 st209: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof209 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof209 } - stCase209: - if (m.data)[(m.p)] == 32 { + st_case_209: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st210 } goto tr24 st210: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof210 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof210 } - stCase210: - if (m.data)[(m.p)] == 32 { + st_case_210: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st211 } goto tr24 st211: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof211 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof211 } - stCase211: - if (m.data)[(m.p)] == 32 { + st_case_211: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st212 } goto tr24 st212: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof212 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof212 } - stCase212: - if (m.data)[(m.p)] == 32 { + st_case_212: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st213 } goto tr24 st213: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof213 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof213 } - stCase213: - if (m.data)[(m.p)] == 32 { + st_case_213: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st214 } goto tr24 st214: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof214 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof214 } - stCase214: - if (m.data)[(m.p)] == 32 { + st_case_214: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st215 } goto tr24 st215: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof215 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof215 } - stCase215: - if (m.data)[(m.p)] == 32 { + st_case_215: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st216 } goto tr24 st216: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof216 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof216 } - stCase216: - if (m.data)[(m.p)] == 32 { + st_case_216: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st217 } goto tr24 st217: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof217 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof217 } - stCase217: - if (m.data)[(m.p)] == 32 { + st_case_217: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st218 } goto tr24 st218: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof218 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof218 } - stCase218: - if (m.data)[(m.p)] == 32 { + st_case_218: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st219 } goto tr24 st219: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof219 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof219 } - stCase219: - if (m.data)[(m.p)] == 32 { + st_case_219: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st220 } goto tr24 st220: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof220 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof220 } - stCase220: - if (m.data)[(m.p)] == 32 { + st_case_220: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st221 } goto tr24 st221: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof221 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof221 } - stCase221: - if (m.data)[(m.p)] == 32 { + st_case_221: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st222 } goto tr24 st222: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof222 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof222 } - stCase222: - if (m.data)[(m.p)] == 32 { + st_case_222: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st223 } goto tr24 st223: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof223 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof223 } - stCase223: - if (m.data)[(m.p)] == 32 { + st_case_223: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st224 } goto tr24 st224: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof224 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof224 } - stCase224: - if (m.data)[(m.p)] == 32 { + st_case_224: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st225 } goto tr24 st225: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof225 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof225 } - stCase225: - if (m.data)[(m.p)] == 32 { + st_case_225: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st226 } goto tr24 st226: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof226 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof226 } - stCase226: - if (m.data)[(m.p)] == 32 { + st_case_226: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st227 } goto tr24 st227: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof227 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof227 } - stCase227: - if (m.data)[(m.p)] == 32 { + st_case_227: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st228 } goto tr24 st228: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof228 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof228 } - stCase228: - if (m.data)[(m.p)] == 32 { + st_case_228: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st229 } goto tr24 st229: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof229 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof229 } - stCase229: - if (m.data)[(m.p)] == 32 { + st_case_229: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st230 } goto tr24 st230: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof230 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof230 } - stCase230: - if (m.data)[(m.p)] == 32 { + st_case_230: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st231 } goto tr24 st231: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof231 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof231 } - stCase231: - if (m.data)[(m.p)] == 32 { + st_case_231: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st232 } goto tr24 st232: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof232 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof232 } - stCase232: - if (m.data)[(m.p)] == 32 { + st_case_232: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st233 } goto tr24 st233: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof233 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof233 } - stCase233: - if (m.data)[(m.p)] == 32 { + st_case_233: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st234 } goto tr24 st234: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof234 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof234 } - stCase234: - if (m.data)[(m.p)] == 32 { + st_case_234: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st235 } goto tr24 st235: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof235 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof235 } - stCase235: - if (m.data)[(m.p)] == 32 { + st_case_235: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st236 } goto tr24 st236: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof236 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof236 } - stCase236: - if (m.data)[(m.p)] == 32 { + st_case_236: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st237 } goto tr24 st237: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof237 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof237 } - stCase237: - if (m.data)[(m.p)] == 32 { + st_case_237: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st238 } goto tr24 st238: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof238 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof238 } - stCase238: - if (m.data)[(m.p)] == 32 { + st_case_238: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st239 } goto tr24 st239: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof239 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof239 } - stCase239: - if (m.data)[(m.p)] == 32 { + st_case_239: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st240 } goto tr24 st240: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof240 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof240 } - stCase240: - if (m.data)[(m.p)] == 32 { + st_case_240: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st241 } goto tr24 st241: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof241 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof241 } - stCase241: - if (m.data)[(m.p)] == 32 { + st_case_241: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st242 } goto tr24 st242: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof242 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof242 } - stCase242: - if (m.data)[(m.p)] == 32 { + st_case_242: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st243 } goto tr24 st243: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof243 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof243 } - stCase243: - if (m.data)[(m.p)] == 32 { + st_case_243: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st244 } goto tr24 st244: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof244 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof244 } - stCase244: - if (m.data)[(m.p)] == 32 { + st_case_244: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st245 } goto tr24 st245: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof245 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof245 } - stCase245: - if (m.data)[(m.p)] == 32 { + st_case_245: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st246 } goto tr24 st246: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof246 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof246 } - stCase246: - if (m.data)[(m.p)] == 32 { + st_case_246: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st247 } goto tr24 st247: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof247 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof247 } - stCase247: - if (m.data)[(m.p)] == 32 { + st_case_247: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st248 } goto tr24 st248: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof248 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof248 } - stCase248: - if (m.data)[(m.p)] == 32 { + st_case_248: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st249 } goto tr24 st249: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof249 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof249 } - stCase249: - if (m.data)[(m.p)] == 32 { + st_case_249: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st250 } goto tr24 st250: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof250 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof250 } - stCase250: - if (m.data)[(m.p)] == 32 { + st_case_250: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st251 } goto tr24 st251: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof251 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof251 } - stCase251: - if (m.data)[(m.p)] == 32 { + st_case_251: + if ( m.data)[( m.p)] == 32 { goto tr26 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st252 } goto tr24 st252: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof252 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof252 } - stCase252: - if (m.data)[(m.p)] == 32 { + st_case_252: + if ( m.data)[( m.p)] == 32 { goto tr26 } goto tr24 st253: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof253 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof253 } - stCase253: - if (m.data)[(m.p)] == 32 { + st_case_253: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st254 } goto tr20 st254: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof254 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof254 } - stCase254: - if (m.data)[(m.p)] == 32 { + st_case_254: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st255 } goto tr20 st255: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof255 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof255 } - stCase255: - if (m.data)[(m.p)] == 32 { + st_case_255: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st256 } goto tr20 st256: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof256 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof256 } - stCase256: - if (m.data)[(m.p)] == 32 { + st_case_256: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st257 } goto tr20 st257: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof257 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof257 } - stCase257: - if (m.data)[(m.p)] == 32 { + st_case_257: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st258 } goto tr20 st258: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof258 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof258 } - stCase258: - if (m.data)[(m.p)] == 32 { + st_case_258: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st259 } goto tr20 st259: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof259 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof259 } - stCase259: - if (m.data)[(m.p)] == 32 { + st_case_259: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st260 } goto tr20 st260: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof260 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof260 } - stCase260: - if (m.data)[(m.p)] == 32 { + st_case_260: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st261 } goto tr20 st261: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof261 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof261 } - stCase261: - if (m.data)[(m.p)] == 32 { + st_case_261: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st262 } goto tr20 st262: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof262 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof262 } - stCase262: - if (m.data)[(m.p)] == 32 { + st_case_262: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st263 } goto tr20 st263: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof263 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof263 } - stCase263: - if (m.data)[(m.p)] == 32 { + st_case_263: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st264 } goto tr20 st264: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof264 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof264 } - stCase264: - if (m.data)[(m.p)] == 32 { + st_case_264: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st265 } goto tr20 st265: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof265 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof265 } - stCase265: - if (m.data)[(m.p)] == 32 { + st_case_265: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st266 } goto tr20 st266: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof266 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof266 } - stCase266: - if (m.data)[(m.p)] == 32 { + st_case_266: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st267 } goto tr20 st267: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof267 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof267 } - stCase267: - if (m.data)[(m.p)] == 32 { + st_case_267: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st268 } goto tr20 st268: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof268 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof268 } - stCase268: - if (m.data)[(m.p)] == 32 { + st_case_268: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st269 } goto tr20 st269: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof269 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof269 } - stCase269: - if (m.data)[(m.p)] == 32 { + st_case_269: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st270 } goto tr20 st270: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof270 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof270 } - stCase270: - if (m.data)[(m.p)] == 32 { + st_case_270: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st271 } goto tr20 st271: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof271 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof271 } - stCase271: - if (m.data)[(m.p)] == 32 { + st_case_271: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st272 } goto tr20 st272: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof272 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof272 } - stCase272: - if (m.data)[(m.p)] == 32 { + st_case_272: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st273 } goto tr20 st273: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof273 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof273 } - stCase273: - if (m.data)[(m.p)] == 32 { + st_case_273: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st274 } goto tr20 st274: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof274 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof274 } - stCase274: - if (m.data)[(m.p)] == 32 { + st_case_274: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st275 } goto tr20 st275: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof275 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof275 } - stCase275: - if (m.data)[(m.p)] == 32 { + st_case_275: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st276 } goto tr20 st276: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof276 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof276 } - stCase276: - if (m.data)[(m.p)] == 32 { + st_case_276: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st277 } goto tr20 st277: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof277 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof277 } - stCase277: - if (m.data)[(m.p)] == 32 { + st_case_277: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st278 } goto tr20 st278: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof278 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof278 } - stCase278: - if (m.data)[(m.p)] == 32 { + st_case_278: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st279 } goto tr20 st279: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof279 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof279 } - stCase279: - if (m.data)[(m.p)] == 32 { + st_case_279: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st280 } goto tr20 st280: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof280 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof280 } - stCase280: - if (m.data)[(m.p)] == 32 { + st_case_280: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st281 } goto tr20 st281: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof281 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof281 } - stCase281: - if (m.data)[(m.p)] == 32 { + st_case_281: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st282 } goto tr20 st282: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof282 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof282 } - stCase282: - if (m.data)[(m.p)] == 32 { + st_case_282: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st283 } goto tr20 st283: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof283 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof283 } - stCase283: - if (m.data)[(m.p)] == 32 { + st_case_283: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st284 } goto tr20 st284: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof284 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof284 } - stCase284: - if (m.data)[(m.p)] == 32 { + st_case_284: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st285 } goto tr20 st285: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof285 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof285 } - stCase285: - if (m.data)[(m.p)] == 32 { + st_case_285: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st286 } goto tr20 st286: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof286 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof286 } - stCase286: - if (m.data)[(m.p)] == 32 { + st_case_286: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st287 } goto tr20 st287: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof287 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof287 } - stCase287: - if (m.data)[(m.p)] == 32 { + st_case_287: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st288 } goto tr20 st288: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof288 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof288 } - stCase288: - if (m.data)[(m.p)] == 32 { + st_case_288: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st289 } goto tr20 st289: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof289 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof289 } - stCase289: - if (m.data)[(m.p)] == 32 { + st_case_289: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st290 } goto tr20 st290: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof290 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof290 } - stCase290: - if (m.data)[(m.p)] == 32 { + st_case_290: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st291 } goto tr20 st291: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof291 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof291 } - stCase291: - if (m.data)[(m.p)] == 32 { + st_case_291: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st292 } goto tr20 st292: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof292 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof292 } - stCase292: - if (m.data)[(m.p)] == 32 { + st_case_292: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st293 } goto tr20 st293: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof293 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof293 } - stCase293: - if (m.data)[(m.p)] == 32 { + st_case_293: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st294 } goto tr20 st294: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof294 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof294 } - stCase294: - if (m.data)[(m.p)] == 32 { + st_case_294: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st295 } goto tr20 st295: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof295 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof295 } - stCase295: - if (m.data)[(m.p)] == 32 { + st_case_295: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st296 } goto tr20 st296: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof296 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof296 } - stCase296: - if (m.data)[(m.p)] == 32 { + st_case_296: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st297 } goto tr20 st297: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof297 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof297 } - stCase297: - if (m.data)[(m.p)] == 32 { + st_case_297: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st298 } goto tr20 st298: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof298 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof298 } - stCase298: - if (m.data)[(m.p)] == 32 { + st_case_298: + if ( m.data)[( m.p)] == 32 { goto tr22 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st299 } goto tr20 st299: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof299 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof299 } - stCase299: - if (m.data)[(m.p)] == 32 { + st_case_299: + if ( m.data)[( m.p)] == 32 { goto tr22 } goto tr20 st300: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof300 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof300 } - stCase300: - if (m.data)[(m.p)] == 32 { + st_case_300: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st301 } goto tr16 st301: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof301 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof301 } - stCase301: - if (m.data)[(m.p)] == 32 { + st_case_301: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st302 } goto tr16 st302: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof302 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof302 } - stCase302: - if (m.data)[(m.p)] == 32 { + st_case_302: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st303 } goto tr16 st303: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof303 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof303 } - stCase303: - if (m.data)[(m.p)] == 32 { + st_case_303: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st304 } goto tr16 st304: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof304 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof304 } - stCase304: - if (m.data)[(m.p)] == 32 { + st_case_304: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st305 } goto tr16 st305: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof305 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof305 } - stCase305: - if (m.data)[(m.p)] == 32 { + st_case_305: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st306 } goto tr16 st306: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof306 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof306 } - stCase306: - if (m.data)[(m.p)] == 32 { + st_case_306: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st307 } goto tr16 st307: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof307 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof307 } - stCase307: - if (m.data)[(m.p)] == 32 { + st_case_307: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st308 } goto tr16 st308: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof308 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof308 } - stCase308: - if (m.data)[(m.p)] == 32 { + st_case_308: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st309 } goto tr16 st309: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof309 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof309 } - stCase309: - if (m.data)[(m.p)] == 32 { + st_case_309: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st310 } goto tr16 st310: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof310 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof310 } - stCase310: - if (m.data)[(m.p)] == 32 { + st_case_310: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st311 } goto tr16 st311: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof311 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof311 } - stCase311: - if (m.data)[(m.p)] == 32 { + st_case_311: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st312 } goto tr16 st312: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof312 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof312 } - stCase312: - if (m.data)[(m.p)] == 32 { + st_case_312: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st313 } goto tr16 st313: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof313 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof313 } - stCase313: - if (m.data)[(m.p)] == 32 { + st_case_313: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st314 } goto tr16 st314: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof314 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof314 } - stCase314: - if (m.data)[(m.p)] == 32 { + st_case_314: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st315 } goto tr16 st315: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof315 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof315 } - stCase315: - if (m.data)[(m.p)] == 32 { + st_case_315: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st316 } goto tr16 st316: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof316 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof316 } - stCase316: - if (m.data)[(m.p)] == 32 { + st_case_316: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st317 } goto tr16 st317: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof317 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof317 } - stCase317: - if (m.data)[(m.p)] == 32 { + st_case_317: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st318 } goto tr16 st318: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof318 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof318 } - stCase318: - if (m.data)[(m.p)] == 32 { + st_case_318: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st319 } goto tr16 st319: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof319 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof319 } - stCase319: - if (m.data)[(m.p)] == 32 { + st_case_319: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st320 } goto tr16 st320: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof320 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof320 } - stCase320: - if (m.data)[(m.p)] == 32 { + st_case_320: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st321 } goto tr16 st321: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof321 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof321 } - stCase321: - if (m.data)[(m.p)] == 32 { + st_case_321: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st322 } goto tr16 st322: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof322 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof322 } - stCase322: - if (m.data)[(m.p)] == 32 { + st_case_322: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st323 } goto tr16 st323: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof323 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof323 } - stCase323: - if (m.data)[(m.p)] == 32 { + st_case_323: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st324 } goto tr16 st324: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof324 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof324 } - stCase324: - if (m.data)[(m.p)] == 32 { + st_case_324: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st325 } goto tr16 st325: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof325 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof325 } - stCase325: - if (m.data)[(m.p)] == 32 { + st_case_325: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st326 } goto tr16 st326: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof326 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof326 } - stCase326: - if (m.data)[(m.p)] == 32 { + st_case_326: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st327 } goto tr16 st327: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof327 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof327 } - stCase327: - if (m.data)[(m.p)] == 32 { + st_case_327: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st328 } goto tr16 st328: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof328 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof328 } - stCase328: - if (m.data)[(m.p)] == 32 { + st_case_328: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st329 } goto tr16 st329: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof329 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof329 } - stCase329: - if (m.data)[(m.p)] == 32 { + st_case_329: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st330 } goto tr16 st330: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof330 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof330 } - stCase330: - if (m.data)[(m.p)] == 32 { + st_case_330: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st331 } goto tr16 st331: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof331 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof331 } - stCase331: - if (m.data)[(m.p)] == 32 { + st_case_331: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st332 } goto tr16 st332: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof332 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof332 } - stCase332: - if (m.data)[(m.p)] == 32 { + st_case_332: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st333 } goto tr16 st333: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof333 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof333 } - stCase333: - if (m.data)[(m.p)] == 32 { + st_case_333: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st334 } goto tr16 st334: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof334 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof334 } - stCase334: - if (m.data)[(m.p)] == 32 { + st_case_334: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st335 } goto tr16 st335: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof335 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof335 } - stCase335: - if (m.data)[(m.p)] == 32 { + st_case_335: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st336 } goto tr16 st336: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof336 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof336 } - stCase336: - if (m.data)[(m.p)] == 32 { + st_case_336: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st337 } goto tr16 st337: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof337 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof337 } - stCase337: - if (m.data)[(m.p)] == 32 { + st_case_337: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st338 } goto tr16 st338: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof338 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof338 } - stCase338: - if (m.data)[(m.p)] == 32 { + st_case_338: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st339 } goto tr16 st339: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof339 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof339 } - stCase339: - if (m.data)[(m.p)] == 32 { + st_case_339: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st340 } goto tr16 st340: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof340 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof340 } - stCase340: - if (m.data)[(m.p)] == 32 { + st_case_340: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st341 } goto tr16 st341: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof341 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof341 } - stCase341: - if (m.data)[(m.p)] == 32 { + st_case_341: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st342 } goto tr16 st342: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof342 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof342 } - stCase342: - if (m.data)[(m.p)] == 32 { + st_case_342: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st343 } goto tr16 st343: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof343 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof343 } - stCase343: - if (m.data)[(m.p)] == 32 { + st_case_343: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st344 } goto tr16 st344: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof344 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof344 } - stCase344: - if (m.data)[(m.p)] == 32 { + st_case_344: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st345 } goto tr16 st345: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof345 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof345 } - stCase345: - if (m.data)[(m.p)] == 32 { + st_case_345: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st346 } goto tr16 st346: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof346 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof346 } - stCase346: - if (m.data)[(m.p)] == 32 { + st_case_346: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st347 } goto tr16 st347: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof347 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof347 } - stCase347: - if (m.data)[(m.p)] == 32 { + st_case_347: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st348 } goto tr16 st348: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof348 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof348 } - stCase348: - if (m.data)[(m.p)] == 32 { + st_case_348: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st349 } goto tr16 st349: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof349 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof349 } - stCase349: - if (m.data)[(m.p)] == 32 { + st_case_349: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st350 } goto tr16 st350: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof350 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof350 } - stCase350: - if (m.data)[(m.p)] == 32 { + st_case_350: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st351 } goto tr16 st351: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof351 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof351 } - stCase351: - if (m.data)[(m.p)] == 32 { + st_case_351: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st352 } goto tr16 st352: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof352 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof352 } - stCase352: - if (m.data)[(m.p)] == 32 { + st_case_352: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st353 } goto tr16 st353: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof353 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof353 } - stCase353: - if (m.data)[(m.p)] == 32 { + st_case_353: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st354 } goto tr16 st354: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof354 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof354 } - stCase354: - if (m.data)[(m.p)] == 32 { + st_case_354: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st355 } goto tr16 st355: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof355 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof355 } - stCase355: - if (m.data)[(m.p)] == 32 { + st_case_355: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st356 } goto tr16 st356: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof356 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof356 } - stCase356: - if (m.data)[(m.p)] == 32 { + st_case_356: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st357 } goto tr16 st357: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof357 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof357 } - stCase357: - if (m.data)[(m.p)] == 32 { + st_case_357: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st358 } goto tr16 st358: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof358 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof358 } - stCase358: - if (m.data)[(m.p)] == 32 { + st_case_358: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st359 } goto tr16 st359: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof359 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof359 } - stCase359: - if (m.data)[(m.p)] == 32 { + st_case_359: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st360 } goto tr16 st360: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof360 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof360 } - stCase360: - if (m.data)[(m.p)] == 32 { + st_case_360: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st361 } goto tr16 st361: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof361 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof361 } - stCase361: - if (m.data)[(m.p)] == 32 { + st_case_361: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st362 } goto tr16 st362: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof362 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof362 } - stCase362: - if (m.data)[(m.p)] == 32 { + st_case_362: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st363 } goto tr16 st363: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof363 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof363 } - stCase363: - if (m.data)[(m.p)] == 32 { + st_case_363: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st364 } goto tr16 st364: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof364 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof364 } - stCase364: - if (m.data)[(m.p)] == 32 { + st_case_364: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st365 } goto tr16 st365: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof365 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof365 } - stCase365: - if (m.data)[(m.p)] == 32 { + st_case_365: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st366 } goto tr16 st366: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof366 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof366 } - stCase366: - if (m.data)[(m.p)] == 32 { + st_case_366: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st367 } goto tr16 st367: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof367 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof367 } - stCase367: - if (m.data)[(m.p)] == 32 { + st_case_367: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st368 } goto tr16 st368: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof368 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof368 } - stCase368: - if (m.data)[(m.p)] == 32 { + st_case_368: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st369 } goto tr16 st369: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof369 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof369 } - stCase369: - if (m.data)[(m.p)] == 32 { + st_case_369: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st370 } goto tr16 st370: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof370 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof370 } - stCase370: - if (m.data)[(m.p)] == 32 { + st_case_370: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st371 } goto tr16 st371: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof371 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof371 } - stCase371: - if (m.data)[(m.p)] == 32 { + st_case_371: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st372 } goto tr16 st372: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof372 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof372 } - stCase372: - if (m.data)[(m.p)] == 32 { + st_case_372: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st373 } goto tr16 st373: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof373 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof373 } - stCase373: - if (m.data)[(m.p)] == 32 { + st_case_373: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st374 } goto tr16 st374: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof374 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof374 } - stCase374: - if (m.data)[(m.p)] == 32 { + st_case_374: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st375 } goto tr16 st375: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof375 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof375 } - stCase375: - if (m.data)[(m.p)] == 32 { + st_case_375: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st376 } goto tr16 st376: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof376 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof376 } - stCase376: - if (m.data)[(m.p)] == 32 { + st_case_376: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st377 } goto tr16 st377: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof377 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof377 } - stCase377: - if (m.data)[(m.p)] == 32 { + st_case_377: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st378 } goto tr16 st378: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof378 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof378 } - stCase378: - if (m.data)[(m.p)] == 32 { + st_case_378: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st379 } goto tr16 st379: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof379 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof379 } - stCase379: - if (m.data)[(m.p)] == 32 { + st_case_379: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st380 } goto tr16 st380: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof380 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof380 } - stCase380: - if (m.data)[(m.p)] == 32 { + st_case_380: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st381 } goto tr16 st381: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof381 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof381 } - stCase381: - if (m.data)[(m.p)] == 32 { + st_case_381: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st382 } goto tr16 st382: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof382 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof382 } - stCase382: - if (m.data)[(m.p)] == 32 { + st_case_382: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st383 } goto tr16 st383: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof383 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof383 } - stCase383: - if (m.data)[(m.p)] == 32 { + st_case_383: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st384 } goto tr16 st384: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof384 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof384 } - stCase384: - if (m.data)[(m.p)] == 32 { + st_case_384: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st385 } goto tr16 st385: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof385 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof385 } - stCase385: - if (m.data)[(m.p)] == 32 { + st_case_385: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st386 } goto tr16 st386: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof386 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof386 } - stCase386: - if (m.data)[(m.p)] == 32 { + st_case_386: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st387 } goto tr16 st387: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof387 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof387 } - stCase387: - if (m.data)[(m.p)] == 32 { + st_case_387: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st388 } goto tr16 st388: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof388 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof388 } - stCase388: - if (m.data)[(m.p)] == 32 { + st_case_388: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st389 } goto tr16 st389: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof389 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof389 } - stCase389: - if (m.data)[(m.p)] == 32 { + st_case_389: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st390 } goto tr16 st390: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof390 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof390 } - stCase390: - if (m.data)[(m.p)] == 32 { + st_case_390: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st391 } goto tr16 st391: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof391 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof391 } - stCase391: - if (m.data)[(m.p)] == 32 { + st_case_391: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st392 } goto tr16 st392: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof392 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof392 } - stCase392: - if (m.data)[(m.p)] == 32 { + st_case_392: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st393 } goto tr16 st393: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof393 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof393 } - stCase393: - if (m.data)[(m.p)] == 32 { + st_case_393: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st394 } goto tr16 st394: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof394 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof394 } - stCase394: - if (m.data)[(m.p)] == 32 { + st_case_394: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st395 } goto tr16 st395: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof395 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof395 } - stCase395: - if (m.data)[(m.p)] == 32 { + st_case_395: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st396 } goto tr16 st396: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof396 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof396 } - stCase396: - if (m.data)[(m.p)] == 32 { + st_case_396: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st397 } goto tr16 st397: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof397 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof397 } - stCase397: - if (m.data)[(m.p)] == 32 { + st_case_397: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st398 } goto tr16 st398: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof398 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof398 } - stCase398: - if (m.data)[(m.p)] == 32 { + st_case_398: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st399 } goto tr16 st399: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof399 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof399 } - stCase399: - if (m.data)[(m.p)] == 32 { + st_case_399: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st400 } goto tr16 st400: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof400 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof400 } - stCase400: - if (m.data)[(m.p)] == 32 { + st_case_400: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st401 } goto tr16 st401: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof401 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof401 } - stCase401: - if (m.data)[(m.p)] == 32 { + st_case_401: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st402 } goto tr16 st402: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof402 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof402 } - stCase402: - if (m.data)[(m.p)] == 32 { + st_case_402: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st403 } goto tr16 st403: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof403 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof403 } - stCase403: - if (m.data)[(m.p)] == 32 { + st_case_403: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st404 } goto tr16 st404: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof404 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof404 } - stCase404: - if (m.data)[(m.p)] == 32 { + st_case_404: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st405 } goto tr16 st405: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof405 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof405 } - stCase405: - if (m.data)[(m.p)] == 32 { + st_case_405: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st406 } goto tr16 st406: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof406 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof406 } - stCase406: - if (m.data)[(m.p)] == 32 { + st_case_406: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st407 } goto tr16 st407: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof407 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof407 } - stCase407: - if (m.data)[(m.p)] == 32 { + st_case_407: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st408 } goto tr16 st408: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof408 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof408 } - stCase408: - if (m.data)[(m.p)] == 32 { + st_case_408: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st409 } goto tr16 st409: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof409 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof409 } - stCase409: - if (m.data)[(m.p)] == 32 { + st_case_409: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st410 } goto tr16 st410: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof410 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof410 } - stCase410: - if (m.data)[(m.p)] == 32 { + st_case_410: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st411 } goto tr16 st411: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof411 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof411 } - stCase411: - if (m.data)[(m.p)] == 32 { + st_case_411: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st412 } goto tr16 st412: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof412 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof412 } - stCase412: - if (m.data)[(m.p)] == 32 { + st_case_412: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st413 } goto tr16 st413: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof413 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof413 } - stCase413: - if (m.data)[(m.p)] == 32 { + st_case_413: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st414 } goto tr16 st414: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof414 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof414 } - stCase414: - if (m.data)[(m.p)] == 32 { + st_case_414: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st415 } goto tr16 st415: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof415 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof415 } - stCase415: - if (m.data)[(m.p)] == 32 { + st_case_415: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st416 } goto tr16 st416: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof416 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof416 } - stCase416: - if (m.data)[(m.p)] == 32 { + st_case_416: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st417 } goto tr16 st417: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof417 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof417 } - stCase417: - if (m.data)[(m.p)] == 32 { + st_case_417: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st418 } goto tr16 st418: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof418 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof418 } - stCase418: - if (m.data)[(m.p)] == 32 { + st_case_418: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st419 } goto tr16 st419: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof419 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof419 } - stCase419: - if (m.data)[(m.p)] == 32 { + st_case_419: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st420 } goto tr16 st420: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof420 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof420 } - stCase420: - if (m.data)[(m.p)] == 32 { + st_case_420: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st421 } goto tr16 st421: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof421 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof421 } - stCase421: - if (m.data)[(m.p)] == 32 { + st_case_421: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st422 } goto tr16 st422: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof422 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof422 } - stCase422: - if (m.data)[(m.p)] == 32 { + st_case_422: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st423 } goto tr16 st423: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof423 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof423 } - stCase423: - if (m.data)[(m.p)] == 32 { + st_case_423: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st424 } goto tr16 st424: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof424 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof424 } - stCase424: - if (m.data)[(m.p)] == 32 { + st_case_424: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st425 } goto tr16 st425: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof425 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof425 } - stCase425: - if (m.data)[(m.p)] == 32 { + st_case_425: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st426 } goto tr16 st426: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof426 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof426 } - stCase426: - if (m.data)[(m.p)] == 32 { + st_case_426: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st427 } goto tr16 st427: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof427 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof427 } - stCase427: - if (m.data)[(m.p)] == 32 { + st_case_427: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st428 } goto tr16 st428: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof428 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof428 } - stCase428: - if (m.data)[(m.p)] == 32 { + st_case_428: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st429 } goto tr16 st429: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof429 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof429 } - stCase429: - if (m.data)[(m.p)] == 32 { + st_case_429: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st430 } goto tr16 st430: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof430 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof430 } - stCase430: - if (m.data)[(m.p)] == 32 { + st_case_430: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st431 } goto tr16 st431: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof431 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof431 } - stCase431: - if (m.data)[(m.p)] == 32 { + st_case_431: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st432 } goto tr16 st432: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof432 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof432 } - stCase432: - if (m.data)[(m.p)] == 32 { + st_case_432: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st433 } goto tr16 st433: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof433 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof433 } - stCase433: - if (m.data)[(m.p)] == 32 { + st_case_433: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st434 } goto tr16 st434: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof434 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof434 } - stCase434: - if (m.data)[(m.p)] == 32 { + st_case_434: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st435 } goto tr16 st435: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof435 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof435 } - stCase435: - if (m.data)[(m.p)] == 32 { + st_case_435: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st436 } goto tr16 st436: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof436 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof436 } - stCase436: - if (m.data)[(m.p)] == 32 { + st_case_436: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st437 } goto tr16 st437: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof437 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof437 } - stCase437: - if (m.data)[(m.p)] == 32 { + st_case_437: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st438 } goto tr16 st438: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof438 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof438 } - stCase438: - if (m.data)[(m.p)] == 32 { + st_case_438: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st439 } goto tr16 st439: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof439 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof439 } - stCase439: - if (m.data)[(m.p)] == 32 { + st_case_439: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st440 } goto tr16 st440: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof440 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof440 } - stCase440: - if (m.data)[(m.p)] == 32 { + st_case_440: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st441 } goto tr16 st441: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof441 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof441 } - stCase441: - if (m.data)[(m.p)] == 32 { + st_case_441: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st442 } goto tr16 st442: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof442 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof442 } - stCase442: - if (m.data)[(m.p)] == 32 { + st_case_442: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st443 } goto tr16 st443: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof443 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof443 } - stCase443: - if (m.data)[(m.p)] == 32 { + st_case_443: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st444 } goto tr16 st444: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof444 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof444 } - stCase444: - if (m.data)[(m.p)] == 32 { + st_case_444: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st445 } goto tr16 st445: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof445 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof445 } - stCase445: - if (m.data)[(m.p)] == 32 { + st_case_445: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st446 } goto tr16 st446: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof446 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof446 } - stCase446: - if (m.data)[(m.p)] == 32 { + st_case_446: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st447 } goto tr16 st447: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof447 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof447 } - stCase447: - if (m.data)[(m.p)] == 32 { + st_case_447: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st448 } goto tr16 st448: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof448 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof448 } - stCase448: - if (m.data)[(m.p)] == 32 { + st_case_448: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st449 } goto tr16 st449: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof449 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof449 } - stCase449: - if (m.data)[(m.p)] == 32 { + st_case_449: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st450 } goto tr16 st450: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof450 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof450 } - stCase450: - if (m.data)[(m.p)] == 32 { + st_case_450: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st451 } goto tr16 st451: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof451 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof451 } - stCase451: - if (m.data)[(m.p)] == 32 { + st_case_451: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st452 } goto tr16 st452: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof452 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof452 } - stCase452: - if (m.data)[(m.p)] == 32 { + st_case_452: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st453 } goto tr16 st453: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof453 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof453 } - stCase453: - if (m.data)[(m.p)] == 32 { + st_case_453: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st454 } goto tr16 st454: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof454 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof454 } - stCase454: - if (m.data)[(m.p)] == 32 { + st_case_454: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st455 } goto tr16 st455: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof455 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof455 } - stCase455: - if (m.data)[(m.p)] == 32 { + st_case_455: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st456 } goto tr16 st456: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof456 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof456 } - stCase456: - if (m.data)[(m.p)] == 32 { + st_case_456: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st457 } goto tr16 st457: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof457 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof457 } - stCase457: - if (m.data)[(m.p)] == 32 { + st_case_457: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st458 } goto tr16 st458: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof458 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof458 } - stCase458: - if (m.data)[(m.p)] == 32 { + st_case_458: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st459 } goto tr16 st459: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof459 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof459 } - stCase459: - if (m.data)[(m.p)] == 32 { + st_case_459: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st460 } goto tr16 st460: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof460 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof460 } - stCase460: - if (m.data)[(m.p)] == 32 { + st_case_460: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st461 } goto tr16 st461: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof461 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof461 } - stCase461: - if (m.data)[(m.p)] == 32 { + st_case_461: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st462 } goto tr16 st462: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof462 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof462 } - stCase462: - if (m.data)[(m.p)] == 32 { + st_case_462: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st463 } goto tr16 st463: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof463 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof463 } - stCase463: - if (m.data)[(m.p)] == 32 { + st_case_463: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st464 } goto tr16 st464: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof464 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof464 } - stCase464: - if (m.data)[(m.p)] == 32 { + st_case_464: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st465 } goto tr16 st465: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof465 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof465 } - stCase465: - if (m.data)[(m.p)] == 32 { + st_case_465: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st466 } goto tr16 st466: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof466 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof466 } - stCase466: - if (m.data)[(m.p)] == 32 { + st_case_466: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st467 } goto tr16 st467: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof467 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof467 } - stCase467: - if (m.data)[(m.p)] == 32 { + st_case_467: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st468 } goto tr16 st468: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof468 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof468 } - stCase468: - if (m.data)[(m.p)] == 32 { + st_case_468: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st469 } goto tr16 st469: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof469 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof469 } - stCase469: - if (m.data)[(m.p)] == 32 { + st_case_469: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st470 } goto tr16 st470: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof470 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof470 } - stCase470: - if (m.data)[(m.p)] == 32 { + st_case_470: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st471 } goto tr16 st471: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof471 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof471 } - stCase471: - if (m.data)[(m.p)] == 32 { + st_case_471: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st472 } goto tr16 st472: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof472 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof472 } - stCase472: - if (m.data)[(m.p)] == 32 { + st_case_472: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st473 } goto tr16 st473: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof473 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof473 } - stCase473: - if (m.data)[(m.p)] == 32 { + st_case_473: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st474 } goto tr16 st474: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof474 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof474 } - stCase474: - if (m.data)[(m.p)] == 32 { + st_case_474: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st475 } goto tr16 st475: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof475 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof475 } - stCase475: - if (m.data)[(m.p)] == 32 { + st_case_475: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st476 } goto tr16 st476: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof476 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof476 } - stCase476: - if (m.data)[(m.p)] == 32 { + st_case_476: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st477 } goto tr16 st477: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof477 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof477 } - stCase477: - if (m.data)[(m.p)] == 32 { + st_case_477: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st478 } goto tr16 st478: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof478 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof478 } - stCase478: - if (m.data)[(m.p)] == 32 { + st_case_478: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st479 } goto tr16 st479: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof479 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof479 } - stCase479: - if (m.data)[(m.p)] == 32 { + st_case_479: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st480 } goto tr16 st480: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof480 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof480 } - stCase480: - if (m.data)[(m.p)] == 32 { + st_case_480: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st481 } goto tr16 st481: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof481 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof481 } - stCase481: - if (m.data)[(m.p)] == 32 { + st_case_481: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st482 } goto tr16 st482: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof482 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof482 } - stCase482: - if (m.data)[(m.p)] == 32 { + st_case_482: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st483 } goto tr16 st483: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof483 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof483 } - stCase483: - if (m.data)[(m.p)] == 32 { + st_case_483: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st484 } goto tr16 st484: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof484 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof484 } - stCase484: - if (m.data)[(m.p)] == 32 { + st_case_484: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st485 } goto tr16 st485: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof485 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof485 } - stCase485: - if (m.data)[(m.p)] == 32 { + st_case_485: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st486 } goto tr16 st486: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof486 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof486 } - stCase486: - if (m.data)[(m.p)] == 32 { + st_case_486: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st487 } goto tr16 st487: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof487 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof487 } - stCase487: - if (m.data)[(m.p)] == 32 { + st_case_487: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st488 } goto tr16 st488: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof488 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof488 } - stCase488: - if (m.data)[(m.p)] == 32 { + st_case_488: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st489 } goto tr16 st489: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof489 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof489 } - stCase489: - if (m.data)[(m.p)] == 32 { + st_case_489: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st490 } goto tr16 st490: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof490 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof490 } - stCase490: - if (m.data)[(m.p)] == 32 { + st_case_490: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st491 } goto tr16 st491: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof491 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof491 } - stCase491: - if (m.data)[(m.p)] == 32 { + st_case_491: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st492 } goto tr16 st492: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof492 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof492 } - stCase492: - if (m.data)[(m.p)] == 32 { + st_case_492: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st493 } goto tr16 st493: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof493 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof493 } - stCase493: - if (m.data)[(m.p)] == 32 { + st_case_493: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st494 } goto tr16 st494: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof494 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof494 } - stCase494: - if (m.data)[(m.p)] == 32 { + st_case_494: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st495 } goto tr16 st495: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof495 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof495 } - stCase495: - if (m.data)[(m.p)] == 32 { + st_case_495: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st496 } goto tr16 st496: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof496 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof496 } - stCase496: - if (m.data)[(m.p)] == 32 { + st_case_496: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st497 } goto tr16 st497: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof497 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof497 } - stCase497: - if (m.data)[(m.p)] == 32 { + st_case_497: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st498 } goto tr16 st498: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof498 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof498 } - stCase498: - if (m.data)[(m.p)] == 32 { + st_case_498: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st499 } goto tr16 st499: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof499 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof499 } - stCase499: - if (m.data)[(m.p)] == 32 { + st_case_499: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st500 } goto tr16 st500: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof500 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof500 } - stCase500: - if (m.data)[(m.p)] == 32 { + st_case_500: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st501 } goto tr16 st501: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof501 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof501 } - stCase501: - if (m.data)[(m.p)] == 32 { + st_case_501: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st502 } goto tr16 st502: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof502 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof502 } - stCase502: - if (m.data)[(m.p)] == 32 { + st_case_502: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st503 } goto tr16 st503: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof503 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof503 } - stCase503: - if (m.data)[(m.p)] == 32 { + st_case_503: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st504 } goto tr16 st504: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof504 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof504 } - stCase504: - if (m.data)[(m.p)] == 32 { + st_case_504: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st505 } goto tr16 st505: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof505 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof505 } - stCase505: - if (m.data)[(m.p)] == 32 { + st_case_505: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st506 } goto tr16 st506: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof506 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof506 } - stCase506: - if (m.data)[(m.p)] == 32 { + st_case_506: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st507 } goto tr16 st507: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof507 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof507 } - stCase507: - if (m.data)[(m.p)] == 32 { + st_case_507: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st508 } goto tr16 st508: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof508 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof508 } - stCase508: - if (m.data)[(m.p)] == 32 { + st_case_508: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st509 } goto tr16 st509: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof509 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof509 } - stCase509: - if (m.data)[(m.p)] == 32 { + st_case_509: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st510 } goto tr16 st510: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof510 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof510 } - stCase510: - if (m.data)[(m.p)] == 32 { + st_case_510: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st511 } goto tr16 st511: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof511 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof511 } - stCase511: - if (m.data)[(m.p)] == 32 { + st_case_511: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st512 } goto tr16 st512: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof512 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof512 } - stCase512: - if (m.data)[(m.p)] == 32 { + st_case_512: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st513 } goto tr16 st513: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof513 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof513 } - stCase513: - if (m.data)[(m.p)] == 32 { + st_case_513: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st514 } goto tr16 st514: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof514 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof514 } - stCase514: - if (m.data)[(m.p)] == 32 { + st_case_514: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st515 } goto tr16 st515: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof515 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof515 } - stCase515: - if (m.data)[(m.p)] == 32 { + st_case_515: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st516 } goto tr16 st516: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof516 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof516 } - stCase516: - if (m.data)[(m.p)] == 32 { + st_case_516: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st517 } goto tr16 st517: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof517 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof517 } - stCase517: - if (m.data)[(m.p)] == 32 { + st_case_517: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st518 } goto tr16 st518: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof518 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof518 } - stCase518: - if (m.data)[(m.p)] == 32 { + st_case_518: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st519 } goto tr16 st519: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof519 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof519 } - stCase519: - if (m.data)[(m.p)] == 32 { + st_case_519: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st520 } goto tr16 st520: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof520 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof520 } - stCase520: - if (m.data)[(m.p)] == 32 { + st_case_520: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st521 } goto tr16 st521: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof521 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof521 } - stCase521: - if (m.data)[(m.p)] == 32 { + st_case_521: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st522 } goto tr16 st522: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof522 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof522 } - stCase522: - if (m.data)[(m.p)] == 32 { + st_case_522: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st523 } goto tr16 st523: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof523 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof523 } - stCase523: - if (m.data)[(m.p)] == 32 { + st_case_523: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st524 } goto tr16 st524: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof524 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof524 } - stCase524: - if (m.data)[(m.p)] == 32 { + st_case_524: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st525 } goto tr16 st525: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof525 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof525 } - stCase525: - if (m.data)[(m.p)] == 32 { + st_case_525: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st526 } goto tr16 st526: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof526 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof526 } - stCase526: - if (m.data)[(m.p)] == 32 { + st_case_526: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st527 } goto tr16 st527: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof527 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof527 } - stCase527: - if (m.data)[(m.p)] == 32 { + st_case_527: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st528 } goto tr16 st528: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof528 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof528 } - stCase528: - if (m.data)[(m.p)] == 32 { + st_case_528: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st529 } goto tr16 st529: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof529 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof529 } - stCase529: - if (m.data)[(m.p)] == 32 { + st_case_529: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st530 } goto tr16 st530: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof530 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof530 } - stCase530: - if (m.data)[(m.p)] == 32 { + st_case_530: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st531 } goto tr16 st531: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof531 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof531 } - stCase531: - if (m.data)[(m.p)] == 32 { + st_case_531: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st532 } goto tr16 st532: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof532 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof532 } - stCase532: - if (m.data)[(m.p)] == 32 { + st_case_532: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st533 } goto tr16 st533: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof533 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof533 } - stCase533: - if (m.data)[(m.p)] == 32 { + st_case_533: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st534 } goto tr16 st534: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof534 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof534 } - stCase534: - if (m.data)[(m.p)] == 32 { + st_case_534: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st535 } goto tr16 st535: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof535 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof535 } - stCase535: - if (m.data)[(m.p)] == 32 { + st_case_535: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st536 } goto tr16 st536: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof536 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof536 } - stCase536: - if (m.data)[(m.p)] == 32 { + st_case_536: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st537 } goto tr16 st537: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof537 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof537 } - stCase537: - if (m.data)[(m.p)] == 32 { + st_case_537: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st538 } goto tr16 st538: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof538 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof538 } - stCase538: - if (m.data)[(m.p)] == 32 { + st_case_538: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st539 } goto tr16 st539: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof539 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof539 } - stCase539: - if (m.data)[(m.p)] == 32 { + st_case_539: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st540 } goto tr16 st540: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof540 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof540 } - stCase540: - if (m.data)[(m.p)] == 32 { + st_case_540: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st541 } goto tr16 st541: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof541 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof541 } - stCase541: - if (m.data)[(m.p)] == 32 { + st_case_541: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st542 } goto tr16 st542: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof542 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof542 } - stCase542: - if (m.data)[(m.p)] == 32 { + st_case_542: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st543 } goto tr16 st543: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof543 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof543 } - stCase543: - if (m.data)[(m.p)] == 32 { + st_case_543: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st544 } goto tr16 st544: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof544 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof544 } - stCase544: - if (m.data)[(m.p)] == 32 { + st_case_544: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st545 } goto tr16 st545: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof545 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof545 } - stCase545: - if (m.data)[(m.p)] == 32 { + st_case_545: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st546 } goto tr16 st546: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof546 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof546 } - stCase546: - if (m.data)[(m.p)] == 32 { + st_case_546: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st547 } goto tr16 st547: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof547 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof547 } - stCase547: - if (m.data)[(m.p)] == 32 { + st_case_547: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st548 } goto tr16 st548: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof548 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof548 } - stCase548: - if (m.data)[(m.p)] == 32 { + st_case_548: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st549 } goto tr16 st549: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof549 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof549 } - stCase549: - if (m.data)[(m.p)] == 32 { + st_case_549: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st550 } goto tr16 st550: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof550 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof550 } - stCase550: - if (m.data)[(m.p)] == 32 { + st_case_550: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st551 } goto tr16 st551: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof551 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof551 } - stCase551: - if (m.data)[(m.p)] == 32 { + st_case_551: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st552 } goto tr16 st552: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof552 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof552 } - stCase552: - if (m.data)[(m.p)] == 32 { + st_case_552: + if ( m.data)[( m.p)] == 32 { goto tr18 } - if 33 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 126 { + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { goto st553 } goto tr16 st553: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof553 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof553 } - stCase553: - if (m.data)[(m.p)] == 32 { + st_case_553: + if ( m.data)[( m.p)] == 32 { goto tr18 } goto tr16 - tr14: +tr14: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st554 + goto st554 st554: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof554 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof554 } - stCase554: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_554: +//line rfc5424/machine.go:10461 + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st555 } goto tr12 st555: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof555 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof555 } - stCase555: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_555: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st556 } goto tr12 st556: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof556 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof556 } - stCase556: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_556: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st557 } goto tr12 st557: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof557 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof557 } - stCase557: - if (m.data)[(m.p)] == 45 { + st_case_557: + if ( m.data)[( m.p)] == 45 { goto st558 } goto tr12 st558: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof558 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof558 } - stCase558: - switch (m.data)[(m.p)] { + st_case_558: + switch ( m.data)[( m.p)] { case 48: goto st559 case 49: @@ -9225,137 +10502,137 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr12 st559: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof559 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof559 } - stCase559: - if 49 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_559: + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st560 } goto tr12 st560: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof560 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof560 } - stCase560: - if (m.data)[(m.p)] == 45 { + st_case_560: + if ( m.data)[( m.p)] == 45 { goto st561 } goto tr12 st561: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof561 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof561 } - stCase561: - switch (m.data)[(m.p)] { + st_case_561: + switch ( m.data)[( m.p)] { case 48: goto st562 case 51: goto st589 } - if 49 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 50 { + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { goto st588 } goto tr12 st562: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof562 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof562 } - stCase562: - if 49 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_562: + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st563 } goto tr12 st563: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof563 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof563 } - stCase563: - if (m.data)[(m.p)] == 84 { + st_case_563: + if ( m.data)[( m.p)] == 84 { goto st564 } goto tr12 st564: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof564 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof564 } - stCase564: - if (m.data)[(m.p)] == 50 { + st_case_564: + if ( m.data)[( m.p)] == 50 { goto st587 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 49 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { goto st565 } goto tr12 st565: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof565 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof565 } - stCase565: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_565: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st566 } goto tr12 st566: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof566 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof566 } - stCase566: - if (m.data)[(m.p)] == 58 { + st_case_566: + if ( m.data)[( m.p)] == 58 { goto st567 } goto tr12 st567: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof567 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof567 } - stCase567: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 53 { + st_case_567: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { goto st568 } goto tr12 st568: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof568 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof568 } - stCase568: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_568: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st569 } goto tr12 st569: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof569 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof569 } - stCase569: - if (m.data)[(m.p)] == 58 { + st_case_569: + if ( m.data)[( m.p)] == 58 { goto st570 } goto tr12 st570: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof570 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof570 } - stCase570: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 53 { + st_case_570: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { goto st571 } goto tr12 st571: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof571 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof571 } - stCase571: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_571: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st572 } goto tr12 st572: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof572 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof572 } - stCase572: - switch (m.data)[(m.p)] { + st_case_572: + switch ( m.data)[( m.p)] { case 43: goto st573 case 45: @@ -9367,86 +10644,86 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr12 st573: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof573 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof573 } - stCase573: - if (m.data)[(m.p)] == 50 { + st_case_573: + if ( m.data)[( m.p)] == 50 { goto st579 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 49 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { goto st574 } goto tr12 st574: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof574 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof574 } - stCase574: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_574: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st575 } goto tr12 st575: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof575 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof575 } - stCase575: - if (m.data)[(m.p)] == 58 { + st_case_575: + if ( m.data)[( m.p)] == 58 { goto st576 } goto tr12 st576: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof576 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof576 } - stCase576: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 53 { + st_case_576: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { goto st577 } goto tr12 st577: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof577 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof577 } - stCase577: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_577: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st578 } goto tr12 st578: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof578 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof578 } - stCase578: - if (m.data)[(m.p)] == 32 { + st_case_578: + if ( m.data)[( m.p)] == 32 { goto tr616 } goto tr615 st579: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof579 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof579 } - stCase579: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 51 { + st_case_579: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { goto st575 } goto tr12 st580: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof580 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof580 } - stCase580: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_580: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st581 } goto tr12 st581: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof581 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof581 } - stCase581: - switch (m.data)[(m.p)] { + st_case_581: + switch ( m.data)[( m.p)] { case 43: goto st573 case 45: @@ -9454,16 +10731,16 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { case 90: goto st578 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st582 } goto tr12 st582: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof582 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof582 } - stCase582: - switch (m.data)[(m.p)] { + st_case_582: + switch ( m.data)[( m.p)] { case 43: goto st573 case 45: @@ -9471,16 +10748,16 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { case 90: goto st578 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st583 } goto tr12 st583: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof583 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof583 } - stCase583: - switch (m.data)[(m.p)] { + st_case_583: + switch ( m.data)[( m.p)] { case 43: goto st573 case 45: @@ -9488,16 +10765,16 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { case 90: goto st578 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st584 } goto tr12 st584: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof584 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof584 } - stCase584: - switch (m.data)[(m.p)] { + st_case_584: + switch ( m.data)[( m.p)] { case 43: goto st573 case 45: @@ -9505,16 +10782,16 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { case 90: goto st578 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st585 } goto tr12 st585: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof585 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof585 } - stCase585: - switch (m.data)[(m.p)] { + st_case_585: + switch ( m.data)[( m.p)] { case 43: goto st573 case 45: @@ -9522,16 +10799,16 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { case 90: goto st578 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st586 } goto tr12 st586: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof586 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof586 } - stCase586: - switch (m.data)[(m.p)] { + st_case_586: + switch ( m.data)[( m.p)] { case 43: goto st573 case 45: @@ -9541,2500 +10818,9808 @@ func (m *machine) Parse(input []byte) (syslog.Message, error) { } goto tr12 st587: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof587 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof587 } - stCase587: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 51 { + st_case_587: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { goto st566 } goto tr12 st588: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof588 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof588 } - stCase588: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + st_case_588: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st563 } goto tr12 st589: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof589 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof589 } - stCase589: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 49 { + st_case_589: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { goto st563 } goto tr12 st590: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof590 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof590 } - stCase590: - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 50 { + st_case_590: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { goto st560 } goto tr12 st591: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof591 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof591 } - stCase591: + st_case_591: +//line rfc5424/machine.go.rl:82 - output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - if (m.data)[(m.p)] == 32 { +//line rfc5424/machine.go:10866 + if ( m.data)[( m.p)] == 32 { goto st6 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st592 } - goto tr7 + goto tr623 st592: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof592 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof592 } - stCase592: + st_case_592: +//line rfc5424/machine.go.rl:82 - output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - if (m.data)[(m.p)] == 32 { +//line rfc5424/machine.go:10883 + if ( m.data)[( m.p)] == 32 { goto st6 } - goto tr7 - tr4: + goto tr623 +tr4: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st593 + goto st593 st593: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof593 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof593 } - stCase593: + st_case_593: +//line rfc5424/machine.go.rl:77 - output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - output.prioritySet = true + output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + output.prioritySet = true - switch (m.data)[(m.p)] { +//line rfc5424/machine.go:10904 + switch ( m.data)[( m.p)] { case 57: goto st595 case 62: goto st4 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 56 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 56 { goto st594 } goto tr2 - tr5: +tr5: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - goto st594 + goto st594 st594: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof594 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof594 } - stCase594: + st_case_594: +//line rfc5424/machine.go.rl:77 - output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - output.prioritySet = true + output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + output.prioritySet = true - if (m.data)[(m.p)] == 62 { +//line rfc5424/machine.go:10931 + if ( m.data)[( m.p)] == 62 { goto st4 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 57 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { goto st3 } goto tr2 st595: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof595 + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof595 } - stCase595: + st_case_595: +//line rfc5424/machine.go.rl:77 - output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - output.prioritySet = true + output.priority = uint8(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + output.prioritySet = true - if (m.data)[(m.p)] == 62 { +//line rfc5424/machine.go:10949 + if ( m.data)[( m.p)] == 62 { goto st4 } - if 48 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 49 { + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { goto st3 } goto tr2 - st607: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof607 + st603: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof603 + } + st_case_603: + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto tr632 } - stCase607: - goto tr635 - tr635: + goto tr7 +tr632: +//line rfc5424/machine.go.rl:60 - m.pb = m.p + m.pb = m.p - m.msgat = m.p + goto st604 + st604: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof604 + } + st_case_604: +//line rfc5424/machine.go.rl:82 - goto st608 - st608: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof608 + output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + +//line rfc5424/machine.go:10981 + if ( m.data)[( m.p)] == 32 { + goto st605 } - stCase608: - goto st608 - st609: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof609 + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1190 } - stCase609: - if (m.data)[(m.p)] == 239 { - goto tr638 + goto tr9 + st605: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof605 + } + st_case_605: + if ( m.data)[( m.p)] == 45 { + goto st606 + } + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto tr636 + } + goto tr12 + st606: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof606 + } + st_case_606: + if ( m.data)[( m.p)] == 32 { + goto st607 } - goto tr637 - tr637: + goto tr9 +tr1227: +//line rfc5424/machine.go.rl:86 - m.pb = m.p + if t, e := time.Parse(RFC3339MICRO, string(m.text())); e != nil { + m.err = fmt.Errorf("%s [col %d]", e, m.p) + ( m.p)-- - m.msgat = m.p + {goto st1203 } + } else { + output.timestamp = t + output.timestampSet = true + } - goto st610 - st610: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof610 + goto st607 + st607: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof607 } - stCase610: - goto st610 - tr638: - - m.pb = m.p + st_case_607: +//line rfc5424/machine.go:11029 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto tr638 + } + goto tr16 +tr638: +//line rfc5424/machine.go.rl:60 - m.msgat = m.p + m.pb = m.p - goto st611 - st611: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof611 + goto st608 + st608: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof608 } - stCase611: - if (m.data)[(m.p)] == 187 { - goto st612 + st_case_608: +//line rfc5424/machine.go:11045 + if ( m.data)[( m.p)] == 32 { + goto tr639 } - goto st610 - st612: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof612 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st899 } - stCase612: - if (m.data)[(m.p)] == 191 { - goto st613 + goto tr16 +tr639: +//line rfc5424/machine.go.rl:97 + + output.hostname = string(m.text()) + + goto st609 + st609: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof609 } - goto st610 - st613: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof613 + st_case_609: +//line rfc5424/machine.go:11064 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto tr641 } - stCase613: - switch (m.data)[(m.p)] { - case 224: - goto st597 - case 237: - goto st599 - case 240: - goto st600 - case 244: - goto st602 + goto tr20 +tr641: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st610 + st610: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof610 } - switch { - case (m.data)[(m.p)] < 225: - switch { - case (m.data)[(m.p)] > 193: - if 194 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 223 { - goto st596 - } - case (m.data)[(m.p)] >= 128: - goto tr627 - } - case (m.data)[(m.p)] > 239: - switch { - case (m.data)[(m.p)] > 243: - if 245 <= (m.data)[(m.p)] { - goto tr627 - } - case (m.data)[(m.p)] >= 241: - goto st601 - } - default: - goto st598 + st_case_610: +//line rfc5424/machine.go:11080 + if ( m.data)[( m.p)] == 32 { + goto tr642 } - goto st613 - st596: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof596 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st852 } - stCase596: - if 128 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 191 { - goto st613 + goto tr20 +tr642: +//line rfc5424/machine.go.rl:101 + + output.appname = string(m.text()) + + goto st611 + st611: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof611 } - goto tr627 - st597: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof597 + st_case_611: +//line rfc5424/machine.go:11099 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto tr644 } - stCase597: - if 160 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 191 { - goto st596 + goto tr24 +tr644: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st612 + st612: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof612 } - goto tr627 - st598: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof598 + st_case_612: +//line rfc5424/machine.go:11115 + if ( m.data)[( m.p)] == 32 { + goto tr645 } - stCase598: - if 128 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 191 { - goto st596 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st725 } - goto tr627 - st599: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof599 + goto tr24 +tr645: +//line rfc5424/machine.go.rl:105 + + output.procID = string(m.text()) + + goto st613 + st613: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof613 } - stCase599: - if 128 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 159 { - goto st596 + st_case_613: +//line rfc5424/machine.go:11134 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto tr647 } - goto tr627 - st600: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof600 + goto tr28 +tr647: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st614 + st614: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof614 } - stCase600: - if 144 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 191 { - goto st598 + st_case_614: +//line rfc5424/machine.go:11150 + if ( m.data)[( m.p)] == 32 { + goto tr648 } - goto tr627 - st601: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof601 + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st694 } - stCase601: - if 128 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 191 { - goto st598 + goto tr30 +tr648: +//line rfc5424/machine.go.rl:109 + + output.msgID = string(m.text()) + + goto st615 + st615: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof615 } - goto tr627 - st602: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof602 + st_case_615: +//line rfc5424/machine.go:11169 + switch ( m.data)[( m.p)] { + case 45: + goto st1204 + case 91: + goto tr651 } - stCase602: - if 128 <= (m.data)[(m.p)] && (m.data)[(m.p)] <= 143 { - goto st598 + goto tr33 + st1204: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1204 } - goto tr627 - st614: - if (m.p)++; (m.p) == (m.pe) { - goto _testEof614 + st_case_1204: + if ( m.data)[( m.p)] == 32 { + goto st1205 } - stCase614: - switch (m.data)[(m.p)] { - case 10: - goto st0 - case 13: - goto st0 + goto tr9 + st1205: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1205 } - goto st614 - stOut: - _testEof2: - m.cs = 2 - goto _testEof - _testEof3: - m.cs = 3 - goto _testEof - _testEof4: - m.cs = 4 - goto _testEof - _testEof5: - m.cs = 5 - goto _testEof - _testEof6: - m.cs = 6 - goto _testEof - _testEof7: - m.cs = 7 - goto _testEof - _testEof8: - m.cs = 8 - goto _testEof - _testEof9: - m.cs = 9 - goto _testEof - _testEof10: - m.cs = 10 - goto _testEof - _testEof11: - m.cs = 11 - goto _testEof - _testEof12: - m.cs = 12 - goto _testEof - _testEof13: - m.cs = 13 - goto _testEof - _testEof14: - m.cs = 14 - goto _testEof - _testEof15: - m.cs = 15 - goto _testEof - _testEof16: - m.cs = 16 - goto _testEof - _testEof603: - m.cs = 603 - goto _testEof - _testEof604: - m.cs = 604 - goto _testEof - _testEof605: - m.cs = 605 - goto _testEof - _testEof17: - m.cs = 17 - goto _testEof - _testEof18: - m.cs = 18 - goto _testEof - _testEof19: - m.cs = 19 - goto _testEof - _testEof20: - m.cs = 20 - goto _testEof - _testEof21: - m.cs = 21 - goto _testEof - _testEof22: - m.cs = 22 - goto _testEof - _testEof23: - m.cs = 23 - goto _testEof - _testEof24: - m.cs = 24 - goto _testEof - _testEof25: - m.cs = 25 - goto _testEof - _testEof26: - m.cs = 26 - goto _testEof - _testEof27: - m.cs = 27 - goto _testEof - _testEof28: - m.cs = 28 - goto _testEof - _testEof29: - m.cs = 29 - goto _testEof - _testEof30: - m.cs = 30 - goto _testEof - _testEof31: - m.cs = 31 - goto _testEof - _testEof32: - m.cs = 32 - goto _testEof - _testEof33: - m.cs = 33 - goto _testEof - _testEof34: - m.cs = 34 - goto _testEof - _testEof35: - m.cs = 35 - goto _testEof - _testEof36: - m.cs = 36 - goto _testEof - _testEof37: - m.cs = 37 - goto _testEof - _testEof38: - m.cs = 38 - goto _testEof - _testEof39: - m.cs = 39 - goto _testEof - _testEof40: - m.cs = 40 - goto _testEof - _testEof41: - m.cs = 41 - goto _testEof - _testEof42: - m.cs = 42 - goto _testEof - _testEof43: - m.cs = 43 - goto _testEof - _testEof44: - m.cs = 44 - goto _testEof - _testEof45: - m.cs = 45 - goto _testEof - _testEof46: - m.cs = 46 - goto _testEof - _testEof47: - m.cs = 47 - goto _testEof - _testEof48: - m.cs = 48 - goto _testEof - _testEof49: - m.cs = 49 - goto _testEof - _testEof50: - m.cs = 50 - goto _testEof - _testEof51: - m.cs = 51 - goto _testEof - _testEof52: - m.cs = 52 - goto _testEof - _testEof53: - m.cs = 53 - goto _testEof - _testEof54: - m.cs = 54 - goto _testEof - _testEof55: - m.cs = 55 - goto _testEof - _testEof606: - m.cs = 606 - goto _testEof - _testEof56: - m.cs = 56 - goto _testEof - _testEof57: - m.cs = 57 - goto _testEof - _testEof58: - m.cs = 58 - goto _testEof - _testEof59: - m.cs = 59 - goto _testEof - _testEof60: - m.cs = 60 - goto _testEof - _testEof61: - m.cs = 61 - goto _testEof - _testEof62: - m.cs = 62 - goto _testEof - _testEof63: - m.cs = 63 - goto _testEof - _testEof64: - m.cs = 64 - goto _testEof - _testEof65: - m.cs = 65 - goto _testEof - _testEof66: - m.cs = 66 - goto _testEof - _testEof67: - m.cs = 67 - goto _testEof - _testEof68: - m.cs = 68 - goto _testEof - _testEof69: - m.cs = 69 - goto _testEof - _testEof70: - m.cs = 70 - goto _testEof - _testEof71: - m.cs = 71 - goto _testEof - _testEof72: - m.cs = 72 - goto _testEof - _testEof73: - m.cs = 73 - goto _testEof - _testEof74: - m.cs = 74 - goto _testEof - _testEof75: - m.cs = 75 - goto _testEof - _testEof76: - m.cs = 76 - goto _testEof - _testEof77: - m.cs = 77 - goto _testEof - _testEof78: - m.cs = 78 - goto _testEof - _testEof79: - m.cs = 79 - goto _testEof - _testEof80: - m.cs = 80 - goto _testEof - _testEof81: - m.cs = 81 - goto _testEof - _testEof82: - m.cs = 82 - goto _testEof - _testEof83: - m.cs = 83 - goto _testEof - _testEof84: - m.cs = 84 - goto _testEof - _testEof85: - m.cs = 85 - goto _testEof - _testEof86: - m.cs = 86 - goto _testEof - _testEof87: - m.cs = 87 - goto _testEof - _testEof88: - m.cs = 88 - goto _testEof - _testEof89: - m.cs = 89 - goto _testEof - _testEof90: - m.cs = 90 - goto _testEof - _testEof91: - m.cs = 91 - goto _testEof - _testEof92: - m.cs = 92 - goto _testEof - _testEof93: - m.cs = 93 - goto _testEof - _testEof94: - m.cs = 94 - goto _testEof - _testEof95: - m.cs = 95 - goto _testEof - _testEof96: - m.cs = 96 - goto _testEof - _testEof97: - m.cs = 97 - goto _testEof - _testEof98: - m.cs = 98 - goto _testEof - _testEof99: - m.cs = 99 - goto _testEof - _testEof100: - m.cs = 100 - goto _testEof - _testEof101: - m.cs = 101 - goto _testEof - _testEof102: - m.cs = 102 - goto _testEof - _testEof103: - m.cs = 103 - goto _testEof - _testEof104: - m.cs = 104 - goto _testEof - _testEof105: - m.cs = 105 - goto _testEof - _testEof106: - m.cs = 106 - goto _testEof - _testEof107: - m.cs = 107 - goto _testEof - _testEof108: - m.cs = 108 - goto _testEof - _testEof109: - m.cs = 109 - goto _testEof - _testEof110: - m.cs = 110 - goto _testEof - _testEof111: - m.cs = 111 - goto _testEof - _testEof112: - m.cs = 112 - goto _testEof - _testEof113: - m.cs = 113 - goto _testEof - _testEof114: - m.cs = 114 - goto _testEof - _testEof115: - m.cs = 115 - goto _testEof - _testEof116: - m.cs = 116 - goto _testEof - _testEof117: - m.cs = 117 - goto _testEof - _testEof118: - m.cs = 118 - goto _testEof - _testEof119: - m.cs = 119 - goto _testEof - _testEof120: - m.cs = 120 - goto _testEof - _testEof121: - m.cs = 121 - goto _testEof - _testEof122: - m.cs = 122 - goto _testEof - _testEof123: - m.cs = 123 - goto _testEof - _testEof124: - m.cs = 124 - goto _testEof - _testEof125: - m.cs = 125 - goto _testEof - _testEof126: - m.cs = 126 - goto _testEof - _testEof127: - m.cs = 127 - goto _testEof - _testEof128: - m.cs = 128 - goto _testEof - _testEof129: - m.cs = 129 - goto _testEof - _testEof130: - m.cs = 130 - goto _testEof - _testEof131: - m.cs = 131 - goto _testEof - _testEof132: - m.cs = 132 - goto _testEof - _testEof133: - m.cs = 133 - goto _testEof - _testEof134: - m.cs = 134 - goto _testEof - _testEof135: - m.cs = 135 - goto _testEof - _testEof136: - m.cs = 136 - goto _testEof - _testEof137: - m.cs = 137 - goto _testEof - _testEof138: - m.cs = 138 - goto _testEof - _testEof139: - m.cs = 139 - goto _testEof - _testEof140: - m.cs = 140 - goto _testEof - _testEof141: - m.cs = 141 - goto _testEof - _testEof142: - m.cs = 142 - goto _testEof - _testEof143: - m.cs = 143 - goto _testEof - _testEof144: - m.cs = 144 - goto _testEof - _testEof145: - m.cs = 145 - goto _testEof - _testEof146: - m.cs = 146 - goto _testEof - _testEof147: - m.cs = 147 - goto _testEof - _testEof148: - m.cs = 148 - goto _testEof - _testEof149: - m.cs = 149 - goto _testEof - _testEof150: - m.cs = 150 - goto _testEof - _testEof151: - m.cs = 151 - goto _testEof - _testEof152: - m.cs = 152 - goto _testEof - _testEof153: - m.cs = 153 - goto _testEof - _testEof154: - m.cs = 154 - goto _testEof - _testEof155: - m.cs = 155 - goto _testEof - _testEof156: - m.cs = 156 - goto _testEof - _testEof157: - m.cs = 157 - goto _testEof - _testEof158: - m.cs = 158 - goto _testEof - _testEof159: - m.cs = 159 - goto _testEof - _testEof160: - m.cs = 160 - goto _testEof - _testEof161: - m.cs = 161 - goto _testEof - _testEof162: - m.cs = 162 - goto _testEof - _testEof163: - m.cs = 163 - goto _testEof - _testEof164: - m.cs = 164 - goto _testEof - _testEof165: - m.cs = 165 - goto _testEof - _testEof166: - m.cs = 166 - goto _testEof - _testEof167: - m.cs = 167 - goto _testEof - _testEof168: - m.cs = 168 - goto _testEof - _testEof169: - m.cs = 169 - goto _testEof - _testEof170: - m.cs = 170 - goto _testEof - _testEof171: - m.cs = 171 - goto _testEof - _testEof172: - m.cs = 172 - goto _testEof - _testEof173: - m.cs = 173 - goto _testEof - _testEof174: - m.cs = 174 - goto _testEof - _testEof175: - m.cs = 175 - goto _testEof - _testEof176: - m.cs = 176 - goto _testEof - _testEof177: - m.cs = 177 - goto _testEof - _testEof178: - m.cs = 178 - goto _testEof - _testEof179: - m.cs = 179 - goto _testEof - _testEof180: - m.cs = 180 - goto _testEof - _testEof181: - m.cs = 181 - goto _testEof - _testEof182: - m.cs = 182 - goto _testEof - _testEof183: - m.cs = 183 - goto _testEof - _testEof184: - m.cs = 184 - goto _testEof - _testEof185: - m.cs = 185 - goto _testEof - _testEof186: - m.cs = 186 - goto _testEof - _testEof187: - m.cs = 187 - goto _testEof - _testEof188: - m.cs = 188 - goto _testEof - _testEof189: - m.cs = 189 - goto _testEof - _testEof190: - m.cs = 190 - goto _testEof - _testEof191: - m.cs = 191 - goto _testEof - _testEof192: - m.cs = 192 - goto _testEof - _testEof193: - m.cs = 193 - goto _testEof - _testEof194: - m.cs = 194 - goto _testEof - _testEof195: - m.cs = 195 - goto _testEof - _testEof196: - m.cs = 196 - goto _testEof - _testEof197: - m.cs = 197 - goto _testEof - _testEof198: - m.cs = 198 - goto _testEof - _testEof199: - m.cs = 199 - goto _testEof - _testEof200: - m.cs = 200 - goto _testEof - _testEof201: - m.cs = 201 - goto _testEof - _testEof202: - m.cs = 202 - goto _testEof - _testEof203: - m.cs = 203 - goto _testEof - _testEof204: - m.cs = 204 - goto _testEof - _testEof205: - m.cs = 205 - goto _testEof - _testEof206: - m.cs = 206 - goto _testEof - _testEof207: - m.cs = 207 - goto _testEof - _testEof208: - m.cs = 208 - goto _testEof - _testEof209: - m.cs = 209 - goto _testEof - _testEof210: - m.cs = 210 - goto _testEof - _testEof211: - m.cs = 211 - goto _testEof - _testEof212: - m.cs = 212 - goto _testEof - _testEof213: - m.cs = 213 - goto _testEof - _testEof214: - m.cs = 214 - goto _testEof - _testEof215: - m.cs = 215 - goto _testEof - _testEof216: - m.cs = 216 - goto _testEof - _testEof217: - m.cs = 217 - goto _testEof - _testEof218: - m.cs = 218 - goto _testEof - _testEof219: - m.cs = 219 - goto _testEof - _testEof220: - m.cs = 220 - goto _testEof - _testEof221: - m.cs = 221 - goto _testEof - _testEof222: - m.cs = 222 - goto _testEof - _testEof223: - m.cs = 223 - goto _testEof - _testEof224: - m.cs = 224 - goto _testEof - _testEof225: - m.cs = 225 - goto _testEof - _testEof226: - m.cs = 226 - goto _testEof - _testEof227: - m.cs = 227 - goto _testEof - _testEof228: - m.cs = 228 - goto _testEof - _testEof229: - m.cs = 229 - goto _testEof - _testEof230: - m.cs = 230 - goto _testEof - _testEof231: - m.cs = 231 - goto _testEof - _testEof232: - m.cs = 232 - goto _testEof - _testEof233: - m.cs = 233 - goto _testEof - _testEof234: - m.cs = 234 - goto _testEof - _testEof235: - m.cs = 235 - goto _testEof - _testEof236: - m.cs = 236 - goto _testEof - _testEof237: - m.cs = 237 - goto _testEof - _testEof238: - m.cs = 238 - goto _testEof - _testEof239: - m.cs = 239 - goto _testEof - _testEof240: - m.cs = 240 - goto _testEof - _testEof241: - m.cs = 241 - goto _testEof - _testEof242: - m.cs = 242 - goto _testEof - _testEof243: - m.cs = 243 - goto _testEof - _testEof244: - m.cs = 244 - goto _testEof - _testEof245: - m.cs = 245 - goto _testEof - _testEof246: - m.cs = 246 - goto _testEof - _testEof247: - m.cs = 247 - goto _testEof - _testEof248: - m.cs = 248 - goto _testEof - _testEof249: - m.cs = 249 - goto _testEof - _testEof250: - m.cs = 250 - goto _testEof - _testEof251: - m.cs = 251 - goto _testEof - _testEof252: - m.cs = 252 - goto _testEof - _testEof253: - m.cs = 253 - goto _testEof - _testEof254: - m.cs = 254 - goto _testEof - _testEof255: - m.cs = 255 - goto _testEof - _testEof256: - m.cs = 256 - goto _testEof - _testEof257: - m.cs = 257 - goto _testEof - _testEof258: - m.cs = 258 - goto _testEof - _testEof259: - m.cs = 259 - goto _testEof - _testEof260: - m.cs = 260 - goto _testEof - _testEof261: - m.cs = 261 - goto _testEof - _testEof262: - m.cs = 262 - goto _testEof - _testEof263: - m.cs = 263 - goto _testEof - _testEof264: - m.cs = 264 - goto _testEof - _testEof265: - m.cs = 265 - goto _testEof - _testEof266: - m.cs = 266 - goto _testEof - _testEof267: - m.cs = 267 - goto _testEof - _testEof268: - m.cs = 268 - goto _testEof - _testEof269: - m.cs = 269 - goto _testEof - _testEof270: - m.cs = 270 - goto _testEof - _testEof271: - m.cs = 271 - goto _testEof - _testEof272: - m.cs = 272 - goto _testEof - _testEof273: - m.cs = 273 - goto _testEof - _testEof274: - m.cs = 274 - goto _testEof - _testEof275: - m.cs = 275 - goto _testEof - _testEof276: - m.cs = 276 - goto _testEof - _testEof277: - m.cs = 277 - goto _testEof - _testEof278: - m.cs = 278 - goto _testEof - _testEof279: - m.cs = 279 - goto _testEof - _testEof280: - m.cs = 280 - goto _testEof - _testEof281: - m.cs = 281 - goto _testEof - _testEof282: - m.cs = 282 - goto _testEof - _testEof283: - m.cs = 283 - goto _testEof - _testEof284: - m.cs = 284 - goto _testEof - _testEof285: - m.cs = 285 - goto _testEof - _testEof286: - m.cs = 286 - goto _testEof - _testEof287: - m.cs = 287 - goto _testEof - _testEof288: - m.cs = 288 - goto _testEof - _testEof289: - m.cs = 289 - goto _testEof - _testEof290: - m.cs = 290 - goto _testEof - _testEof291: - m.cs = 291 - goto _testEof - _testEof292: - m.cs = 292 - goto _testEof - _testEof293: - m.cs = 293 - goto _testEof - _testEof294: - m.cs = 294 - goto _testEof - _testEof295: - m.cs = 295 - goto _testEof - _testEof296: - m.cs = 296 - goto _testEof - _testEof297: - m.cs = 297 - goto _testEof - _testEof298: - m.cs = 298 - goto _testEof - _testEof299: - m.cs = 299 - goto _testEof - _testEof300: - m.cs = 300 - goto _testEof - _testEof301: - m.cs = 301 - goto _testEof - _testEof302: - m.cs = 302 - goto _testEof - _testEof303: - m.cs = 303 - goto _testEof - _testEof304: - m.cs = 304 - goto _testEof - _testEof305: - m.cs = 305 - goto _testEof - _testEof306: - m.cs = 306 - goto _testEof - _testEof307: - m.cs = 307 - goto _testEof - _testEof308: - m.cs = 308 - goto _testEof - _testEof309: - m.cs = 309 - goto _testEof - _testEof310: - m.cs = 310 - goto _testEof - _testEof311: - m.cs = 311 - goto _testEof - _testEof312: - m.cs = 312 - goto _testEof - _testEof313: - m.cs = 313 - goto _testEof - _testEof314: - m.cs = 314 - goto _testEof - _testEof315: - m.cs = 315 - goto _testEof - _testEof316: - m.cs = 316 - goto _testEof - _testEof317: - m.cs = 317 - goto _testEof - _testEof318: - m.cs = 318 - goto _testEof - _testEof319: - m.cs = 319 - goto _testEof - _testEof320: - m.cs = 320 - goto _testEof - _testEof321: - m.cs = 321 - goto _testEof - _testEof322: - m.cs = 322 - goto _testEof - _testEof323: - m.cs = 323 - goto _testEof - _testEof324: - m.cs = 324 - goto _testEof - _testEof325: - m.cs = 325 - goto _testEof - _testEof326: - m.cs = 326 - goto _testEof - _testEof327: - m.cs = 327 - goto _testEof - _testEof328: - m.cs = 328 - goto _testEof - _testEof329: - m.cs = 329 - goto _testEof - _testEof330: - m.cs = 330 - goto _testEof - _testEof331: - m.cs = 331 - goto _testEof - _testEof332: - m.cs = 332 - goto _testEof - _testEof333: - m.cs = 333 - goto _testEof - _testEof334: - m.cs = 334 - goto _testEof - _testEof335: - m.cs = 335 - goto _testEof - _testEof336: - m.cs = 336 - goto _testEof - _testEof337: - m.cs = 337 - goto _testEof - _testEof338: - m.cs = 338 - goto _testEof - _testEof339: - m.cs = 339 - goto _testEof - _testEof340: - m.cs = 340 - goto _testEof - _testEof341: - m.cs = 341 - goto _testEof - _testEof342: - m.cs = 342 - goto _testEof - _testEof343: - m.cs = 343 - goto _testEof - _testEof344: - m.cs = 344 - goto _testEof - _testEof345: - m.cs = 345 - goto _testEof - _testEof346: - m.cs = 346 - goto _testEof - _testEof347: - m.cs = 347 - goto _testEof - _testEof348: - m.cs = 348 - goto _testEof - _testEof349: - m.cs = 349 - goto _testEof - _testEof350: - m.cs = 350 - goto _testEof - _testEof351: - m.cs = 351 - goto _testEof - _testEof352: - m.cs = 352 - goto _testEof - _testEof353: - m.cs = 353 - goto _testEof - _testEof354: - m.cs = 354 - goto _testEof - _testEof355: - m.cs = 355 - goto _testEof - _testEof356: - m.cs = 356 - goto _testEof - _testEof357: - m.cs = 357 - goto _testEof - _testEof358: - m.cs = 358 - goto _testEof - _testEof359: - m.cs = 359 - goto _testEof - _testEof360: - m.cs = 360 - goto _testEof - _testEof361: - m.cs = 361 - goto _testEof - _testEof362: - m.cs = 362 - goto _testEof - _testEof363: - m.cs = 363 - goto _testEof - _testEof364: - m.cs = 364 - goto _testEof - _testEof365: - m.cs = 365 - goto _testEof - _testEof366: - m.cs = 366 - goto _testEof - _testEof367: - m.cs = 367 - goto _testEof - _testEof368: - m.cs = 368 - goto _testEof - _testEof369: - m.cs = 369 - goto _testEof - _testEof370: - m.cs = 370 - goto _testEof - _testEof371: - m.cs = 371 - goto _testEof - _testEof372: - m.cs = 372 - goto _testEof - _testEof373: - m.cs = 373 - goto _testEof - _testEof374: - m.cs = 374 - goto _testEof - _testEof375: - m.cs = 375 - goto _testEof - _testEof376: - m.cs = 376 - goto _testEof - _testEof377: - m.cs = 377 - goto _testEof - _testEof378: - m.cs = 378 - goto _testEof - _testEof379: - m.cs = 379 - goto _testEof - _testEof380: - m.cs = 380 - goto _testEof - _testEof381: - m.cs = 381 - goto _testEof - _testEof382: - m.cs = 382 - goto _testEof - _testEof383: - m.cs = 383 - goto _testEof - _testEof384: - m.cs = 384 - goto _testEof - _testEof385: - m.cs = 385 - goto _testEof - _testEof386: - m.cs = 386 - goto _testEof - _testEof387: - m.cs = 387 - goto _testEof - _testEof388: - m.cs = 388 - goto _testEof - _testEof389: - m.cs = 389 - goto _testEof - _testEof390: - m.cs = 390 - goto _testEof - _testEof391: - m.cs = 391 - goto _testEof - _testEof392: - m.cs = 392 - goto _testEof - _testEof393: - m.cs = 393 - goto _testEof - _testEof394: - m.cs = 394 - goto _testEof - _testEof395: - m.cs = 395 - goto _testEof - _testEof396: - m.cs = 396 - goto _testEof - _testEof397: - m.cs = 397 - goto _testEof - _testEof398: - m.cs = 398 - goto _testEof - _testEof399: - m.cs = 399 - goto _testEof - _testEof400: - m.cs = 400 - goto _testEof - _testEof401: - m.cs = 401 - goto _testEof - _testEof402: - m.cs = 402 - goto _testEof - _testEof403: - m.cs = 403 - goto _testEof - _testEof404: - m.cs = 404 - goto _testEof - _testEof405: - m.cs = 405 - goto _testEof - _testEof406: - m.cs = 406 - goto _testEof - _testEof407: - m.cs = 407 - goto _testEof - _testEof408: - m.cs = 408 - goto _testEof - _testEof409: - m.cs = 409 - goto _testEof - _testEof410: - m.cs = 410 - goto _testEof - _testEof411: - m.cs = 411 - goto _testEof - _testEof412: - m.cs = 412 - goto _testEof - _testEof413: - m.cs = 413 - goto _testEof - _testEof414: - m.cs = 414 - goto _testEof - _testEof415: - m.cs = 415 - goto _testEof - _testEof416: - m.cs = 416 - goto _testEof - _testEof417: - m.cs = 417 - goto _testEof - _testEof418: - m.cs = 418 - goto _testEof - _testEof419: - m.cs = 419 - goto _testEof - _testEof420: - m.cs = 420 - goto _testEof - _testEof421: - m.cs = 421 - goto _testEof - _testEof422: - m.cs = 422 - goto _testEof - _testEof423: - m.cs = 423 - goto _testEof - _testEof424: - m.cs = 424 - goto _testEof - _testEof425: - m.cs = 425 - goto _testEof - _testEof426: - m.cs = 426 - goto _testEof - _testEof427: - m.cs = 427 - goto _testEof - _testEof428: - m.cs = 428 - goto _testEof - _testEof429: - m.cs = 429 - goto _testEof - _testEof430: - m.cs = 430 - goto _testEof - _testEof431: - m.cs = 431 - goto _testEof - _testEof432: - m.cs = 432 - goto _testEof - _testEof433: - m.cs = 433 - goto _testEof - _testEof434: - m.cs = 434 - goto _testEof - _testEof435: - m.cs = 435 - goto _testEof - _testEof436: - m.cs = 436 - goto _testEof - _testEof437: - m.cs = 437 - goto _testEof - _testEof438: - m.cs = 438 - goto _testEof - _testEof439: - m.cs = 439 - goto _testEof - _testEof440: - m.cs = 440 - goto _testEof - _testEof441: - m.cs = 441 - goto _testEof - _testEof442: - m.cs = 442 - goto _testEof - _testEof443: - m.cs = 443 - goto _testEof - _testEof444: - m.cs = 444 - goto _testEof - _testEof445: - m.cs = 445 - goto _testEof - _testEof446: - m.cs = 446 - goto _testEof - _testEof447: - m.cs = 447 - goto _testEof - _testEof448: - m.cs = 448 - goto _testEof - _testEof449: - m.cs = 449 - goto _testEof - _testEof450: - m.cs = 450 - goto _testEof - _testEof451: - m.cs = 451 - goto _testEof - _testEof452: - m.cs = 452 - goto _testEof - _testEof453: - m.cs = 453 - goto _testEof - _testEof454: - m.cs = 454 - goto _testEof - _testEof455: - m.cs = 455 - goto _testEof - _testEof456: - m.cs = 456 - goto _testEof - _testEof457: - m.cs = 457 - goto _testEof - _testEof458: - m.cs = 458 - goto _testEof - _testEof459: - m.cs = 459 - goto _testEof - _testEof460: - m.cs = 460 - goto _testEof - _testEof461: - m.cs = 461 - goto _testEof - _testEof462: - m.cs = 462 - goto _testEof - _testEof463: - m.cs = 463 - goto _testEof - _testEof464: - m.cs = 464 - goto _testEof - _testEof465: - m.cs = 465 - goto _testEof - _testEof466: - m.cs = 466 - goto _testEof - _testEof467: - m.cs = 467 - goto _testEof - _testEof468: - m.cs = 468 - goto _testEof - _testEof469: - m.cs = 469 - goto _testEof - _testEof470: - m.cs = 470 - goto _testEof - _testEof471: - m.cs = 471 - goto _testEof - _testEof472: - m.cs = 472 - goto _testEof - _testEof473: - m.cs = 473 - goto _testEof - _testEof474: - m.cs = 474 - goto _testEof - _testEof475: - m.cs = 475 - goto _testEof - _testEof476: - m.cs = 476 - goto _testEof - _testEof477: - m.cs = 477 - goto _testEof - _testEof478: - m.cs = 478 - goto _testEof - _testEof479: - m.cs = 479 - goto _testEof - _testEof480: - m.cs = 480 - goto _testEof - _testEof481: - m.cs = 481 - goto _testEof - _testEof482: - m.cs = 482 - goto _testEof - _testEof483: - m.cs = 483 - goto _testEof - _testEof484: - m.cs = 484 - goto _testEof - _testEof485: - m.cs = 485 - goto _testEof - _testEof486: - m.cs = 486 - goto _testEof - _testEof487: - m.cs = 487 - goto _testEof - _testEof488: - m.cs = 488 - goto _testEof - _testEof489: - m.cs = 489 - goto _testEof - _testEof490: - m.cs = 490 - goto _testEof - _testEof491: - m.cs = 491 - goto _testEof - _testEof492: - m.cs = 492 - goto _testEof - _testEof493: - m.cs = 493 - goto _testEof - _testEof494: - m.cs = 494 - goto _testEof - _testEof495: - m.cs = 495 - goto _testEof - _testEof496: - m.cs = 496 - goto _testEof - _testEof497: - m.cs = 497 - goto _testEof - _testEof498: - m.cs = 498 - goto _testEof - _testEof499: - m.cs = 499 - goto _testEof - _testEof500: - m.cs = 500 - goto _testEof - _testEof501: - m.cs = 501 - goto _testEof - _testEof502: - m.cs = 502 - goto _testEof - _testEof503: - m.cs = 503 - goto _testEof - _testEof504: - m.cs = 504 - goto _testEof - _testEof505: - m.cs = 505 - goto _testEof - _testEof506: - m.cs = 506 - goto _testEof - _testEof507: - m.cs = 507 - goto _testEof - _testEof508: - m.cs = 508 - goto _testEof - _testEof509: - m.cs = 509 - goto _testEof - _testEof510: - m.cs = 510 - goto _testEof - _testEof511: - m.cs = 511 - goto _testEof - _testEof512: - m.cs = 512 - goto _testEof - _testEof513: - m.cs = 513 - goto _testEof - _testEof514: - m.cs = 514 - goto _testEof - _testEof515: - m.cs = 515 - goto _testEof - _testEof516: - m.cs = 516 - goto _testEof - _testEof517: - m.cs = 517 - goto _testEof - _testEof518: - m.cs = 518 - goto _testEof - _testEof519: - m.cs = 519 - goto _testEof - _testEof520: - m.cs = 520 - goto _testEof - _testEof521: - m.cs = 521 - goto _testEof - _testEof522: - m.cs = 522 - goto _testEof - _testEof523: - m.cs = 523 - goto _testEof - _testEof524: - m.cs = 524 - goto _testEof - _testEof525: - m.cs = 525 - goto _testEof - _testEof526: - m.cs = 526 - goto _testEof - _testEof527: - m.cs = 527 - goto _testEof - _testEof528: - m.cs = 528 - goto _testEof - _testEof529: - m.cs = 529 - goto _testEof - _testEof530: - m.cs = 530 - goto _testEof - _testEof531: - m.cs = 531 - goto _testEof - _testEof532: - m.cs = 532 - goto _testEof - _testEof533: - m.cs = 533 - goto _testEof - _testEof534: - m.cs = 534 - goto _testEof - _testEof535: - m.cs = 535 - goto _testEof - _testEof536: - m.cs = 536 - goto _testEof - _testEof537: - m.cs = 537 - goto _testEof - _testEof538: - m.cs = 538 - goto _testEof - _testEof539: - m.cs = 539 - goto _testEof - _testEof540: - m.cs = 540 - goto _testEof - _testEof541: - m.cs = 541 - goto _testEof - _testEof542: - m.cs = 542 - goto _testEof - _testEof543: - m.cs = 543 - goto _testEof - _testEof544: - m.cs = 544 - goto _testEof - _testEof545: - m.cs = 545 - goto _testEof - _testEof546: - m.cs = 546 - goto _testEof - _testEof547: - m.cs = 547 - goto _testEof - _testEof548: - m.cs = 548 - goto _testEof - _testEof549: - m.cs = 549 - goto _testEof - _testEof550: - m.cs = 550 - goto _testEof - _testEof551: - m.cs = 551 - goto _testEof - _testEof552: - m.cs = 552 - goto _testEof - _testEof553: - m.cs = 553 - goto _testEof - _testEof554: - m.cs = 554 - goto _testEof - _testEof555: - m.cs = 555 - goto _testEof - _testEof556: - m.cs = 556 - goto _testEof - _testEof557: - m.cs = 557 - goto _testEof - _testEof558: - m.cs = 558 - goto _testEof - _testEof559: - m.cs = 559 - goto _testEof - _testEof560: - m.cs = 560 - goto _testEof - _testEof561: - m.cs = 561 - goto _testEof - _testEof562: - m.cs = 562 - goto _testEof - _testEof563: - m.cs = 563 - goto _testEof - _testEof564: - m.cs = 564 - goto _testEof - _testEof565: - m.cs = 565 - goto _testEof - _testEof566: - m.cs = 566 - goto _testEof - _testEof567: - m.cs = 567 - goto _testEof - _testEof568: - m.cs = 568 - goto _testEof - _testEof569: - m.cs = 569 - goto _testEof - _testEof570: - m.cs = 570 - goto _testEof - _testEof571: - m.cs = 571 - goto _testEof - _testEof572: - m.cs = 572 - goto _testEof - _testEof573: - m.cs = 573 - goto _testEof - _testEof574: - m.cs = 574 - goto _testEof - _testEof575: - m.cs = 575 - goto _testEof - _testEof576: - m.cs = 576 - goto _testEof - _testEof577: - m.cs = 577 - goto _testEof - _testEof578: - m.cs = 578 - goto _testEof - _testEof579: - m.cs = 579 - goto _testEof - _testEof580: - m.cs = 580 - goto _testEof - _testEof581: - m.cs = 581 - goto _testEof - _testEof582: - m.cs = 582 - goto _testEof - _testEof583: - m.cs = 583 - goto _testEof - _testEof584: - m.cs = 584 - goto _testEof - _testEof585: - m.cs = 585 - goto _testEof - _testEof586: - m.cs = 586 - goto _testEof - _testEof587: - m.cs = 587 - goto _testEof - _testEof588: - m.cs = 588 - goto _testEof - _testEof589: - m.cs = 589 - goto _testEof - _testEof590: - m.cs = 590 - goto _testEof - _testEof591: - m.cs = 591 - goto _testEof - _testEof592: - m.cs = 592 - goto _testEof - _testEof593: - m.cs = 593 - goto _testEof - _testEof594: - m.cs = 594 - goto _testEof - _testEof595: - m.cs = 595 - goto _testEof - _testEof607: - m.cs = 607 - goto _testEof - _testEof608: - m.cs = 608 - goto _testEof - _testEof609: - m.cs = 609 - goto _testEof - _testEof610: - m.cs = 610 - goto _testEof - _testEof611: - m.cs = 611 - goto _testEof - _testEof612: - m.cs = 612 - goto _testEof - _testEof613: - m.cs = 613 - goto _testEof - _testEof596: - m.cs = 596 - goto _testEof - _testEof597: - m.cs = 597 - goto _testEof - _testEof598: - m.cs = 598 - goto _testEof - _testEof599: - m.cs = 599 - goto _testEof - _testEof600: - m.cs = 600 - goto _testEof - _testEof601: - m.cs = 601 - goto _testEof - _testEof602: - m.cs = 602 - goto _testEof - _testEof614: - m.cs = 614 - goto _testEof - - _testEof: - { - } - if (m.p) == (m.eof) { - switch m.cs { - case 608, 610, 611, 612, 613: - - output.message = string(m.text()) - - case 1: - - m.err = fmt.Errorf(ErrPri+ColumnPositionTemplate, m.p) - (m.p)-- - - { - goto st614 - } + st_case_1205: + goto tr1253 +tr1253: +//line rfc5424/machine.go.rl:68 - case 15, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125: + ( m.p)-- - m.err = fmt.Errorf(ErrMsgID+ColumnPositionTemplate, m.p) - (m.p)-- - { - goto st614 - } + if m.compliantMsg { + {goto st1198 } + } + {goto st1196 } - case 16: + goto st1206 + st1206: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1206 + } + st_case_1206: +//line rfc5424/machine.go:11209 + goto tr9 +tr651: +//line rfc5424/machine.go.rl:113 - m.err = fmt.Errorf(ErrStructuredData+ColumnPositionTemplate, m.p) - (m.p)-- + output.structuredData = map[string]map[string]string{} - { - goto st614 - } + goto st616 + st616: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof616 + } + st_case_616: +//line rfc5424/machine.go:11222 + if ( m.data)[( m.p)] == 33 { + goto tr652 + } + switch { + case ( m.data)[( m.p)] < 62: + if 35 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 60 { + goto tr652 + } + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto tr652 + } + default: + goto tr652 + } + goto tr36 +tr652: +//line rfc5424/machine.go.rl:60 - case 596, 597, 598, 599, 600, 601, 602: + m.pb = m.p - // If error encountered within the message rule ... - if m.msgat > 0 { - // Save the text until valid (m.p is where the parser has stopped) - output.message = string(m.data[m.msgat:m.p]) - } + goto st617 + st617: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof617 + } + st_case_617: +//line rfc5424/machine.go:11250 + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st663 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st663 + } + case ( m.data)[( m.p)] >= 35: + goto st663 + } + goto tr38 +tr653: +//line rfc5424/machine.go.rl:117 + + if _, ok := output.structuredData[string(m.text())]; ok { + // As per RFC5424 section 6.3.2 SD-ID MUST NOT exist more than once in a message + m.err = fmt.Errorf(ErrSdIDDuplicated + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + } else { + id := string(m.text()) + output.structuredData[id] = map[string]string{} + output.hasElements = true + m.currentelem = id + } + + goto st618 + st618: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof618 + } + st_case_618: +//line rfc5424/machine.go:11290 + if ( m.data)[( m.p)] == 33 { + goto tr656 + } + switch { + case ( m.data)[( m.p)] < 62: + if 35 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 60 { + goto tr656 + } + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto tr656 + } + default: + goto tr656 + } + goto tr42 +tr656: +//line rfc5424/machine.go.rl:131 + + m.backslashat = []int{} + +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st619 + st619: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof619 + } + st_case_619: +//line rfc5424/machine.go:11322 + switch ( m.data)[( m.p)] { + case 33: + goto st620 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st620 + } + case ( m.data)[( m.p)] >= 35: + goto st620 + } + goto tr42 + st620: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof620 + } + st_case_620: + switch ( m.data)[( m.p)] { + case 33: + goto st621 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st621 + } + case ( m.data)[( m.p)] >= 35: + goto st621 + } + goto tr42 + st621: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof621 + } + st_case_621: + switch ( m.data)[( m.p)] { + case 33: + goto st622 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st622 + } + case ( m.data)[( m.p)] >= 35: + goto st622 + } + goto tr42 + st622: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof622 + } + st_case_622: + switch ( m.data)[( m.p)] { + case 33: + goto st623 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st623 + } + case ( m.data)[( m.p)] >= 35: + goto st623 + } + goto tr42 + st623: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof623 + } + st_case_623: + switch ( m.data)[( m.p)] { + case 33: + goto st624 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st624 + } + case ( m.data)[( m.p)] >= 35: + goto st624 + } + goto tr42 + st624: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof624 + } + st_case_624: + switch ( m.data)[( m.p)] { + case 33: + goto st625 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st625 + } + case ( m.data)[( m.p)] >= 35: + goto st625 + } + goto tr42 + st625: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof625 + } + st_case_625: + switch ( m.data)[( m.p)] { + case 33: + goto st626 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st626 + } + case ( m.data)[( m.p)] >= 35: + goto st626 + } + goto tr42 + st626: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof626 + } + st_case_626: + switch ( m.data)[( m.p)] { + case 33: + goto st627 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st627 + } + case ( m.data)[( m.p)] >= 35: + goto st627 + } + goto tr42 + st627: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof627 + } + st_case_627: + switch ( m.data)[( m.p)] { + case 33: + goto st628 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st628 + } + case ( m.data)[( m.p)] >= 35: + goto st628 + } + goto tr42 + st628: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof628 + } + st_case_628: + switch ( m.data)[( m.p)] { + case 33: + goto st629 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st629 + } + case ( m.data)[( m.p)] >= 35: + goto st629 + } + goto tr42 + st629: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof629 + } + st_case_629: + switch ( m.data)[( m.p)] { + case 33: + goto st630 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st630 + } + case ( m.data)[( m.p)] >= 35: + goto st630 + } + goto tr42 + st630: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof630 + } + st_case_630: + switch ( m.data)[( m.p)] { + case 33: + goto st631 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st631 + } + case ( m.data)[( m.p)] >= 35: + goto st631 + } + goto tr42 + st631: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof631 + } + st_case_631: + switch ( m.data)[( m.p)] { + case 33: + goto st632 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st632 + } + case ( m.data)[( m.p)] >= 35: + goto st632 + } + goto tr42 + st632: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof632 + } + st_case_632: + switch ( m.data)[( m.p)] { + case 33: + goto st633 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st633 + } + case ( m.data)[( m.p)] >= 35: + goto st633 + } + goto tr42 + st633: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof633 + } + st_case_633: + switch ( m.data)[( m.p)] { + case 33: + goto st634 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st634 + } + case ( m.data)[( m.p)] >= 35: + goto st634 + } + goto tr42 + st634: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof634 + } + st_case_634: + switch ( m.data)[( m.p)] { + case 33: + goto st635 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st635 + } + case ( m.data)[( m.p)] >= 35: + goto st635 + } + goto tr42 + st635: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof635 + } + st_case_635: + switch ( m.data)[( m.p)] { + case 33: + goto st636 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st636 + } + case ( m.data)[( m.p)] >= 35: + goto st636 + } + goto tr42 + st636: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof636 + } + st_case_636: + switch ( m.data)[( m.p)] { + case 33: + goto st637 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st637 + } + case ( m.data)[( m.p)] >= 35: + goto st637 + } + goto tr42 + st637: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof637 + } + st_case_637: + switch ( m.data)[( m.p)] { + case 33: + goto st638 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st638 + } + case ( m.data)[( m.p)] >= 35: + goto st638 + } + goto tr42 + st638: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof638 + } + st_case_638: + switch ( m.data)[( m.p)] { + case 33: + goto st639 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st639 + } + case ( m.data)[( m.p)] >= 35: + goto st639 + } + goto tr42 + st639: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof639 + } + st_case_639: + switch ( m.data)[( m.p)] { + case 33: + goto st640 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st640 + } + case ( m.data)[( m.p)] >= 35: + goto st640 + } + goto tr42 + st640: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof640 + } + st_case_640: + switch ( m.data)[( m.p)] { + case 33: + goto st641 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st641 + } + case ( m.data)[( m.p)] >= 35: + goto st641 + } + goto tr42 + st641: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof641 + } + st_case_641: + switch ( m.data)[( m.p)] { + case 33: + goto st642 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st642 + } + case ( m.data)[( m.p)] >= 35: + goto st642 + } + goto tr42 + st642: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof642 + } + st_case_642: + switch ( m.data)[( m.p)] { + case 33: + goto st643 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st643 + } + case ( m.data)[( m.p)] >= 35: + goto st643 + } + goto tr42 + st643: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof643 + } + st_case_643: + switch ( m.data)[( m.p)] { + case 33: + goto st644 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st644 + } + case ( m.data)[( m.p)] >= 35: + goto st644 + } + goto tr42 + st644: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof644 + } + st_case_644: + switch ( m.data)[( m.p)] { + case 33: + goto st645 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st645 + } + case ( m.data)[( m.p)] >= 35: + goto st645 + } + goto tr42 + st645: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof645 + } + st_case_645: + switch ( m.data)[( m.p)] { + case 33: + goto st646 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st646 + } + case ( m.data)[( m.p)] >= 35: + goto st646 + } + goto tr42 + st646: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof646 + } + st_case_646: + switch ( m.data)[( m.p)] { + case 33: + goto st647 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st647 + } + case ( m.data)[( m.p)] >= 35: + goto st647 + } + goto tr42 + st647: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof647 + } + st_case_647: + switch ( m.data)[( m.p)] { + case 33: + goto st648 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st648 + } + case ( m.data)[( m.p)] >= 35: + goto st648 + } + goto tr42 + st648: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof648 + } + st_case_648: + switch ( m.data)[( m.p)] { + case 33: + goto st649 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st649 + } + case ( m.data)[( m.p)] >= 35: + goto st649 + } + goto tr42 + st649: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof649 + } + st_case_649: + switch ( m.data)[( m.p)] { + case 33: + goto st650 + case 61: + goto tr658 + } + switch { + case ( m.data)[( m.p)] > 92: + if 94 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st650 + } + case ( m.data)[( m.p)] >= 35: + goto st650 + } + goto tr42 + st650: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof650 + } + st_case_650: + if ( m.data)[( m.p)] == 61 { + goto tr658 + } + goto tr42 +tr658: +//line rfc5424/machine.go.rl:139 + + m.currentparam = string(m.text()) + + goto st651 + st651: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof651 + } + st_case_651: +//line rfc5424/machine.go:11958 + if ( m.data)[( m.p)] == 34 { + goto st652 + } + goto tr42 + st652: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof652 + } + st_case_652: + switch ( m.data)[( m.p)] { + case 34: + goto tr691 + case 92: + goto tr692 + case 93: + goto tr80 + case 224: + goto tr694 + case 237: + goto tr696 + case 240: + goto tr697 + case 244: + goto tr699 + } + switch { + case ( m.data)[( m.p)] < 225: + switch { + case ( m.data)[( m.p)] > 193: + if 194 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 223 { + goto tr693 + } + case ( m.data)[( m.p)] >= 128: + goto tr80 + } + case ( m.data)[( m.p)] > 239: + switch { + case ( m.data)[( m.p)] > 243: + if 245 <= ( m.data)[( m.p)] { + goto tr80 + } + case ( m.data)[( m.p)] >= 241: + goto tr698 + } + default: + goto tr695 + } + goto tr690 +tr690: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st653 + st653: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof653 + } + st_case_653: +//line rfc5424/machine.go:12018 + switch ( m.data)[( m.p)] { + case 34: + goto tr701 + case 92: + goto tr702 + case 93: + goto tr80 + case 224: + goto st657 + case 237: + goto st659 + case 240: + goto st660 + case 244: + goto st662 + } + switch { + case ( m.data)[( m.p)] < 225: + switch { + case ( m.data)[( m.p)] > 193: + if 194 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 223 { + goto st656 + } + case ( m.data)[( m.p)] >= 128: + goto tr80 + } + case ( m.data)[( m.p)] > 239: + switch { + case ( m.data)[( m.p)] > 243: + if 245 <= ( m.data)[( m.p)] { + goto tr80 + } + case ( m.data)[( m.p)] >= 241: + goto st661 + } + default: + goto st658 + } + goto st653 +tr691: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + +//line rfc5424/machine.go.rl:143 + + if output.hasElements { + // (fixme) > what if SD-PARAM-NAME already exist for the current element (ie., current SD-ID)? + + // Store text + text := m.text() + + // Strip backslashes only when there are ... + if len(m.backslashat) > 0 { + text = common.RemoveBytes(text, m.backslashat, m.pb) + } + output.structuredData[m.currentelem][m.currentparam] = string(text) + } + + goto st654 +tr701: +//line rfc5424/machine.go.rl:143 + + if output.hasElements { + // (fixme) > what if SD-PARAM-NAME already exist for the current element (ie., current SD-ID)? + + // Store text + text := m.text() + + // Strip backslashes only when there are ... + if len(m.backslashat) > 0 { + text = common.RemoveBytes(text, m.backslashat, m.pb) + } + output.structuredData[m.currentelem][m.currentparam] = string(text) + } + + goto st654 + st654: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof654 + } + st_case_654: +//line rfc5424/machine.go:12101 + switch ( m.data)[( m.p)] { + case 32: + goto st618 + case 93: + goto st1207 + } + goto tr42 +tr655: +//line rfc5424/machine.go.rl:117 + + if _, ok := output.structuredData[string(m.text())]; ok { + // As per RFC5424 section 6.3.2 SD-ID MUST NOT exist more than once in a message + m.err = fmt.Errorf(ErrSdIDDuplicated + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + } else { + id := string(m.text()) + output.structuredData[id] = map[string]string{} + output.hasElements = true + m.currentelem = id + } + + goto st1207 + st1207: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1207 + } + st_case_1207: +//line rfc5424/machine.go:12131 + switch ( m.data)[( m.p)] { + case 32: + goto st1205 + case 91: + goto st616 + } + goto tr1237 +tr692: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + +//line rfc5424/machine.go.rl:135 + + m.backslashat = append(m.backslashat, m.p) + + goto st655 +tr702: +//line rfc5424/machine.go.rl:135 + + m.backslashat = append(m.backslashat, m.p) + + goto st655 + st655: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof655 + } + st_case_655: +//line rfc5424/machine.go:12160 + if ( m.data)[( m.p)] == 34 { + goto st653 + } + if 92 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 93 { + goto st653 + } + goto tr80 +tr693: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st656 + st656: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof656 + } + st_case_656: +//line rfc5424/machine.go:12179 + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { + goto st653 + } + goto tr42 +tr694: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st657 + st657: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof657 + } + st_case_657: +//line rfc5424/machine.go:12195 + if 160 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { + goto st656 + } + goto tr42 +tr695: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st658 + st658: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof658 + } + st_case_658: +//line rfc5424/machine.go:12211 + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { + goto st656 + } + goto tr42 +tr696: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st659 + st659: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof659 + } + st_case_659: +//line rfc5424/machine.go:12227 + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 159 { + goto st656 + } + goto tr42 +tr697: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st660 + st660: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof660 + } + st_case_660: +//line rfc5424/machine.go:12243 + if 144 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { + goto st658 + } + goto tr42 +tr698: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st661 + st661: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof661 + } + st_case_661: +//line rfc5424/machine.go:12259 + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { + goto st658 + } + goto tr42 +tr699: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st662 + st662: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof662 + } + st_case_662: +//line rfc5424/machine.go:12275 + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 143 { + goto st658 + } + goto tr42 + st663: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof663 + } + st_case_663: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st664 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st664 + } + case ( m.data)[( m.p)] >= 35: + goto st664 + } + goto tr38 + st664: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof664 + } + st_case_664: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st665 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st665 + } + case ( m.data)[( m.p)] >= 35: + goto st665 + } + goto tr38 + st665: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof665 + } + st_case_665: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st666 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st666 + } + case ( m.data)[( m.p)] >= 35: + goto st666 + } + goto tr38 + st666: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof666 + } + st_case_666: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st667 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st667 + } + case ( m.data)[( m.p)] >= 35: + goto st667 + } + goto tr38 + st667: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof667 + } + st_case_667: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st668 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st668 + } + case ( m.data)[( m.p)] >= 35: + goto st668 + } + goto tr38 + st668: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof668 + } + st_case_668: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st669 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st669 + } + case ( m.data)[( m.p)] >= 35: + goto st669 + } + goto tr38 + st669: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof669 + } + st_case_669: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st670 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st670 + } + case ( m.data)[( m.p)] >= 35: + goto st670 + } + goto tr38 + st670: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof670 + } + st_case_670: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st671 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st671 + } + case ( m.data)[( m.p)] >= 35: + goto st671 + } + goto tr38 + st671: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof671 + } + st_case_671: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st672 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st672 + } + case ( m.data)[( m.p)] >= 35: + goto st672 + } + goto tr38 + st672: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof672 + } + st_case_672: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st673 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st673 + } + case ( m.data)[( m.p)] >= 35: + goto st673 + } + goto tr38 + st673: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof673 + } + st_case_673: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st674 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st674 + } + case ( m.data)[( m.p)] >= 35: + goto st674 + } + goto tr38 + st674: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof674 + } + st_case_674: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st675 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st675 + } + case ( m.data)[( m.p)] >= 35: + goto st675 + } + goto tr38 + st675: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof675 + } + st_case_675: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st676 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st676 + } + case ( m.data)[( m.p)] >= 35: + goto st676 + } + goto tr38 + st676: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof676 + } + st_case_676: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st677 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st677 + } + case ( m.data)[( m.p)] >= 35: + goto st677 + } + goto tr38 + st677: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof677 + } + st_case_677: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st678 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st678 + } + case ( m.data)[( m.p)] >= 35: + goto st678 + } + goto tr38 + st678: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof678 + } + st_case_678: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st679 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st679 + } + case ( m.data)[( m.p)] >= 35: + goto st679 + } + goto tr38 + st679: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof679 + } + st_case_679: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st680 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st680 + } + case ( m.data)[( m.p)] >= 35: + goto st680 + } + goto tr38 + st680: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof680 + } + st_case_680: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st681 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st681 + } + case ( m.data)[( m.p)] >= 35: + goto st681 + } + goto tr38 + st681: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof681 + } + st_case_681: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st682 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st682 + } + case ( m.data)[( m.p)] >= 35: + goto st682 + } + goto tr38 + st682: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof682 + } + st_case_682: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st683 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st683 + } + case ( m.data)[( m.p)] >= 35: + goto st683 + } + goto tr38 + st683: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof683 + } + st_case_683: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st684 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st684 + } + case ( m.data)[( m.p)] >= 35: + goto st684 + } + goto tr38 + st684: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof684 + } + st_case_684: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st685 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st685 + } + case ( m.data)[( m.p)] >= 35: + goto st685 + } + goto tr38 + st685: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof685 + } + st_case_685: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st686 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st686 + } + case ( m.data)[( m.p)] >= 35: + goto st686 + } + goto tr38 + st686: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof686 + } + st_case_686: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st687 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st687 + } + case ( m.data)[( m.p)] >= 35: + goto st687 + } + goto tr38 + st687: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof687 + } + st_case_687: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st688 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st688 + } + case ( m.data)[( m.p)] >= 35: + goto st688 + } + goto tr38 + st688: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof688 + } + st_case_688: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st689 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st689 + } + case ( m.data)[( m.p)] >= 35: + goto st689 + } + goto tr38 + st689: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof689 + } + st_case_689: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st690 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st690 + } + case ( m.data)[( m.p)] >= 35: + goto st690 + } + goto tr38 + st690: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof690 + } + st_case_690: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st691 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st691 + } + case ( m.data)[( m.p)] >= 35: + goto st691 + } + goto tr38 + st691: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof691 + } + st_case_691: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st692 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st692 + } + case ( m.data)[( m.p)] >= 35: + goto st692 + } + goto tr38 + st692: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof692 + } + st_case_692: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 33: + goto st693 + case 93: + goto tr655 + } + switch { + case ( m.data)[( m.p)] > 60: + if 62 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st693 + } + case ( m.data)[( m.p)] >= 35: + goto st693 + } + goto tr38 + st693: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof693 + } + st_case_693: + switch ( m.data)[( m.p)] { + case 32: + goto tr653 + case 93: + goto tr655 + } + goto tr38 + st694: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof694 + } + st_case_694: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st695 + } + goto tr30 + st695: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof695 + } + st_case_695: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st696 + } + goto tr30 + st696: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof696 + } + st_case_696: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st697 + } + goto tr30 + st697: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof697 + } + st_case_697: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st698 + } + goto tr30 + st698: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof698 + } + st_case_698: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st699 + } + goto tr30 + st699: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof699 + } + st_case_699: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st700 + } + goto tr30 + st700: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof700 + } + st_case_700: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st701 + } + goto tr30 + st701: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof701 + } + st_case_701: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st702 + } + goto tr30 + st702: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof702 + } + st_case_702: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st703 + } + goto tr30 + st703: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof703 + } + st_case_703: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st704 + } + goto tr30 + st704: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof704 + } + st_case_704: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st705 + } + goto tr30 + st705: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof705 + } + st_case_705: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st706 + } + goto tr30 + st706: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof706 + } + st_case_706: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st707 + } + goto tr30 + st707: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof707 + } + st_case_707: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st708 + } + goto tr30 + st708: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof708 + } + st_case_708: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st709 + } + goto tr30 + st709: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof709 + } + st_case_709: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st710 + } + goto tr30 + st710: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof710 + } + st_case_710: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st711 + } + goto tr30 + st711: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof711 + } + st_case_711: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st712 + } + goto tr30 + st712: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof712 + } + st_case_712: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st713 + } + goto tr30 + st713: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof713 + } + st_case_713: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st714 + } + goto tr30 + st714: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof714 + } + st_case_714: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st715 + } + goto tr30 + st715: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof715 + } + st_case_715: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st716 + } + goto tr30 + st716: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof716 + } + st_case_716: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st717 + } + goto tr30 + st717: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof717 + } + st_case_717: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st718 + } + goto tr30 + st718: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof718 + } + st_case_718: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st719 + } + goto tr30 + st719: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof719 + } + st_case_719: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st720 + } + goto tr30 + st720: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof720 + } + st_case_720: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st721 + } + goto tr30 + st721: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof721 + } + st_case_721: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st722 + } + goto tr30 + st722: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof722 + } + st_case_722: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st723 + } + goto tr30 + st723: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof723 + } + st_case_723: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st724 + } + goto tr30 + st724: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof724 + } + st_case_724: + if ( m.data)[( m.p)] == 32 { + goto tr648 + } + goto tr30 + st725: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof725 + } + st_case_725: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st726 + } + goto tr24 + st726: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof726 + } + st_case_726: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st727 + } + goto tr24 + st727: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof727 + } + st_case_727: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st728 + } + goto tr24 + st728: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof728 + } + st_case_728: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st729 + } + goto tr24 + st729: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof729 + } + st_case_729: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st730 + } + goto tr24 + st730: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof730 + } + st_case_730: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st731 + } + goto tr24 + st731: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof731 + } + st_case_731: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st732 + } + goto tr24 + st732: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof732 + } + st_case_732: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st733 + } + goto tr24 + st733: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof733 + } + st_case_733: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st734 + } + goto tr24 + st734: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof734 + } + st_case_734: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st735 + } + goto tr24 + st735: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof735 + } + st_case_735: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st736 + } + goto tr24 + st736: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof736 + } + st_case_736: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st737 + } + goto tr24 + st737: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof737 + } + st_case_737: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st738 + } + goto tr24 + st738: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof738 + } + st_case_738: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st739 + } + goto tr24 + st739: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof739 + } + st_case_739: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st740 + } + goto tr24 + st740: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof740 + } + st_case_740: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st741 + } + goto tr24 + st741: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof741 + } + st_case_741: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st742 + } + goto tr24 + st742: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof742 + } + st_case_742: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st743 + } + goto tr24 + st743: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof743 + } + st_case_743: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st744 + } + goto tr24 + st744: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof744 + } + st_case_744: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st745 + } + goto tr24 + st745: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof745 + } + st_case_745: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st746 + } + goto tr24 + st746: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof746 + } + st_case_746: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st747 + } + goto tr24 + st747: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof747 + } + st_case_747: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st748 + } + goto tr24 + st748: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof748 + } + st_case_748: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st749 + } + goto tr24 + st749: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof749 + } + st_case_749: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st750 + } + goto tr24 + st750: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof750 + } + st_case_750: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st751 + } + goto tr24 + st751: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof751 + } + st_case_751: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st752 + } + goto tr24 + st752: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof752 + } + st_case_752: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st753 + } + goto tr24 + st753: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof753 + } + st_case_753: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st754 + } + goto tr24 + st754: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof754 + } + st_case_754: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st755 + } + goto tr24 + st755: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof755 + } + st_case_755: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st756 + } + goto tr24 + st756: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof756 + } + st_case_756: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st757 + } + goto tr24 + st757: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof757 + } + st_case_757: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st758 + } + goto tr24 + st758: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof758 + } + st_case_758: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st759 + } + goto tr24 + st759: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof759 + } + st_case_759: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st760 + } + goto tr24 + st760: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof760 + } + st_case_760: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st761 + } + goto tr24 + st761: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof761 + } + st_case_761: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st762 + } + goto tr24 + st762: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof762 + } + st_case_762: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st763 + } + goto tr24 + st763: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof763 + } + st_case_763: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st764 + } + goto tr24 + st764: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof764 + } + st_case_764: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st765 + } + goto tr24 + st765: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof765 + } + st_case_765: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st766 + } + goto tr24 + st766: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof766 + } + st_case_766: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st767 + } + goto tr24 + st767: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof767 + } + st_case_767: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st768 + } + goto tr24 + st768: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof768 + } + st_case_768: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st769 + } + goto tr24 + st769: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof769 + } + st_case_769: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st770 + } + goto tr24 + st770: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof770 + } + st_case_770: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st771 + } + goto tr24 + st771: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof771 + } + st_case_771: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st772 + } + goto tr24 + st772: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof772 + } + st_case_772: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st773 + } + goto tr24 + st773: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof773 + } + st_case_773: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st774 + } + goto tr24 + st774: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof774 + } + st_case_774: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st775 + } + goto tr24 + st775: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof775 + } + st_case_775: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st776 + } + goto tr24 + st776: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof776 + } + st_case_776: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st777 + } + goto tr24 + st777: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof777 + } + st_case_777: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st778 + } + goto tr24 + st778: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof778 + } + st_case_778: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st779 + } + goto tr24 + st779: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof779 + } + st_case_779: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st780 + } + goto tr24 + st780: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof780 + } + st_case_780: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st781 + } + goto tr24 + st781: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof781 + } + st_case_781: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st782 + } + goto tr24 + st782: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof782 + } + st_case_782: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st783 + } + goto tr24 + st783: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof783 + } + st_case_783: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st784 + } + goto tr24 + st784: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof784 + } + st_case_784: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st785 + } + goto tr24 + st785: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof785 + } + st_case_785: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st786 + } + goto tr24 + st786: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof786 + } + st_case_786: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st787 + } + goto tr24 + st787: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof787 + } + st_case_787: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st788 + } + goto tr24 + st788: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof788 + } + st_case_788: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st789 + } + goto tr24 + st789: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof789 + } + st_case_789: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st790 + } + goto tr24 + st790: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof790 + } + st_case_790: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st791 + } + goto tr24 + st791: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof791 + } + st_case_791: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st792 + } + goto tr24 + st792: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof792 + } + st_case_792: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st793 + } + goto tr24 + st793: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof793 + } + st_case_793: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st794 + } + goto tr24 + st794: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof794 + } + st_case_794: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st795 + } + goto tr24 + st795: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof795 + } + st_case_795: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st796 + } + goto tr24 + st796: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof796 + } + st_case_796: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st797 + } + goto tr24 + st797: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof797 + } + st_case_797: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st798 + } + goto tr24 + st798: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof798 + } + st_case_798: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st799 + } + goto tr24 + st799: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof799 + } + st_case_799: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st800 + } + goto tr24 + st800: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof800 + } + st_case_800: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st801 + } + goto tr24 + st801: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof801 + } + st_case_801: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st802 + } + goto tr24 + st802: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof802 + } + st_case_802: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st803 + } + goto tr24 + st803: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof803 + } + st_case_803: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st804 + } + goto tr24 + st804: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof804 + } + st_case_804: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st805 + } + goto tr24 + st805: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof805 + } + st_case_805: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st806 + } + goto tr24 + st806: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof806 + } + st_case_806: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st807 + } + goto tr24 + st807: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof807 + } + st_case_807: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st808 + } + goto tr24 + st808: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof808 + } + st_case_808: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st809 + } + goto tr24 + st809: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof809 + } + st_case_809: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st810 + } + goto tr24 + st810: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof810 + } + st_case_810: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st811 + } + goto tr24 + st811: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof811 + } + st_case_811: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st812 + } + goto tr24 + st812: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof812 + } + st_case_812: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st813 + } + goto tr24 + st813: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof813 + } + st_case_813: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st814 + } + goto tr24 + st814: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof814 + } + st_case_814: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st815 + } + goto tr24 + st815: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof815 + } + st_case_815: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st816 + } + goto tr24 + st816: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof816 + } + st_case_816: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st817 + } + goto tr24 + st817: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof817 + } + st_case_817: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st818 + } + goto tr24 + st818: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof818 + } + st_case_818: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st819 + } + goto tr24 + st819: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof819 + } + st_case_819: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st820 + } + goto tr24 + st820: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof820 + } + st_case_820: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st821 + } + goto tr24 + st821: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof821 + } + st_case_821: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st822 + } + goto tr24 + st822: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof822 + } + st_case_822: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st823 + } + goto tr24 + st823: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof823 + } + st_case_823: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st824 + } + goto tr24 + st824: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof824 + } + st_case_824: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st825 + } + goto tr24 + st825: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof825 + } + st_case_825: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st826 + } + goto tr24 + st826: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof826 + } + st_case_826: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st827 + } + goto tr24 + st827: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof827 + } + st_case_827: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st828 + } + goto tr24 + st828: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof828 + } + st_case_828: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st829 + } + goto tr24 + st829: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof829 + } + st_case_829: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st830 + } + goto tr24 + st830: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof830 + } + st_case_830: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st831 + } + goto tr24 + st831: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof831 + } + st_case_831: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st832 + } + goto tr24 + st832: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof832 + } + st_case_832: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st833 + } + goto tr24 + st833: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof833 + } + st_case_833: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st834 + } + goto tr24 + st834: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof834 + } + st_case_834: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st835 + } + goto tr24 + st835: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof835 + } + st_case_835: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st836 + } + goto tr24 + st836: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof836 + } + st_case_836: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st837 + } + goto tr24 + st837: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof837 + } + st_case_837: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st838 + } + goto tr24 + st838: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof838 + } + st_case_838: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st839 + } + goto tr24 + st839: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof839 + } + st_case_839: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st840 + } + goto tr24 + st840: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof840 + } + st_case_840: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st841 + } + goto tr24 + st841: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof841 + } + st_case_841: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st842 + } + goto tr24 + st842: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof842 + } + st_case_842: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st843 + } + goto tr24 + st843: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof843 + } + st_case_843: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st844 + } + goto tr24 + st844: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof844 + } + st_case_844: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st845 + } + goto tr24 + st845: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof845 + } + st_case_845: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st846 + } + goto tr24 + st846: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof846 + } + st_case_846: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st847 + } + goto tr24 + st847: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof847 + } + st_case_847: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st848 + } + goto tr24 + st848: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof848 + } + st_case_848: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st849 + } + goto tr24 + st849: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof849 + } + st_case_849: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st850 + } + goto tr24 + st850: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof850 + } + st_case_850: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st851 + } + goto tr24 + st851: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof851 + } + st_case_851: + if ( m.data)[( m.p)] == 32 { + goto tr645 + } + goto tr24 + st852: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof852 + } + st_case_852: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st853 + } + goto tr20 + st853: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof853 + } + st_case_853: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st854 + } + goto tr20 + st854: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof854 + } + st_case_854: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st855 + } + goto tr20 + st855: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof855 + } + st_case_855: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st856 + } + goto tr20 + st856: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof856 + } + st_case_856: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st857 + } + goto tr20 + st857: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof857 + } + st_case_857: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st858 + } + goto tr20 + st858: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof858 + } + st_case_858: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st859 + } + goto tr20 + st859: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof859 + } + st_case_859: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st860 + } + goto tr20 + st860: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof860 + } + st_case_860: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st861 + } + goto tr20 + st861: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof861 + } + st_case_861: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st862 + } + goto tr20 + st862: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof862 + } + st_case_862: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st863 + } + goto tr20 + st863: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof863 + } + st_case_863: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st864 + } + goto tr20 + st864: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof864 + } + st_case_864: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st865 + } + goto tr20 + st865: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof865 + } + st_case_865: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st866 + } + goto tr20 + st866: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof866 + } + st_case_866: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st867 + } + goto tr20 + st867: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof867 + } + st_case_867: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st868 + } + goto tr20 + st868: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof868 + } + st_case_868: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st869 + } + goto tr20 + st869: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof869 + } + st_case_869: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st870 + } + goto tr20 + st870: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof870 + } + st_case_870: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st871 + } + goto tr20 + st871: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof871 + } + st_case_871: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st872 + } + goto tr20 + st872: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof872 + } + st_case_872: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st873 + } + goto tr20 + st873: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof873 + } + st_case_873: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st874 + } + goto tr20 + st874: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof874 + } + st_case_874: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st875 + } + goto tr20 + st875: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof875 + } + st_case_875: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st876 + } + goto tr20 + st876: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof876 + } + st_case_876: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st877 + } + goto tr20 + st877: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof877 + } + st_case_877: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st878 + } + goto tr20 + st878: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof878 + } + st_case_878: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st879 + } + goto tr20 + st879: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof879 + } + st_case_879: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st880 + } + goto tr20 + st880: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof880 + } + st_case_880: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st881 + } + goto tr20 + st881: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof881 + } + st_case_881: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st882 + } + goto tr20 + st882: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof882 + } + st_case_882: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st883 + } + goto tr20 + st883: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof883 + } + st_case_883: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st884 + } + goto tr20 + st884: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof884 + } + st_case_884: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st885 + } + goto tr20 + st885: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof885 + } + st_case_885: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st886 + } + goto tr20 + st886: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof886 + } + st_case_886: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st887 + } + goto tr20 + st887: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof887 + } + st_case_887: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st888 + } + goto tr20 + st888: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof888 + } + st_case_888: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st889 + } + goto tr20 + st889: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof889 + } + st_case_889: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st890 + } + goto tr20 + st890: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof890 + } + st_case_890: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st891 + } + goto tr20 + st891: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof891 + } + st_case_891: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st892 + } + goto tr20 + st892: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof892 + } + st_case_892: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st893 + } + goto tr20 + st893: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof893 + } + st_case_893: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st894 + } + goto tr20 + st894: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof894 + } + st_case_894: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st895 + } + goto tr20 + st895: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof895 + } + st_case_895: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st896 + } + goto tr20 + st896: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof896 + } + st_case_896: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st897 + } + goto tr20 + st897: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof897 + } + st_case_897: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st898 + } + goto tr20 + st898: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof898 + } + st_case_898: + if ( m.data)[( m.p)] == 32 { + goto tr642 + } + goto tr20 + st899: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof899 + } + st_case_899: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st900 + } + goto tr16 + st900: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof900 + } + st_case_900: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st901 + } + goto tr16 + st901: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof901 + } + st_case_901: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st902 + } + goto tr16 + st902: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof902 + } + st_case_902: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st903 + } + goto tr16 + st903: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof903 + } + st_case_903: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st904 + } + goto tr16 + st904: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof904 + } + st_case_904: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st905 + } + goto tr16 + st905: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof905 + } + st_case_905: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st906 + } + goto tr16 + st906: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof906 + } + st_case_906: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st907 + } + goto tr16 + st907: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof907 + } + st_case_907: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st908 + } + goto tr16 + st908: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof908 + } + st_case_908: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st909 + } + goto tr16 + st909: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof909 + } + st_case_909: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st910 + } + goto tr16 + st910: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof910 + } + st_case_910: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st911 + } + goto tr16 + st911: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof911 + } + st_case_911: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st912 + } + goto tr16 + st912: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof912 + } + st_case_912: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st913 + } + goto tr16 + st913: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof913 + } + st_case_913: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st914 + } + goto tr16 + st914: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof914 + } + st_case_914: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st915 + } + goto tr16 + st915: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof915 + } + st_case_915: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st916 + } + goto tr16 + st916: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof916 + } + st_case_916: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st917 + } + goto tr16 + st917: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof917 + } + st_case_917: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st918 + } + goto tr16 + st918: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof918 + } + st_case_918: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st919 + } + goto tr16 + st919: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof919 + } + st_case_919: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st920 + } + goto tr16 + st920: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof920 + } + st_case_920: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st921 + } + goto tr16 + st921: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof921 + } + st_case_921: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st922 + } + goto tr16 + st922: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof922 + } + st_case_922: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st923 + } + goto tr16 + st923: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof923 + } + st_case_923: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st924 + } + goto tr16 + st924: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof924 + } + st_case_924: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st925 + } + goto tr16 + st925: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof925 + } + st_case_925: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st926 + } + goto tr16 + st926: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof926 + } + st_case_926: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st927 + } + goto tr16 + st927: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof927 + } + st_case_927: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st928 + } + goto tr16 + st928: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof928 + } + st_case_928: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st929 + } + goto tr16 + st929: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof929 + } + st_case_929: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st930 + } + goto tr16 + st930: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof930 + } + st_case_930: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st931 + } + goto tr16 + st931: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof931 + } + st_case_931: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st932 + } + goto tr16 + st932: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof932 + } + st_case_932: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st933 + } + goto tr16 + st933: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof933 + } + st_case_933: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st934 + } + goto tr16 + st934: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof934 + } + st_case_934: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st935 + } + goto tr16 + st935: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof935 + } + st_case_935: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st936 + } + goto tr16 + st936: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof936 + } + st_case_936: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st937 + } + goto tr16 + st937: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof937 + } + st_case_937: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st938 + } + goto tr16 + st938: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof938 + } + st_case_938: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st939 + } + goto tr16 + st939: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof939 + } + st_case_939: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st940 + } + goto tr16 + st940: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof940 + } + st_case_940: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st941 + } + goto tr16 + st941: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof941 + } + st_case_941: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st942 + } + goto tr16 + st942: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof942 + } + st_case_942: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st943 + } + goto tr16 + st943: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof943 + } + st_case_943: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st944 + } + goto tr16 + st944: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof944 + } + st_case_944: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st945 + } + goto tr16 + st945: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof945 + } + st_case_945: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st946 + } + goto tr16 + st946: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof946 + } + st_case_946: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st947 + } + goto tr16 + st947: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof947 + } + st_case_947: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st948 + } + goto tr16 + st948: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof948 + } + st_case_948: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st949 + } + goto tr16 + st949: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof949 + } + st_case_949: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st950 + } + goto tr16 + st950: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof950 + } + st_case_950: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st951 + } + goto tr16 + st951: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof951 + } + st_case_951: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st952 + } + goto tr16 + st952: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof952 + } + st_case_952: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st953 + } + goto tr16 + st953: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof953 + } + st_case_953: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st954 + } + goto tr16 + st954: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof954 + } + st_case_954: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st955 + } + goto tr16 + st955: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof955 + } + st_case_955: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st956 + } + goto tr16 + st956: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof956 + } + st_case_956: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st957 + } + goto tr16 + st957: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof957 + } + st_case_957: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st958 + } + goto tr16 + st958: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof958 + } + st_case_958: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st959 + } + goto tr16 + st959: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof959 + } + st_case_959: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st960 + } + goto tr16 + st960: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof960 + } + st_case_960: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st961 + } + goto tr16 + st961: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof961 + } + st_case_961: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st962 + } + goto tr16 + st962: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof962 + } + st_case_962: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st963 + } + goto tr16 + st963: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof963 + } + st_case_963: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st964 + } + goto tr16 + st964: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof964 + } + st_case_964: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st965 + } + goto tr16 + st965: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof965 + } + st_case_965: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st966 + } + goto tr16 + st966: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof966 + } + st_case_966: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st967 + } + goto tr16 + st967: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof967 + } + st_case_967: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st968 + } + goto tr16 + st968: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof968 + } + st_case_968: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st969 + } + goto tr16 + st969: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof969 + } + st_case_969: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st970 + } + goto tr16 + st970: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof970 + } + st_case_970: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st971 + } + goto tr16 + st971: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof971 + } + st_case_971: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st972 + } + goto tr16 + st972: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof972 + } + st_case_972: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st973 + } + goto tr16 + st973: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof973 + } + st_case_973: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st974 + } + goto tr16 + st974: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof974 + } + st_case_974: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st975 + } + goto tr16 + st975: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof975 + } + st_case_975: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st976 + } + goto tr16 + st976: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof976 + } + st_case_976: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st977 + } + goto tr16 + st977: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof977 + } + st_case_977: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st978 + } + goto tr16 + st978: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof978 + } + st_case_978: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st979 + } + goto tr16 + st979: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof979 + } + st_case_979: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st980 + } + goto tr16 + st980: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof980 + } + st_case_980: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st981 + } + goto tr16 + st981: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof981 + } + st_case_981: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st982 + } + goto tr16 + st982: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof982 + } + st_case_982: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st983 + } + goto tr16 + st983: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof983 + } + st_case_983: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st984 + } + goto tr16 + st984: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof984 + } + st_case_984: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st985 + } + goto tr16 + st985: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof985 + } + st_case_985: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st986 + } + goto tr16 + st986: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof986 + } + st_case_986: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st987 + } + goto tr16 + st987: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof987 + } + st_case_987: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st988 + } + goto tr16 + st988: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof988 + } + st_case_988: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st989 + } + goto tr16 + st989: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof989 + } + st_case_989: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st990 + } + goto tr16 + st990: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof990 + } + st_case_990: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st991 + } + goto tr16 + st991: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof991 + } + st_case_991: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st992 + } + goto tr16 + st992: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof992 + } + st_case_992: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st993 + } + goto tr16 + st993: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof993 + } + st_case_993: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st994 + } + goto tr16 + st994: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof994 + } + st_case_994: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st995 + } + goto tr16 + st995: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof995 + } + st_case_995: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st996 + } + goto tr16 + st996: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof996 + } + st_case_996: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st997 + } + goto tr16 + st997: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof997 + } + st_case_997: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st998 + } + goto tr16 + st998: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof998 + } + st_case_998: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st999 + } + goto tr16 + st999: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof999 + } + st_case_999: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1000 + } + goto tr16 + st1000: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1000 + } + st_case_1000: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1001 + } + goto tr16 + st1001: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1001 + } + st_case_1001: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1002 + } + goto tr16 + st1002: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1002 + } + st_case_1002: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1003 + } + goto tr16 + st1003: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1003 + } + st_case_1003: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1004 + } + goto tr16 + st1004: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1004 + } + st_case_1004: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1005 + } + goto tr16 + st1005: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1005 + } + st_case_1005: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1006 + } + goto tr16 + st1006: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1006 + } + st_case_1006: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1007 + } + goto tr16 + st1007: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1007 + } + st_case_1007: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1008 + } + goto tr16 + st1008: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1008 + } + st_case_1008: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1009 + } + goto tr16 + st1009: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1009 + } + st_case_1009: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1010 + } + goto tr16 + st1010: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1010 + } + st_case_1010: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1011 + } + goto tr16 + st1011: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1011 + } + st_case_1011: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1012 + } + goto tr16 + st1012: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1012 + } + st_case_1012: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1013 + } + goto tr16 + st1013: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1013 + } + st_case_1013: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1014 + } + goto tr16 + st1014: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1014 + } + st_case_1014: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1015 + } + goto tr16 + st1015: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1015 + } + st_case_1015: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1016 + } + goto tr16 + st1016: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1016 + } + st_case_1016: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1017 + } + goto tr16 + st1017: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1017 + } + st_case_1017: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1018 + } + goto tr16 + st1018: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1018 + } + st_case_1018: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1019 + } + goto tr16 + st1019: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1019 + } + st_case_1019: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1020 + } + goto tr16 + st1020: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1020 + } + st_case_1020: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1021 + } + goto tr16 + st1021: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1021 + } + st_case_1021: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1022 + } + goto tr16 + st1022: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1022 + } + st_case_1022: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1023 + } + goto tr16 + st1023: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1023 + } + st_case_1023: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1024 + } + goto tr16 + st1024: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1024 + } + st_case_1024: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1025 + } + goto tr16 + st1025: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1025 + } + st_case_1025: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1026 + } + goto tr16 + st1026: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1026 + } + st_case_1026: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1027 + } + goto tr16 + st1027: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1027 + } + st_case_1027: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1028 + } + goto tr16 + st1028: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1028 + } + st_case_1028: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1029 + } + goto tr16 + st1029: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1029 + } + st_case_1029: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1030 + } + goto tr16 + st1030: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1030 + } + st_case_1030: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1031 + } + goto tr16 + st1031: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1031 + } + st_case_1031: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1032 + } + goto tr16 + st1032: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1032 + } + st_case_1032: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1033 + } + goto tr16 + st1033: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1033 + } + st_case_1033: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1034 + } + goto tr16 + st1034: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1034 + } + st_case_1034: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1035 + } + goto tr16 + st1035: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1035 + } + st_case_1035: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1036 + } + goto tr16 + st1036: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1036 + } + st_case_1036: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1037 + } + goto tr16 + st1037: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1037 + } + st_case_1037: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1038 + } + goto tr16 + st1038: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1038 + } + st_case_1038: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1039 + } + goto tr16 + st1039: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1039 + } + st_case_1039: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1040 + } + goto tr16 + st1040: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1040 + } + st_case_1040: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1041 + } + goto tr16 + st1041: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1041 + } + st_case_1041: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1042 + } + goto tr16 + st1042: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1042 + } + st_case_1042: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1043 + } + goto tr16 + st1043: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1043 + } + st_case_1043: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1044 + } + goto tr16 + st1044: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1044 + } + st_case_1044: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1045 + } + goto tr16 + st1045: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1045 + } + st_case_1045: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1046 + } + goto tr16 + st1046: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1046 + } + st_case_1046: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1047 + } + goto tr16 + st1047: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1047 + } + st_case_1047: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1048 + } + goto tr16 + st1048: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1048 + } + st_case_1048: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1049 + } + goto tr16 + st1049: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1049 + } + st_case_1049: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1050 + } + goto tr16 + st1050: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1050 + } + st_case_1050: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1051 + } + goto tr16 + st1051: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1051 + } + st_case_1051: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1052 + } + goto tr16 + st1052: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1052 + } + st_case_1052: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1053 + } + goto tr16 + st1053: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1053 + } + st_case_1053: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1054 + } + goto tr16 + st1054: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1054 + } + st_case_1054: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1055 + } + goto tr16 + st1055: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1055 + } + st_case_1055: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1056 + } + goto tr16 + st1056: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1056 + } + st_case_1056: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1057 + } + goto tr16 + st1057: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1057 + } + st_case_1057: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1058 + } + goto tr16 + st1058: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1058 + } + st_case_1058: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1059 + } + goto tr16 + st1059: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1059 + } + st_case_1059: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1060 + } + goto tr16 + st1060: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1060 + } + st_case_1060: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1061 + } + goto tr16 + st1061: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1061 + } + st_case_1061: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1062 + } + goto tr16 + st1062: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1062 + } + st_case_1062: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1063 + } + goto tr16 + st1063: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1063 + } + st_case_1063: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1064 + } + goto tr16 + st1064: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1064 + } + st_case_1064: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1065 + } + goto tr16 + st1065: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1065 + } + st_case_1065: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1066 + } + goto tr16 + st1066: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1066 + } + st_case_1066: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1067 + } + goto tr16 + st1067: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1067 + } + st_case_1067: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1068 + } + goto tr16 + st1068: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1068 + } + st_case_1068: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1069 + } + goto tr16 + st1069: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1069 + } + st_case_1069: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1070 + } + goto tr16 + st1070: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1070 + } + st_case_1070: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1071 + } + goto tr16 + st1071: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1071 + } + st_case_1071: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1072 + } + goto tr16 + st1072: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1072 + } + st_case_1072: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1073 + } + goto tr16 + st1073: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1073 + } + st_case_1073: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1074 + } + goto tr16 + st1074: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1074 + } + st_case_1074: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1075 + } + goto tr16 + st1075: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1075 + } + st_case_1075: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1076 + } + goto tr16 + st1076: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1076 + } + st_case_1076: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1077 + } + goto tr16 + st1077: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1077 + } + st_case_1077: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1078 + } + goto tr16 + st1078: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1078 + } + st_case_1078: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1079 + } + goto tr16 + st1079: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1079 + } + st_case_1079: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1080 + } + goto tr16 + st1080: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1080 + } + st_case_1080: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1081 + } + goto tr16 + st1081: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1081 + } + st_case_1081: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1082 + } + goto tr16 + st1082: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1082 + } + st_case_1082: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1083 + } + goto tr16 + st1083: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1083 + } + st_case_1083: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1084 + } + goto tr16 + st1084: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1084 + } + st_case_1084: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1085 + } + goto tr16 + st1085: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1085 + } + st_case_1085: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1086 + } + goto tr16 + st1086: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1086 + } + st_case_1086: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1087 + } + goto tr16 + st1087: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1087 + } + st_case_1087: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1088 + } + goto tr16 + st1088: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1088 + } + st_case_1088: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1089 + } + goto tr16 + st1089: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1089 + } + st_case_1089: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1090 + } + goto tr16 + st1090: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1090 + } + st_case_1090: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1091 + } + goto tr16 + st1091: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1091 + } + st_case_1091: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1092 + } + goto tr16 + st1092: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1092 + } + st_case_1092: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1093 + } + goto tr16 + st1093: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1093 + } + st_case_1093: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1094 + } + goto tr16 + st1094: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1094 + } + st_case_1094: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1095 + } + goto tr16 + st1095: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1095 + } + st_case_1095: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1096 + } + goto tr16 + st1096: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1096 + } + st_case_1096: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1097 + } + goto tr16 + st1097: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1097 + } + st_case_1097: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1098 + } + goto tr16 + st1098: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1098 + } + st_case_1098: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1099 + } + goto tr16 + st1099: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1099 + } + st_case_1099: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1100 + } + goto tr16 + st1100: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1100 + } + st_case_1100: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1101 + } + goto tr16 + st1101: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1101 + } + st_case_1101: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1102 + } + goto tr16 + st1102: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1102 + } + st_case_1102: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1103 + } + goto tr16 + st1103: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1103 + } + st_case_1103: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1104 + } + goto tr16 + st1104: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1104 + } + st_case_1104: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1105 + } + goto tr16 + st1105: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1105 + } + st_case_1105: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1106 + } + goto tr16 + st1106: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1106 + } + st_case_1106: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1107 + } + goto tr16 + st1107: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1107 + } + st_case_1107: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1108 + } + goto tr16 + st1108: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1108 + } + st_case_1108: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1109 + } + goto tr16 + st1109: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1109 + } + st_case_1109: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1110 + } + goto tr16 + st1110: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1110 + } + st_case_1110: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1111 + } + goto tr16 + st1111: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1111 + } + st_case_1111: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1112 + } + goto tr16 + st1112: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1112 + } + st_case_1112: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1113 + } + goto tr16 + st1113: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1113 + } + st_case_1113: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1114 + } + goto tr16 + st1114: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1114 + } + st_case_1114: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1115 + } + goto tr16 + st1115: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1115 + } + st_case_1115: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1116 + } + goto tr16 + st1116: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1116 + } + st_case_1116: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1117 + } + goto tr16 + st1117: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1117 + } + st_case_1117: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1118 + } + goto tr16 + st1118: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1118 + } + st_case_1118: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1119 + } + goto tr16 + st1119: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1119 + } + st_case_1119: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1120 + } + goto tr16 + st1120: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1120 + } + st_case_1120: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1121 + } + goto tr16 + st1121: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1121 + } + st_case_1121: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1122 + } + goto tr16 + st1122: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1122 + } + st_case_1122: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1123 + } + goto tr16 + st1123: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1123 + } + st_case_1123: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1124 + } + goto tr16 + st1124: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1124 + } + st_case_1124: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1125 + } + goto tr16 + st1125: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1125 + } + st_case_1125: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1126 + } + goto tr16 + st1126: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1126 + } + st_case_1126: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1127 + } + goto tr16 + st1127: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1127 + } + st_case_1127: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1128 + } + goto tr16 + st1128: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1128 + } + st_case_1128: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1129 + } + goto tr16 + st1129: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1129 + } + st_case_1129: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1130 + } + goto tr16 + st1130: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1130 + } + st_case_1130: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1131 + } + goto tr16 + st1131: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1131 + } + st_case_1131: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1132 + } + goto tr16 + st1132: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1132 + } + st_case_1132: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1133 + } + goto tr16 + st1133: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1133 + } + st_case_1133: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1134 + } + goto tr16 + st1134: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1134 + } + st_case_1134: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1135 + } + goto tr16 + st1135: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1135 + } + st_case_1135: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1136 + } + goto tr16 + st1136: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1136 + } + st_case_1136: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1137 + } + goto tr16 + st1137: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1137 + } + st_case_1137: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1138 + } + goto tr16 + st1138: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1138 + } + st_case_1138: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1139 + } + goto tr16 + st1139: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1139 + } + st_case_1139: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1140 + } + goto tr16 + st1140: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1140 + } + st_case_1140: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1141 + } + goto tr16 + st1141: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1141 + } + st_case_1141: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1142 + } + goto tr16 + st1142: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1142 + } + st_case_1142: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1143 + } + goto tr16 + st1143: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1143 + } + st_case_1143: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1144 + } + goto tr16 + st1144: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1144 + } + st_case_1144: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1145 + } + goto tr16 + st1145: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1145 + } + st_case_1145: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1146 + } + goto tr16 + st1146: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1146 + } + st_case_1146: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1147 + } + goto tr16 + st1147: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1147 + } + st_case_1147: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1148 + } + goto tr16 + st1148: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1148 + } + st_case_1148: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1149 + } + goto tr16 + st1149: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1149 + } + st_case_1149: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1150 + } + goto tr16 + st1150: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1150 + } + st_case_1150: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1151 + } + goto tr16 + st1151: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1151 + } + st_case_1151: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + if 33 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 126 { + goto st1152 + } + goto tr16 + st1152: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1152 + } + st_case_1152: + if ( m.data)[( m.p)] == 32 { + goto tr639 + } + goto tr16 +tr636: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + + goto st1153 + st1153: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1153 + } + st_case_1153: +//line rfc5424/machine.go:18459 + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1154 + } + goto tr12 + st1154: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1154 + } + st_case_1154: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1155 + } + goto tr12 + st1155: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1155 + } + st_case_1155: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1156 + } + goto tr12 + st1156: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1156 + } + st_case_1156: + if ( m.data)[( m.p)] == 45 { + goto st1157 + } + goto tr12 + st1157: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1157 + } + st_case_1157: + switch ( m.data)[( m.p)] { + case 48: + goto st1158 + case 49: + goto st1189 + } + goto tr12 + st1158: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1158 + } + st_case_1158: + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1159 + } + goto tr12 + st1159: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1159 + } + st_case_1159: + if ( m.data)[( m.p)] == 45 { + goto st1160 + } + goto tr12 + st1160: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1160 + } + st_case_1160: + switch ( m.data)[( m.p)] { + case 48: + goto st1161 + case 51: + goto st1188 + } + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { + goto st1187 + } + goto tr12 + st1161: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1161 + } + st_case_1161: + if 49 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1162 + } + goto tr12 + st1162: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1162 + } + st_case_1162: + if ( m.data)[( m.p)] == 84 { + goto st1163 + } + goto tr12 + st1163: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1163 + } + st_case_1163: + if ( m.data)[( m.p)] == 50 { + goto st1186 + } + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { + goto st1164 + } + goto tr12 + st1164: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1164 + } + st_case_1164: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1165 + } + goto tr12 + st1165: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1165 + } + st_case_1165: + if ( m.data)[( m.p)] == 58 { + goto st1166 + } + goto tr12 + st1166: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1166 + } + st_case_1166: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { + goto st1167 + } + goto tr12 + st1167: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1167 + } + st_case_1167: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1168 + } + goto tr12 + st1168: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1168 + } + st_case_1168: + if ( m.data)[( m.p)] == 58 { + goto st1169 + } + goto tr12 + st1169: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1169 + } + st_case_1169: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { + goto st1170 + } + goto tr12 + st1170: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1170 + } + st_case_1170: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1171 + } + goto tr12 + st1171: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1171 + } + st_case_1171: + switch ( m.data)[( m.p)] { + case 43: + goto st1172 + case 45: + goto st1172 + case 46: + goto st1179 + case 90: + goto st1177 + } + goto tr12 + st1172: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1172 + } + st_case_1172: + if ( m.data)[( m.p)] == 50 { + goto st1178 + } + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { + goto st1173 + } + goto tr12 + st1173: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1173 + } + st_case_1173: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1174 + } + goto tr12 + st1174: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1174 + } + st_case_1174: + if ( m.data)[( m.p)] == 58 { + goto st1175 + } + goto tr12 + st1175: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1175 + } + st_case_1175: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 53 { + goto st1176 + } + goto tr12 + st1176: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1176 + } + st_case_1176: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1177 + } + goto tr12 + st1177: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1177 + } + st_case_1177: + if ( m.data)[( m.p)] == 32 { + goto tr1227 + } + goto tr615 + st1178: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1178 + } + st_case_1178: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { + goto st1174 + } + goto tr12 + st1179: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1179 + } + st_case_1179: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1180 + } + goto tr12 + st1180: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1180 + } + st_case_1180: + switch ( m.data)[( m.p)] { + case 43: + goto st1172 + case 45: + goto st1172 + case 90: + goto st1177 + } + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1181 + } + goto tr12 + st1181: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1181 + } + st_case_1181: + switch ( m.data)[( m.p)] { + case 43: + goto st1172 + case 45: + goto st1172 + case 90: + goto st1177 + } + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1182 + } + goto tr12 + st1182: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1182 + } + st_case_1182: + switch ( m.data)[( m.p)] { + case 43: + goto st1172 + case 45: + goto st1172 + case 90: + goto st1177 + } + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1183 + } + goto tr12 + st1183: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1183 + } + st_case_1183: + switch ( m.data)[( m.p)] { + case 43: + goto st1172 + case 45: + goto st1172 + case 90: + goto st1177 + } + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1184 + } + goto tr12 + st1184: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1184 + } + st_case_1184: + switch ( m.data)[( m.p)] { + case 43: + goto st1172 + case 45: + goto st1172 + case 90: + goto st1177 + } + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1185 + } + goto tr12 + st1185: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1185 + } + st_case_1185: + switch ( m.data)[( m.p)] { + case 43: + goto st1172 + case 45: + goto st1172 + case 90: + goto st1177 + } + goto tr12 + st1186: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1186 + } + st_case_1186: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 51 { + goto st1165 + } + goto tr12 + st1187: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1187 + } + st_case_1187: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1162 + } + goto tr12 + st1188: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1188 + } + st_case_1188: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 49 { + goto st1162 + } + goto tr12 + st1189: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1189 + } + st_case_1189: + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 50 { + goto st1159 + } + goto tr12 + st1190: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1190 + } + st_case_1190: +//line rfc5424/machine.go.rl:82 - if m.compliantMsg { - m.err = fmt.Errorf(ErrMsgNotCompliant+ColumnPositionTemplate, m.p) - } else { - m.err = fmt.Errorf(ErrMsg+ColumnPositionTemplate, m.p) - } + output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + +//line rfc5424/machine.go:18864 + if ( m.data)[( m.p)] == 32 { + goto st605 + } + if 48 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 57 { + goto st1191 + } + goto tr623 + st1191: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1191 + } + st_case_1191: +//line rfc5424/machine.go.rl:82 - (m.p)-- + output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - { - goto st614 - } +//line rfc5424/machine.go:18881 + if ( m.data)[( m.p)] == 32 { + goto st605 + } + goto tr623 + st1196: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1196 + } + st_case_1196: + goto tr1239 +tr1239: +//line rfc5424/machine.go.rl:60 - case 7: + m.pb = m.p - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- +//line rfc5424/machine.go.rl:64 - { - goto st614 - } + m.msgat = m.p - case 5: + goto st1197 + st1197: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1197 + } + st_case_1197: +//line rfc5424/machine.go:18907 + goto st1197 + st1198: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1198 + } + st_case_1198: + if ( m.data)[( m.p)] == 239 { + goto tr1242 + } + goto tr1241 +tr1241: +//line rfc5424/machine.go.rl:60 - output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + m.pb = m.p - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- +//line rfc5424/machine.go.rl:64 - { - goto st614 - } + m.msgat = m.p - case 578: + goto st1199 + st1199: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1199 + } + st_case_1199: +//line rfc5424/machine.go:18933 + goto st1199 +tr1242: +//line rfc5424/machine.go.rl:60 - if t, e := time.Parse(RFC3339MICRO, string(m.text())); e != nil { - m.err = fmt.Errorf("%s [col %d]", e, m.p) - (m.p)-- + m.pb = m.p - { - goto st614 - } - } else { - output.timestamp = t - output.timestampSet = true - } +//line rfc5424/machine.go.rl:64 - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + m.msgat = m.p - { - goto st614 + goto st1200 + st1200: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1200 + } + st_case_1200: +//line rfc5424/machine.go:18950 + if ( m.data)[( m.p)] == 187 { + goto st1201 + } + goto st1199 + st1201: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1201 + } + st_case_1201: + if ( m.data)[( m.p)] == 191 { + goto st1202 + } + goto st1199 + st1202: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1202 + } + st_case_1202: + switch ( m.data)[( m.p)] { + case 224: + goto st597 + case 237: + goto st599 + case 240: + goto st600 + case 244: + goto st602 + } + switch { + case ( m.data)[( m.p)] < 225: + switch { + case ( m.data)[( m.p)] > 193: + if 194 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 223 { + goto st596 + } + case ( m.data)[( m.p)] >= 128: + goto tr628 + } + case ( m.data)[( m.p)] > 239: + switch { + case ( m.data)[( m.p)] > 243: + if 245 <= ( m.data)[( m.p)] { + goto tr628 } + case ( m.data)[( m.p)] >= 241: + goto st601 + } + default: + goto st598 + } + goto st1202 + st596: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof596 + } + st_case_596: + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { + goto st1202 + } + goto tr628 + st597: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof597 + } + st_case_597: + if 160 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { + goto st596 + } + goto tr628 + st598: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof598 + } + st_case_598: + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { + goto st596 + } + goto tr628 + st599: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof599 + } + st_case_599: + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 159 { + goto st596 + } + goto tr628 + st600: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof600 + } + st_case_600: + if 144 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { + goto st598 + } + goto tr628 + st601: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof601 + } + st_case_601: + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 191 { + goto st598 + } + goto tr628 + st602: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof602 + } + st_case_602: + if 128 <= ( m.data)[( m.p)] && ( m.data)[( m.p)] <= 143 { + goto st598 + } + goto tr628 + st1203: + if ( m.p)++; ( m.p) == ( m.pe) { + goto _test_eof1203 + } + st_case_1203: + switch ( m.data)[( m.p)] { + case 10: + goto st0 + case 13: + goto st0 + } + goto st1203 + st_out: + _test_eof2: m.cs = 2; goto _test_eof + _test_eof3: m.cs = 3; goto _test_eof + _test_eof4: m.cs = 4; goto _test_eof + _test_eof5: m.cs = 5; goto _test_eof + _test_eof6: m.cs = 6; goto _test_eof + _test_eof7: m.cs = 7; goto _test_eof + _test_eof8: m.cs = 8; goto _test_eof + _test_eof9: m.cs = 9; goto _test_eof + _test_eof10: m.cs = 10; goto _test_eof + _test_eof11: m.cs = 11; goto _test_eof + _test_eof12: m.cs = 12; goto _test_eof + _test_eof13: m.cs = 13; goto _test_eof + _test_eof14: m.cs = 14; goto _test_eof + _test_eof15: m.cs = 15; goto _test_eof + _test_eof16: m.cs = 16; goto _test_eof + _test_eof1192: m.cs = 1192; goto _test_eof + _test_eof1193: m.cs = 1193; goto _test_eof + _test_eof1194: m.cs = 1194; goto _test_eof + _test_eof17: m.cs = 17; goto _test_eof + _test_eof18: m.cs = 18; goto _test_eof + _test_eof19: m.cs = 19; goto _test_eof + _test_eof20: m.cs = 20; goto _test_eof + _test_eof21: m.cs = 21; goto _test_eof + _test_eof22: m.cs = 22; goto _test_eof + _test_eof23: m.cs = 23; goto _test_eof + _test_eof24: m.cs = 24; goto _test_eof + _test_eof25: m.cs = 25; goto _test_eof + _test_eof26: m.cs = 26; goto _test_eof + _test_eof27: m.cs = 27; goto _test_eof + _test_eof28: m.cs = 28; goto _test_eof + _test_eof29: m.cs = 29; goto _test_eof + _test_eof30: m.cs = 30; goto _test_eof + _test_eof31: m.cs = 31; goto _test_eof + _test_eof32: m.cs = 32; goto _test_eof + _test_eof33: m.cs = 33; goto _test_eof + _test_eof34: m.cs = 34; goto _test_eof + _test_eof35: m.cs = 35; goto _test_eof + _test_eof36: m.cs = 36; goto _test_eof + _test_eof37: m.cs = 37; goto _test_eof + _test_eof38: m.cs = 38; goto _test_eof + _test_eof39: m.cs = 39; goto _test_eof + _test_eof40: m.cs = 40; goto _test_eof + _test_eof41: m.cs = 41; goto _test_eof + _test_eof42: m.cs = 42; goto _test_eof + _test_eof43: m.cs = 43; goto _test_eof + _test_eof44: m.cs = 44; goto _test_eof + _test_eof45: m.cs = 45; goto _test_eof + _test_eof46: m.cs = 46; goto _test_eof + _test_eof47: m.cs = 47; goto _test_eof + _test_eof48: m.cs = 48; goto _test_eof + _test_eof49: m.cs = 49; goto _test_eof + _test_eof50: m.cs = 50; goto _test_eof + _test_eof51: m.cs = 51; goto _test_eof + _test_eof52: m.cs = 52; goto _test_eof + _test_eof53: m.cs = 53; goto _test_eof + _test_eof54: m.cs = 54; goto _test_eof + _test_eof55: m.cs = 55; goto _test_eof + _test_eof1195: m.cs = 1195; goto _test_eof + _test_eof56: m.cs = 56; goto _test_eof + _test_eof57: m.cs = 57; goto _test_eof + _test_eof58: m.cs = 58; goto _test_eof + _test_eof59: m.cs = 59; goto _test_eof + _test_eof60: m.cs = 60; goto _test_eof + _test_eof61: m.cs = 61; goto _test_eof + _test_eof62: m.cs = 62; goto _test_eof + _test_eof63: m.cs = 63; goto _test_eof + _test_eof64: m.cs = 64; goto _test_eof + _test_eof65: m.cs = 65; goto _test_eof + _test_eof66: m.cs = 66; goto _test_eof + _test_eof67: m.cs = 67; goto _test_eof + _test_eof68: m.cs = 68; goto _test_eof + _test_eof69: m.cs = 69; goto _test_eof + _test_eof70: m.cs = 70; goto _test_eof + _test_eof71: m.cs = 71; goto _test_eof + _test_eof72: m.cs = 72; goto _test_eof + _test_eof73: m.cs = 73; goto _test_eof + _test_eof74: m.cs = 74; goto _test_eof + _test_eof75: m.cs = 75; goto _test_eof + _test_eof76: m.cs = 76; goto _test_eof + _test_eof77: m.cs = 77; goto _test_eof + _test_eof78: m.cs = 78; goto _test_eof + _test_eof79: m.cs = 79; goto _test_eof + _test_eof80: m.cs = 80; goto _test_eof + _test_eof81: m.cs = 81; goto _test_eof + _test_eof82: m.cs = 82; goto _test_eof + _test_eof83: m.cs = 83; goto _test_eof + _test_eof84: m.cs = 84; goto _test_eof + _test_eof85: m.cs = 85; goto _test_eof + _test_eof86: m.cs = 86; goto _test_eof + _test_eof87: m.cs = 87; goto _test_eof + _test_eof88: m.cs = 88; goto _test_eof + _test_eof89: m.cs = 89; goto _test_eof + _test_eof90: m.cs = 90; goto _test_eof + _test_eof91: m.cs = 91; goto _test_eof + _test_eof92: m.cs = 92; goto _test_eof + _test_eof93: m.cs = 93; goto _test_eof + _test_eof94: m.cs = 94; goto _test_eof + _test_eof95: m.cs = 95; goto _test_eof + _test_eof96: m.cs = 96; goto _test_eof + _test_eof97: m.cs = 97; goto _test_eof + _test_eof98: m.cs = 98; goto _test_eof + _test_eof99: m.cs = 99; goto _test_eof + _test_eof100: m.cs = 100; goto _test_eof + _test_eof101: m.cs = 101; goto _test_eof + _test_eof102: m.cs = 102; goto _test_eof + _test_eof103: m.cs = 103; goto _test_eof + _test_eof104: m.cs = 104; goto _test_eof + _test_eof105: m.cs = 105; goto _test_eof + _test_eof106: m.cs = 106; goto _test_eof + _test_eof107: m.cs = 107; goto _test_eof + _test_eof108: m.cs = 108; goto _test_eof + _test_eof109: m.cs = 109; goto _test_eof + _test_eof110: m.cs = 110; goto _test_eof + _test_eof111: m.cs = 111; goto _test_eof + _test_eof112: m.cs = 112; goto _test_eof + _test_eof113: m.cs = 113; goto _test_eof + _test_eof114: m.cs = 114; goto _test_eof + _test_eof115: m.cs = 115; goto _test_eof + _test_eof116: m.cs = 116; goto _test_eof + _test_eof117: m.cs = 117; goto _test_eof + _test_eof118: m.cs = 118; goto _test_eof + _test_eof119: m.cs = 119; goto _test_eof + _test_eof120: m.cs = 120; goto _test_eof + _test_eof121: m.cs = 121; goto _test_eof + _test_eof122: m.cs = 122; goto _test_eof + _test_eof123: m.cs = 123; goto _test_eof + _test_eof124: m.cs = 124; goto _test_eof + _test_eof125: m.cs = 125; goto _test_eof + _test_eof126: m.cs = 126; goto _test_eof + _test_eof127: m.cs = 127; goto _test_eof + _test_eof128: m.cs = 128; goto _test_eof + _test_eof129: m.cs = 129; goto _test_eof + _test_eof130: m.cs = 130; goto _test_eof + _test_eof131: m.cs = 131; goto _test_eof + _test_eof132: m.cs = 132; goto _test_eof + _test_eof133: m.cs = 133; goto _test_eof + _test_eof134: m.cs = 134; goto _test_eof + _test_eof135: m.cs = 135; goto _test_eof + _test_eof136: m.cs = 136; goto _test_eof + _test_eof137: m.cs = 137; goto _test_eof + _test_eof138: m.cs = 138; goto _test_eof + _test_eof139: m.cs = 139; goto _test_eof + _test_eof140: m.cs = 140; goto _test_eof + _test_eof141: m.cs = 141; goto _test_eof + _test_eof142: m.cs = 142; goto _test_eof + _test_eof143: m.cs = 143; goto _test_eof + _test_eof144: m.cs = 144; goto _test_eof + _test_eof145: m.cs = 145; goto _test_eof + _test_eof146: m.cs = 146; goto _test_eof + _test_eof147: m.cs = 147; goto _test_eof + _test_eof148: m.cs = 148; goto _test_eof + _test_eof149: m.cs = 149; goto _test_eof + _test_eof150: m.cs = 150; goto _test_eof + _test_eof151: m.cs = 151; goto _test_eof + _test_eof152: m.cs = 152; goto _test_eof + _test_eof153: m.cs = 153; goto _test_eof + _test_eof154: m.cs = 154; goto _test_eof + _test_eof155: m.cs = 155; goto _test_eof + _test_eof156: m.cs = 156; goto _test_eof + _test_eof157: m.cs = 157; goto _test_eof + _test_eof158: m.cs = 158; goto _test_eof + _test_eof159: m.cs = 159; goto _test_eof + _test_eof160: m.cs = 160; goto _test_eof + _test_eof161: m.cs = 161; goto _test_eof + _test_eof162: m.cs = 162; goto _test_eof + _test_eof163: m.cs = 163; goto _test_eof + _test_eof164: m.cs = 164; goto _test_eof + _test_eof165: m.cs = 165; goto _test_eof + _test_eof166: m.cs = 166; goto _test_eof + _test_eof167: m.cs = 167; goto _test_eof + _test_eof168: m.cs = 168; goto _test_eof + _test_eof169: m.cs = 169; goto _test_eof + _test_eof170: m.cs = 170; goto _test_eof + _test_eof171: m.cs = 171; goto _test_eof + _test_eof172: m.cs = 172; goto _test_eof + _test_eof173: m.cs = 173; goto _test_eof + _test_eof174: m.cs = 174; goto _test_eof + _test_eof175: m.cs = 175; goto _test_eof + _test_eof176: m.cs = 176; goto _test_eof + _test_eof177: m.cs = 177; goto _test_eof + _test_eof178: m.cs = 178; goto _test_eof + _test_eof179: m.cs = 179; goto _test_eof + _test_eof180: m.cs = 180; goto _test_eof + _test_eof181: m.cs = 181; goto _test_eof + _test_eof182: m.cs = 182; goto _test_eof + _test_eof183: m.cs = 183; goto _test_eof + _test_eof184: m.cs = 184; goto _test_eof + _test_eof185: m.cs = 185; goto _test_eof + _test_eof186: m.cs = 186; goto _test_eof + _test_eof187: m.cs = 187; goto _test_eof + _test_eof188: m.cs = 188; goto _test_eof + _test_eof189: m.cs = 189; goto _test_eof + _test_eof190: m.cs = 190; goto _test_eof + _test_eof191: m.cs = 191; goto _test_eof + _test_eof192: m.cs = 192; goto _test_eof + _test_eof193: m.cs = 193; goto _test_eof + _test_eof194: m.cs = 194; goto _test_eof + _test_eof195: m.cs = 195; goto _test_eof + _test_eof196: m.cs = 196; goto _test_eof + _test_eof197: m.cs = 197; goto _test_eof + _test_eof198: m.cs = 198; goto _test_eof + _test_eof199: m.cs = 199; goto _test_eof + _test_eof200: m.cs = 200; goto _test_eof + _test_eof201: m.cs = 201; goto _test_eof + _test_eof202: m.cs = 202; goto _test_eof + _test_eof203: m.cs = 203; goto _test_eof + _test_eof204: m.cs = 204; goto _test_eof + _test_eof205: m.cs = 205; goto _test_eof + _test_eof206: m.cs = 206; goto _test_eof + _test_eof207: m.cs = 207; goto _test_eof + _test_eof208: m.cs = 208; goto _test_eof + _test_eof209: m.cs = 209; goto _test_eof + _test_eof210: m.cs = 210; goto _test_eof + _test_eof211: m.cs = 211; goto _test_eof + _test_eof212: m.cs = 212; goto _test_eof + _test_eof213: m.cs = 213; goto _test_eof + _test_eof214: m.cs = 214; goto _test_eof + _test_eof215: m.cs = 215; goto _test_eof + _test_eof216: m.cs = 216; goto _test_eof + _test_eof217: m.cs = 217; goto _test_eof + _test_eof218: m.cs = 218; goto _test_eof + _test_eof219: m.cs = 219; goto _test_eof + _test_eof220: m.cs = 220; goto _test_eof + _test_eof221: m.cs = 221; goto _test_eof + _test_eof222: m.cs = 222; goto _test_eof + _test_eof223: m.cs = 223; goto _test_eof + _test_eof224: m.cs = 224; goto _test_eof + _test_eof225: m.cs = 225; goto _test_eof + _test_eof226: m.cs = 226; goto _test_eof + _test_eof227: m.cs = 227; goto _test_eof + _test_eof228: m.cs = 228; goto _test_eof + _test_eof229: m.cs = 229; goto _test_eof + _test_eof230: m.cs = 230; goto _test_eof + _test_eof231: m.cs = 231; goto _test_eof + _test_eof232: m.cs = 232; goto _test_eof + _test_eof233: m.cs = 233; goto _test_eof + _test_eof234: m.cs = 234; goto _test_eof + _test_eof235: m.cs = 235; goto _test_eof + _test_eof236: m.cs = 236; goto _test_eof + _test_eof237: m.cs = 237; goto _test_eof + _test_eof238: m.cs = 238; goto _test_eof + _test_eof239: m.cs = 239; goto _test_eof + _test_eof240: m.cs = 240; goto _test_eof + _test_eof241: m.cs = 241; goto _test_eof + _test_eof242: m.cs = 242; goto _test_eof + _test_eof243: m.cs = 243; goto _test_eof + _test_eof244: m.cs = 244; goto _test_eof + _test_eof245: m.cs = 245; goto _test_eof + _test_eof246: m.cs = 246; goto _test_eof + _test_eof247: m.cs = 247; goto _test_eof + _test_eof248: m.cs = 248; goto _test_eof + _test_eof249: m.cs = 249; goto _test_eof + _test_eof250: m.cs = 250; goto _test_eof + _test_eof251: m.cs = 251; goto _test_eof + _test_eof252: m.cs = 252; goto _test_eof + _test_eof253: m.cs = 253; goto _test_eof + _test_eof254: m.cs = 254; goto _test_eof + _test_eof255: m.cs = 255; goto _test_eof + _test_eof256: m.cs = 256; goto _test_eof + _test_eof257: m.cs = 257; goto _test_eof + _test_eof258: m.cs = 258; goto _test_eof + _test_eof259: m.cs = 259; goto _test_eof + _test_eof260: m.cs = 260; goto _test_eof + _test_eof261: m.cs = 261; goto _test_eof + _test_eof262: m.cs = 262; goto _test_eof + _test_eof263: m.cs = 263; goto _test_eof + _test_eof264: m.cs = 264; goto _test_eof + _test_eof265: m.cs = 265; goto _test_eof + _test_eof266: m.cs = 266; goto _test_eof + _test_eof267: m.cs = 267; goto _test_eof + _test_eof268: m.cs = 268; goto _test_eof + _test_eof269: m.cs = 269; goto _test_eof + _test_eof270: m.cs = 270; goto _test_eof + _test_eof271: m.cs = 271; goto _test_eof + _test_eof272: m.cs = 272; goto _test_eof + _test_eof273: m.cs = 273; goto _test_eof + _test_eof274: m.cs = 274; goto _test_eof + _test_eof275: m.cs = 275; goto _test_eof + _test_eof276: m.cs = 276; goto _test_eof + _test_eof277: m.cs = 277; goto _test_eof + _test_eof278: m.cs = 278; goto _test_eof + _test_eof279: m.cs = 279; goto _test_eof + _test_eof280: m.cs = 280; goto _test_eof + _test_eof281: m.cs = 281; goto _test_eof + _test_eof282: m.cs = 282; goto _test_eof + _test_eof283: m.cs = 283; goto _test_eof + _test_eof284: m.cs = 284; goto _test_eof + _test_eof285: m.cs = 285; goto _test_eof + _test_eof286: m.cs = 286; goto _test_eof + _test_eof287: m.cs = 287; goto _test_eof + _test_eof288: m.cs = 288; goto _test_eof + _test_eof289: m.cs = 289; goto _test_eof + _test_eof290: m.cs = 290; goto _test_eof + _test_eof291: m.cs = 291; goto _test_eof + _test_eof292: m.cs = 292; goto _test_eof + _test_eof293: m.cs = 293; goto _test_eof + _test_eof294: m.cs = 294; goto _test_eof + _test_eof295: m.cs = 295; goto _test_eof + _test_eof296: m.cs = 296; goto _test_eof + _test_eof297: m.cs = 297; goto _test_eof + _test_eof298: m.cs = 298; goto _test_eof + _test_eof299: m.cs = 299; goto _test_eof + _test_eof300: m.cs = 300; goto _test_eof + _test_eof301: m.cs = 301; goto _test_eof + _test_eof302: m.cs = 302; goto _test_eof + _test_eof303: m.cs = 303; goto _test_eof + _test_eof304: m.cs = 304; goto _test_eof + _test_eof305: m.cs = 305; goto _test_eof + _test_eof306: m.cs = 306; goto _test_eof + _test_eof307: m.cs = 307; goto _test_eof + _test_eof308: m.cs = 308; goto _test_eof + _test_eof309: m.cs = 309; goto _test_eof + _test_eof310: m.cs = 310; goto _test_eof + _test_eof311: m.cs = 311; goto _test_eof + _test_eof312: m.cs = 312; goto _test_eof + _test_eof313: m.cs = 313; goto _test_eof + _test_eof314: m.cs = 314; goto _test_eof + _test_eof315: m.cs = 315; goto _test_eof + _test_eof316: m.cs = 316; goto _test_eof + _test_eof317: m.cs = 317; goto _test_eof + _test_eof318: m.cs = 318; goto _test_eof + _test_eof319: m.cs = 319; goto _test_eof + _test_eof320: m.cs = 320; goto _test_eof + _test_eof321: m.cs = 321; goto _test_eof + _test_eof322: m.cs = 322; goto _test_eof + _test_eof323: m.cs = 323; goto _test_eof + _test_eof324: m.cs = 324; goto _test_eof + _test_eof325: m.cs = 325; goto _test_eof + _test_eof326: m.cs = 326; goto _test_eof + _test_eof327: m.cs = 327; goto _test_eof + _test_eof328: m.cs = 328; goto _test_eof + _test_eof329: m.cs = 329; goto _test_eof + _test_eof330: m.cs = 330; goto _test_eof + _test_eof331: m.cs = 331; goto _test_eof + _test_eof332: m.cs = 332; goto _test_eof + _test_eof333: m.cs = 333; goto _test_eof + _test_eof334: m.cs = 334; goto _test_eof + _test_eof335: m.cs = 335; goto _test_eof + _test_eof336: m.cs = 336; goto _test_eof + _test_eof337: m.cs = 337; goto _test_eof + _test_eof338: m.cs = 338; goto _test_eof + _test_eof339: m.cs = 339; goto _test_eof + _test_eof340: m.cs = 340; goto _test_eof + _test_eof341: m.cs = 341; goto _test_eof + _test_eof342: m.cs = 342; goto _test_eof + _test_eof343: m.cs = 343; goto _test_eof + _test_eof344: m.cs = 344; goto _test_eof + _test_eof345: m.cs = 345; goto _test_eof + _test_eof346: m.cs = 346; goto _test_eof + _test_eof347: m.cs = 347; goto _test_eof + _test_eof348: m.cs = 348; goto _test_eof + _test_eof349: m.cs = 349; goto _test_eof + _test_eof350: m.cs = 350; goto _test_eof + _test_eof351: m.cs = 351; goto _test_eof + _test_eof352: m.cs = 352; goto _test_eof + _test_eof353: m.cs = 353; goto _test_eof + _test_eof354: m.cs = 354; goto _test_eof + _test_eof355: m.cs = 355; goto _test_eof + _test_eof356: m.cs = 356; goto _test_eof + _test_eof357: m.cs = 357; goto _test_eof + _test_eof358: m.cs = 358; goto _test_eof + _test_eof359: m.cs = 359; goto _test_eof + _test_eof360: m.cs = 360; goto _test_eof + _test_eof361: m.cs = 361; goto _test_eof + _test_eof362: m.cs = 362; goto _test_eof + _test_eof363: m.cs = 363; goto _test_eof + _test_eof364: m.cs = 364; goto _test_eof + _test_eof365: m.cs = 365; goto _test_eof + _test_eof366: m.cs = 366; goto _test_eof + _test_eof367: m.cs = 367; goto _test_eof + _test_eof368: m.cs = 368; goto _test_eof + _test_eof369: m.cs = 369; goto _test_eof + _test_eof370: m.cs = 370; goto _test_eof + _test_eof371: m.cs = 371; goto _test_eof + _test_eof372: m.cs = 372; goto _test_eof + _test_eof373: m.cs = 373; goto _test_eof + _test_eof374: m.cs = 374; goto _test_eof + _test_eof375: m.cs = 375; goto _test_eof + _test_eof376: m.cs = 376; goto _test_eof + _test_eof377: m.cs = 377; goto _test_eof + _test_eof378: m.cs = 378; goto _test_eof + _test_eof379: m.cs = 379; goto _test_eof + _test_eof380: m.cs = 380; goto _test_eof + _test_eof381: m.cs = 381; goto _test_eof + _test_eof382: m.cs = 382; goto _test_eof + _test_eof383: m.cs = 383; goto _test_eof + _test_eof384: m.cs = 384; goto _test_eof + _test_eof385: m.cs = 385; goto _test_eof + _test_eof386: m.cs = 386; goto _test_eof + _test_eof387: m.cs = 387; goto _test_eof + _test_eof388: m.cs = 388; goto _test_eof + _test_eof389: m.cs = 389; goto _test_eof + _test_eof390: m.cs = 390; goto _test_eof + _test_eof391: m.cs = 391; goto _test_eof + _test_eof392: m.cs = 392; goto _test_eof + _test_eof393: m.cs = 393; goto _test_eof + _test_eof394: m.cs = 394; goto _test_eof + _test_eof395: m.cs = 395; goto _test_eof + _test_eof396: m.cs = 396; goto _test_eof + _test_eof397: m.cs = 397; goto _test_eof + _test_eof398: m.cs = 398; goto _test_eof + _test_eof399: m.cs = 399; goto _test_eof + _test_eof400: m.cs = 400; goto _test_eof + _test_eof401: m.cs = 401; goto _test_eof + _test_eof402: m.cs = 402; goto _test_eof + _test_eof403: m.cs = 403; goto _test_eof + _test_eof404: m.cs = 404; goto _test_eof + _test_eof405: m.cs = 405; goto _test_eof + _test_eof406: m.cs = 406; goto _test_eof + _test_eof407: m.cs = 407; goto _test_eof + _test_eof408: m.cs = 408; goto _test_eof + _test_eof409: m.cs = 409; goto _test_eof + _test_eof410: m.cs = 410; goto _test_eof + _test_eof411: m.cs = 411; goto _test_eof + _test_eof412: m.cs = 412; goto _test_eof + _test_eof413: m.cs = 413; goto _test_eof + _test_eof414: m.cs = 414; goto _test_eof + _test_eof415: m.cs = 415; goto _test_eof + _test_eof416: m.cs = 416; goto _test_eof + _test_eof417: m.cs = 417; goto _test_eof + _test_eof418: m.cs = 418; goto _test_eof + _test_eof419: m.cs = 419; goto _test_eof + _test_eof420: m.cs = 420; goto _test_eof + _test_eof421: m.cs = 421; goto _test_eof + _test_eof422: m.cs = 422; goto _test_eof + _test_eof423: m.cs = 423; goto _test_eof + _test_eof424: m.cs = 424; goto _test_eof + _test_eof425: m.cs = 425; goto _test_eof + _test_eof426: m.cs = 426; goto _test_eof + _test_eof427: m.cs = 427; goto _test_eof + _test_eof428: m.cs = 428; goto _test_eof + _test_eof429: m.cs = 429; goto _test_eof + _test_eof430: m.cs = 430; goto _test_eof + _test_eof431: m.cs = 431; goto _test_eof + _test_eof432: m.cs = 432; goto _test_eof + _test_eof433: m.cs = 433; goto _test_eof + _test_eof434: m.cs = 434; goto _test_eof + _test_eof435: m.cs = 435; goto _test_eof + _test_eof436: m.cs = 436; goto _test_eof + _test_eof437: m.cs = 437; goto _test_eof + _test_eof438: m.cs = 438; goto _test_eof + _test_eof439: m.cs = 439; goto _test_eof + _test_eof440: m.cs = 440; goto _test_eof + _test_eof441: m.cs = 441; goto _test_eof + _test_eof442: m.cs = 442; goto _test_eof + _test_eof443: m.cs = 443; goto _test_eof + _test_eof444: m.cs = 444; goto _test_eof + _test_eof445: m.cs = 445; goto _test_eof + _test_eof446: m.cs = 446; goto _test_eof + _test_eof447: m.cs = 447; goto _test_eof + _test_eof448: m.cs = 448; goto _test_eof + _test_eof449: m.cs = 449; goto _test_eof + _test_eof450: m.cs = 450; goto _test_eof + _test_eof451: m.cs = 451; goto _test_eof + _test_eof452: m.cs = 452; goto _test_eof + _test_eof453: m.cs = 453; goto _test_eof + _test_eof454: m.cs = 454; goto _test_eof + _test_eof455: m.cs = 455; goto _test_eof + _test_eof456: m.cs = 456; goto _test_eof + _test_eof457: m.cs = 457; goto _test_eof + _test_eof458: m.cs = 458; goto _test_eof + _test_eof459: m.cs = 459; goto _test_eof + _test_eof460: m.cs = 460; goto _test_eof + _test_eof461: m.cs = 461; goto _test_eof + _test_eof462: m.cs = 462; goto _test_eof + _test_eof463: m.cs = 463; goto _test_eof + _test_eof464: m.cs = 464; goto _test_eof + _test_eof465: m.cs = 465; goto _test_eof + _test_eof466: m.cs = 466; goto _test_eof + _test_eof467: m.cs = 467; goto _test_eof + _test_eof468: m.cs = 468; goto _test_eof + _test_eof469: m.cs = 469; goto _test_eof + _test_eof470: m.cs = 470; goto _test_eof + _test_eof471: m.cs = 471; goto _test_eof + _test_eof472: m.cs = 472; goto _test_eof + _test_eof473: m.cs = 473; goto _test_eof + _test_eof474: m.cs = 474; goto _test_eof + _test_eof475: m.cs = 475; goto _test_eof + _test_eof476: m.cs = 476; goto _test_eof + _test_eof477: m.cs = 477; goto _test_eof + _test_eof478: m.cs = 478; goto _test_eof + _test_eof479: m.cs = 479; goto _test_eof + _test_eof480: m.cs = 480; goto _test_eof + _test_eof481: m.cs = 481; goto _test_eof + _test_eof482: m.cs = 482; goto _test_eof + _test_eof483: m.cs = 483; goto _test_eof + _test_eof484: m.cs = 484; goto _test_eof + _test_eof485: m.cs = 485; goto _test_eof + _test_eof486: m.cs = 486; goto _test_eof + _test_eof487: m.cs = 487; goto _test_eof + _test_eof488: m.cs = 488; goto _test_eof + _test_eof489: m.cs = 489; goto _test_eof + _test_eof490: m.cs = 490; goto _test_eof + _test_eof491: m.cs = 491; goto _test_eof + _test_eof492: m.cs = 492; goto _test_eof + _test_eof493: m.cs = 493; goto _test_eof + _test_eof494: m.cs = 494; goto _test_eof + _test_eof495: m.cs = 495; goto _test_eof + _test_eof496: m.cs = 496; goto _test_eof + _test_eof497: m.cs = 497; goto _test_eof + _test_eof498: m.cs = 498; goto _test_eof + _test_eof499: m.cs = 499; goto _test_eof + _test_eof500: m.cs = 500; goto _test_eof + _test_eof501: m.cs = 501; goto _test_eof + _test_eof502: m.cs = 502; goto _test_eof + _test_eof503: m.cs = 503; goto _test_eof + _test_eof504: m.cs = 504; goto _test_eof + _test_eof505: m.cs = 505; goto _test_eof + _test_eof506: m.cs = 506; goto _test_eof + _test_eof507: m.cs = 507; goto _test_eof + _test_eof508: m.cs = 508; goto _test_eof + _test_eof509: m.cs = 509; goto _test_eof + _test_eof510: m.cs = 510; goto _test_eof + _test_eof511: m.cs = 511; goto _test_eof + _test_eof512: m.cs = 512; goto _test_eof + _test_eof513: m.cs = 513; goto _test_eof + _test_eof514: m.cs = 514; goto _test_eof + _test_eof515: m.cs = 515; goto _test_eof + _test_eof516: m.cs = 516; goto _test_eof + _test_eof517: m.cs = 517; goto _test_eof + _test_eof518: m.cs = 518; goto _test_eof + _test_eof519: m.cs = 519; goto _test_eof + _test_eof520: m.cs = 520; goto _test_eof + _test_eof521: m.cs = 521; goto _test_eof + _test_eof522: m.cs = 522; goto _test_eof + _test_eof523: m.cs = 523; goto _test_eof + _test_eof524: m.cs = 524; goto _test_eof + _test_eof525: m.cs = 525; goto _test_eof + _test_eof526: m.cs = 526; goto _test_eof + _test_eof527: m.cs = 527; goto _test_eof + _test_eof528: m.cs = 528; goto _test_eof + _test_eof529: m.cs = 529; goto _test_eof + _test_eof530: m.cs = 530; goto _test_eof + _test_eof531: m.cs = 531; goto _test_eof + _test_eof532: m.cs = 532; goto _test_eof + _test_eof533: m.cs = 533; goto _test_eof + _test_eof534: m.cs = 534; goto _test_eof + _test_eof535: m.cs = 535; goto _test_eof + _test_eof536: m.cs = 536; goto _test_eof + _test_eof537: m.cs = 537; goto _test_eof + _test_eof538: m.cs = 538; goto _test_eof + _test_eof539: m.cs = 539; goto _test_eof + _test_eof540: m.cs = 540; goto _test_eof + _test_eof541: m.cs = 541; goto _test_eof + _test_eof542: m.cs = 542; goto _test_eof + _test_eof543: m.cs = 543; goto _test_eof + _test_eof544: m.cs = 544; goto _test_eof + _test_eof545: m.cs = 545; goto _test_eof + _test_eof546: m.cs = 546; goto _test_eof + _test_eof547: m.cs = 547; goto _test_eof + _test_eof548: m.cs = 548; goto _test_eof + _test_eof549: m.cs = 549; goto _test_eof + _test_eof550: m.cs = 550; goto _test_eof + _test_eof551: m.cs = 551; goto _test_eof + _test_eof552: m.cs = 552; goto _test_eof + _test_eof553: m.cs = 553; goto _test_eof + _test_eof554: m.cs = 554; goto _test_eof + _test_eof555: m.cs = 555; goto _test_eof + _test_eof556: m.cs = 556; goto _test_eof + _test_eof557: m.cs = 557; goto _test_eof + _test_eof558: m.cs = 558; goto _test_eof + _test_eof559: m.cs = 559; goto _test_eof + _test_eof560: m.cs = 560; goto _test_eof + _test_eof561: m.cs = 561; goto _test_eof + _test_eof562: m.cs = 562; goto _test_eof + _test_eof563: m.cs = 563; goto _test_eof + _test_eof564: m.cs = 564; goto _test_eof + _test_eof565: m.cs = 565; goto _test_eof + _test_eof566: m.cs = 566; goto _test_eof + _test_eof567: m.cs = 567; goto _test_eof + _test_eof568: m.cs = 568; goto _test_eof + _test_eof569: m.cs = 569; goto _test_eof + _test_eof570: m.cs = 570; goto _test_eof + _test_eof571: m.cs = 571; goto _test_eof + _test_eof572: m.cs = 572; goto _test_eof + _test_eof573: m.cs = 573; goto _test_eof + _test_eof574: m.cs = 574; goto _test_eof + _test_eof575: m.cs = 575; goto _test_eof + _test_eof576: m.cs = 576; goto _test_eof + _test_eof577: m.cs = 577; goto _test_eof + _test_eof578: m.cs = 578; goto _test_eof + _test_eof579: m.cs = 579; goto _test_eof + _test_eof580: m.cs = 580; goto _test_eof + _test_eof581: m.cs = 581; goto _test_eof + _test_eof582: m.cs = 582; goto _test_eof + _test_eof583: m.cs = 583; goto _test_eof + _test_eof584: m.cs = 584; goto _test_eof + _test_eof585: m.cs = 585; goto _test_eof + _test_eof586: m.cs = 586; goto _test_eof + _test_eof587: m.cs = 587; goto _test_eof + _test_eof588: m.cs = 588; goto _test_eof + _test_eof589: m.cs = 589; goto _test_eof + _test_eof590: m.cs = 590; goto _test_eof + _test_eof591: m.cs = 591; goto _test_eof + _test_eof592: m.cs = 592; goto _test_eof + _test_eof593: m.cs = 593; goto _test_eof + _test_eof594: m.cs = 594; goto _test_eof + _test_eof595: m.cs = 595; goto _test_eof + _test_eof603: m.cs = 603; goto _test_eof + _test_eof604: m.cs = 604; goto _test_eof + _test_eof605: m.cs = 605; goto _test_eof + _test_eof606: m.cs = 606; goto _test_eof + _test_eof607: m.cs = 607; goto _test_eof + _test_eof608: m.cs = 608; goto _test_eof + _test_eof609: m.cs = 609; goto _test_eof + _test_eof610: m.cs = 610; goto _test_eof + _test_eof611: m.cs = 611; goto _test_eof + _test_eof612: m.cs = 612; goto _test_eof + _test_eof613: m.cs = 613; goto _test_eof + _test_eof614: m.cs = 614; goto _test_eof + _test_eof615: m.cs = 615; goto _test_eof + _test_eof1204: m.cs = 1204; goto _test_eof + _test_eof1205: m.cs = 1205; goto _test_eof + _test_eof1206: m.cs = 1206; goto _test_eof + _test_eof616: m.cs = 616; goto _test_eof + _test_eof617: m.cs = 617; goto _test_eof + _test_eof618: m.cs = 618; goto _test_eof + _test_eof619: m.cs = 619; goto _test_eof + _test_eof620: m.cs = 620; goto _test_eof + _test_eof621: m.cs = 621; goto _test_eof + _test_eof622: m.cs = 622; goto _test_eof + _test_eof623: m.cs = 623; goto _test_eof + _test_eof624: m.cs = 624; goto _test_eof + _test_eof625: m.cs = 625; goto _test_eof + _test_eof626: m.cs = 626; goto _test_eof + _test_eof627: m.cs = 627; goto _test_eof + _test_eof628: m.cs = 628; goto _test_eof + _test_eof629: m.cs = 629; goto _test_eof + _test_eof630: m.cs = 630; goto _test_eof + _test_eof631: m.cs = 631; goto _test_eof + _test_eof632: m.cs = 632; goto _test_eof + _test_eof633: m.cs = 633; goto _test_eof + _test_eof634: m.cs = 634; goto _test_eof + _test_eof635: m.cs = 635; goto _test_eof + _test_eof636: m.cs = 636; goto _test_eof + _test_eof637: m.cs = 637; goto _test_eof + _test_eof638: m.cs = 638; goto _test_eof + _test_eof639: m.cs = 639; goto _test_eof + _test_eof640: m.cs = 640; goto _test_eof + _test_eof641: m.cs = 641; goto _test_eof + _test_eof642: m.cs = 642; goto _test_eof + _test_eof643: m.cs = 643; goto _test_eof + _test_eof644: m.cs = 644; goto _test_eof + _test_eof645: m.cs = 645; goto _test_eof + _test_eof646: m.cs = 646; goto _test_eof + _test_eof647: m.cs = 647; goto _test_eof + _test_eof648: m.cs = 648; goto _test_eof + _test_eof649: m.cs = 649; goto _test_eof + _test_eof650: m.cs = 650; goto _test_eof + _test_eof651: m.cs = 651; goto _test_eof + _test_eof652: m.cs = 652; goto _test_eof + _test_eof653: m.cs = 653; goto _test_eof + _test_eof654: m.cs = 654; goto _test_eof + _test_eof1207: m.cs = 1207; goto _test_eof + _test_eof655: m.cs = 655; goto _test_eof + _test_eof656: m.cs = 656; goto _test_eof + _test_eof657: m.cs = 657; goto _test_eof + _test_eof658: m.cs = 658; goto _test_eof + _test_eof659: m.cs = 659; goto _test_eof + _test_eof660: m.cs = 660; goto _test_eof + _test_eof661: m.cs = 661; goto _test_eof + _test_eof662: m.cs = 662; goto _test_eof + _test_eof663: m.cs = 663; goto _test_eof + _test_eof664: m.cs = 664; goto _test_eof + _test_eof665: m.cs = 665; goto _test_eof + _test_eof666: m.cs = 666; goto _test_eof + _test_eof667: m.cs = 667; goto _test_eof + _test_eof668: m.cs = 668; goto _test_eof + _test_eof669: m.cs = 669; goto _test_eof + _test_eof670: m.cs = 670; goto _test_eof + _test_eof671: m.cs = 671; goto _test_eof + _test_eof672: m.cs = 672; goto _test_eof + _test_eof673: m.cs = 673; goto _test_eof + _test_eof674: m.cs = 674; goto _test_eof + _test_eof675: m.cs = 675; goto _test_eof + _test_eof676: m.cs = 676; goto _test_eof + _test_eof677: m.cs = 677; goto _test_eof + _test_eof678: m.cs = 678; goto _test_eof + _test_eof679: m.cs = 679; goto _test_eof + _test_eof680: m.cs = 680; goto _test_eof + _test_eof681: m.cs = 681; goto _test_eof + _test_eof682: m.cs = 682; goto _test_eof + _test_eof683: m.cs = 683; goto _test_eof + _test_eof684: m.cs = 684; goto _test_eof + _test_eof685: m.cs = 685; goto _test_eof + _test_eof686: m.cs = 686; goto _test_eof + _test_eof687: m.cs = 687; goto _test_eof + _test_eof688: m.cs = 688; goto _test_eof + _test_eof689: m.cs = 689; goto _test_eof + _test_eof690: m.cs = 690; goto _test_eof + _test_eof691: m.cs = 691; goto _test_eof + _test_eof692: m.cs = 692; goto _test_eof + _test_eof693: m.cs = 693; goto _test_eof + _test_eof694: m.cs = 694; goto _test_eof + _test_eof695: m.cs = 695; goto _test_eof + _test_eof696: m.cs = 696; goto _test_eof + _test_eof697: m.cs = 697; goto _test_eof + _test_eof698: m.cs = 698; goto _test_eof + _test_eof699: m.cs = 699; goto _test_eof + _test_eof700: m.cs = 700; goto _test_eof + _test_eof701: m.cs = 701; goto _test_eof + _test_eof702: m.cs = 702; goto _test_eof + _test_eof703: m.cs = 703; goto _test_eof + _test_eof704: m.cs = 704; goto _test_eof + _test_eof705: m.cs = 705; goto _test_eof + _test_eof706: m.cs = 706; goto _test_eof + _test_eof707: m.cs = 707; goto _test_eof + _test_eof708: m.cs = 708; goto _test_eof + _test_eof709: m.cs = 709; goto _test_eof + _test_eof710: m.cs = 710; goto _test_eof + _test_eof711: m.cs = 711; goto _test_eof + _test_eof712: m.cs = 712; goto _test_eof + _test_eof713: m.cs = 713; goto _test_eof + _test_eof714: m.cs = 714; goto _test_eof + _test_eof715: m.cs = 715; goto _test_eof + _test_eof716: m.cs = 716; goto _test_eof + _test_eof717: m.cs = 717; goto _test_eof + _test_eof718: m.cs = 718; goto _test_eof + _test_eof719: m.cs = 719; goto _test_eof + _test_eof720: m.cs = 720; goto _test_eof + _test_eof721: m.cs = 721; goto _test_eof + _test_eof722: m.cs = 722; goto _test_eof + _test_eof723: m.cs = 723; goto _test_eof + _test_eof724: m.cs = 724; goto _test_eof + _test_eof725: m.cs = 725; goto _test_eof + _test_eof726: m.cs = 726; goto _test_eof + _test_eof727: m.cs = 727; goto _test_eof + _test_eof728: m.cs = 728; goto _test_eof + _test_eof729: m.cs = 729; goto _test_eof + _test_eof730: m.cs = 730; goto _test_eof + _test_eof731: m.cs = 731; goto _test_eof + _test_eof732: m.cs = 732; goto _test_eof + _test_eof733: m.cs = 733; goto _test_eof + _test_eof734: m.cs = 734; goto _test_eof + _test_eof735: m.cs = 735; goto _test_eof + _test_eof736: m.cs = 736; goto _test_eof + _test_eof737: m.cs = 737; goto _test_eof + _test_eof738: m.cs = 738; goto _test_eof + _test_eof739: m.cs = 739; goto _test_eof + _test_eof740: m.cs = 740; goto _test_eof + _test_eof741: m.cs = 741; goto _test_eof + _test_eof742: m.cs = 742; goto _test_eof + _test_eof743: m.cs = 743; goto _test_eof + _test_eof744: m.cs = 744; goto _test_eof + _test_eof745: m.cs = 745; goto _test_eof + _test_eof746: m.cs = 746; goto _test_eof + _test_eof747: m.cs = 747; goto _test_eof + _test_eof748: m.cs = 748; goto _test_eof + _test_eof749: m.cs = 749; goto _test_eof + _test_eof750: m.cs = 750; goto _test_eof + _test_eof751: m.cs = 751; goto _test_eof + _test_eof752: m.cs = 752; goto _test_eof + _test_eof753: m.cs = 753; goto _test_eof + _test_eof754: m.cs = 754; goto _test_eof + _test_eof755: m.cs = 755; goto _test_eof + _test_eof756: m.cs = 756; goto _test_eof + _test_eof757: m.cs = 757; goto _test_eof + _test_eof758: m.cs = 758; goto _test_eof + _test_eof759: m.cs = 759; goto _test_eof + _test_eof760: m.cs = 760; goto _test_eof + _test_eof761: m.cs = 761; goto _test_eof + _test_eof762: m.cs = 762; goto _test_eof + _test_eof763: m.cs = 763; goto _test_eof + _test_eof764: m.cs = 764; goto _test_eof + _test_eof765: m.cs = 765; goto _test_eof + _test_eof766: m.cs = 766; goto _test_eof + _test_eof767: m.cs = 767; goto _test_eof + _test_eof768: m.cs = 768; goto _test_eof + _test_eof769: m.cs = 769; goto _test_eof + _test_eof770: m.cs = 770; goto _test_eof + _test_eof771: m.cs = 771; goto _test_eof + _test_eof772: m.cs = 772; goto _test_eof + _test_eof773: m.cs = 773; goto _test_eof + _test_eof774: m.cs = 774; goto _test_eof + _test_eof775: m.cs = 775; goto _test_eof + _test_eof776: m.cs = 776; goto _test_eof + _test_eof777: m.cs = 777; goto _test_eof + _test_eof778: m.cs = 778; goto _test_eof + _test_eof779: m.cs = 779; goto _test_eof + _test_eof780: m.cs = 780; goto _test_eof + _test_eof781: m.cs = 781; goto _test_eof + _test_eof782: m.cs = 782; goto _test_eof + _test_eof783: m.cs = 783; goto _test_eof + _test_eof784: m.cs = 784; goto _test_eof + _test_eof785: m.cs = 785; goto _test_eof + _test_eof786: m.cs = 786; goto _test_eof + _test_eof787: m.cs = 787; goto _test_eof + _test_eof788: m.cs = 788; goto _test_eof + _test_eof789: m.cs = 789; goto _test_eof + _test_eof790: m.cs = 790; goto _test_eof + _test_eof791: m.cs = 791; goto _test_eof + _test_eof792: m.cs = 792; goto _test_eof + _test_eof793: m.cs = 793; goto _test_eof + _test_eof794: m.cs = 794; goto _test_eof + _test_eof795: m.cs = 795; goto _test_eof + _test_eof796: m.cs = 796; goto _test_eof + _test_eof797: m.cs = 797; goto _test_eof + _test_eof798: m.cs = 798; goto _test_eof + _test_eof799: m.cs = 799; goto _test_eof + _test_eof800: m.cs = 800; goto _test_eof + _test_eof801: m.cs = 801; goto _test_eof + _test_eof802: m.cs = 802; goto _test_eof + _test_eof803: m.cs = 803; goto _test_eof + _test_eof804: m.cs = 804; goto _test_eof + _test_eof805: m.cs = 805; goto _test_eof + _test_eof806: m.cs = 806; goto _test_eof + _test_eof807: m.cs = 807; goto _test_eof + _test_eof808: m.cs = 808; goto _test_eof + _test_eof809: m.cs = 809; goto _test_eof + _test_eof810: m.cs = 810; goto _test_eof + _test_eof811: m.cs = 811; goto _test_eof + _test_eof812: m.cs = 812; goto _test_eof + _test_eof813: m.cs = 813; goto _test_eof + _test_eof814: m.cs = 814; goto _test_eof + _test_eof815: m.cs = 815; goto _test_eof + _test_eof816: m.cs = 816; goto _test_eof + _test_eof817: m.cs = 817; goto _test_eof + _test_eof818: m.cs = 818; goto _test_eof + _test_eof819: m.cs = 819; goto _test_eof + _test_eof820: m.cs = 820; goto _test_eof + _test_eof821: m.cs = 821; goto _test_eof + _test_eof822: m.cs = 822; goto _test_eof + _test_eof823: m.cs = 823; goto _test_eof + _test_eof824: m.cs = 824; goto _test_eof + _test_eof825: m.cs = 825; goto _test_eof + _test_eof826: m.cs = 826; goto _test_eof + _test_eof827: m.cs = 827; goto _test_eof + _test_eof828: m.cs = 828; goto _test_eof + _test_eof829: m.cs = 829; goto _test_eof + _test_eof830: m.cs = 830; goto _test_eof + _test_eof831: m.cs = 831; goto _test_eof + _test_eof832: m.cs = 832; goto _test_eof + _test_eof833: m.cs = 833; goto _test_eof + _test_eof834: m.cs = 834; goto _test_eof + _test_eof835: m.cs = 835; goto _test_eof + _test_eof836: m.cs = 836; goto _test_eof + _test_eof837: m.cs = 837; goto _test_eof + _test_eof838: m.cs = 838; goto _test_eof + _test_eof839: m.cs = 839; goto _test_eof + _test_eof840: m.cs = 840; goto _test_eof + _test_eof841: m.cs = 841; goto _test_eof + _test_eof842: m.cs = 842; goto _test_eof + _test_eof843: m.cs = 843; goto _test_eof + _test_eof844: m.cs = 844; goto _test_eof + _test_eof845: m.cs = 845; goto _test_eof + _test_eof846: m.cs = 846; goto _test_eof + _test_eof847: m.cs = 847; goto _test_eof + _test_eof848: m.cs = 848; goto _test_eof + _test_eof849: m.cs = 849; goto _test_eof + _test_eof850: m.cs = 850; goto _test_eof + _test_eof851: m.cs = 851; goto _test_eof + _test_eof852: m.cs = 852; goto _test_eof + _test_eof853: m.cs = 853; goto _test_eof + _test_eof854: m.cs = 854; goto _test_eof + _test_eof855: m.cs = 855; goto _test_eof + _test_eof856: m.cs = 856; goto _test_eof + _test_eof857: m.cs = 857; goto _test_eof + _test_eof858: m.cs = 858; goto _test_eof + _test_eof859: m.cs = 859; goto _test_eof + _test_eof860: m.cs = 860; goto _test_eof + _test_eof861: m.cs = 861; goto _test_eof + _test_eof862: m.cs = 862; goto _test_eof + _test_eof863: m.cs = 863; goto _test_eof + _test_eof864: m.cs = 864; goto _test_eof + _test_eof865: m.cs = 865; goto _test_eof + _test_eof866: m.cs = 866; goto _test_eof + _test_eof867: m.cs = 867; goto _test_eof + _test_eof868: m.cs = 868; goto _test_eof + _test_eof869: m.cs = 869; goto _test_eof + _test_eof870: m.cs = 870; goto _test_eof + _test_eof871: m.cs = 871; goto _test_eof + _test_eof872: m.cs = 872; goto _test_eof + _test_eof873: m.cs = 873; goto _test_eof + _test_eof874: m.cs = 874; goto _test_eof + _test_eof875: m.cs = 875; goto _test_eof + _test_eof876: m.cs = 876; goto _test_eof + _test_eof877: m.cs = 877; goto _test_eof + _test_eof878: m.cs = 878; goto _test_eof + _test_eof879: m.cs = 879; goto _test_eof + _test_eof880: m.cs = 880; goto _test_eof + _test_eof881: m.cs = 881; goto _test_eof + _test_eof882: m.cs = 882; goto _test_eof + _test_eof883: m.cs = 883; goto _test_eof + _test_eof884: m.cs = 884; goto _test_eof + _test_eof885: m.cs = 885; goto _test_eof + _test_eof886: m.cs = 886; goto _test_eof + _test_eof887: m.cs = 887; goto _test_eof + _test_eof888: m.cs = 888; goto _test_eof + _test_eof889: m.cs = 889; goto _test_eof + _test_eof890: m.cs = 890; goto _test_eof + _test_eof891: m.cs = 891; goto _test_eof + _test_eof892: m.cs = 892; goto _test_eof + _test_eof893: m.cs = 893; goto _test_eof + _test_eof894: m.cs = 894; goto _test_eof + _test_eof895: m.cs = 895; goto _test_eof + _test_eof896: m.cs = 896; goto _test_eof + _test_eof897: m.cs = 897; goto _test_eof + _test_eof898: m.cs = 898; goto _test_eof + _test_eof899: m.cs = 899; goto _test_eof + _test_eof900: m.cs = 900; goto _test_eof + _test_eof901: m.cs = 901; goto _test_eof + _test_eof902: m.cs = 902; goto _test_eof + _test_eof903: m.cs = 903; goto _test_eof + _test_eof904: m.cs = 904; goto _test_eof + _test_eof905: m.cs = 905; goto _test_eof + _test_eof906: m.cs = 906; goto _test_eof + _test_eof907: m.cs = 907; goto _test_eof + _test_eof908: m.cs = 908; goto _test_eof + _test_eof909: m.cs = 909; goto _test_eof + _test_eof910: m.cs = 910; goto _test_eof + _test_eof911: m.cs = 911; goto _test_eof + _test_eof912: m.cs = 912; goto _test_eof + _test_eof913: m.cs = 913; goto _test_eof + _test_eof914: m.cs = 914; goto _test_eof + _test_eof915: m.cs = 915; goto _test_eof + _test_eof916: m.cs = 916; goto _test_eof + _test_eof917: m.cs = 917; goto _test_eof + _test_eof918: m.cs = 918; goto _test_eof + _test_eof919: m.cs = 919; goto _test_eof + _test_eof920: m.cs = 920; goto _test_eof + _test_eof921: m.cs = 921; goto _test_eof + _test_eof922: m.cs = 922; goto _test_eof + _test_eof923: m.cs = 923; goto _test_eof + _test_eof924: m.cs = 924; goto _test_eof + _test_eof925: m.cs = 925; goto _test_eof + _test_eof926: m.cs = 926; goto _test_eof + _test_eof927: m.cs = 927; goto _test_eof + _test_eof928: m.cs = 928; goto _test_eof + _test_eof929: m.cs = 929; goto _test_eof + _test_eof930: m.cs = 930; goto _test_eof + _test_eof931: m.cs = 931; goto _test_eof + _test_eof932: m.cs = 932; goto _test_eof + _test_eof933: m.cs = 933; goto _test_eof + _test_eof934: m.cs = 934; goto _test_eof + _test_eof935: m.cs = 935; goto _test_eof + _test_eof936: m.cs = 936; goto _test_eof + _test_eof937: m.cs = 937; goto _test_eof + _test_eof938: m.cs = 938; goto _test_eof + _test_eof939: m.cs = 939; goto _test_eof + _test_eof940: m.cs = 940; goto _test_eof + _test_eof941: m.cs = 941; goto _test_eof + _test_eof942: m.cs = 942; goto _test_eof + _test_eof943: m.cs = 943; goto _test_eof + _test_eof944: m.cs = 944; goto _test_eof + _test_eof945: m.cs = 945; goto _test_eof + _test_eof946: m.cs = 946; goto _test_eof + _test_eof947: m.cs = 947; goto _test_eof + _test_eof948: m.cs = 948; goto _test_eof + _test_eof949: m.cs = 949; goto _test_eof + _test_eof950: m.cs = 950; goto _test_eof + _test_eof951: m.cs = 951; goto _test_eof + _test_eof952: m.cs = 952; goto _test_eof + _test_eof953: m.cs = 953; goto _test_eof + _test_eof954: m.cs = 954; goto _test_eof + _test_eof955: m.cs = 955; goto _test_eof + _test_eof956: m.cs = 956; goto _test_eof + _test_eof957: m.cs = 957; goto _test_eof + _test_eof958: m.cs = 958; goto _test_eof + _test_eof959: m.cs = 959; goto _test_eof + _test_eof960: m.cs = 960; goto _test_eof + _test_eof961: m.cs = 961; goto _test_eof + _test_eof962: m.cs = 962; goto _test_eof + _test_eof963: m.cs = 963; goto _test_eof + _test_eof964: m.cs = 964; goto _test_eof + _test_eof965: m.cs = 965; goto _test_eof + _test_eof966: m.cs = 966; goto _test_eof + _test_eof967: m.cs = 967; goto _test_eof + _test_eof968: m.cs = 968; goto _test_eof + _test_eof969: m.cs = 969; goto _test_eof + _test_eof970: m.cs = 970; goto _test_eof + _test_eof971: m.cs = 971; goto _test_eof + _test_eof972: m.cs = 972; goto _test_eof + _test_eof973: m.cs = 973; goto _test_eof + _test_eof974: m.cs = 974; goto _test_eof + _test_eof975: m.cs = 975; goto _test_eof + _test_eof976: m.cs = 976; goto _test_eof + _test_eof977: m.cs = 977; goto _test_eof + _test_eof978: m.cs = 978; goto _test_eof + _test_eof979: m.cs = 979; goto _test_eof + _test_eof980: m.cs = 980; goto _test_eof + _test_eof981: m.cs = 981; goto _test_eof + _test_eof982: m.cs = 982; goto _test_eof + _test_eof983: m.cs = 983; goto _test_eof + _test_eof984: m.cs = 984; goto _test_eof + _test_eof985: m.cs = 985; goto _test_eof + _test_eof986: m.cs = 986; goto _test_eof + _test_eof987: m.cs = 987; goto _test_eof + _test_eof988: m.cs = 988; goto _test_eof + _test_eof989: m.cs = 989; goto _test_eof + _test_eof990: m.cs = 990; goto _test_eof + _test_eof991: m.cs = 991; goto _test_eof + _test_eof992: m.cs = 992; goto _test_eof + _test_eof993: m.cs = 993; goto _test_eof + _test_eof994: m.cs = 994; goto _test_eof + _test_eof995: m.cs = 995; goto _test_eof + _test_eof996: m.cs = 996; goto _test_eof + _test_eof997: m.cs = 997; goto _test_eof + _test_eof998: m.cs = 998; goto _test_eof + _test_eof999: m.cs = 999; goto _test_eof + _test_eof1000: m.cs = 1000; goto _test_eof + _test_eof1001: m.cs = 1001; goto _test_eof + _test_eof1002: m.cs = 1002; goto _test_eof + _test_eof1003: m.cs = 1003; goto _test_eof + _test_eof1004: m.cs = 1004; goto _test_eof + _test_eof1005: m.cs = 1005; goto _test_eof + _test_eof1006: m.cs = 1006; goto _test_eof + _test_eof1007: m.cs = 1007; goto _test_eof + _test_eof1008: m.cs = 1008; goto _test_eof + _test_eof1009: m.cs = 1009; goto _test_eof + _test_eof1010: m.cs = 1010; goto _test_eof + _test_eof1011: m.cs = 1011; goto _test_eof + _test_eof1012: m.cs = 1012; goto _test_eof + _test_eof1013: m.cs = 1013; goto _test_eof + _test_eof1014: m.cs = 1014; goto _test_eof + _test_eof1015: m.cs = 1015; goto _test_eof + _test_eof1016: m.cs = 1016; goto _test_eof + _test_eof1017: m.cs = 1017; goto _test_eof + _test_eof1018: m.cs = 1018; goto _test_eof + _test_eof1019: m.cs = 1019; goto _test_eof + _test_eof1020: m.cs = 1020; goto _test_eof + _test_eof1021: m.cs = 1021; goto _test_eof + _test_eof1022: m.cs = 1022; goto _test_eof + _test_eof1023: m.cs = 1023; goto _test_eof + _test_eof1024: m.cs = 1024; goto _test_eof + _test_eof1025: m.cs = 1025; goto _test_eof + _test_eof1026: m.cs = 1026; goto _test_eof + _test_eof1027: m.cs = 1027; goto _test_eof + _test_eof1028: m.cs = 1028; goto _test_eof + _test_eof1029: m.cs = 1029; goto _test_eof + _test_eof1030: m.cs = 1030; goto _test_eof + _test_eof1031: m.cs = 1031; goto _test_eof + _test_eof1032: m.cs = 1032; goto _test_eof + _test_eof1033: m.cs = 1033; goto _test_eof + _test_eof1034: m.cs = 1034; goto _test_eof + _test_eof1035: m.cs = 1035; goto _test_eof + _test_eof1036: m.cs = 1036; goto _test_eof + _test_eof1037: m.cs = 1037; goto _test_eof + _test_eof1038: m.cs = 1038; goto _test_eof + _test_eof1039: m.cs = 1039; goto _test_eof + _test_eof1040: m.cs = 1040; goto _test_eof + _test_eof1041: m.cs = 1041; goto _test_eof + _test_eof1042: m.cs = 1042; goto _test_eof + _test_eof1043: m.cs = 1043; goto _test_eof + _test_eof1044: m.cs = 1044; goto _test_eof + _test_eof1045: m.cs = 1045; goto _test_eof + _test_eof1046: m.cs = 1046; goto _test_eof + _test_eof1047: m.cs = 1047; goto _test_eof + _test_eof1048: m.cs = 1048; goto _test_eof + _test_eof1049: m.cs = 1049; goto _test_eof + _test_eof1050: m.cs = 1050; goto _test_eof + _test_eof1051: m.cs = 1051; goto _test_eof + _test_eof1052: m.cs = 1052; goto _test_eof + _test_eof1053: m.cs = 1053; goto _test_eof + _test_eof1054: m.cs = 1054; goto _test_eof + _test_eof1055: m.cs = 1055; goto _test_eof + _test_eof1056: m.cs = 1056; goto _test_eof + _test_eof1057: m.cs = 1057; goto _test_eof + _test_eof1058: m.cs = 1058; goto _test_eof + _test_eof1059: m.cs = 1059; goto _test_eof + _test_eof1060: m.cs = 1060; goto _test_eof + _test_eof1061: m.cs = 1061; goto _test_eof + _test_eof1062: m.cs = 1062; goto _test_eof + _test_eof1063: m.cs = 1063; goto _test_eof + _test_eof1064: m.cs = 1064; goto _test_eof + _test_eof1065: m.cs = 1065; goto _test_eof + _test_eof1066: m.cs = 1066; goto _test_eof + _test_eof1067: m.cs = 1067; goto _test_eof + _test_eof1068: m.cs = 1068; goto _test_eof + _test_eof1069: m.cs = 1069; goto _test_eof + _test_eof1070: m.cs = 1070; goto _test_eof + _test_eof1071: m.cs = 1071; goto _test_eof + _test_eof1072: m.cs = 1072; goto _test_eof + _test_eof1073: m.cs = 1073; goto _test_eof + _test_eof1074: m.cs = 1074; goto _test_eof + _test_eof1075: m.cs = 1075; goto _test_eof + _test_eof1076: m.cs = 1076; goto _test_eof + _test_eof1077: m.cs = 1077; goto _test_eof + _test_eof1078: m.cs = 1078; goto _test_eof + _test_eof1079: m.cs = 1079; goto _test_eof + _test_eof1080: m.cs = 1080; goto _test_eof + _test_eof1081: m.cs = 1081; goto _test_eof + _test_eof1082: m.cs = 1082; goto _test_eof + _test_eof1083: m.cs = 1083; goto _test_eof + _test_eof1084: m.cs = 1084; goto _test_eof + _test_eof1085: m.cs = 1085; goto _test_eof + _test_eof1086: m.cs = 1086; goto _test_eof + _test_eof1087: m.cs = 1087; goto _test_eof + _test_eof1088: m.cs = 1088; goto _test_eof + _test_eof1089: m.cs = 1089; goto _test_eof + _test_eof1090: m.cs = 1090; goto _test_eof + _test_eof1091: m.cs = 1091; goto _test_eof + _test_eof1092: m.cs = 1092; goto _test_eof + _test_eof1093: m.cs = 1093; goto _test_eof + _test_eof1094: m.cs = 1094; goto _test_eof + _test_eof1095: m.cs = 1095; goto _test_eof + _test_eof1096: m.cs = 1096; goto _test_eof + _test_eof1097: m.cs = 1097; goto _test_eof + _test_eof1098: m.cs = 1098; goto _test_eof + _test_eof1099: m.cs = 1099; goto _test_eof + _test_eof1100: m.cs = 1100; goto _test_eof + _test_eof1101: m.cs = 1101; goto _test_eof + _test_eof1102: m.cs = 1102; goto _test_eof + _test_eof1103: m.cs = 1103; goto _test_eof + _test_eof1104: m.cs = 1104; goto _test_eof + _test_eof1105: m.cs = 1105; goto _test_eof + _test_eof1106: m.cs = 1106; goto _test_eof + _test_eof1107: m.cs = 1107; goto _test_eof + _test_eof1108: m.cs = 1108; goto _test_eof + _test_eof1109: m.cs = 1109; goto _test_eof + _test_eof1110: m.cs = 1110; goto _test_eof + _test_eof1111: m.cs = 1111; goto _test_eof + _test_eof1112: m.cs = 1112; goto _test_eof + _test_eof1113: m.cs = 1113; goto _test_eof + _test_eof1114: m.cs = 1114; goto _test_eof + _test_eof1115: m.cs = 1115; goto _test_eof + _test_eof1116: m.cs = 1116; goto _test_eof + _test_eof1117: m.cs = 1117; goto _test_eof + _test_eof1118: m.cs = 1118; goto _test_eof + _test_eof1119: m.cs = 1119; goto _test_eof + _test_eof1120: m.cs = 1120; goto _test_eof + _test_eof1121: m.cs = 1121; goto _test_eof + _test_eof1122: m.cs = 1122; goto _test_eof + _test_eof1123: m.cs = 1123; goto _test_eof + _test_eof1124: m.cs = 1124; goto _test_eof + _test_eof1125: m.cs = 1125; goto _test_eof + _test_eof1126: m.cs = 1126; goto _test_eof + _test_eof1127: m.cs = 1127; goto _test_eof + _test_eof1128: m.cs = 1128; goto _test_eof + _test_eof1129: m.cs = 1129; goto _test_eof + _test_eof1130: m.cs = 1130; goto _test_eof + _test_eof1131: m.cs = 1131; goto _test_eof + _test_eof1132: m.cs = 1132; goto _test_eof + _test_eof1133: m.cs = 1133; goto _test_eof + _test_eof1134: m.cs = 1134; goto _test_eof + _test_eof1135: m.cs = 1135; goto _test_eof + _test_eof1136: m.cs = 1136; goto _test_eof + _test_eof1137: m.cs = 1137; goto _test_eof + _test_eof1138: m.cs = 1138; goto _test_eof + _test_eof1139: m.cs = 1139; goto _test_eof + _test_eof1140: m.cs = 1140; goto _test_eof + _test_eof1141: m.cs = 1141; goto _test_eof + _test_eof1142: m.cs = 1142; goto _test_eof + _test_eof1143: m.cs = 1143; goto _test_eof + _test_eof1144: m.cs = 1144; goto _test_eof + _test_eof1145: m.cs = 1145; goto _test_eof + _test_eof1146: m.cs = 1146; goto _test_eof + _test_eof1147: m.cs = 1147; goto _test_eof + _test_eof1148: m.cs = 1148; goto _test_eof + _test_eof1149: m.cs = 1149; goto _test_eof + _test_eof1150: m.cs = 1150; goto _test_eof + _test_eof1151: m.cs = 1151; goto _test_eof + _test_eof1152: m.cs = 1152; goto _test_eof + _test_eof1153: m.cs = 1153; goto _test_eof + _test_eof1154: m.cs = 1154; goto _test_eof + _test_eof1155: m.cs = 1155; goto _test_eof + _test_eof1156: m.cs = 1156; goto _test_eof + _test_eof1157: m.cs = 1157; goto _test_eof + _test_eof1158: m.cs = 1158; goto _test_eof + _test_eof1159: m.cs = 1159; goto _test_eof + _test_eof1160: m.cs = 1160; goto _test_eof + _test_eof1161: m.cs = 1161; goto _test_eof + _test_eof1162: m.cs = 1162; goto _test_eof + _test_eof1163: m.cs = 1163; goto _test_eof + _test_eof1164: m.cs = 1164; goto _test_eof + _test_eof1165: m.cs = 1165; goto _test_eof + _test_eof1166: m.cs = 1166; goto _test_eof + _test_eof1167: m.cs = 1167; goto _test_eof + _test_eof1168: m.cs = 1168; goto _test_eof + _test_eof1169: m.cs = 1169; goto _test_eof + _test_eof1170: m.cs = 1170; goto _test_eof + _test_eof1171: m.cs = 1171; goto _test_eof + _test_eof1172: m.cs = 1172; goto _test_eof + _test_eof1173: m.cs = 1173; goto _test_eof + _test_eof1174: m.cs = 1174; goto _test_eof + _test_eof1175: m.cs = 1175; goto _test_eof + _test_eof1176: m.cs = 1176; goto _test_eof + _test_eof1177: m.cs = 1177; goto _test_eof + _test_eof1178: m.cs = 1178; goto _test_eof + _test_eof1179: m.cs = 1179; goto _test_eof + _test_eof1180: m.cs = 1180; goto _test_eof + _test_eof1181: m.cs = 1181; goto _test_eof + _test_eof1182: m.cs = 1182; goto _test_eof + _test_eof1183: m.cs = 1183; goto _test_eof + _test_eof1184: m.cs = 1184; goto _test_eof + _test_eof1185: m.cs = 1185; goto _test_eof + _test_eof1186: m.cs = 1186; goto _test_eof + _test_eof1187: m.cs = 1187; goto _test_eof + _test_eof1188: m.cs = 1188; goto _test_eof + _test_eof1189: m.cs = 1189; goto _test_eof + _test_eof1190: m.cs = 1190; goto _test_eof + _test_eof1191: m.cs = 1191; goto _test_eof + _test_eof1196: m.cs = 1196; goto _test_eof + _test_eof1197: m.cs = 1197; goto _test_eof + _test_eof1198: m.cs = 1198; goto _test_eof + _test_eof1199: m.cs = 1199; goto _test_eof + _test_eof1200: m.cs = 1200; goto _test_eof + _test_eof1201: m.cs = 1201; goto _test_eof + _test_eof1202: m.cs = 1202; goto _test_eof + _test_eof596: m.cs = 596; goto _test_eof + _test_eof597: m.cs = 597; goto _test_eof + _test_eof598: m.cs = 598; goto _test_eof + _test_eof599: m.cs = 599; goto _test_eof + _test_eof600: m.cs = 600; goto _test_eof + _test_eof601: m.cs = 601; goto _test_eof + _test_eof602: m.cs = 602; goto _test_eof + _test_eof1203: m.cs = 1203; goto _test_eof + + _test_eof: {} + if ( m.p) == ( m.eof) { + switch m.cs { + case 1197, 1199, 1200, 1201, 1202: +//line rfc5424/machine.go.rl:158 + + output.message = string(m.text()) - case 4: + case 1: +//line rfc5424/machine.go.rl:168 - m.err = fmt.Errorf(ErrVersion+ColumnPositionTemplate, m.p) - (m.p)-- + if(!m.allowSkipPri) { + m.err = fmt.Errorf(ErrPri + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } + } else { + ( m.p)-- - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st603 } + } - { - goto st614 - } + case 4, 603: +//line rfc5424/machine.go.rl:179 - case 6, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590: + m.err = fmt.Errorf(ErrVersion + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrTimestamp+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } + case 15, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 614, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724: +//line rfc5424/machine.go.rl:209 - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrMsgID + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - case 8, 9, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553: + case 16, 615: +//line rfc5424/machine.go.rl:215 - m.err = fmt.Errorf(ErrHostname+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrStructuredData + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + case 596, 597, 598, 599, 600, 601, 602: +//line rfc5424/machine.go.rl:240 - { - goto st614 - } + // If error encountered within the message rule ... + if m.msgat > 0 { + // Save the text until valid (m.p is where the parser has stopped) + output.message = string(m.data[m.msgat:m.p]) + } - case 10, 11, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299: + if m.compliantMsg { + m.err = fmt.Errorf(ErrMsgNotCompliant + ColumnPositionTemplate, m.p) + } else { + m.err = fmt.Errorf(ErrMsg + ColumnPositionTemplate, m.p) + } - m.err = fmt.Errorf(ErrAppname+ColumnPositionTemplate, m.p) - (m.p)-- + ( m.p)-- - { - goto st614 - } + {goto st1203 } - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + case 7, 606: +//line rfc5424/machine.go.rl:263 - { - goto st614 - } + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - case 12, 13, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252: + {goto st1203 } - m.err = fmt.Errorf(ErrProcID+ColumnPositionTemplate, m.p) - (m.p)-- + case 5, 604: +//line rfc5424/machine.go.rl:82 - { - goto st614 - } + output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- +//line rfc5424/machine.go.rl:263 - { - goto st614 - } + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - case 14: + {goto st1203 } - m.err = fmt.Errorf(ErrMsgID+ColumnPositionTemplate, m.p) - (m.p)-- + case 578, 1177: +//line rfc5424/machine.go.rl:86 - { - goto st614 - } + if t, e := time.Parse(RFC3339MICRO, string(m.text())); e != nil { + m.err = fmt.Errorf("%s [col %d]", e, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } + } else { + output.timestamp = t + output.timestampSet = true + } - { - goto st614 - } +//line rfc5424/machine.go.rl:263 - case 17: + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - delete(output.structuredData, m.currentelem) - if len(output.structuredData) == 0 { - output.hasElements = false - } - m.err = fmt.Errorf(ErrSdID+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } + case 2, 3, 593, 594, 595: +//line rfc5424/machine.go.rl:162 - m.err = fmt.Errorf(ErrStructuredData+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrPrival + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - case 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 57, 58, 59, 60, 61, 62, 63: +//line rfc5424/machine.go.rl:168 - if len(output.structuredData) > 0 { - delete(output.structuredData[m.currentelem], m.currentparam) - } - m.err = fmt.Errorf(ErrSdParam+ColumnPositionTemplate, m.p) - (m.p)-- + if(!m.allowSkipPri) { + m.err = fmt.Errorf(ErrPri + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } + } else { + ( m.p)-- - m.err = fmt.Errorf(ErrStructuredData+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st603 } + } - { - goto st614 - } + case 6, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 605, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189: +//line rfc5424/machine.go.rl:185 - case 607, 609: + m.err = fmt.Errorf(ErrTimestamp + ColumnPositionTemplate, m.p) + ( m.p)-- - m.pb = m.p + {goto st1203 } - m.msgat = m.p +//line rfc5424/machine.go.rl:263 - output.message = string(m.text()) + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - case 18, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94: + {goto st1203 } - if _, ok := output.structuredData[string(m.text())]; ok { - // As per RFC5424 section 6.3.2 SD-ID MUST NOT exist more than once in a message - m.err = fmt.Errorf(ErrSdIDDuplicated+ColumnPositionTemplate, m.p) - (m.p)-- + case 8, 9, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 607, 608, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152: +//line rfc5424/machine.go.rl:191 - { - goto st614 - } - } else { - id := string(m.text()) - output.structuredData[id] = map[string]string{} - output.hasElements = true - m.currentelem = id - } + m.err = fmt.Errorf(ErrHostname + ColumnPositionTemplate, m.p) + ( m.p)-- - delete(output.structuredData, m.currentelem) - if len(output.structuredData) == 0 { - output.hasElements = false - } - m.err = fmt.Errorf(ErrSdID+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } +//line rfc5424/machine.go.rl:263 - m.err = fmt.Errorf(ErrStructuredData+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - case 2, 3, 593, 594, 595: + case 10, 11, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 609, 610, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898: +//line rfc5424/machine.go.rl:197 - m.err = fmt.Errorf(ErrPrival+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrAppname + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - m.err = fmt.Errorf(ErrPri+ColumnPositionTemplate, m.p) - (m.p)-- +//line rfc5424/machine.go.rl:263 - { - goto st614 - } + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } + case 12, 13, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 611, 612, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851: +//line rfc5424/machine.go.rl:203 - case 591, 592: + m.err = fmt.Errorf(ErrProcID + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrVersion+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } +//line rfc5424/machine.go.rl:263 - output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrParse+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } + case 14, 613: +//line rfc5424/machine.go.rl:209 - case 53, 54, 56: + m.err = fmt.Errorf(ErrMsgID + ColumnPositionTemplate, m.p) + ( m.p)-- - m.err = fmt.Errorf(ErrEscape+ColumnPositionTemplate, m.p) - (m.p)-- + {goto st1203 } - { - goto st614 - } +//line rfc5424/machine.go.rl:263 - if len(output.structuredData) > 0 { - delete(output.structuredData[m.currentelem], m.currentparam) - } - m.err = fmt.Errorf(ErrSdParam+ColumnPositionTemplate, m.p) - (m.p)-- + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- - { - goto st614 - } + {goto st1203 } - m.err = fmt.Errorf(ErrStructuredData+ColumnPositionTemplate, m.p) - (m.p)-- + case 17, 616: +//line rfc5424/machine.go.rl:221 - { - goto st614 - } + delete(output.structuredData, m.currentelem) + if len(output.structuredData) == 0 { + output.hasElements = false + } + m.err = fmt.Errorf(ErrSdID + ColumnPositionTemplate, m.p) + ( m.p)-- - } - } + {goto st1203 } + +//line rfc5424/machine.go.rl:215 + + m.err = fmt.Errorf(ErrStructuredData + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + + case 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 57, 58, 59, 60, 61, 62, 63, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 654, 656, 657, 658, 659, 660, 661, 662: +//line rfc5424/machine.go.rl:231 + + if len(output.structuredData) > 0 { + delete(output.structuredData[m.currentelem], m.currentparam) + } + m.err = fmt.Errorf(ErrSdParam + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + +//line rfc5424/machine.go.rl:215 + + m.err = fmt.Errorf(ErrStructuredData + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + + case 1196, 1198: +//line rfc5424/machine.go.rl:60 + + m.pb = m.p + +//line rfc5424/machine.go.rl:64 + + m.msgat = m.p + +//line rfc5424/machine.go.rl:158 + + output.message = string(m.text()) - _out: - { + case 18, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 617, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693: +//line rfc5424/machine.go.rl:117 + + if _, ok := output.structuredData[string(m.text())]; ok { + // As per RFC5424 section 6.3.2 SD-ID MUST NOT exist more than once in a message + m.err = fmt.Errorf(ErrSdIDDuplicated + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + } else { + id := string(m.text()) + output.structuredData[id] = map[string]string{} + output.hasElements = true + m.currentelem = id + } + +//line rfc5424/machine.go.rl:221 + + delete(output.structuredData, m.currentelem) + if len(output.structuredData) == 0 { + output.hasElements = false + } + m.err = fmt.Errorf(ErrSdID + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + +//line rfc5424/machine.go.rl:215 + + m.err = fmt.Errorf(ErrStructuredData + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + + case 591, 592, 1190, 1191: +//line rfc5424/machine.go.rl:179 + + m.err = fmt.Errorf(ErrVersion + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + +//line rfc5424/machine.go.rl:82 + + output.version = uint16(common.UnsafeUTF8DecimalCodePointsToInt(m.text())) + +//line rfc5424/machine.go.rl:263 + + m.err = fmt.Errorf(ErrParse + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + + case 53, 54, 56, 652, 653, 655: +//line rfc5424/machine.go.rl:257 + + m.err = fmt.Errorf(ErrEscape + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + +//line rfc5424/machine.go.rl:231 + + if len(output.structuredData) > 0 { + delete(output.structuredData[m.currentelem], m.currentparam) + } + m.err = fmt.Errorf(ErrSdParam + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + +//line rfc5424/machine.go.rl:215 + + m.err = fmt.Errorf(ErrStructuredData + ColumnPositionTemplate, m.p) + ( m.p)-- + + {goto st1203 } + +//line rfc5424/machine.go:20614 } } - if m.cs < firstFinal || m.cs == enFail { + _out: {} + } + +//line rfc5424/machine.go.rl:408 + + if m.cs < first_final || m.cs == en_fail { if m.bestEffort && output.minimal() { // An error occurred but partial parsing is on and partial message is minimally valid return output.export(), m.err diff --git a/rfc5424/machine_test.go b/rfc5424/machine_test.go index 54b28c3..d8a35b6 100644 --- a/rfc5424/machine_test.go +++ b/rfc5424/machine_test.go @@ -1503,6 +1503,17 @@ y`), fmt.Sprintf(ErrParse+ColumnPositionTemplate, 7), (&SyslogMessage{}).SetVersion(10).SetPriority(1), }, + { + []byte("1 2003-10-11T22:14:15.003Z mymachine.example.com su - ID47 - BOM'su root' failed for lonvick on /dev/pts/8"), + false, + false, + nil, + "expecting a priority value within angle brackets [col 0]", + nil, + }, +} + +var withSkipPriMsgTestCases = []testCase{ { []byte("1 2003-10-11T22:14:15.003Z mymachine.example.com su - ID47 - BOM'su root' failed for lonvick on /dev/pts/8"), true, @@ -1518,14 +1529,6 @@ y`), "", nil, }, - { - []byte("1 2003-10-11T22:14:15.003Z mymachine.example.com su - ID47 - BOM'su root' failed for lonvick on /dev/pts/8"), - false, - false, - nil, - "expecting a priority value within angle brackets [col 0]", - nil, - }, } var nonCompliantMsgTestCases = []testCase{ @@ -1871,6 +1874,10 @@ func TestMachineParse(t *testing.T) { runTestCases(t, append(testCases)) } +func TestMachineParseWithSkipPri(t *testing.T) { + runTestCases(t, append(testCases, withSkipPriMsgTestCases...)) +} + func TestMachineParseWithCompliantMsgOn(t *testing.T) { runTestCases(t, append(testCases, nonCompliantMsgTestCases...), WithCompliantMsg()) }