diff options
42 files changed, 238 insertions, 209 deletions
diff --git a/apps/plugins/puzzles/genhelp.sh b/apps/plugins/puzzles/genhelp.sh index 007cdafd21..d6c4cc3e94 100755 --- a/apps/plugins/puzzles/genhelp.sh +++ b/apps/plugins/puzzles/genhelp.sh | |||
@@ -89,3 +89,6 @@ done | |||
89 | 89 | ||
90 | # generate quick help from gamedesc.txt | 90 | # generate quick help from gamedesc.txt |
91 | cat src/gamedesc.txt | awk -F ":" '{print "const char quick_help_text[] = \""$5"\";" >> "help/"$1".c" }' | 91 | cat src/gamedesc.txt | awk -F ":" '{print "const char quick_help_text[] = \""$5"\";" >> "help/"$1".c" }' |
92 | |||
93 | rm puzzles.txt | ||
94 | rm compress | ||
diff --git a/apps/plugins/puzzles/help.h b/apps/plugins/puzzles/help.h index a5839904f5..e9cac9b337 100644 --- a/apps/plugins/puzzles/help.h +++ b/apps/plugins/puzzles/help.h | |||
@@ -4,8 +4,11 @@ | |||
4 | 4 | ||
5 | /* defined in help/ */ | 5 | /* defined in help/ */ |
6 | extern const char help_text[]; | 6 | extern const char help_text[]; |
7 | #ifdef ROCKBOX | 7 | #if defined(ROCKBOX) || defined(LZ4TINY) |
8 | extern const char quick_help_text[]; | 8 | extern const char quick_help_text[]; |
9 | extern struct style_text help_text_style[]; | ||
10 | extern const unsigned short help_text_len, quick_help_text_len, help_text_words; | 9 | extern const unsigned short help_text_len, quick_help_text_len, help_text_words; |
11 | #endif | 10 | #endif |
11 | |||
12 | #if defined(ROCKBOX) | ||
13 | extern struct style_text help_text_style[]; | ||
14 | #endif | ||
diff --git a/apps/plugins/puzzles/help/blackbox.c b/apps/plugins/puzzles/help/blackbox.c index a211ecbe92..f67ee28e62 100644 --- a/apps/plugins/puzzles/help/blackbox.c +++ b/apps/plugins/puzzles/help/blackbox.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/bridges.c b/apps/plugins/puzzles/help/bridges.c index 2fc7c90a4f..97fc5c6ab0 100644 --- a/apps/plugins/puzzles/help/bridges.c +++ b/apps/plugins/puzzles/help/bridges.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/cube.c b/apps/plugins/puzzles/help/cube.c index 32fa8166c1..3d9137afe0 100644 --- a/apps/plugins/puzzles/help/cube.c +++ b/apps/plugins/puzzles/help/cube.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/dominosa.c b/apps/plugins/puzzles/help/dominosa.c index becc209a3a..b2994d79da 100644 --- a/apps/plugins/puzzles/help/dominosa.c +++ b/apps/plugins/puzzles/help/dominosa.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/fifteen.c b/apps/plugins/puzzles/help/fifteen.c index f1bee5be8f..72856d1061 100644 --- a/apps/plugins/puzzles/help/fifteen.c +++ b/apps/plugins/puzzles/help/fifteen.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/filling.c b/apps/plugins/puzzles/help/filling.c index d876ed29e2..bf40041cff 100644 --- a/apps/plugins/puzzles/help/filling.c +++ b/apps/plugins/puzzles/help/filling.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/flip.c b/apps/plugins/puzzles/help/flip.c index 2c11fc4692..06606d97b2 100644 --- a/apps/plugins/puzzles/help/flip.c +++ b/apps/plugins/puzzles/help/flip.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/flood.c b/apps/plugins/puzzles/help/flood.c index 6841e50453..25a95cb394 100644 --- a/apps/plugins/puzzles/help/flood.c +++ b/apps/plugins/puzzles/help/flood.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/galaxies.c b/apps/plugins/puzzles/help/galaxies.c index b6d836d065..68a59e6339 100644 --- a/apps/plugins/puzzles/help/galaxies.c +++ b/apps/plugins/puzzles/help/galaxies.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
@@ -6,15 +6,15 @@ | |||
6 | 6 | ||
7 | struct style_text help_text_style[] = { | 7 | struct style_text help_text_style[] = { |
8 | { 0, TEXT_CENTER | C_RED }, | 8 | { 0, TEXT_CENTER | C_RED }, |
9 | { 94, TEXT_CENTER | C_RED }, | 9 | { 132, TEXT_CENTER | C_RED }, |
10 | { 402, TEXT_CENTER | C_RED }, | 10 | { 444, TEXT_CENTER | C_RED }, |
11 | { 419, TEXT_UNDERLINE }, | 11 | { 461, TEXT_UNDERLINE }, |
12 | { 420, TEXT_UNDERLINE }, | 12 | { 462, TEXT_UNDERLINE }, |
13 | { 430, TEXT_UNDERLINE }, | 13 | { 472, TEXT_UNDERLINE }, |
14 | LAST_STYLE_ITEM | 14 | LAST_STYLE_ITEM |
15 | }; | 15 | }; |
16 | 16 | ||
17 | /* orig 2509 comp 1728 ratio 0.688721 level 11 saved 781 */ | 17 | /* orig 2754 comp 1877 ratio 0.681554 level 11 saved 877 */ |
18 | const char help_text[] = { | 18 | const char help_text[] = { |
19 | 0xf0, 0x41, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72, 0x20, | 19 | 0xf0, 0x41, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72, 0x20, |
20 | 0x32, 0x38, 0x3a, 0x20, 0x47, 0x61, 0x6c, 0x61, 0x78, 0x69, | 20 | 0x32, 0x38, 0x3a, 0x20, 0x47, 0x61, 0x6c, 0x61, 0x78, 0x69, |
@@ -24,173 +24,188 @@ const char help_text[] = { | |||
24 | 0x72, 0x69, 0x64, 0x00, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, | 24 | 0x72, 0x69, 0x64, 0x00, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, |
25 | 0x6e, 0x69, 0x6e, 0x67, 0x00, 0x61, 0x00, 0x6e, 0x75, 0x6d, | 25 | 0x6e, 0x69, 0x6e, 0x67, 0x00, 0x61, 0x00, 0x6e, 0x75, 0x6d, |
26 | 0x62, 0x65, 0x72, 0x00, 0x6f, 0x66, 0x00, 0x64, 0x6f, 0x74, | 26 | 0x62, 0x65, 0x72, 0x00, 0x6f, 0x66, 0x00, 0x64, 0x6f, 0x74, |
27 | 0x73, 0x2e, 0x39, 0x00, 0xf2, 0x11, 0x72, 0x00, 0x61, 0x69, | 27 | 0x73, 0x2e, 0x39, 0x00, 0xf4, 0x0a, 0x72, 0x00, 0x61, 0x69, |
28 | 0x6d, 0x00, 0x69, 0x73, 0x00, 0x74, 0x6f, 0x00, 0x64, 0x72, | 28 | 0x6d, 0x00, 0x69, 0x73, 0x00, 0x74, 0x6f, 0x00, 0x70, 0x61, |
29 | 0x61, 0x77, 0x00, 0x65, 0x64, 0x67, 0x65, 0x73, 0x00, 0x61, | 29 | 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x74, 0x68, |
30 | 0x6c, 0x6f, 0x6e, 0x67, 0x00, 0x74, 0x68, 0x65, 0x46, 0x00, | 30 | 0x65, 0x4b, 0x00, 0x70, 0x6c, 0x65, 0x00, 0x69, 0x6e, 0x74, |
31 | 0xf0, 0x03, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x00, 0x77, 0x68, | 31 | 0x6f, 0x49, 0x00, 0xe0, 0x6e, 0x65, 0x63, 0x74, 0x65, 0x64, |
32 | 0x69, 0x63, 0x68, 0x00, 0x64, 0x69, 0x76, 0x69, 0x64, 0x65, | 32 | 0x00, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x73, 0x47, 0x00, |
33 | 0x1c, 0x00, 0x04, 0x6e, 0x00, 0xf3, 0x19, 0x6c, 0x65, 0x00, | 33 | 0xf3, 0x12, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x73, 0x2c, |
34 | 0x69, 0x6e, 0x74, 0x6f, 0x00, 0x72, 0x65, 0x67, 0x69, 0x6f, | 34 | 0x00, 0x69, 0x6e, 0x00, 0x73, 0x75, 0x63, 0x68, 0x00, 0x61, |
35 | 0x6e, 0x73, 0x00, 0x69, 0x6e, 0x00, 0x73, 0x75, 0x63, 0x68, | 35 | 0x00, 0x77, 0x61, 0x79, 0x00, 0x74, 0x68, 0x61, 0x74, 0x00, |
36 | 0x00, 0x61, 0x00, 0x77, 0x61, 0x79, 0x00, 0x74, 0x68, 0x61, | 36 | 0x65, 0x76, 0x65, 0x72, 0x79, 0x2d, 0x00, 0x00, 0x61, 0x00, |
37 | 0x74, 0x00, 0x65, 0x76, 0x65, 0x72, 0x79, 0x21, 0x00, 0x00, | 37 | 0xf0, 0x00, 0x31, 0x38, 0x30, 0x2d, 0x64, 0x65, 0x67, 0x72, |
38 | 0x6e, 0x00, 0xf5, 0x16, 0x31, 0x38, 0x30, 0x2d, 0x64, 0x65, | 38 | 0x65, 0x65, 0x00, 0x72, 0x6f, 0x74, 0x61, 0x68, 0x00, 0xf5, |
39 | 0x67, 0x72, 0x65, 0x65, 0x00, 0x72, 0x6f, 0x74, 0x61, 0x74, | 39 | 0x03, 0x61, 0x6c, 0x6c, 0x79, 0x00, 0x73, 0x79, 0x6d, 0x6d, |
40 | 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x00, 0x73, 0x79, | 40 | 0x65, 0x74, 0x72, 0x69, 0x63, 0x2c, 0x00, 0x61, 0x6e, 0xb1, |
41 | 0x6d, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x2c, 0x00, 0x61, | 41 | 0x00, 0xd0, 0x73, 0x00, 0x65, 0x78, 0x61, 0x63, 0x74, 0x6c, |
42 | 0x6e, 0xbe, 0x00, 0xd0, 0x73, 0x00, 0x65, 0x78, 0x61, 0x63, | 42 | 0x79, 0x00, 0x6f, 0x6e, 0x65, 0xaf, 0x00, 0x60, 0x00, 0x77, |
43 | 0x74, 0x6c, 0x79, 0x00, 0x6f, 0x6e, 0x65, 0xbc, 0x00, 0x02, | 43 | 0x68, 0x69, 0x63, 0x68, 0x49, 0x00, 0x40, 0x6c, 0x6f, 0x63, |
44 | 0x8b, 0x00, 0x00, 0x49, 0x00, 0xf4, 0x09, 0x6c, 0x6f, 0x63, | 44 | 0x61, 0x88, 0x00, 0xd0, 0x61, 0x74, 0x00, 0x69, 0x74, 0x73, |
45 | 0x61, 0x74, 0x65, 0x64, 0x00, 0x61, 0x74, 0x00, 0x69, 0x74, | 45 | 0x00, 0x63, 0x65, 0x6e, 0x74, 0x72, 0x65, 0x8e, 0x00, 0x03, |
46 | 0x73, 0x00, 0x63, 0x65, 0x6e, 0x74, 0x72, 0x65, 0x00, 0x6f, | 46 | 0x4a, 0x00, 0xf0, 0x00, 0x79, 0x2e, 0x00, 0x00, 0x00, 0x54, |
47 | 0x66, 0x4a, 0x00, 0xf0, 0x04, 0x79, 0x2e, 0x00, 0x00, 0x00, | 47 | 0x6f, 0x00, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x00, 0x79, 0xe4, |
48 | 0x54, 0x68, 0x69, 0x73, 0x00, 0x70, 0x75, 0x7a, 0x7a, 0x6c, | 48 | 0x00, 0x40, 0x73, 0x6f, 0x6c, 0x75, 0x71, 0x00, 0x10, 0x2c, |
49 | 0x65, 0x00, 0x77, 0x61, 0xa1, 0x00, 0x30, 0x76, 0x65, 0x6e, | 49 | 0x0f, 0x00, 0xf0, 0x02, 0x00, 0x64, 0x72, 0x61, 0x77, 0x00, |
50 | 0x36, 0x00, 0xf1, 0x06, 0x62, 0x79, 0x00, 0x4e, 0x69, 0x6b, | 50 | 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x00, 0x61, 0x6c, 0x6f, 0x6e, |
51 | 0x67, 0xef, 0x00, 0x02, 0x2e, 0x01, 0x41, 0x65, 0x64, 0x67, | ||
52 | 0x65, 0x0b, 0x01, 0x41, 0x6d, 0x61, 0x72, 0x6b, 0x17, 0x00, | ||
53 | 0x90, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x72, 0x69, 0x65, | ||
54 | 0xf0, 0x00, 0x00, 0x12, 0x00, 0x04, 0xff, 0x00, 0xc0, 0x2e, | ||
55 | 0x00, 0x54, 0x68, 0x65, 0x00, 0x70, 0x75, 0x7a, 0x7a, 0x6c, | ||
56 | 0x65, 0x96, 0x00, 0xc1, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, | ||
57 | 0x74, 0x65, 0x00, 0x77, 0x68, 0x65, 0x41, 0x01, 0x01, 0x44, | ||
58 | 0x00, 0x23, 0x65, 0x64, 0x69, 0x00, 0x26, 0x6f, 0x6e, 0x66, | ||
59 | 0x00, 0xc0, 0x61, 0x72, 0x65, 0x00, 0x70, 0x72, 0x65, 0x63, | ||
60 | 0x69, 0x73, 0x65, 0x6c, 0x2d, 0x01, 0x32, 0x6f, 0x73, 0x65, | ||
61 | 0x33, 0x01, 0xc4, 0x73, 0x65, 0x70, 0x61, 0x72, 0x61, 0x74, | ||
62 | 0x65, 0x00, 0x74, 0x77, 0x6f, 0x5c, 0x01, 0x30, 0x00, 0x62, | ||
63 | 0x65, 0xa4, 0x00, 0x30, 0x69, 0x6e, 0x67, 0x98, 0x00, 0x94, | ||
64 | 0x64, 0x69, 0x66, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x74, 0x87, | ||
65 | 0x00, 0x01, 0xec, 0x00, 0x34, 0x68, 0x69, 0x73, 0x8a, 0x00, | ||
66 | 0x90, 0x77, 0x61, 0x73, 0x00, 0x69, 0x6e, 0x76, 0x65, 0x6e, | ||
67 | 0x22, 0x01, 0xf1, 0x06, 0x62, 0x79, 0x00, 0x4e, 0x69, 0x6b, | ||
51 | 0x6f, 0x6c, 0x69, 0x00, 0x5b, 0x31, 0x33, 0x5d, 0x2c, 0x00, | 68 | 0x6f, 0x6c, 0x69, 0x00, 0x5b, 0x31, 0x33, 0x5d, 0x2c, 0x00, |
52 | 0x75, 0x6e, 0x64, 0x65, 0x72, 0xdb, 0x00, 0x80, 0x6e, 0x61, | 69 | 0x75, 0x6e, 0x64, 0x65, 0x72, 0x88, 0x00, 0x80, 0x6e, 0x61, |
53 | 0x6d, 0x65, 0x00, 0x60, 0x54, 0x65, 0x80, 0x00, 0x70, 0x00, | 70 | 0x6d, 0x65, 0x00, 0x60, 0x54, 0x65, 0x6c, 0x01, 0x70, 0x00, |
54 | 0x53, 0x68, 0x6f, 0x77, 0x27, 0x3b, 0x61, 0x00, 0x01, 0x18, | 71 | 0x53, 0x68, 0x6f, 0x77, 0x27, 0x3b, 0x4d, 0x01, 0x00, 0x18, |
55 | 0x00, 0x00, 0x78, 0x00, 0xf0, 0x00, 0x63, 0x6f, 0x6d, 0x6d, | 72 | 0x00, 0x04, 0xce, 0x00, 0x30, 0x6d, 0x6f, 0x6e, 0x9e, 0x00, |
56 | 0x6f, 0x6e, 0x6c, 0x79, 0x00, 0x74, 0x72, 0x61, 0x6e, 0x73, | 73 | 0x50, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x70, 0x01, 0x02, 0x07, |
57 | 0x6c, 0x84, 0x00, 0x02, 0x05, 0x01, 0xf4, 0x04, 0x45, 0x6e, | 74 | 0x02, 0xf4, 0x04, 0x45, 0x6e, 0x67, 0x6c, 0x69, 0x73, 0x68, |
58 | 0x67, 0x6c, 0x69, 0x73, 0x68, 0x00, 0x61, 0x73, 0x00, 0x60, | 75 | 0x00, 0x61, 0x73, 0x00, 0x60, 0x53, 0x70, 0x69, 0x72, 0x61, |
59 | 0x53, 0x70, 0x69, 0x72, 0x61, 0x6c, 0x00, 0xac, 0x01, 0x45, | 76 | 0x6c, 0x00, 0x8b, 0x02, 0x45, 0x27, 0x2e, 0x00, 0x00, 0x0d, |
60 | 0x27, 0x2e, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x89, 0x00, 0x01, | 77 | 0x00, 0x00, 0x89, 0x00, 0x01, 0xcc, 0x01, 0x70, 0x72, 0x69, |
61 | 0xe0, 0x00, 0x70, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, | 78 | 0x62, 0x75, 0x74, 0x65, 0x64, 0xbd, 0x00, 0x21, 0x74, 0x68, |
62 | 0x81, 0x01, 0x21, 0x74, 0x68, 0x5a, 0x00, 0x40, 0x6c, 0x6c, | 79 | 0x5a, 0x00, 0x40, 0x6c, 0x6c, 0x65, 0x63, 0x8d, 0x01, 0x00, |
63 | 0x65, 0x63, 0x12, 0x01, 0x00, 0x9f, 0x00, 0xb0, 0x4a, 0x61, | 80 | 0x9f, 0x00, 0xb0, 0x4a, 0x61, 0x6d, 0x65, 0x73, 0x00, 0x48, |
64 | 0x6d, 0x65, 0x73, 0x00, 0x48, 0x61, 0x72, 0x76, 0x65, 0xcb, | 81 | 0x61, 0x72, 0x76, 0x65, 0xb7, 0x01, 0x01, 0xa8, 0x00, 0xd1, |
65 | 0x00, 0x01, 0xa8, 0x00, 0xd1, 0x00, 0x68, 0x74, 0x74, 0x70, | 82 | 0x00, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, |
66 | 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x6e, 0xbf, 0x00, | 83 | 0x77, 0x2e, 0x6e, 0xbf, 0x00, 0xa2, 0x2e, 0x63, 0x6f, 0x2e, |
67 | 0xa2, 0x2e, 0x63, 0x6f, 0x2e, 0x6a, 0x70, 0x2f, 0x65, 0x6e, | 84 | 0x6a, 0x70, 0x2f, 0x65, 0x6e, 0x2f, 0xe6, 0x00, 0xf6, 0x10, |
68 | 0x2f, 0xe6, 0x00, 0xf6, 0x10, 0x73, 0x2f, 0x61, 0x73, 0x74, | 85 | 0x73, 0x2f, 0x61, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x6f, 0x6d, |
69 | 0x72, 0x6f, 0x6e, 0x6f, 0x6d, 0x69, 0x63, 0x61, 0x6c, 0x5f, | 86 | 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x2e, |
70 | 0x73, 0x68, 0x6f, 0x77, 0x2e, 0x68, 0x74, 0x6d, 0x6c, 0x00, | 87 | 0x68, 0x74, 0x6d, 0x6c, 0x00, 0x00, 0x00, 0x32, 0x38, 0x2e, |
71 | 0x00, 0x00, 0x32, 0x38, 0x2e, 0x31, 0x3e, 0x02, 0x01, 0x81, | 88 | 0x31, 0x1d, 0x03, 0x01, 0x81, 0x00, 0x21, 0x6f, 0x6c, 0x26, |
72 | 0x00, 0x21, 0x6f, 0x6c, 0x47, 0x02, 0xf6, 0x02, 0x4c, 0x65, | 89 | 0x03, 0xa0, 0x4c, 0x65, 0x66, 0x74, 0x2d, 0x63, 0x6c, 0x69, |
73 | 0x66, 0x74, 0x2d, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x00, 0x6f, | 90 | 0x63, 0x6b, 0x8d, 0x01, 0x30, 0x61, 0x6e, 0x79, 0x8d, 0x01, |
74 | 0x6e, 0x00, 0x61, 0x6e, 0x79, 0xfc, 0x01, 0x05, 0x1e, 0x02, | 91 | 0x02, 0x9f, 0x01, 0x32, 0x00, 0x74, 0x6f, 0x15, 0x02, 0x21, |
75 | 0x21, 0x61, 0x6e, 0x21, 0x02, 0x30, 0x00, 0x69, 0x66, 0x26, | 92 | 0x61, 0x6e, 0x03, 0x02, 0x21, 0x00, 0x69, 0xeb, 0x01, 0x10, |
76 | 0x01, 0x10, 0x72, 0x0b, 0x01, 0x31, 0x6e, 0x27, 0x74, 0x97, | 93 | 0x72, 0x0b, 0x01, 0x31, 0x6e, 0x27, 0x74, 0x83, 0x02, 0xb0, |
77 | 0x01, 0xc1, 0x61, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x2c, | 94 | 0x61, 0x6c, 0x72, 0x65, 0x61, 0x64, 0x79, 0x2c, 0x00, 0x6f, |
78 | 0x00, 0x6f, 0x72, 0x00, 0x0d, 0x02, 0x79, 0x6d, 0x6f, 0x76, | 95 | 0x72, 0x2f, 0x00, 0x99, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, |
79 | 0x65, 0x00, 0x6f, 0x6e, 0x2d, 0x00, 0xf0, 0x01, 0x2e, 0x00, | 96 | 0x00, 0x6f, 0x6e, 0x2d, 0x00, 0x61, 0x2e, 0x00, 0x57, 0x68, |
80 | 0x57, 0x68, 0x65, 0x6e, 0x00, 0x79, 0x6f, 0x75, 0x00, 0x63, | 97 | 0x65, 0x6e, 0x65, 0x02, 0x50, 0x63, 0x72, 0x65, 0x61, 0x74, |
81 | 0x72, 0x65, 0x61, 0x74, 0xb4, 0x02, 0x54, 0x76, 0x61, 0x6c, | 98 | 0x93, 0x03, 0x54, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x08, 0x03, |
82 | 0x69, 0x64, 0x1c, 0x02, 0x46, 0x28, 0x6f, 0x6e, 0x65, 0xde, | 99 | 0x46, 0x28, 0x6f, 0x6e, 0x65, 0xca, 0x02, 0x7f, 0x63, 0x6c, |
83 | 0x01, 0x7f, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x2c, 0x08, | 100 | 0x6f, 0x73, 0x65, 0x64, 0x2c, 0xf4, 0x02, 0x06, 0x1a, 0x2c, |
84 | 0x02, 0x06, 0x1a, 0x2c, 0x4c, 0x02, 0x06, 0x3f, 0x02, 0x61, | 101 | 0x38, 0x03, 0x06, 0x2b, 0x03, 0x61, 0x00, 0x61, 0x62, 0x6f, |
85 | 0x00, 0x61, 0x62, 0x6f, 0x75, 0x74, 0x7c, 0x02, 0x00, 0x28, | 102 | 0x75, 0x74, 0x35, 0x02, 0x00, 0x28, 0x00, 0x0b, 0x3a, 0x03, |
86 | 0x00, 0x0b, 0x4e, 0x02, 0x50, 0x6e, 0x6f, 0x00, 0x65, 0x78, | 103 | 0x50, 0x6e, 0x6f, 0x00, 0x65, 0x78, 0xb9, 0x01, 0x43, 0x65, |
87 | 0xb9, 0x01, 0x43, 0x65, 0x6f, 0x75, 0x73, 0xf2, 0x02, 0x30, | 104 | 0x6f, 0x75, 0x73, 0xd4, 0x02, 0x71, 0x62, 0x65, 0x74, 0x77, |
88 | 0x69, 0x6e, 0x73, 0xd7, 0x02, 0xf1, 0x08, 0x69, 0x74, 0x29, | 105 | 0x65, 0x65, 0x6e, 0x5a, 0x02, 0x21, 0x6f, 0x66, 0xec, 0x01, |
106 | 0x34, 0x6f, 0x77, 0x6e, 0x65, 0x02, 0xf1, 0x07, 0x29, 0x2c, | ||
89 | 0x00, 0x69, 0x74, 0x00, 0x77, 0x69, 0x6c, 0x6c, 0x00, 0x62, | 107 | 0x00, 0x69, 0x74, 0x00, 0x77, 0x69, 0x6c, 0x6c, 0x00, 0x62, |
90 | 0x65, 0x00, 0x68, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, | 108 | 0x65, 0x00, 0x68, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, |
91 | 0x63, 0x02, 0x80, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, | 109 | 0x65, 0x03, 0x80, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, |
92 | 0x63, 0xaa, 0x02, 0x69, 0x3b, 0x00, 0x73, 0x6f, 0x00, 0x79, | 110 | 0x63, 0xac, 0x03, 0x69, 0x3b, 0x00, 0x73, 0x6f, 0x00, 0x79, |
93 | 0x40, 0x03, 0x02, 0x84, 0x03, 0x20, 0x74, 0x68, 0xc0, 0x00, | 111 | 0x35, 0x04, 0x02, 0x79, 0x04, 0x20, 0x74, 0x68, 0xd6, 0x00, |
94 | 0x22, 0x6f, 0x6c, 0x3a, 0x03, 0x09, 0x41, 0x00, 0x22, 0x69, | 112 | 0x22, 0x6f, 0x6c, 0xe1, 0x02, 0x09, 0x41, 0x00, 0x22, 0x69, |
95 | 0x6e, 0x91, 0x00, 0x21, 0x77, 0x61, 0xcb, 0x01, 0x30, 0x44, | 113 | 0x6e, 0xa7, 0x00, 0x21, 0x77, 0x61, 0xe1, 0x01, 0x60, 0x44, |
96 | 0x75, 0x72, 0x97, 0x03, 0x81, 0x73, 0x6f, 0x6c, 0x76, 0x69, | 114 | 0x75, 0x72, 0x69, 0x6e, 0x67, 0x91, 0x03, 0x42, 0x76, 0x69, |
97 | 0x6e, 0x67, 0x2c, 0x15, 0x01, 0x10, 0x6d, 0x2b, 0x00, 0x52, | 115 | 0x6e, 0x67, 0x90, 0x03, 0x10, 0x6d, 0x2b, 0x00, 0x52, 0x00, |
98 | 0x00, 0x6b, 0x6e, 0x6f, 0x77, 0x2b, 0x00, 0x86, 0x61, 0x00, | 116 | 0x6b, 0x6e, 0x6f, 0x77, 0x2b, 0x00, 0x12, 0x61, 0x8a, 0x04, |
99 | 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0xd1, 0x03, 0x90, 0x73, | 117 | 0x15, 0x63, 0xc6, 0x04, 0x03, 0xa7, 0x00, 0x03, 0x0b, 0x03, |
100 | 0x71, 0x75, 0x61, 0x72, 0x65, 0x00, 0x62, 0x65, 0xa2, 0x03, | ||
101 | 0x01, 0x77, 0x00, 0xa2, 0x61, 0x00, 0x73, 0x70, 0x65, 0x63, | 118 | 0x01, 0x77, 0x00, 0xa2, 0x61, 0x00, 0x73, 0x70, 0x65, 0x63, |
102 | 0x69, 0x66, 0x69, 0x63, 0xeb, 0x00, 0x70, 0x62, 0x75, 0x74, | 119 | 0x69, 0x66, 0x69, 0x63, 0x01, 0x01, 0x70, 0x62, 0x75, 0x74, |
103 | 0x00, 0x6e, 0x6f, 0x74, 0xbf, 0x00, 0x22, 0x73, 0x75, 0x0d, | 120 | 0x00, 0x6e, 0x6f, 0x74, 0xbf, 0x00, 0x21, 0x73, 0x75, 0x0f, |
104 | 0x03, 0x41, 0x77, 0x68, 0x65, 0x72, 0x9b, 0x00, 0x03, 0xed, | 121 | 0x04, 0x00, 0x89, 0x03, 0x11, 0x72, 0x9b, 0x00, 0x03, 0x03, |
105 | 0x00, 0x20, 0x67, 0x6f, 0x11, 0x01, 0x03, 0x68, 0x01, 0x10, | 122 | 0x01, 0x20, 0x67, 0x6f, 0x27, 0x01, 0x03, 0x7e, 0x01, 0x10, |
106 | 0x6f, 0x9d, 0x01, 0x02, 0x58, 0x00, 0x00, 0xfa, 0x03, 0x20, | 123 | 0x6f, 0xb3, 0x01, 0x04, 0xff, 0x00, 0x00, 0x92, 0x03, 0x03, |
107 | 0x72, 0x65, 0x29, 0x01, 0x35, 0x6e, 0x65, 0x63, 0x95, 0x02, | 124 | 0xe1, 0x04, 0x05, 0xab, 0x02, 0x01, 0x81, 0x01, 0xa7, 0x2e, |
108 | 0x01, 0x6b, 0x01, 0x91, 0x2e, 0x00, 0x49, 0x6e, 0x00, 0x6f, | 125 | 0x00, 0x49, 0x6e, 0x00, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x15, |
109 | 0x72, 0x64, 0x65, 0xde, 0x01, 0x41, 0x6d, 0x61, 0x72, 0x6b, | 126 | 0x04, 0x23, 0x69, 0x73, 0x07, 0x01, 0x30, 0x00, 0x64, 0x6f, |
110 | 0xaf, 0x02, 0x03, 0x07, 0x01, 0x30, 0x00, 0x64, 0x6f, 0x08, | 127 | 0x1e, 0x02, 0x72, 0x66, 0x6f, 0x72, 0x67, 0x65, 0x74, 0x2c, |
111 | 0x02, 0x72, 0x66, 0x6f, 0x72, 0x67, 0x65, 0x74, 0x2c, 0xe0, | 128 | 0xf6, 0x01, 0x76, 0x61, 0x6e, 0x00, 0x72, 0x69, 0x67, 0x68, |
112 | 0x01, 0x76, 0x61, 0x6e, 0x00, 0x72, 0x69, 0x67, 0x68, 0x54, | 129 | 0x6a, 0x02, 0x04, 0x4b, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x65, |
113 | 0x02, 0x04, 0x4b, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x4f, 0x02, | 130 | 0x02, 0x22, 0x67, 0x2c, 0x82, 0x00, 0x01, 0x6e, 0x01, 0x05, |
114 | 0x22, 0x67, 0x2c, 0x82, 0x00, 0x01, 0x6e, 0x01, 0x05, 0x10, | 131 | 0x26, 0x02, 0x72, 0x6e, 0x00, 0x61, 0x72, 0x72, 0x6f, 0x77, |
115 | 0x02, 0x71, 0x6e, 0x00, 0x61, 0x72, 0x72, 0x6f, 0x77, 0x63, | 132 | 0x34, 0x04, 0x71, 0x72, 0x00, 0x70, 0x6f, 0x69, 0x6e, 0x74, |
116 | 0x00, 0x81, 0x65, 0x72, 0x00, 0x70, 0x6f, 0x69, 0x6e, 0x74, | 133 | 0xb4, 0x05, 0x16, 0x74, 0x8b, 0x00, 0x41, 0x44, 0x72, 0x6f, |
117 | 0xbf, 0x04, 0x16, 0x74, 0x8b, 0x00, 0x41, 0x44, 0x72, 0x6f, | ||
118 | 0x70, 0x21, 0x01, 0x00, 0x54, 0x01, 0x14, 0x61, 0x14, 0x01, | 134 | 0x70, 0x21, 0x01, 0x00, 0x54, 0x01, 0x14, 0x61, 0x14, 0x01, |
119 | 0x22, 0x6f, 0x66, 0x92, 0x01, 0x60, 0x63, 0x68, 0x6f, 0x69, | 135 | 0x22, 0x6f, 0x66, 0x92, 0x01, 0x60, 0x63, 0x68, 0x6f, 0x69, |
120 | 0x63, 0x65, 0x66, 0x00, 0x04, 0xcb, 0x01, 0x00, 0x8e, 0x02, | 136 | 0x63, 0x65, 0x66, 0x00, 0x04, 0xcb, 0x01, 0x00, 0xa4, 0x02, |
121 | 0x30, 0x69, 0x6e, 0x64, 0x1f, 0x00, 0x04, 0xc6, 0x04, 0x10, | 137 | 0x30, 0x69, 0x6e, 0x64, 0x1f, 0x00, 0x03, 0x73, 0x00, 0x20, |
122 | 0x6f, 0x31, 0x04, 0x91, 0x27, 0x73, 0x00, 0x61, 0x73, 0x73, | 138 | 0x64, 0x6f, 0x33, 0x05, 0x91, 0x27, 0x73, 0x00, 0x61, 0x73, |
123 | 0x6f, 0x63, 0x69, 0xc0, 0x03, 0x73, 0x77, 0x69, 0x74, 0x68, | 139 | 0x73, 0x6f, 0x63, 0x69, 0xd6, 0x03, 0x73, 0x77, 0x69, 0x74, |
124 | 0x2e, 0x00, 0x59, 0xbc, 0x00, 0x4c, 0x61, 0x6c, 0x73, 0x6f, | 140 | 0x68, 0x2e, 0x00, 0x59, 0xbc, 0x00, 0x4c, 0x61, 0x6c, 0x73, |
125 | 0xc1, 0x00, 0x40, 0x65, 0x78, 0x69, 0x73, 0x8d, 0x00, 0x02, | 141 | 0x6f, 0xc1, 0x00, 0x40, 0x65, 0x78, 0x69, 0x73, 0x8d, 0x00, |
126 | 0xa3, 0x00, 0x01, 0x7e, 0x01, 0x40, 0x70, 0x69, 0x63, 0x6b, | 142 | 0x02, 0xa3, 0x00, 0x02, 0x2a, 0x06, 0x21, 0x69, 0x63, 0x1f, |
127 | 0x99, 0x00, 0x41, 0x6d, 0x00, 0x75, 0x70, 0x73, 0x00, 0x00, | 143 | 0x05, 0x41, 0x6d, 0x00, 0x75, 0x70, 0x73, 0x00, 0x00, 0x0d, |
128 | 0xf7, 0x02, 0x01, 0x11, 0x00, 0x01, 0x0a, 0x03, 0x20, 0x64, | 144 | 0x03, 0x01, 0x11, 0x00, 0x01, 0x20, 0x03, 0x20, 0x64, 0x65, |
129 | 0x65, 0x89, 0x03, 0x11, 0x79, 0x11, 0x00, 0x00, 0xd0, 0x03, | 145 | 0x9f, 0x03, 0x11, 0x79, 0x11, 0x00, 0x00, 0xe6, 0x03, 0x82, |
130 | 0x82, 0x64, 0x72, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x11, | 146 | 0x64, 0x72, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x11, 0x00, |
131 | 0x00, 0x34, 0x6f, 0x66, 0x66, 0x96, 0x01, 0x00, 0xbf, 0x00, | 147 | 0x34, 0x6f, 0x66, 0x66, 0x96, 0x01, 0x00, 0xbf, 0x00, 0x05, |
132 | 0x05, 0x71, 0x05, 0xa1, 0x2e, 0x00, 0x28, 0x41, 0x6c, 0x73, | 148 | 0x18, 0x05, 0xa1, 0x2e, 0x00, 0x28, 0x41, 0x6c, 0x73, 0x6f, |
133 | 0x6f, 0x2c, 0x00, 0x69, 0xd3, 0x00, 0x30, 0x27, 0x72, 0x65, | 149 | 0x2c, 0x00, 0x69, 0xd3, 0x00, 0x30, 0x27, 0x72, 0x65, 0xd2, |
134 | 0xd2, 0x01, 0x01, 0xcf, 0x01, 0x06, 0xc0, 0x00, 0x06, 0x2b, | 150 | 0x01, 0x01, 0xcf, 0x01, 0x06, 0xc0, 0x00, 0x06, 0x2b, 0x01, |
135 | 0x01, 0x27, 0x69, 0x73, 0x27, 0x01, 0x06, 0x7f, 0x01, 0x02, | 151 | 0x27, 0x69, 0x73, 0x27, 0x01, 0x06, 0x7f, 0x01, 0x02, 0x9c, |
136 | 0x9c, 0x00, 0x28, 0x69, 0x74, 0x9a, 0x00, 0x00, 0x0f, 0x00, | 152 | 0x00, 0x28, 0x69, 0x74, 0x9a, 0x00, 0x00, 0x0f, 0x00, 0x20, |
137 | 0x62, 0x61, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0xc7, 0x01, 0x11, | 153 | 0x61, 0x72, 0xca, 0x05, 0x02, 0xc7, 0x01, 0x11, 0x6b, 0x12, |
138 | 0x6b, 0x12, 0x00, 0xa3, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x65, | 154 | 0x00, 0xa3, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x65, 0x72, 0x2e, |
139 | 0x72, 0x2e, 0x00, 0x49, 0x30, 0x01, 0x60, 0x73, 0x77, 0x69, | 155 | 0x00, 0x49, 0x30, 0x01, 0x60, 0x73, 0x77, 0x69, 0x76, 0x65, |
140 | 0x76, 0x65, 0x6c, 0x09, 0x02, 0x40, 0x73, 0x74, 0x61, 0x6e, | 156 | 0x6c, 0x09, 0x02, 0x40, 0x73, 0x74, 0x61, 0x6e, 0x88, 0x03, |
141 | 0x72, 0x03, 0x20, 0x61, 0x73, 0x57, 0x00, 0x01, 0xb7, 0x01, | 157 | 0x24, 0x61, 0x73, 0x31, 0x06, 0x50, 0x67, 0x00, 0x69, 0x74, |
142 | 0x40, 0x00, 0x69, 0x74, 0x2c, 0x3e, 0x00, 0x41, 0x73, 0x74, | 158 | 0x2c, 0x3e, 0x00, 0x41, 0x73, 0x74, 0x61, 0x79, 0x79, 0x00, |
143 | 0x61, 0x79, 0x79, 0x00, 0x06, 0x81, 0x05, 0x00, 0xaf, 0x02, | 159 | 0x07, 0x83, 0x06, 0x20, 0x70, 0x61, 0x93, 0x05, 0x01, 0xa6, |
144 | 0x31, 0x65, 0x6e, 0x74, 0xa6, 0x01, 0x3a, 0x29, 0x00, 0x00, | 160 | 0x01, 0x3a, 0x29, 0x00, 0x00, 0x4d, 0x01, 0x22, 0x75, 0x73, |
145 | 0x4d, 0x01, 0x22, 0x75, 0x73, 0x84, 0x02, 0xa0, 0x63, 0x75, | 161 | 0x84, 0x02, 0xa0, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x00, |
146 | 0x72, 0x73, 0x6f, 0x72, 0x00, 0x6b, 0x65, 0x79, 0x42, 0x01, | 162 | 0x6b, 0x65, 0x79, 0x42, 0x01, 0x01, 0x97, 0x00, 0x03, 0x94, |
147 | 0x01, 0x97, 0x00, 0x03, 0x94, 0x00, 0x05, 0x01, 0x01, 0x06, | 163 | 0x00, 0x05, 0x01, 0x01, 0x06, 0x8f, 0x02, 0x13, 0x6e, 0x37, |
148 | 0x8f, 0x02, 0x13, 0x6e, 0x7e, 0x06, 0xa3, 0x2e, 0x00, 0x50, | 164 | 0x06, 0xa3, 0x2e, 0x00, 0x50, 0x72, 0x65, 0x73, 0x73, 0x69, |
149 | 0x72, 0x65, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x7b, 0x06, 0x40, | 165 | 0x6e, 0x67, 0x7b, 0x06, 0x40, 0x74, 0x75, 0x72, 0x6e, 0x44, |
150 | 0x74, 0x75, 0x72, 0x6e, 0x44, 0x00, 0x20, 0x00, 0x77, 0x52, | 166 | 0x00, 0x02, 0x66, 0x06, 0x66, 0x6f, 0x76, 0x65, 0x72, 0x00, |
151 | 0x04, 0x66, 0x6f, 0x76, 0x65, 0x72, 0x00, 0x61, 0xb2, 0x04, | 167 | 0x61, 0xc8, 0x04, 0x01, 0xc7, 0x00, 0x02, 0xca, 0x04, 0x22, |
152 | 0x01, 0xc7, 0x00, 0x02, 0xb4, 0x04, 0x22, 0x6f, 0x72, 0xe0, | 168 | 0x6f, 0x72, 0xe0, 0x00, 0x32, 0x00, 0x69, 0x74, 0x03, 0x04, |
153 | 0x00, 0x32, 0x00, 0x69, 0x74, 0xed, 0x03, 0x40, 0x2c, 0x00, | 169 | 0x40, 0x2c, 0x00, 0x61, 0x73, 0x37, 0x04, 0x2f, 0x76, 0x65, |
154 | 0x61, 0x73, 0x21, 0x04, 0x2f, 0x76, 0x65, 0x55, 0x00, 0x13, | 170 | 0x55, 0x00, 0x13, 0x22, 0x64, 0x6f, 0x16, 0x01, 0x02, 0x50, |
155 | 0x22, 0x64, 0x6f, 0x16, 0x01, 0x02, 0x50, 0x01, 0x25, 0x75, | 171 | 0x01, 0x25, 0x75, 0x70, 0x79, 0x01, 0x01, 0x06, 0x01, 0x22, |
156 | 0x70, 0x79, 0x01, 0x01, 0x06, 0x01, 0x22, 0x62, 0x65, 0xd5, | 172 | 0x62, 0x65, 0xd5, 0x01, 0x22, 0x65, 0x64, 0x4f, 0x06, 0x8b, |
157 | 0x01, 0x22, 0x65, 0x64, 0x39, 0x06, 0x8b, 0x65, 0x78, 0x74, | 173 | 0x65, 0x78, 0x74, 0x00, 0x74, 0x69, 0x6d, 0x65, 0x52, 0x00, |
158 | 0x00, 0x74, 0x69, 0x6d, 0x65, 0x52, 0x00, 0x01, 0xa5, 0x01, | 174 | 0x01, 0xa5, 0x01, 0x00, 0x6d, 0x00, 0x31, 0x65, 0x64, 0x3b, |
159 | 0x00, 0x6d, 0x00, 0x31, 0x65, 0x64, 0x3b, 0x3a, 0x03, 0x06, | 175 | 0x3a, 0x03, 0x06, 0x18, 0x01, 0x20, 0x62, 0x65, 0x1b, 0x01, |
160 | 0x18, 0x01, 0x20, 0x62, 0x65, 0x1b, 0x01, 0x14, 0x64, 0x0c, | 176 | 0x14, 0x64, 0x0c, 0x01, 0x0c, 0x66, 0x02, 0x03, 0x1c, 0x01, |
161 | 0x01, 0x0c, 0x66, 0x02, 0x03, 0x1c, 0x01, 0x12, 0x2c, 0x53, | 177 | 0x12, 0x2c, 0x69, 0x05, 0x05, 0x3c, 0x02, 0x0e, 0x4d, 0x02, |
162 | 0x05, 0x05, 0x3c, 0x02, 0x0e, 0x4d, 0x02, 0x12, 0x6e, 0xac, | 178 | 0x12, 0x6e, 0xac, 0x00, 0x00, 0xf1, 0x00, 0x21, 0x61, 0x6e, |
163 | 0x00, 0x00, 0xf1, 0x00, 0x21, 0x61, 0x6e, 0xd6, 0x03, 0x02, | 179 | 0xd6, 0x03, 0x02, 0x42, 0x00, 0x30, 0x2e, 0x00, 0x00, 0x50, |
164 | 0x42, 0x00, 0x30, 0x2e, 0x00, 0x00, 0x50, 0x02, 0x11, 0x6c, | 180 | 0x02, 0x11, 0x6c, 0x92, 0x00, 0x11, 0x61, 0x71, 0x06, 0x10, |
165 | 0x92, 0x00, 0x11, 0x61, 0x5b, 0x06, 0x10, 0x73, 0x99, 0x02, | 181 | 0x73, 0x99, 0x02, 0x42, 0x63, 0x72, 0x69, 0x62, 0x97, 0x04, |
166 | 0x42, 0x63, 0x72, 0x69, 0x62, 0x97, 0x04, 0x13, 0x73, 0x71, | 182 | 0x13, 0x73, 0x87, 0x06, 0x30, 0x32, 0x2e, 0x31, 0x01, 0x04, |
167 | 0x06, 0x30, 0x32, 0x2e, 0x31, 0x01, 0x04, 0x02, 0x97, 0x00, | 183 | 0x02, 0x97, 0x00, 0xb2, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, |
168 | 0xb2, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, | 184 | 0x62, 0x6c, 0x65, 0x2e, 0x29, 0x4e, 0x06, 0x16, 0x32, 0x4e, |
169 | 0x2e, 0x29, 0x38, 0x06, 0x16, 0x32, 0x38, 0x06, 0xb1, 0x70, | 185 | 0x06, 0x00, 0x9d, 0x07, 0x50, 0x6d, 0x65, 0x74, 0x65, 0x72, |
170 | 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x20, | 186 | 0x50, 0x06, 0x00, 0xff, 0x07, 0x35, 0x73, 0x65, 0x00, 0x14, |
171 | 0x60, 0x07, 0x45, 0x65, 0x73, 0x65, 0x00, 0x14, 0x00, 0x01, | 187 | 0x00, 0x01, 0x45, 0x04, 0x06, 0x3f, 0x00, 0x51, 0x00, 0x66, |
172 | 0x45, 0x04, 0x06, 0x3f, 0x00, 0x51, 0x00, 0x66, 0x72, 0x6f, | 188 | 0x72, 0x6f, 0x6d, 0x7c, 0x00, 0xe0, 0x60, 0x43, 0x75, 0x73, |
173 | 0x6d, 0x7c, 0x00, 0xe0, 0x60, 0x43, 0x75, 0x73, 0x74, 0x6f, | 189 | 0x74, 0x6f, 0x6d, 0x2e, 0x2e, 0x2e, 0x27, 0x00, 0x6f, 0x70, |
174 | 0x6d, 0x2e, 0x2e, 0x2e, 0x27, 0x00, 0x6f, 0x70, 0x72, 0x00, | 190 | 0x72, 0x00, 0x04, 0x16, 0x04, 0xb0, 0x60, 0x54, 0x79, 0x70, |
175 | 0x04, 0x16, 0x04, 0xb0, 0x60, 0x54, 0x79, 0x70, 0x65, 0x27, | 191 | 0x65, 0x27, 0x00, 0x6d, 0x65, 0x6e, 0x75, 0xae, 0x00, 0x91, |
176 | 0x00, 0x6d, 0x65, 0x6e, 0x75, 0xae, 0x00, 0x91, 0x57, 0x69, | 192 | 0x57, 0x69, 0x64, 0x74, 0x68, 0x2c, 0x00, 0x48, 0x65, 0x0f, |
177 | 0x64, 0x74, 0x68, 0x2c, 0x00, 0x48, 0x65, 0x0f, 0x05, 0x50, | 193 | 0x05, 0x50, 0x00, 0x00, 0x53, 0x69, 0x7a, 0x20, 0x03, 0x02, |
178 | 0x00, 0x00, 0x53, 0x69, 0x7a, 0x20, 0x03, 0x02, 0xdf, 0x01, | 194 | 0xdf, 0x01, 0x15, 0x69, 0xac, 0x05, 0x01, 0x46, 0x05, 0x30, |
179 | 0x24, 0x69, 0x6e, 0x1e, 0x02, 0x01, 0x46, 0x05, 0x30, 0x69, | 195 | 0x69, 0x66, 0x66, 0x20, 0x05, 0x63, 0x74, 0x79, 0x00, 0x00, |
180 | 0x66, 0x66, 0x20, 0x05, 0x63, 0x74, 0x79, 0x00, 0x00, 0x00, | 196 | 0x00, 0x43, 0xe5, 0x06, 0x02, 0x2a, 0x04, 0x05, 0x1a, 0x00, |
181 | 0x43, 0xcf, 0x06, 0x02, 0x2a, 0x04, 0x05, 0x1a, 0x00, 0x05, | 197 | 0x05, 0x5b, 0x03, 0x40, 0x65, 0x6e, 0x65, 0x72, 0xeb, 0x03, |
182 | 0x5b, 0x03, 0x40, 0x65, 0x6e, 0x65, 0x72, 0xeb, 0x03, 0x03, | 198 | 0x03, 0x23, 0x08, 0x57, 0x2e, 0x00, 0x4d, 0x6f, 0x72, 0x29, |
183 | 0x0d, 0x08, 0x57, 0x2e, 0x00, 0x4d, 0x6f, 0x72, 0x29, 0x00, | 199 | 0x00, 0x13, 0x00, 0x54, 0x07, 0xd3, 0x00, 0x72, 0x65, 0x71, |
184 | 0x13, 0x00, 0x3e, 0x07, 0xb1, 0x00, 0x72, 0x65, 0x71, 0x75, | 200 | 0x75, 0x69, 0x72, 0x65, 0x00, 0x6d, 0x6f, 0x72, 0x65, 0xcf, |
185 | 0x69, 0x72, 0x65, 0x00, 0x6d, 0x6f, 0x0e, 0x05, 0xa2, 0x6d, | 201 | 0x08, 0x62, 0x78, 0x00, 0x64, 0x65, 0x64, 0x75, 0x3d, 0x01, |
186 | 0x70, 0x6c, 0x65, 0x78, 0x00, 0x64, 0x65, 0x64, 0x75, 0x3d, | 202 | 0x01, 0x65, 0x06, 0x02, 0xb8, 0x00, 0x80, 0x55, 0x6e, 0x72, |
187 | 0x01, 0x01, 0x4f, 0x06, 0x02, 0xb8, 0x00, 0x80, 0x55, 0x6e, | 203 | 0x65, 0x61, 0x73, 0x6f, 0x6e, 0xe9, 0x00, 0x18, 0x27, 0x73, |
188 | 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0xe9, 0x00, 0x18, 0x27, | 204 | 0x00, 0x20, 0x6c, 0x65, 0x41, 0x03, 0x35, 0x6d, 0x61, 0x79, |
189 | 0x73, 0x00, 0x20, 0x6c, 0x65, 0x41, 0x03, 0x35, 0x6d, 0x61, | 205 | 0x4d, 0x00, 0xe0, 0x62, 0x61, 0x63, 0x6b, 0x74, 0x72, 0x61, |
190 | 0x79, 0x4d, 0x00, 0xe0, 0x62, 0x61, 0x63, 0x6b, 0x74, 0x72, | 206 | 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x00, |
191 | 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x2e, 0x00, | ||
192 | }; | 207 | }; |
193 | 208 | ||
194 | const unsigned short help_text_len = 2509; | 209 | const unsigned short help_text_len = 2754; |
195 | const unsigned short help_text_words = 455; | 210 | const unsigned short help_text_words = 497; |
196 | const char quick_help_text[] = "Divide the grid into rotationally symmetric regions each centred on a dot."; | 211 | const char quick_help_text[] = "Divide the grid into rotationally symmetric regions each centred on a dot."; |
diff --git a/apps/plugins/puzzles/help/guess.c b/apps/plugins/puzzles/help/guess.c index dbeb34c2a6..63ada73bca 100644 --- a/apps/plugins/puzzles/help/guess.c +++ b/apps/plugins/puzzles/help/guess.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/inertia.c b/apps/plugins/puzzles/help/inertia.c index 486a5ac546..b537fbf5d0 100644 --- a/apps/plugins/puzzles/help/inertia.c +++ b/apps/plugins/puzzles/help/inertia.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/keen.c b/apps/plugins/puzzles/help/keen.c index 5ed75b3d62..5628338343 100644 --- a/apps/plugins/puzzles/help/keen.c +++ b/apps/plugins/puzzles/help/keen.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/lightup.c b/apps/plugins/puzzles/help/lightup.c index c588a6b5d0..127c78d885 100644 --- a/apps/plugins/puzzles/help/lightup.c +++ b/apps/plugins/puzzles/help/lightup.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/loopy.c b/apps/plugins/puzzles/help/loopy.c index a9d20ed008..1c6e420fd3 100644 --- a/apps/plugins/puzzles/help/loopy.c +++ b/apps/plugins/puzzles/help/loopy.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/magnets.c b/apps/plugins/puzzles/help/magnets.c index 7e679f3e5d..eed84c78b6 100644 --- a/apps/plugins/puzzles/help/magnets.c +++ b/apps/plugins/puzzles/help/magnets.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/map.c b/apps/plugins/puzzles/help/map.c index 676272ea2e..931ffeb05f 100644 --- a/apps/plugins/puzzles/help/map.c +++ b/apps/plugins/puzzles/help/map.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/mines.c b/apps/plugins/puzzles/help/mines.c index 689c483111..ad20406b3a 100644 --- a/apps/plugins/puzzles/help/mines.c +++ b/apps/plugins/puzzles/help/mines.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/net.c b/apps/plugins/puzzles/help/net.c index a27fd65c17..504de3fca5 100644 --- a/apps/plugins/puzzles/help/net.c +++ b/apps/plugins/puzzles/help/net.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/netslide.c b/apps/plugins/puzzles/help/netslide.c index 259e434d5f..be2a6d7aa6 100644 --- a/apps/plugins/puzzles/help/netslide.c +++ b/apps/plugins/puzzles/help/netslide.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/palisade.c b/apps/plugins/puzzles/help/palisade.c index 2034c7ce79..3b0e897828 100644 --- a/apps/plugins/puzzles/help/palisade.c +++ b/apps/plugins/puzzles/help/palisade.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/pattern.c b/apps/plugins/puzzles/help/pattern.c index c0e5fc306a..f977e03860 100644 --- a/apps/plugins/puzzles/help/pattern.c +++ b/apps/plugins/puzzles/help/pattern.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/pearl.c b/apps/plugins/puzzles/help/pearl.c index 84dec04e71..162b8a44a4 100644 --- a/apps/plugins/puzzles/help/pearl.c +++ b/apps/plugins/puzzles/help/pearl.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/pegs.c b/apps/plugins/puzzles/help/pegs.c index b07fb0ac47..0877c3a5c2 100644 --- a/apps/plugins/puzzles/help/pegs.c +++ b/apps/plugins/puzzles/help/pegs.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/range.c b/apps/plugins/puzzles/help/range.c index d8b6bf4d3b..64e4f59042 100644 --- a/apps/plugins/puzzles/help/range.c +++ b/apps/plugins/puzzles/help/range.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/rect.c b/apps/plugins/puzzles/help/rect.c index 579ff29626..8ce9af4a73 100644 --- a/apps/plugins/puzzles/help/rect.c +++ b/apps/plugins/puzzles/help/rect.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/samegame.c b/apps/plugins/puzzles/help/samegame.c index be7c0ae2fe..067dea0cec 100644 --- a/apps/plugins/puzzles/help/samegame.c +++ b/apps/plugins/puzzles/help/samegame.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/signpost.c b/apps/plugins/puzzles/help/signpost.c index f12c526346..fd496dab24 100644 --- a/apps/plugins/puzzles/help/signpost.c +++ b/apps/plugins/puzzles/help/signpost.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/singles.c b/apps/plugins/puzzles/help/singles.c index d6d88e9864..66978cd67d 100644 --- a/apps/plugins/puzzles/help/singles.c +++ b/apps/plugins/puzzles/help/singles.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/sixteen.c b/apps/plugins/puzzles/help/sixteen.c index c1cbee5807..8e3dfdba2a 100644 --- a/apps/plugins/puzzles/help/sixteen.c +++ b/apps/plugins/puzzles/help/sixteen.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/slant.c b/apps/plugins/puzzles/help/slant.c index 3c46d46f51..f905458aeb 100644 --- a/apps/plugins/puzzles/help/slant.c +++ b/apps/plugins/puzzles/help/slant.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/solo.c b/apps/plugins/puzzles/help/solo.c index 94f4c260bf..f2ba9c7848 100644 --- a/apps/plugins/puzzles/help/solo.c +++ b/apps/plugins/puzzles/help/solo.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/tents.c b/apps/plugins/puzzles/help/tents.c index 6ab7968db2..9ff68a3c24 100644 --- a/apps/plugins/puzzles/help/tents.c +++ b/apps/plugins/puzzles/help/tents.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/towers.c b/apps/plugins/puzzles/help/towers.c index 534ec8a15b..f56ac822ef 100644 --- a/apps/plugins/puzzles/help/towers.c +++ b/apps/plugins/puzzles/help/towers.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/tracks.c b/apps/plugins/puzzles/help/tracks.c index eafeeea6f5..b46bd86f9e 100644 --- a/apps/plugins/puzzles/help/tracks.c +++ b/apps/plugins/puzzles/help/tracks.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/twiddle.c b/apps/plugins/puzzles/help/twiddle.c index 300a69dc54..6666746226 100644 --- a/apps/plugins/puzzles/help/twiddle.c +++ b/apps/plugins/puzzles/help/twiddle.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/undead.c b/apps/plugins/puzzles/help/undead.c index 91a347dcbe..48c26380ea 100644 --- a/apps/plugins/puzzles/help/undead.c +++ b/apps/plugins/puzzles/help/undead.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/unequal.c b/apps/plugins/puzzles/help/unequal.c index 52b2a1c8e1..723b55967e 100644 --- a/apps/plugins/puzzles/help/unequal.c +++ b/apps/plugins/puzzles/help/unequal.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/unruly.c b/apps/plugins/puzzles/help/unruly.c index 31e88165ae..19c1815991 100644 --- a/apps/plugins/puzzles/help/unruly.c +++ b/apps/plugins/puzzles/help/unruly.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/help/untangle.c b/apps/plugins/puzzles/help/untangle.c index 4a90fa863e..193629778f 100644 --- a/apps/plugins/puzzles/help/untangle.c +++ b/apps/plugins/puzzles/help/untangle.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* auto-generated on Apr 19 2018 by genhelp.sh */ | 1 | /* auto-generated on Apr 24 2018 by genhelp.sh */ |
2 | /* help text is compressed using LZ4; see compress.c for details */ | 2 | /* help text is compressed using LZ4; see compress.c for details */ |
3 | /* DO NOT EDIT! */ | 3 | /* DO NOT EDIT! */ |
4 | 4 | ||
diff --git a/apps/plugins/puzzles/lz4tiny.c b/apps/plugins/puzzles/lz4tiny.c index 8244ede1cc..8badbbb72c 100644 --- a/apps/plugins/puzzles/lz4tiny.c +++ b/apps/plugins/puzzles/lz4tiny.c | |||
@@ -188,6 +188,8 @@ void LZ4_decompress_tiny(const char* const source, char* const dest, int outputS | |||
188 | 188 | ||
189 | /* testing code */ | 189 | /* testing code */ |
190 | #ifndef ROCKBOX | 190 | #ifndef ROCKBOX |
191 | #define LZ4TINY | ||
192 | |||
191 | #include "help.h" | 193 | #include "help.h" |
192 | #include <stdlib.h> | 194 | #include <stdlib.h> |
193 | #include <stdio.h> | 195 | #include <stdio.h> |
@@ -195,7 +197,13 @@ int main() | |||
195 | { | 197 | { |
196 | char *buf = malloc(help_text_len); | 198 | char *buf = malloc(help_text_len); |
197 | LZ4_decompress_tiny(help_text, buf, help_text_len); | 199 | LZ4_decompress_tiny(help_text, buf, help_text_len); |
198 | puts(buf); | 200 | int col = 0; |
201 | for(int i = 0; i < help_text_len; ++i) | ||
202 | { | ||
203 | char c = buf[i]; | ||
204 | printf("%c", (col++, !c ? (col >= 80 ? (col = 0, '\n') : ' ') : c)); | ||
205 | } | ||
206 | puts(""); | ||
199 | free(buf); | 207 | free(buf); |
200 | } | 208 | } |
201 | #endif | 209 | #endif |