previndexinfonext

code guessing, round #9 (completed)

started at ; stage 2 at ; ended at

specification

code guessing, code guessing, come get your code guessing! today we're doing something a little different.

the challenge for round 9 of code guessing is to implement a game.
submissions may be written in javascript, bash, c or brainfuck.

there isn't much of a spec this time, as you have a lot of flexibility in how you do this. it could just be a text adventure played on the command line, it could be a card game, or it could be something graphical based on OpenGL or HTML.
the only requirements are that it:

  1. fits a reasonable person's understanding of what constitutes a computer game,
  2. is portable, defined as: theoretically capable of running properly on at least two operating systems which actually exist, assuming a reasonable set of dependencies are installed, and
  3. doesn't simply launch an existing game which is assumed to exist on a user's system (so nethack would not be a valid bash solution).

have fun! P.S. note from the event manager: please make your games fun, because I have to play all of them.

results

  1. 👑 quintopia +6 -3 = 3
    1. LyricLy
    2. sporeball (was Olivia)
    3. Kit
    4. Camto
    5. Olivia (was sporeball)
    6. razetime
    7. IFcoltransG
    8. Yuwuko
  2. sporeball +2 -0 = 2
    1. quintopia (was LyricLy)
    2. Camto (was Olivia)
    3. Kit (was quintopia)
    4. IFcoltransG (was Kit)
    5. LyricLy (was Camto)
    6. razetime
    7. Olivia (was IFcoltransG)
    8. Yuwuko
  3. Camto +2 -1 = 1
    1. razetime (was LyricLy)
    2. quintopia (was Olivia)
    3. sporeball (was quintopia)
    4. Kit
    5. LyricLy (was sporeball)
    6. IFcoltransG (was razetime)
    7. Olivia (was IFcoltransG)
    8. Yuwuko
  4. LyricLy +3 -3 = 0
    1. sporeball (was Olivia)
    2. quintopia
    3. Kit
    4. Yuwuko (was Camto)
    5. Olivia (was sporeball)
    6. Camto (was razetime)
    7. IFcoltransG
    8. razetime (was Yuwuko)
  5. Olivia +1 -1 = 0
    1. sporeball (was LyricLy)
    2. Camto (was quintopia)
    3. razetime (was Kit)
    4. Kit (was Camto)
    5. LyricLy (was sporeball)
    6. Yuwuko (was razetime)
    7. IFcoltransG
    8. quintopia (was Yuwuko)
  6. razetime +2 -3 = -1
    1. LyricLy
    2. sporeball (was Olivia)
    3. quintopia
    4. IFcoltransG (was Kit)
    5. Kit (was Camto)
    6. Yuwuko (was sporeball)
    7. Olivia (was IFcoltransG)
    8. Camto (was Yuwuko)
  7. Yuwuko +2 -3 = -1
    1. LyricLy
    2. Olivia
    3. Kit (was quintopia)
    4. razetime (was Kit)
    5. IFcoltransG (was Camto)
    6. quintopia (was sporeball)
    7. Camto (was razetime)
    8. sporeball (was IFcoltransG)
  8. IFcoltransG +1 -3 = -2
    1. sporeball (was LyricLy)
    2. razetime (was Olivia)
    3. quintopia
    4. Camto (was Kit)
    5. Yuwuko (was Camto)
    6. Kit (was sporeball)
    7. LyricLy (was razetime)
    8. Olivia (was Yuwuko)
  9. Kit +1 -3 = -2
    1. IFcoltransG (was LyricLy)
    2. sporeball (was Olivia)
    3. Camto (was quintopia)
    4. Yuwuko (was Camto)
    5. LyricLy (was sporeball)
    6. razetime
    7. Olivia (was IFcoltransG)
    8. quintopia (was Yuwuko)

entries

you can download all the entries

entry #1

written by LyricLy

guesses
comments 0

post a comment


pacman.c ASCII text
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 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
 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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
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
// a pac-man game in curses that tries to be somewhat faithful to the original
// starts at level 21 for no reason and also you can go inside the ghost house!
// please enjoy
// build with -lncurses -lm
// requires ncurses
// please enjoy
// you may want to decrease your initial key repeat delay using xkbset or control panel to make input work gooder

#include <ncurses.h>
#include <locale.h>
#include <stdbool.h>
#include <stdlib.h>
#include <assert.h>
#include <time.h>
#include <math.h>

typedef struct {
    int dx;
    int dy;
} Dir;

static const Dir LEFT = {.dx = -1, .dy = 0 };
static const Dir UP = { .dx = 0, .dy = -1 };
static const Dir RIGHT = { .dx = 1, .dy = 0 };
static const Dir DOWN = { .dx = 0, .dy = 1 };

#define board_width 28
#define board_height 31
static const char board_init[] =
"\
############################\
#............##............#\
#.####.#####.##.#####.####.#\
#O#  #.#   #.##.#   #.#  #O#\
#.####.#####.##.#####.####.#\
#..........................#\
#.####.##.########.##.####.#\
#.####.##.########.##.####.#\
#......##....##....##......#\
######.##### ## #####.######\
     #.##### ## #####.#     \
     #.##   '  '   ##.#     \
     #.## ###--### ##.#     \
######.## #      # ##.######\
TTTTTT.   #  B   #   .TTTTTT\
######.## #      # ##.######\
     #.## ######## ##.#     \
     #.##          ##.#     \
     #.## ######## ##.#     \
######.## ######## ##.######\
#............##............#\
#.####.#####.##.#####.####.#\
#.####.#####.##.#####.####.#\
#O..##......:> :......##..O#\
###.##.##.########.##.##.###\
###.##.##.########.##.##.###\
#......##....##....##......#\
#.##########.##.##########.#\
#.##########.##.##########.#\
#..........................#\
############################";

typedef struct {
    int x;
    int y;
    Dir dir;
    double subpoint;
} Entity;

typedef enum {
    Scatter,
    Chase,
    Frightened,
} AIState;

typedef struct {
    Entity e;
    AIState state;
} Ghost;

typedef struct {
    unsigned long score;
    unsigned short lvl, lives;
    unsigned short remaining;
    char board[board_height][board_width];
    bool xlife;
    Entity pacman;
    Ghost blinky, pinky, inky, clyde;
    AIState default_state;
    int fruit_x, fruit_y, ghost_x, ghost_y;
    unsigned long fruit_timer, scatter_timer, frightened_timer;
    int elroy;
    int inp_buffer, buffered_inp;
} Game;

void advance(Game *game, Entity *e, double speed) {
    int nx = e->x + e->dir.dx;
    if (nx == -1) nx = board_width-1;
    if (nx == board_width) nx = 0;
    int ny = e->y + e->dir.dy;
    e->subpoint += speed/6.0;
    if (game->board[ny][nx] == '#' && e->subpoint > 0.5) {
        e->subpoint = 0.5;
        return;
    }
    if (e->subpoint >= 1.0) {
        e->subpoint -= 1.0;
        e->x = nx;
        e->y = ny;
    }
}

bool turn(Game *game, Entity *e, Dir dir) {
    if (game->board[e->y+dir.dy][e->x+dir.dx] == '#') {
        // can't turn
        return false;
    } else if (dir.dx != e->dir.dx && dir.dy != e->dir.dy) {
        // turn
        e->subpoint = 0.5 - 0.414214*fabs(0.5-e->subpoint);
    } else if (dir.dx != e->dir.dx || dir.dy != e->dir.dy) {
        // reverse
        e->subpoint = 1-e->subpoint;
    }
    e->dir = dir;
    return true;
}

void change_state(Ghost *g, AIState state) {
    g->e.dir.dx *= -1;
    g->e.dir.dy *= -1;
    g->state = state;
}

void change_all_states(Game *game, AIState state) {
    change_state(&game->blinky, state);
    change_state(&game->pinky, state);
    change_state(&game->inky, state);
    change_state(&game->clyde, state);
}

int ghost_colour(Ghost *g, int pair) {
    if (g->state == Frightened) {
        return COLOR_PAIR(6);
    }
    return COLOR_PAIR(pair);
}

void spawn_ghosts(Game *game) {
    game->blinky.e.x = game->ghost_x;
    game->blinky.e.y = game->ghost_y;
    game->blinky.e.dir = LEFT;
    game->pinky.e.x = game->ghost_x;
    game->pinky.e.y = game->ghost_y;
    game->pinky.e.dir = LEFT;
    game->inky.e.x = game->ghost_x;
    game->inky.e.y = game->ghost_y;
    game->inky.e.dir = RIGHT;
    game->clyde.e.x = game->ghost_x;
    game->clyde.e.y = game->ghost_y-3;
    game->clyde.e.dir = RIGHT;
}

void init_game_board(Game *game) {
    for (int y = 0; y < board_height; y++) {
        for (int x = 0; x < board_width; x++) {
            char c = board_init[y*board_width+x];
            switch (c) {
                case '>':
                    game->pacman.x = x;
                    game->pacman.y = y;
                    game->pacman.dir = LEFT;
                    game->fruit_x = x;
                    game->fruit_y = y;
                    c = ' ';
                    break;
                case 'B':
                    game->ghost_x = x;
                    game->ghost_y = y;
                    spawn_ghosts(game);
                    c = ' ';
                    break;
                case '.': case 'O': case ':':
                    game->remaining++;
                    break;
            }
            game->board[y][x] = c;
        }
    }
}

Game init_game() {
    Game game = {0};
    game.lvl = 21;
    game.lives = 2;
    init_game_board(&game);
    return game;
}

void print_board(Game *game) {
    mvprintw(0, 0, "%lu\n", game->score);

    for (int y = 0; y < board_height; y++) {
        for (int x = 0; x < board_width; x++) {
            int c = game->board[y][x];
            if (c == ':') c = '.';
            if (game->pacman.x == x && game->pacman.y == y) {
                #define if_dir(d) (game->pacman.dir.dx == d.dx && game->pacman.dir.dy == d.dy) ?
                if (game->pacman.subpoint > 0.25 && game->pacman.subpoint < 0.75) {
                    c = (if_dir(LEFT) '>' : if_dir(UP) 'v' : if_dir(RIGHT) '<' : if_dir(DOWN) '^' : 0) | A_BOLD | COLOR_PAIR(1);
                } else {
                    c = (if_dir(LEFT) '-' : if_dir(UP) 'v' : if_dir(RIGHT) '-' : if_dir(DOWN) '^' : 0) | A_BOLD | COLOR_PAIR(1);
                }
            } else if (game->blinky.e.x == x && game->blinky.e.y == y) {
                c = 'B' | A_BOLD | ghost_colour(&game->blinky, 2);
            } else if (game->pinky.e.x == x && game->pinky.e.y == y) {
                c = 'P' | A_BOLD | ghost_colour(&game->pinky, 3);
            } else if (game->inky.e.x == x && game->inky.e.y == y) {
                c = 'I' | A_BOLD | ghost_colour(&game->inky, 4);
            } else if (game->clyde.e.x == x && game->clyde.e.y == y) {
                c = 'C' | A_BOLD | ghost_colour(&game->clyde, 5);
            } else if (c == '#') {
                c |= A_DIM | COLOR_PAIR(6);
            } else if (c == '.' || c == 'O') {
                c |= A_DIM | COLOR_PAIR(7);
            } else if (c == 'T' || c == '\'') {
                c = ' ';
            } else if (c == 'K') {
                c |= A_BOLD | COLOR_PAIR(8);
            }

            addch(c);
            addch(' ');
        }
        addch('\n');
    }

    printw("lvl: %hu, lives: %hu\n", game->lvl, game->lives);

    refresh();
}

void process_input(Game *game) {
    int inp = getch();

    bool manual = true;
    if (inp == ERR && game->inp_buffer) {
        game->inp_buffer--;
        inp = game->buffered_inp;
        manual = false;
    }

    bool satisfied = false;
    switch (inp) {
        case KEY_LEFT:
            satisfied = turn(game, &game->pacman, LEFT);
            break;
        case KEY_UP:
            satisfied = turn(game, &game->pacman, UP);
            break;
        case KEY_RIGHT:
            satisfied = turn(game, &game->pacman, RIGHT);
            break;
        case KEY_DOWN:
            satisfied = turn(game, &game->pacman, DOWN);
            break;
    }

    if (satisfied) {
        game->inp_buffer = 0;
    } else if (manual) {
        game->inp_buffer = 16;
        game->buffered_inp = inp;
    }
}

typedef enum {
    Oikake,
    Machibuse,
    Kimagure,
    Otoboke,
} AIType;

void do_ghost(Game *game, Ghost *g, AIType ai) {
    int tx, ty;

    if (g->state == Chase || (ai == Oikake && game->elroy)) {
        switch (ai) {
            case Oikake:
                tx = game->pacman.x;
                ty = game->pacman.y;
                break;
            case Machibuse:
                tx = game->pacman.x + game->pacman.dir.dx*4;
                ty = game->pacman.y + game->pacman.dir.dy*4;
                // uncomment for the overflow bug from the original game
                //short dirs = *(short*)&game->pacman.dir * 4;
                //Dir dir = *(Dir*)&dirs;
                //tx = game->pacman.x + dir.dx;
                //ty = game->pacman.y + dir.dy;
                break;
            case Kimagure:
                tx = game->blinky.e.x + (game->pacman.x + game->pacman.dir.dx*2 - game->blinky.e.x)*2;
                ty = game->blinky.e.y + (game->pacman.y + game->pacman.dir.dy*2 - game->blinky.e.y)*2;
                //short dirs = *(short*)&game->pacman.dir * 2;
                //Dir dir = *(Dir*)&dirs;
                //tx = game->blinky.e.x + (game->pacman.x + dir.dx - game->blinky.e.x)*2;
                //ty = game->blinky.e.y + (game->pacman.y + dir.dy - game->blinky.e.y)*2;
                break;
            case Otoboke:
                int dx = game->pacman.x-g->e.x;
                int dy = game->pacman.y-g->e.y;
                if (dx*dx+dy*dy <= 8*8) {
                    tx = 0;
                    ty = 31;
                } else {
                    tx = game->pacman.x;
                    ty = game->pacman.y;
                }
                break;
        }
    } else if (g->state == Scatter) {
        switch (ai) {
            case Oikake:
                tx = board_width-3;
                ty = -2;
                break;
            case Machibuse:
                tx = 2;
                ty = -2;
                break;
            case Kimagure:
                tx = board_width-1;
                ty = board_height;
                break;
            case Otoboke:
                tx = 0;
                ty = board_height;
                break;
        }
    }

    double last = g->e.subpoint;
    double elroy_bonus = ai == Oikake ? 0.05*game->elroy : 0;
    advance(game, &g->e, elroy_bonus + (game->frightened_timer ? 0.60 : game->board[g->e.y][g->e.x] == 'T' ? 0.50 : 0.95));

    if ((g->e.subpoint >= 0.5 && last < 0.5) || g->e.subpoint == last) {
        Dir dir;
        int d = -1;

        Dir dirs[4] = {UP, LEFT, DOWN, RIGHT};
        if (g->state == Frightened) {
            d = 0;
            int r = rand()%4, s = r;
            while (true) {
                if (--r == -1) r = 3;
                if (r == s) break;
                dir = dirs[r];
                if (dir.dx == -g->e.dir.dx && dir.dy == -g->e.dir.dy) continue;
                if (game->board[g->e.y+dir.dy][g->e.x+dir.dx] == '#') continue;
                break;
            }
        } else {
            for (int i = 0; i < 4; i++) {
                Dir ndir = dirs[i];
                int nx = g->e.x + ndir.dx;
                int ny = g->e.y + ndir.dy;

                if (ndir.dx == -g->e.dir.dx && ndir.dy == -g->e.dir.dy) continue;
                if (game->board[ny][nx] == '#' || (i == 2 && game->board[ny][nx] == '-')) continue;
                if (i == 0 && (game->board[g->e.y][g->e.x] == '\'' || game->board[g->e.y][g->e.x] == ':')) continue;

                int nd = (nx-tx)*(nx-tx)+(ny-ty)*(ny-ty);
                if (d == -1 || nd<d) {
                    dir = ndir;
                    d = nd;
                }
            }
        }

        if (d != -1) {
            g->e.dir = dir;
        }
    }

    if (g->e.x == game->pacman.x && g->e.y == game->pacman.y) {
        if (!game->lives) {
            endwin();
            printf("game over\n\n%lu points\n", game->score);
            exit(0);
        }
        game->lives--;
        game->pacman.x = game->fruit_x;
        game->pacman.y = game->fruit_y;
        change_all_states(game, Scatter);
        game->default_state = Scatter;
        game->scatter_timer = 0;
        spawn_ghosts(game);
    }
}

void do_tick(Game *game) {
    process_input(game);

    char *h = &game->board[game->pacman.y][game->pacman.x];
    if (*h == 'K') {
        *h = ' ';
        game->score += 5000;
    } else if (*h == '.' || *h == ':' || *h == 'O') {
        game->remaining--;
        if (game->remaining == 120 || game->remaining == 60) {
            game->elroy++;
        }
        if (game->remaining == 174 || game->remaining == 74) {
            game->board[game->fruit_y][game->fruit_x] = 'K';
            game->fruit_timer = 9*60 + rand()%60;
        }
        if (!game->remaining) {
            change_all_states(game, Scatter);
            game->default_state = Scatter;
            game->scatter_timer = 0;
            game->fruit_timer = 0;
            game->lvl++;
            init_game_board(game);
        }
    }
    if (*h == '.' || *h == ':') {
        game->score += 10;
    } else if (*h == 'O') {
        *h = ' ';
        game->score += 50;
        change_all_states(game, Frightened);
        game->frightened_timer = 1;
    } else {
        advance(game, &game->pacman, 0.9);
    }
    if (*h == '.') {
        *h = ' ';
    } else if (*h == ':') {
        *h = '\'';
    }

    if (!game->xlife && game->score >= 10000) {
        game->xlife = true;
        game->lives++;
    }

    if (game->fruit_timer) {
        game->fruit_timer--;
        if (!game->fruit_timer) {
            game->board[game->fruit_y][game->fruit_x] = ' ';
        }
    }

    if (game->frightened_timer) {
        game->frightened_timer--;
        if (!game->frightened_timer) {
            game->blinky.state = game->default_state;
            game->pinky.state = game->default_state;
            game->inky.state = game->default_state;
            game->clyde.state = game->default_state;
        }
    } else {
        game->scatter_timer++;
        if (game->scatter_timer == 5*60 || game->scatter_timer == 30*60 || game->scatter_timer == 55*60 || game->scatter_timer == 1092*60+1) {
            game->default_state = Chase;
            change_all_states(game, Chase);
        } else if (game->scatter_timer == 25*60 || game->scatter_timer == 50*60 || game->scatter_timer == 1092*60) {
            game->default_state = Scatter;
            change_all_states(game, Scatter);
        }
    }

    do_ghost(game, &game->blinky, Oikake);
    do_ghost(game, &game->pinky, Machibuse);
    do_ghost(game, &game->inky, Kimagure);
    do_ghost(game, &game->clyde, Otoboke);
}

int main() {
    setlocale(LC_ALL, "");
    initscr();
    start_color();
    cbreak();
    keypad(stdscr, TRUE);
    noecho();
    timeout(0);
    curs_set(0);

    init_pair(1, COLOR_YELLOW, COLOR_BLACK);
    init_pair(2, COLOR_RED, COLOR_BLACK);
    init_pair(3, COLOR_MAGENTA, COLOR_BLACK);
    init_pair(4, COLOR_BLUE, COLOR_BLACK);
    init_pair(5, 172, COLOR_BLACK);
    init_pair(6, 19, COLOR_BLACK);
    init_pair(7, 223, COLOR_BLACK);
    init_pair(8, COLOR_CYAN, COLOR_BLACK);

    Game game = init_game();

    clock_t last_frame = clock();
    double ft = CLOCKS_PER_SEC / 60;
    while (true) {
        do_tick(&game);
        print_board(&game);
        clock_t target = last_frame + ft;
        while (clock() < target);
        last_frame = target;
    }
}

entry #2

written by Olivia

guesses
comments 0

post a comment


minesweeper2.js ASCII text
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 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
 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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
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
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
610
611
612
613
614
615
616
617
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
652
653
654
655
656
657
658
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
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
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
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
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
// Minesweeper 2.0
var readline = require("readline")
var crypto = require("crypto")
var readline = require("readline")
readline.emitKeypressEvents(process.stdin);
var stdin = process.stdin
var stdout = process.stdout
stdin.setRawMode(true);
var width = 35
var height = 15
var minesCount = 75
var started = false
var lost = false
var won = false
var cheated = false
var zoom = false
var currentSpeed = 1
var zoomSpeed = 5
var normalSpeed = 1
var bonuses = 0
var pos = {x:0, y:0}
var mines = Array()
var flags = Array()
var unknowns = Array()
var revealed = Array()
var firstMove = false
var start = null
var moves = 0
var actions = 0
for (var i = 0; i < height; i++) {
  var line = Array()
  for (let j = 0; j < width; j++) {
    line.push(false)
  }
  flags.push(line)
}
for (var i = 0; i < height; i++) {
  var line = Array()
  for (let j = 0; j < width; j++) {
    line.push(false)
  }
  unknowns.push(line)
}
for (var i = 0; i < height; i++) {
  var line = Array()
  for (let j = 0; j < width; j++) {
    line.push(false)
  }
  revealed.push(line)
}
function totalCount() {
  return width * height
}
function mineCount() {
  var count = 0;
  for (var i = 0; i < height; i++) {
    for (let j = 0; j < width; j++) {
      if (mines[i][j]) {
        count += 1
      }
    }
  }
  return count
}
function flagCount() {
  var count = 0;
  for (var i = 0; i < height; i++) {
    for (let j = 0; j < width; j++) {
      if (flags[i][j]) {
        count += 1
      }
    }
  }
  return count
}
function revealedCount() {
  var count = 0;
  for (var i = 0; i < height; i++) {
    for (let j = 0; j < width; j++) {
      if (revealed[i][j]) {
        count += 1
      }
    }
  }
  return count
}
function blankCount() {
  return totalCount() - flagCount() - revealedCount()
}
function show() {
  var string = ""
  string += mineCount().toString() + " mines " + flagCount().toString() + " flags (" + (mineCount() - flagCount()).toString() + " unflagged) " + revealedCount().toString() + " revealed " + blankCount().toString() + " blank \n"
  string += moves + " moves " + time(Date.now() - start) + " " + stat().toString() + " m/s " + stat2().toString() + " a/s\n"
  for (var i = 0; i < height; i++) {
    for (let j = 0; j < width; j++) {
      var value = "."
      if (revealed[i][j]) {
        var nearby = minesNearby({x:j, y:i}).toString()
        if (nearby == "0") {
          value = " "
        } else {
          value = nearby
        }
      } else if (flags[i][j]) {
        value = "F"
      } else if (unknowns[i][j]) {
        value = "?"
      }
      string += color(value);
      if (pos.x == j && pos.y == i) {
        string += "[" + value + "]\x1b[0m"
      } else {
        string += " " + value + " \x1b[0m"
      }
    }
    string += "\n"
  }
  stdout.write(string)
}
function showEmpty() {
  var string = ""
  string += minesCount.toString() + " mines " + flagCount().toString() + " flags (" + minesCount.toString() + " unflagged) 0 revealed " + blankCount().toString() + " blank \n"
  if (firstMove) {
    string += moves + " moves " + time(Date.now() - start) + " " + stat().toString() + " m/s " + stat2().toString() + " a/s\n"
  }
  for (var i = 0; i < height; i++) {
    for (let j = 0; j < width; j++) {
      var value = "."
      if (flags[i][j]) {
        value = "F"
      } else if (unknowns[i][j]) {
        value = "?"
      }
      string += color(value);
      if (pos.x == j && pos.y == i) {
        string += "[" + value + "]\x1b[0m"
      } else {
        string += " " + value + " \x1b[0m"
      }
    }
    string += "\n"
  }
  stdout.write(string)
}
function showLose() {
  if (cheated) {
    stdout.write("You lost (and you cheated)\n")
  } else {
    stdout.write("You lost\n")
  }
  var string = ""
  string += moves + " moves " + time(Date.now() - start) + " " + stat().toString() + " m/s " + stat2().toString() + " a/s\n"
  for (var i = 0; i < height; i++) {
    for (let j = 0; j < width; j++) {
      var value = "."
      if (revealed[i][j]) {
        var nearby = minesNearby({x:j, y:i}).toString()
        if (nearby == "0") {
          value = " "
        } else {
          value = nearby
        }
      } else if (flags[i][j] && !mines[i][j]) {
        value = "X"
      } else if (flags[i][j]) {
        value = "F"
      } else if (mines[i][j]) {
        value = "*"
      }
      string += color(value);
      if (pos.x == j && pos.y == i) {
        string += "[" + value + "]\x1b[0m"
      } else {
        string += " " + value + " \x1b[0m"
      }
    }
    string += "\n"
  }
  stdout.write(string)
}
function showWin() {
  if (cheated) {
    stdout.write("You win (but you cheated)\n")
  } else if (bonuses > 0) {
    stdout.write("You win with " + bonuses.toString() + " extra challenges\n")
  } else {
    stdout.write("You win\n")
  }
  var string = ""
  string += moves + " moves " + time(Date.now() - start) + " " + stat().toString() + " m/s " + stat2().toString() + " a/s\n"
  for (var i = 0; i < height; i++) {
    for (let j = 0; j < width; j++) {
      var value = "."
      if (revealed[i][j]) {
        var nearby = minesNearby({x:j, y:i}).toString()
        if (nearby == "0") {
          value = " "
        } else {
          value = nearby
        }
      } else if (mines[i][j]) {
        value = "*"
      }
      string += color(value) + " " + value + " \x1b[0m"
    }
    string += "\n"
  }
  stdout.write(string)
}
function minesNearby(position) {
  var sum = 0
  if (position.x > 0) {
    if (mines[position.y][position.x - 1]) {
      sum += 1;
    }
    if (position.y > 0) {
      if (mines[position.y - 1][position.x - 1]) {
        sum += 1;
      }   
    }
    if (position.y < height - 1) {
      if (mines[position.y + 1][position.x - 1]) {
        sum += 1;
      }   
    }
  }
  if (position.x < width - 1) {
    if (mines[position.y][position.x + 1]) {
      sum += 1;
    }
    if (position.y > 0) {
      if (mines[position.y - 1][position.x + 1]) {
        sum += 1;
      }   
    }
    if (position.y < height - 1) {
      if (mines[position.y + 1][position.x + 1]) {
        sum += 1;
      }   
    }
  }
  if (position.y > 0) {
    if (mines[position.y - 1][position.x]) {
      sum += 1;
    }   
  }
  if (position.y < height - 1) {
    if (mines[position.y + 1][position.x]) {
      sum += 1;
    }   
  }
  return sum
}
function flagsNearby() {
  var sum = 0
  if (pos.x > 0) {
    if (flags[pos.y][pos.x - 1]) {
      sum += 1;
    }
    if (pos.y > 0) {
      if (flags[pos.y - 1][pos.x - 1]) {
        sum += 1;
      }   
    }
    if (pos.y < height - 1) {
      if (flags[pos.y + 1][pos.x - 1]) {
        sum += 1;
      }   
    }
  }
  if (pos.x < width - 1) {
    if (flags[pos.y][pos.x + 1]) {
      sum += 1;
    }
    if (pos.y > 0) {
      if (flags[pos.y - 1][pos.x + 1]) {
        sum += 1;
      }   
    }
    if (pos.y < height - 1) {
      if (flags[pos.y + 1][pos.x + 1]) {
        sum += 1;
      }   
    }
  }
  if (pos.y > 0) {
    if (flags[pos.y - 1][pos.x]) {
      sum += 1;
    }   
  }
  if (pos.y < height - 1) {
    if (flags[pos.y + 1][pos.x]) {
      sum += 1;
    }   
  }
  return sum
}
function blanksNearby() {
  var sum = 0
  if (pos.x > 0) {
    if (!flags[pos.y][pos.x - 1] && !revealed[pos.y][pos.x - 1]) {
      sum += 1;
    }
    if (pos.y > 0) {
      if (!flags[pos.y - 1][pos.x - 1] && !revealed[pos.y - 1][pos.x - 1]) {
        sum += 1;
      }   
    }
    if (pos.y < height - 1) {
      if (!flags[pos.y + 1][pos.x - 1] && !revealed[pos.y + 1][pos.x - 1]) {
        sum += 1;
      }   
    }
  }
  if (pos.x < width - 1) {
    if (!flags[pos.y][pos.x + 1] && !revealed[pos.y][pos.x + 1]) {
      sum += 1;
    }
    if (pos.y > 0) {
      if (!flags[pos.y - 1][pos.x + 1] && !revealed[pos.y - 1][pos.x + 1]) {
        sum += 1;
      }   
    }
    if (pos.y < height - 1) {
      if (!flags[pos.y + 1][pos.x + 1] && !revealed[pos.y + 1][pos.x + 1]) {
        sum += 1;
      }   
    }
  }
  if (pos.y > 0) {
    if (!flags[pos.y - 1][pos.x] && !revealed[pos.y - 1][pos.x]) {
      sum += 1;
    }   
  }
  if (pos.y < height - 1) {
    if (!flags[pos.y + 1][pos.x] && !revealed[pos.y + 1][pos.x]) {
      sum += 1;
    }   
  }
  return sum
}
function color(string) {
  switch (string) {
    case " ":
      return "\x1b[48;5;238m";
    case "1":
      return "\x1b[48;5;240;38;5;45m";
    case "2":
      return "\x1b[48;5;240;38;5;46m";
    case "3":
      return "\x1b[48;5;240;38;5;208m";
    case "4":
      return "\x1b[48;5;240;38;5;33m";
    case "5":
      return "\x1b[48;5;240;38;5;160m";
    case "6":
      return "\x1b[48;5;240;38;5;43m";
    case "7":
      return "\x1b[48;5;240;38;5;15m";
    case "8":
      return "\x1b[48;5;240;38;5;242m";
    case "F":
      return "\x1b[48;5;236;38;5;220m";
    case "?":
      return "\x1b[48;5;236;38;5;183m";
    case ".":
      return "\x1b[48;5;236m";
    case "X":
      return "\x1b[48;5;88m";
    case "*":
      if (lost) {
        return "\x1b[48;5;88m";
      } else {
        return "\x1b[48;5;236;38;5;196m";
      }
    default:
      break;
  }
}
function pass() {}
function makeGrid() {
  var notReady = true
  while (notReady) {
    for (var i = 0; i < height; i++) {
      var line = Array()
      var bytes = crypto.randomBytes(width)
      for (let j = 0; j < width; j++) {
        var byte = bytes[j];
        if (byte > 256 * minesCount / totalCount()) {
          line.push(false);
        } else {
          if (-1 <= (pos.x - j) && (pos.x - j) <= 1 && -1 <= (pos.y - i) && (pos.y - i) <= 1) {
            line.push(false);
          } else {
            line.push(true);
          }
        }
      }
      mines.push(line)
    }
    if (mineCount() == minesCount) {
      notReady = false;
    } else {
      mines = Array()
    }
  }
}
function reveal() {
  revealArg(pos);
}
function revealArg(position) {
  if (revealed[position.y][position.x]) {
    pass()
  } else if (flags[position.y][position.x]) {
    pass()
  } else {
    if (mines[position.y][position.x]) {
      lost = true
    } else {
      revealed[position.y][position.x] = true;
      if (revealedCount() + minesCount == totalCount()) {
        won = true;
        return;
      }
      if (minesNearby(position) == 0) {
        if (position.x > 0) {
          revealArg({x:position.x - 1, y:position.y})
          if (position.y > 0) {
            revealArg({x:position.x - 1, y:position.y - 1})
          }
          if (position.y < height - 1) {
            revealArg({x:position.x - 1, y:position.y + 1})
          }
        }
        if (position.x < width - 1) {
          revealArg({x:position.x + 1, y:position.y})
          if (position.y > 0) {
            revealArg({x:position.x + 1, y:position.y - 1})
          }
          if (position.y < height - 1) {
            revealArg({x:position.x + 1, y:position.y + 1})
          }
        }
        if (position.y > 0) {
          revealArg({x:position.x, y:position.y - 1})
        }
        if (position.y < height - 1) {
          revealArg({x:position.x, y:position.y + 1})
        }
      }
    }
  }
}
function flag() {
  if (!revealed[pos.y][pos.x]) {
    var currentFlag = flags[pos.y][pos.x]
    if (currentFlag) {
      flagUnset(pos)
    } else {
      flagSet(pos)
    }
  }
}
function flagSet(position) {
  if (!revealed[position.y][position.x]) {
    flags[position.y][position.x] = true
    unknowns[position.y][position.x] = false
  }
}
function flagUnset(position) {
  if (!revealed[position.y][position.x]) {
    flags[position.y][position.x] = false
  }
}
function cord() {
  if (revealed[pos.y][pos.x]) {
    if (minesNearby(pos) == flagsNearby()) {
      if (pos.x > 0) {
        revealArg({x:pos.x - 1, y:pos.y})
        if (pos.y > 0) {
          revealArg({x:pos.x - 1, y:pos.y - 1})
        }
        if (pos.y < height - 1) {
          revealArg({x:pos.x - 1, y:pos.y + 1})
        }
      }
      if (pos.x < width - 1) {
        revealArg({x:pos.x + 1, y:pos.y})
        if (pos.y > 0) {
          revealArg({x:pos.x + 1, y:pos.y - 1})
        }
        if (pos.y < height - 1) {
          revealArg({x:pos.x + 1, y:pos.y + 1})
        }
      }
      if (pos.y > 0) {
        revealArg({x:pos.x, y:pos.y - 1})
      }
      if (pos.y < height - 1) {
        revealArg({x:pos.x, y:pos.y + 1})
      }
    }
  } else {
    flag()
  }
}
function extra() {
  if (revealed[pos.y][pos.x]) {
    if (flagCount() != 0 && blanksNearby() == 0) {
      if (pos.x > 0) {
        flagUnset({x:pos.x - 1, y:pos.y})
        if (pos.y > 0) {
          flagUnset({x:pos.x - 1, y:pos.y - 1})
        }
        if (pos.y < height - 1) {
          flagUnset({x:pos.x - 1, y:pos.y + 1})
        }
      }
      if (pos.x < width - 1) {
        flagUnset({x:pos.x + 1, y:pos.y})
        if (pos.y > 0) {
          flagUnset({x:pos.x + 1, y:pos.y - 1})
        }
        if (pos.y < height - 1) {
          flagUnset({x:pos.x + 1, y:pos.y + 1})
        }
      }
      if (pos.y > 0) {
        flagUnset({x:pos.x, y:pos.y - 1})
      }
      if (pos.y < height - 1) {
        flagUnset({x:pos.x, y:pos.y + 1})
      }
    } else if (blanksNearby() + flagsNearby() == minesNearby(pos)) {
      if (pos.x > 0) {
        flagSet({x:pos.x - 1, y:pos.y})
        if (pos.y > 0) {
          flagSet({x:pos.x - 1, y:pos.y - 1})
        }
        if (pos.y < height - 1) {
          flagSet({x:pos.x - 1, y:pos.y + 1})
        }
      }
      if (pos.x < width - 1) {
        flagSet({x:pos.x + 1, y:pos.y})
        if (pos.y > 0) {
          flagSet({x:pos.x + 1, y:pos.y - 1})
        }
        if (pos.y < height - 1) {
          flagSet({x:pos.x + 1, y:pos.y + 1})
        }
      }
      if (pos.y > 0) {
        flagSet({x:pos.x, y:pos.y - 1})
      }
      if (pos.y < height - 1) {
        flagSet({x:pos.x, y:pos.y + 1})
      }
    }
  } else {
    flag()
  }
}
function unknown() {
  if (!revealed[pos.y][pos.x] && !flags[pos.y][pos.x]) {
    var currentUnknown = unknowns[pos.y][pos.x]
    if (currentUnknown) {
      unknowns[pos.y][pos.x] = false
    } else {
      unknowns[pos.y][pos.x] = true
    }
  }
}
function blank() {
  if (flags[pos.y][pos.x]) {
    flags[pos.y][pos.x] = false
  }
  if (unknowns[pos.y][pos.x]) {
    unknowns[pos.y][pos.x] = false
  }
}
function please() {
  if (!revealed[pos.y][pos.x] && !flags[pos.y][pos.x]) {
    if (unknowns[pos.y][pos.x]) {
      if (!started) {
        makeGrid()
        started = true
      }
      cheated = true
      if (mines[pos.y][pos.x]) {
        flag()
      } else {
        reveal()
      }
    } else {
      unknown()
    }
  }
}
function moreMines() {
  var mineRate = minesCount / totalCount()
  if (started) {
    for (var i = 0; i < height; i++) {
      for (let j = 0; j < width; j++) {
        if (!mines[i][j] & !flags[i][j] & !revealed[i][j]) {
          if (crypto.randomInt(100) < 33.333 * mineRate) {
            mines[i][j] = true;
          }
        }
      }
    }
    if (revealedCount() + mineCount() == totalCount()) {
      won = true;
      cheated = true;
    }
  } else {
    minesCount += crypto.randomInt(Math.floor(mineRate * (totalCount() - minesCount) / 3))
    if (revealedCount() + minesCount == totalCount()) {
      won = true;
      cheated = true;
    }
  }
}
function time(seconds) {
  var seconds = seconds / 1000
  var hours = Math.floor(seconds / 60 / 60)
  var minutes = Math.floor((seconds - hours * 60 * 60) / 60)
  var seconds = seconds - hours * 60 * 60 - minutes * 60
  var string = seconds.toString() + "s"
  if (minutes != 0 || hours != 0) {
    string = minutes.toString() + "m " + string
  }
  if (hours != 0) {
    hours.toString() + "h " + string
  }
  return string
}
function stat() {
  var now = Date.now()
  var seconds = (now - start) / 1000
  var rate = moves / seconds
  if (rate > 100 || isNaN(rate)) {
    return "X"
  } else {
    return Math.round(rate * 10) / 10
  }
}
function stat2() {
  var now = Date.now()
  var seconds = (now - start) / 1000
  var rate = actions / seconds
  if (rate > 100 || isNaN(rate)) {
    return "X"
  } else {
    return Math.round(rate * 10) / 10
  }
}
function quit() {
  process.exit()
}
function controls() {
  stdout.write("Minesweeper 2.0\n")
  stdout.write("Controls:\n")
  stdout.write("WASD: Move\n")
  stdout.write("R: Reveal\n")
  stdout.write("F: Flag\n")
  stdout.write("C: Cord\n")
  stdout.write("E: Extra\n")
  stdout.write("U: Unknown\n")
  stdout.write("B: Blank\n")
  stdout.write("P: Please (cheats)\n")
  stdout.write("IJKL: Move to blank\n")
  stdout.write("N: Move to nearest blank\n")
  stdout.write("N: Move to middle\n")
  stdout.write("Z: Zoom mode (toggle)\n")
  stdout.write("X: Xtra challenge\n")
  stdout.write("H: Help\n")
  stdout.write("Q: Quit\n")
  stdout.write("\n")
}
stdin.on("keypress", (data, key) => {
  input = key.name
  if (input.length == 1) {
    switch (input.toLowerCase()) {
      case "w":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        pos.y-=currentSpeed
        if (pos.y <= -1) {
          pos.y = pos.y + height
        }
        break;
      case "a":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        pos.x-=currentSpeed
        if (pos.x <= -1) {
          pos.x = pos.x + width
        }
        break;
      case "s":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        pos.y+=currentSpeed
        if (pos.y >= height) {
          pos.y = pos.y - height
        }
        break;
      case "d":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        pos.x+=currentSpeed
        if (pos.x >= width) {
          pos.x = pos.x - width
        }
        break;
      case "r":
        moves += 1
        actions += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        if (started) {
          reveal()
        } else {
          makeGrid()
          started = true
          reveal()
        }
        break;
      case "f":
        moves += 1
        actions += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        flag()
        break;
      case "c":
        moves += 1
        actions += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        cord()
        break;
      case "e":
        moves += 1
        actions += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        extra()
        break;
      case "u":
        moves += 1
        actions += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        unknown()
        break;
      case "b":
        moves += 1
        actions += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        blank()
        break;
      case "p":
        moves += 1
        actions += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        please()
        break;
      case "i":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        var y = pos.y - 1;
        if (y == -1) {
          pos.y = height - 1;
          break;
        }
        while (y != pos.y) {
          if (y == -1) {
            pos.y = 0;
            break;
          }
          if (!revealed[y][pos.x] && !flags[y][pos.x]) {
            pos.y = y;
            break;
          }
          y -= 1;
        }
        break;
      case "j":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        var x = pos.x - 1;
        if (x == -1) {
          pos.x = width - 1;
          break;
        }
        while (x != pos.x) {
          if (x == -1) {
            pos.x = 0;
            break;
          }
          if (!revealed[pos.y][x] && !flags[pos.y][x]) {
            pos.x = x;
            break;
          }
          x -= 1;
        }
        break;
      case "k":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        var y = pos.y + 1;
        if (y == height) {
          pos.y = 0;
          break;
        }
        while (y != pos.y) {
          if (y == height) {
            pos.y = height - 1;
            break;
          }
          if (!revealed[y][pos.x] && !flags[y][pos.x]) {
            pos.y = y;
            break;
          }
          y += 1;
        }
        break;
      case "l":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        var x = pos.x + 1;
        if (x == width) {
          pos.x = 0;
          break;
        }
        while (x != pos.x) {
          if (x == width) {
            pos.x = width - 1;
            break;
          }
          if (!revealed[pos.y][x] && !flags[pos.y][x]) {
            pos.x = x;
            break;
          }
          x += 1;
        }
        break;
      case "m":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        pos.x = Math.floor(width / 2)
        pos.y = Math.floor(height / 2)
        break;
      case "n":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        if (blankCount() == 1) {
          for (var i = 0; i < height; i++) {
            for (let j = 0; j < width; j++) {
              if (!revealed[j][i] && !flags[j][i]) {
                pos.x = j;
                pos.y = i;
              }
            }
          }
        } else {
          var distance = 1;
          var done = false
          while (!done) {
            for (var i = 0; i < height; i++) {
              if (!done) {
                for (let j = 0; j < width; j++) {
                  if (!revealed[i][j] && !flags[i][j]) {
                    if (1 <= Math.abs(i - pos.y) + Math.abs(j - pos.x) && Math.abs(i - pos.y) + Math.abs(j - pos.x) <= distance) {
                      pos.x = j;
                      pos.y = i;
                      done = true;
                      break;
                    }
                  }
                }
              }
            }
            distance += 1
          }
        }
        break;
      case "x":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        moreMines();
        bonuses += 1;
        break;
      case "z":
        moves += 1
        if (start == null) {
          start = Date.now()
          firstMove = true
        }
        if (zoom) {
          zoom = false
          currentSpeed = normalSpeed
        } else {
          zoom = true
          currentSpeed = zoomSpeed
        }
        break;
      case "h":
        controls()
        return;
      case "q":
        quit()
        return;
      default:
        break;
    }
    if (lost) {
      showLose();
      quit();
      return;
    } else if (won) {
      showWin();
      quit();
      return;
    }
    if (started) {
      show();
    } else {
      showEmpty();
    }
  }
})
controls();
showEmpty();

entry #3

written by quintopia

guesses
comments 0

post a comment


nooseman.html ASCII text, with very long lines (64582)
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 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
 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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>Nooseman</title>
    <style>
      canvas { border: 1px solid black; }
      #correct { font: bold 20px monospace;
                 letter-spacing: 2px;
               }
      #replay {visibility:hidden;}
      #letter {width: 1ch;}
    </style>
  </head>
  <body onload="update();">
    <h1>Nooseman</h1>
    <canvas id="nooseman" width="150" height="150"></canvas>
    <p id="correct"></p>
    <p>Bad Letters:&nbsp;<span id="bad"></span></p>
    <span id="ui">Enter letter: <input id="letter"></span><input type="button" id="replay" value="Play Again">
    <h4>Past Wins:</h4>
    <div id="pastwins"></div>
    <script>
        var pastwins = '';
        if (localStorage.getItem('pastwins')) {
            pastwins = localStorage.getItem('pastwins');
            document.getElementById("pastwins").innerText=pastwins;
        }
        document.getElementById("letter").focus();
        var words=["aardvark", "aardwolf", "aasvogel", "abacuses", "abalones", "abampere", "abandons", "abapical", "abasedly", "abashing", "abatable", "abatises", "abattoir", "abbacies", "abbatial", "abbesses", "abdicate", "abdomens", "abdomina", "abducens", "abducent", "abducing", "abducted", "abductee", "abductor", "abegging", "abelmosk", "aberrant", "abetment", "abettals", "abetters", "abetting", "abettors", "abeyance", "abeyancy", "abfarads", "abhenrys", "abhorred", "abhorrer", "abidance", "abigails", "abjectly", "abjurers", "abjuring", "ablating", "ablation", "ablative", "ablators", "ablegate", "ableisms", "ableists", "abluents", "ablution", "abnegate", "abnormal", "aboideau", "aboiteau", "abomasal", "abomasum", "abomasus", "aborally", "aborning", "aborters", "aborting", "abortion", "abortive", "aboulias", "abounded", "abrachia", "abradant", "abraders", "abrading", "abrasion", "abrasive", "abreacts", "abridged", "abridger", "abridges", "abrogate", "abrosias", "abrupter", "abruptly", "abscised", "abscises", "abscisin", "abscissa", "absconds", "abseiled", "absences", "absented", "absentee", "absenter", "absently", "absinthe", "absinths", "absolute", "absolved", "absolver", "absolves", "absonant", "absorbed", "absorber", "abstains", "absterge", "abstract", "abstrict", "abstruse", "absurder", "absurdly", "abundant", "abusable", "abutilon", "abutment", "abuttals", "abutters", "abutting", "academes", "academia", "academic", "acalephe", "acalephs", "acanthae", "acanthus", "acapnias", "acarbose", "acaridan", "acarines", "acarpous", "acaudate", "acauline", "acaulose", "acaulous", "acceders", "acceding", "accented", "accentor", "accepted", "acceptee", "accepter", "acceptor", "accessed", "accesses", "accident", "accidias", "accidies", "acclaims", "accolade", "accorded", "accorder", "accosted", "accounts", "accouter", "accoutre", "accredit", "accreted", "accretes", "accruals", "accruing", "accuracy", "accurate", "accursed", "accusals", "accusant", "accusers", "accusing", "accustom", "aceldama", "acentric", "acequias", "acerated", "acerbate", "acerbest", "acerbity", "acerolas", "acervate", "acervuli", "acescent", "acetamid", "acetated", "acetates", "acetones", "acetonic", "acetoxyl", "acetylic", "achenial", "achieved", "achiever", "achieves", "achillea", "achiness", "achingly", "achiotes", "acholias", "achromat", "achromic", "aciculae", "acicular", "aciculas", "aciculum", "acidemia", "acidhead", "acidness", "acidoses", "acidosis", "acidotic", "aciduria", "acierate", "acoelous", "acolytes", "aconites", "aconitic", "aconitum", "acoustic", "acquaint", "acquests", "acquired", "acquiree", "acquirer", "acquires", "acrasias", "acrasins", "acreages", "acridest", "acridine", "acridity", "acrimony", "acrobats", "acrodont", "acrogens", "acrolect", "acrolein", "acrolith", "acromial", "acromion", "acronyms", "acrosome", "acrostic", "acrotism", "acrylate", "acrylics", "actiniae", "actinian", "actinias", "actinide", "actinism", "actinium", "actinoid", "actinons", "actioner", "activate", "actively", "activism", "activist", "activity", "activize", "actorish", "actressy", "actually", "actuated", "actuates", "actuator", "acuities", "aculeate", "acutance", "acylated", "acylates", "acyloins", "adamance", "adamancy", "adamants", "adamsite", "adapters", "adapting", "adaption", "adaptive", "adaptors", "addendum", "addicted", "addition", "additive", "additory", "adducent", "adducers", "adducing", "adducted", "adductor", "adeeming", "adenines", "adenitis", "adenoids", "adenomas", "adenoses", "adenosis", "adeptest", "adequacy", "adequate", "adherend", "adherent", "adherers", "adhering", "adhesion", "adhesive", "adhibits", "adiposes", "adiposis", "adjacent", "adjoined", "adjoints", "adjourns", "adjudged", "adjudges", "adjuncts", "adjurers", "adjuring", "adjurors", "adjusted", "adjuster", "adjustor", "adjutant", "adjuvant", "admasses", "admirals", "admirers", "admiring", "admitted", "admittee", "admitter", "admixing", "admonish", "adnation", "adonises", "adoptees", "adopters", "adopting", "adoption", "adoptive", "adorable", "adorably", "adorners", "adorning", "adrenals", "adroiter", "adroitly", "adscript", "adsorbed", "adsorber", "adularia", "adulated", "adulates", "adulator", "adultery", "adumbral", "aduncate", "aduncous", "advanced", "advancer", "advances", "advected", "adverted", "advisees", "advisers", "advising", "advisors", "advisory", "advocacy", "advocate", "advowson", "adynamia", "adynamic", "aecidial", "aecidium", "aequorin", "aerating", "aeration", "aerators", "aerially", "aerified", "aerifies", "aeriform", "aerobats", "aerobics", "aerobium", "aeroduct", "aerodyne", "aerofoil", "aerogels", "aerogram", "aerolite", "aerolith", "aerology", "aeronaut", "aeronomy", "aerosats", "aerosols", "aerostat", "aesthete", "aestival", "aetheric", "afebrile", "affaires", "affected", "affecter", "afferent", "affiance", "affiants", "affiches", "affinely", "affinity", "affirmed", "affirmer", "affixers", "affixial", "affixing", "afflatus", "afflicts", "affluent", "affluxes", "afforded", "afforest", "affrayed", "affrayer", "affright", "affronts", "affusion", "afghanis", "aflutter", "aftertax", "agalloch", "agalwood", "agametes", "agaroses", "agatized", "agatizes", "agedness", "agemates", "agencies", "agendums", "ageneses", "agenesia", "agenesis", "agenetic", "agenized", "agenizes", "agential", "agenting", "agentive", "ageratum", "aggadahs", "aggadoth", "aggraded", "aggrades", "aggrieve", "aginners", "agiotage", "agisting", "agitable", "agitated", "agitates", "agitator", "agitprop", "aglimmer", "aglitter", "aglycone", "aglycons", "agminate", "agnation", "agnizing", "agnomens", "agnomina", "agnosias", "agnostic", "agonised", "agonises", "agonists", "agonized", "agonizes", "agouties", "agraffes", "agraphia", "agraphic", "agrarian", "agreeing", "agrestal", "agrestic", "agrimony", "agrology", "agronomy", "agrypnia", "aguacate", "aguelike", "agueweed", "aguishly", "aigrette", "aiguille", "ailerons", "ailments", "aimfully", "ainsells", "airboats", "airborne", "airbound", "airbrush", "airburst", "airbuses", "aircheck", "aircoach", "aircraft", "aircrews", "airdates", "airdrome", "airdrops", "airfares", "airfield", "airflows", "airfoils", "airframe", "airglows", "airheads", "airholes", "airiness", "airlifts", "airliner", "airlines", "airmails", "airparks", "airplane", "airplays", "airports", "airposts", "airpower", "airproof", "airscape", "airscrew", "airsheds", "airships", "airshots", "airshows", "airspace", "airspeed", "airstrip", "airthing", "airtight", "airtimes", "airwaves", "airwoman", "airwomen", "aisleway", "akinesia", "akinetic", "akvavits", "alachlor", "alacrity", "alamedas", "alamodes", "alanines", "alarming", "alarmism", "alarmist", "alarumed", "alastors", "alations", "albacore", "albedoes", "albicore", "albinism", "albizias", "albizzia", "albumens", "albumins", "albumose", "alburnum", "alcahest", "alcaides", "alcaldes", "alcaydes", "alcazars", "alchemic", "alcidine", "alcohols", "aldehyde", "alderfly", "alderman", "aldermen", "aldicarb", "aldolase", "aleatory", "alehouse", "alembics", "alencons", "alertest", "alerting", "aleurone", "aleurons", "alewives", "alexines", "alfalfas", "alfaquin", "alfaquis", "alforjas", "alfresco", "algaroba", "algebras", "algerine", "algicide", "algidity", "alginate", "algology", "algorism", "aliasing", "alibiing", "alidades", "alienage", "alienate", "alienees", "alieners", "aliening", "alienism", "alienist", "alienors", "alighted", "aligners", "aligning", "aliments", "aliquant", "aliquots", "alizarin", "alkahest", "alkalies", "alkalify", "alkaline", "alkalise", "alkalize", "alkaloid", "alkanets", "alkoxide", "alkylate", "allanite", "allayers", "allaying", "allegers", "alleging", "allegory", "allegros", "allelism", "alleluia", "allergen", "allergic", "allergin", "alleyway", "allheals", "alliable", "alliance", "allicins", "allobars", "allocate", "allodial", "allodium", "allogamy", "allonges", "allonyms", "allopath", "allosaur", "allotted", "allottee", "allotter", "allotype", "allotypy", "allovers", "allowing", "alloxans", "alloying", "allseeds", "allsorts", "allspice", "alluding", "allurers", "alluring", "allusion", "allusive", "alluvial", "alluvion", "alluvium", "almagest", "almanack", "almanacs", "almemars", "almighty", "almoners", "alogical", "alopecia", "alopecic", "alphabet", "alphorns", "alphosis", "alpinely", "alpinism", "alpinist", "alterant", "alterers", "altering", "alterity", "althaeas", "althorns", "although", "altitude", "altoists", "altruism", "altruist", "aluminas", "alumines", "aluminic", "aluminum", "alumroot", "alunites", "alveolar", "alveolus", "alyssums", "amadavat", "amalgams", "amandine", "amanitas", "amanitin", "amaranth", "amarelle", "amaretti", "amaretto", "amarones", "amassers", "amassing", "amateurs", "amazedly", "ambaries", "amberies", "amberina", "amberoid", "ambiance", "ambience", "ambients", "ambition", "ambivert", "amboinas", "amboynas", "ambroids", "ambrosia", "ambsaces", "ambulant", "ambulate", "ambushed", "ambusher", "ambushes", "ameerate", "amelcorn", "amenable", "amenably", "amenders", "amending", "amentias", "amercers", "amercing", "amesaces", "amethyst", "amiantus", "amicable", "amicably", "amidases", "amidines", "amidogen", "amidones", "amidship", "amirates", "amitoses", "amitosis", "amitotic", "amitrole", "ammeters", "ammocete", "ammonals", "ammoniac", "ammonias", "ammonify", "ammonite", "ammonium", "ammonoid", "amnesiac", "amnesias", "amnesics", "amnestic", "amnionic", "amniotes", "amniotic", "amoebean", "amoeboid", "amorally", "amoretti", "amoretto", "amorists", "amortise", "amortize", "amosites", "amotions", "amounted", "amperage", "amphibia", "amphioxi", "amphipod", "amphorae", "amphoral", "amphoras", "amplexus", "ampoules", "ampullae", "ampullar", "amputate", "amputees", "amreetas", "amtracks", "amusable", "amusedly", "amygdala", "amygdale", "amygdule", "amylases", "amylenes", "amylogen", "amyloids", "amyloses", "anabaena", "anabases", "anabasis", "anabatic", "anableps", "anabolic", "anaconda", "anaemias", "anaerobe", "anaglyph", "anagoges", "anagogic", "anagrams", "analcime", "analcite", "analecta", "analects", "analemma", "analgias", "analogic", "analogue", "analysed", "analyser", "analyses", "analysis", "analysts", "analytes", "analytic", "analyzed", "analyzer", "analyzes", "anapaest", "anapests", "anaphase", "anaphora", "anaphors", "anarchic", "anasarca", "anatases", "anathema", "anatomic", "anatoxin", "ancestor", "ancestry", "anchored", "anchoret", "anchusas", "anchusin", "ancients", "ancillae", "ancillas", "anconeal", "anconoid", "andantes", "andesite", "andesyte", "andirons", "androgen", "androids", "anearing", "anecdota", "anecdote", "anechoic", "anemones", "anemoses", "anemosis", "anergias", "anergies", "aneroids", "anestrus", "anethole", "anethols", "aneurins", "aneurism", "aneurysm", "angakoks", "angarias", "angaries", "angelica", "angeling", "angering", "anginose", "anginous", "angiomas", "anglepod", "anglings", "angriest", "angstrom", "angulate", "angulose", "angulous", "anhingas", "anilines", "animalic", "animally", "animated", "animater", "animates", "animator", "animisms", "animists", "animuses", "aniseeds", "anisette", "anisoles", "ankerite", "ankushes", "ankylose", "annalist", "annattos", "annealed", "annealer", "annelids", "annexing", "annotate", "announce", "annoyers", "annoying", "annually", "annulate", "annulets", "annulled", "annulose", "anodally", "anodized", "anodizes", "anodynes", "anodynic", "anointed", "anointer", "anolytes", "anoopsia", "anopsias", "anoretic", "anorexia", "anorexic", "anorthic", "anosmias", "anovular", "anoxemia", "anoxemic", "anserine", "anserous", "answered", "answerer", "antacids", "antalgic", "antbears", "anteater", "antecede", "antedate", "antefixa", "antelope", "antennae", "antennal", "antennas", "antepast", "anterior", "anteroom", "antetype", "antevert", "anthelia", "anthelix", "anthemed", "anthemia", "anthemic", "antheral", "antherid", "antheses", "anthesis", "anthills", "anthodia", "antiacne", "antiarin", "antiatom", "antibias", "antibody", "antiboss", "anticity", "anticked", "anticold", "anticult", "antidora", "antidote", "antidrug", "antifoam", "antigang", "antigene", "antigens", "antihero", "antiking", "antileak", "antileft", "antilife", "antilock", "antilogs", "antilogy", "antimale", "antimask", "antimere", "antimine", "antimony", "antinode", "antinome", "antinomy", "antinuke", "antiphon", "antipill", "antipode", "antipole", "antipope", "antiporn", "antipyic", "antiqued", "antiquer", "antiques", "antirape", "antiriot", "antirock", "antiroll", "antirust", "antisera", "antiship", "antiskid", "antislip", "antismog", "antismut", "antisnob", "antispam", "antistat", "antitank", "antitype", "antiwear", "antiweed", "antlered", "antlions", "antonyms", "antonymy", "antrorse", "antsiest", "anureses", "anuresis", "anuretic", "anviling", "anvilled", "anviltop", "anyplace", "anything", "anywhere", "aoristic", "apagoges", "apagogic", "apanages", "aparejos", "apatetic", "apathies", "apatites", "aperient", "aperitif", "aperture", "aphagias", "aphanite", "aphasiac", "aphasias", "aphasics", "aphelian", "aphelion", "aphidian", "apholate", "aphonias", "aphonics", "aphorise", "aphorism", "aphorist", "aphorize", "aphthous", "apiarian", "apiaries", "apiarist", "apically", "apiculus", "apimania", "apiology", "aplasias", "aplastic", "apoapses", "apoapsis", "apocarps", "apocarpy", "apocopes", "apocopic", "apocrine", "apodoses", "apodosis", "apogamic", "apologal", "apologia", "apologue", "apolunes", "apomicts", "apomixes", "apomixis", "apophony", "apophyge", "apoplexy", "apospory", "apostacy", "apostasy", "apostate", "apostils", "apostles", "apothece", "apothegm", "apothems", "appalled", "appanage", "apparats", "apparels", "apparent", "appealed", "appealer", "appeared", "appeased", "appeaser", "appeases", "appellee", "appellor", "appended", "appendix", "appestat", "appetent", "appetite", "applauds", "applause", "appliers", "applique", "applying", "appoints", "apposers", "apposing", "apposite", "appraise", "apprised", "appriser", "apprises", "apprized", "apprizer", "apprizes", "approach", "approval", "approved", "approver", "approves", "appulses", "apractic", "apraxias", "apricots", "aproning", "apterium", "apterous", "aptitude", "apyrases", "apyretic", "aquacade", "aquafarm", "aqualung", "aquanaut", "aquarial", "aquarian", "aquarist", "aquarium", "aquatics", "aquatint", "aquatone", "aquavits", "aqueduct", "aquifers", "aquiline", "arabesks", "arabicas", "arabized", "arabizes", "araceous", "arachnid", "araneids", "arapaima", "ararobas", "arbalest", "arbalist", "arbelest", "arbiters", "arbitral", "arboreal", "arboreta", "arborist", "arborize", "arborous", "arboured", "arbuscle", "arbutean", "arcadian", "arcadias", "arcading", "arcanums", "arcature", "archaeal", "archaean", "archaeon", "archaise", "archaism", "archaist", "archaize", "archduke", "archfoes", "archines", "archings", "archival", "archived", "archives", "archness", "archways", "arciform", "arcsines", "arcuated", "ardently", "areaways", "arenites", "areolate", "areology", "arethusa", "argental", "argentic", "argentum", "arginase", "arginine", "argonaut", "argosies", "arguable", "arguably", "argufied", "argufier", "argufies", "argument", "aridness", "ariettas", "ariettes", "arillate", "arillode", "arilloid", "aristate", "armagnac", "armament", "armature", "armbands", "armchair", "armholes", "armigero", "armigers", "armillae", "armillas", "armloads", "armlocks", "armoires", "armonica", "armorers", "armorial", "armories", "armoring", "armoured", "armourer", "armrests", "armyworm", "arnattos", "arnottos", "arointed", "aromatic", "arousals", "arousers", "arousing", "aroynted", "arpeggio", "arquebus", "arraigns", "arranged", "arranger", "arranges", "arrantly", "arrayals", "arrayers", "arraying", "arrested", "arrestee", "arrester", "arrestor", "arrhizal", "arrivals", "arrivers", "arriving", "arrogant", "arrogate", "arrowing", "arsenals", "arsenate", "arsenics", "arsenide", "arsenite", "arsenous", "arsonist", "arsonous", "artefact", "arterial", "arteries", "artfully", "articled", "articles", "artifact", "artifice", "artiness", "artisans", "artistes", "artistic", "artistry", "artsiest", "artworks", "arugolas", "arugulas", "arythmia", "arythmic", "asbestic", "asbestos", "asbestus", "ascarids", "ascended", "ascender", "ascetics", "ascidian", "ascidium", "ascocarp", "ascorbic", "ascribed", "ascribes", "ashcakes", "ashfalls", "ashiness", "ashlared", "ashlered", "ashplant", "ashtrays", "asocials", "asparkle", "asperate", "asperges", "asperity", "aspersed", "asperser", "asperses", "aspersor", "asphalts", "aspheric", "asphodel", "asphyxia", "aspirant", "aspirata", "aspirate", "aspirers", "aspiring", "aspirins", "assagais", "assailed", "assailer", "assassin", "assaults", "assayers", "assaying", "assegais", "assemble", "assembly", "assented", "assenter", "assentor", "asserted", "asserter", "assertor", "assessed", "assesses", "assessor", "assholes", "assignat", "assigned", "assignee", "assigner", "assignor", "assisted", "assister", "assistor", "assoiled", "assonant", "assorted", "assorter", "assuaged", "assuager", "assuages", "assumers", "assuming", "assureds", "assurers", "assuring", "assurors", "asswaged", "asswages", "astasias", "astatine", "asterias", "asterisk", "asterism", "asternal", "asteroid", "asthenia", "asthenic", "astigmia", "astilbes", "astomous", "astonied", "astonies", "astonish", "astounds", "astragal", "astrally", "astricts", "astringe", "astutely", "asyndeta", "atabrine", "ataghans", "atalayas", "atamasco", "ataraxia", "ataraxic", "atavisms", "atavists", "atechnic", "ateliers", "atemoyas", "atenolol", "athanasy", "atheisms", "atheists", "atheling", "atheneum", "atheroma", "athetoid", "athletes", "athletic", "athodyds", "atlantes", "atomical", "atomised", "atomiser", "atomises", "atomisms", "atomists", "atomized", "atomizer", "atomizes", "atonable", "atonally", "atrazine", "atremble", "atresias", "atrocity", "atrophia", "atrophic", "atropine", "atropins", "atropism", "attached", "attacher", "attaches", "attacked", "attacker", "attagirl", "attained", "attainer", "attaints", "attemper", "attempts", "attended", "attendee", "attender", "attested", "attester", "attestor", "atticism", "atticist", "atticize", "attiring", "attitude", "attorned", "attorney", "attracts", "attrited", "attrites", "attuning", "atwitter", "atypical", "auberges", "aubretia", "aubrieta", "auctions", "audacity", "audibled", "audibles", "audience", "audients", "auditees", "auditing", "audition", "auditive", "auditors", "auditory", "augments", "augurers", "auguries", "auguring", "auguster", "augustly", "aunthood", "auntlier", "auntlike", "aurality", "aureolae", "aureolas", "aureoled", "aureoles", "auricled", "auricles", "auricula", "auriform", "aurorean", "ausforms", "auspices", "austerer", "australs", "autacoid", "autarchs", "autarchy", "autarkic", "autecism", "authored", "autistic", "autobahn", "autocade", "autocoid", "autocrat", "autodyne", "autogamy", "autogeny", "autogiro", "autogyro", "autoharp", "autolyse", "autolyze", "automata", "automate", "automats", "autonomy", "autonyms", "autopens", "autopsic", "autosome", "autotomy", "autotype", "autotypy", "autumnal", "autunite", "auxetics", "avadavat", "availing", "avarices", "avellane", "avengers", "avenging", "aventail", "averaged", "averages", "averment", "averring", "aversely", "aversion", "aversive", "averters", "averting", "avgasses", "avianize", "aviaries", "aviarist", "aviating", "aviation", "aviators", "aviatrix", "avicular", "avidness", "avifauna", "avigator", "avionics", "avocados", "avodires", "avoiders", "avoiding", "avouched", "avoucher", "avouches", "avowable", "avowably", "avowedly", "avulsing", "avulsion", "awaiters", "awaiting", "awakened", "awakener", "awardees", "awarders", "awarding", "awayness", "aweather", "awfuller", "awlworts", "awninged", "axiality", "axillars", "axillary", "axiology", "axletree", "axolotls", "axonemal", "axonemes", "axoplasm", "ayurveda", "azimuths", "azotemia", "azotemic", "azotised", "azotises", "azotized", "azotizes", "azoturia", "azulejos", "azurites", "azygoses", "baalisms", "baaskaap", "baaskaps", "baasskap", "babassus", "babbitry", "babbitts", "babblers", "babbling", "babesias", "babiches", "babirusa", "babushka", "babydoll", "babyhood", "babysits", "bacalaos", "baccaras", "baccarat", "baccated", "bacchant", "bacchius", "bachelor", "bacillar", "bacillus", "backache", "backbeat", "backbend", "backbite", "backbone", "backcast", "backchat", "backdate", "backdoor", "backdrop", "backfill", "backfire", "backfits", "backflip", "backflow", "backhand", "backhaul", "backhoed", "backhoes", "backings", "backland", "backlash", "backless", "backlist", "backload", "backlogs", "backmost", "backouts", "backpack", "backrest", "backroom", "backrush", "backsaws", "backseat", "backsets", "backside", "backslap", "backslid", "backspin", "backstab", "backstay", "backstop", "backward", "backwash", "backwood", "backwrap", "backyard", "baclofen", "bacteria", "bacterin", "baculine", "baculums", "badassed", "badasses", "badgered", "badgerly", "badinage", "badlands", "badmouth", "bafflers", "baffling", "bagasses", "baggages", "baggiest", "baggings", "baghouse", "bagpiped", "bagpiper", "bagpipes", "baguette", "bagworms", "bahadurs", "baidarka", "bailable", "bailiffs", "bailment", "bailouts", "bailsman", "bailsmen", "bairnish", "baitfish", "bakelite", "bakemeat", "bakeries", "bakeshop", "bakeware", "baklavas", "baklawas", "bakshish", "balanced", "balancer", "balances", "baldhead", "baldness", "baldpate", "baldrick", "baldrics", "balefire", "balisaur", "balkiest", "balkline", "ballades", "balladic", "balladry", "ballasts", "balletic", "ballgame", "ballhawk", "ballista", "ballonet", "ballonne", "balloons", "balloted", "balloter", "ballpark", "ballroom", "ballsier", "ballutes", "ballyard", "ballyhoo", "ballyrag", "balmiest", "balmlike", "balmoral", "baloneys", "balsamed", "balsamic", "baluster", "bambinos", "banality", "banalize", "banausic", "bandaged", "bandager", "bandages", "bandanas", "bandanna", "bandeaus", "bandeaux", "banderol", "banditos", "banditry", "banditti", "bandmate", "bandoras", "bandores", "bandsaws", "bandsman", "bandsmen", "bandying", "bangkoks", "bangtail", "banished", "banisher", "banishes", "banister", "banjaxed", "banjaxes", "banjoist", "bankable", "bankbook", "bankcard", "bankerly", "bankings", "banknote", "bankroll", "bankrupt", "banksias", "bankside", "bannable", "bannered", "banneret", "bannerol", "bannocks", "banquets", "banshees", "banshies", "bantengs", "bantered", "banterer", "bantling", "baptised", "baptises", "baptisia", "baptisms", "baptists", "baptized", "baptizer", "baptizes", "barathea", "barbaric", "barbasco", "barbecue", "barbells", "barbeque", "barbered", "barberry", "barbette", "barbican", "barbicel", "barbital", "barbless", "barbules", "barbwire", "barchans", "bareback", "bareboat", "barefoot", "barehand", "barehead", "bareness", "baresark", "barflies", "bargains", "bargello", "bargeman", "bargemen", "barghest", "barguest", "barillas", "baristas", "baritone", "barkeeps", "barkiest", "barkless", "barleduc", "barmaids", "barmiest", "barnacle", "barniest", "barnlike", "barnyard", "barogram", "baronage", "baroness", "baronets", "baronial", "baronies", "baronnes", "baroques", "barosaur", "barouche", "barrable", "barracks", "barraged", "barrages", "barranca", "barranco", "barrater", "barrator", "barratry", "barreled", "barrener", "barrenly", "barretor", "barretry", "barrette", "barriers", "barrooms", "barstool", "bartends", "bartered", "barterer", "bartisan", "bartizan", "barwares", "baryonic", "barytone", "barytons", "basaltes", "basaltic", "bascules", "baseball", "baseborn", "baseless", "baseline", "basement", "baseness", "basenjis", "bashings", "bashlyks", "basicity", "basidial", "basidium", "basified", "basifier", "basifies", "basilary", "basilect", "basilica", "basilisk", "basinets", "basinful", "basketry", "basmatis", "basophil", "basseted", "bassetts", "bassinet", "bassists", "bassness", "bassoons", "basswood", "bastards", "bastardy", "bastiles", "bastille", "bastings", "bastions", "batchers", "batching", "batfowls", "batgirls", "bathetic", "bathless", "bathmats", "bathoses", "bathrobe", "bathroom", "bathtubs", "batiking", "batistes", "battalia", "batteaux", "battened", "battener", "battered", "batterer", "batterie", "battiest", "battings", "battlers", "battling", "baudekin", "baudrons", "bauhinia", "baulkier", "baulking", "bauxites", "bauxitic", "bawcocks", "bawdiest", "bawdrics", "bawdries", "bayadeer", "bayadere", "bayberry", "bayonets", "baywoods", "bazookas", "bdellium", "beachboy", "beachier", "beaching", "beaconed", "beadiest", "beadings", "beadlike", "beadroll", "beadsman", "beadsmen", "beadwork", "beakiest", "beakless", "beaklike", "beamiest", "beamless", "beamlike", "beanbags", "beanball", "beanlike", "beanpole", "bearable", "bearably", "bearcats", "bearding", "bearhugs", "bearings", "bearlike", "bearskin", "bearwood", "beasties", "beatable", "beatific", "beatings", "beatless", "beatniks", "beaucoup", "beauties", "beautify", "beavered", "bebeerus", "bebloods", "bebopper", "becalmed", "becapped", "becarpet", "bechalks", "bechamel", "bechance", "becharms", "beckoned", "beckoner", "beclamor", "beclasps", "becloaks", "beclothe", "beclouds", "beclowns", "becoming", "becoward", "becrawls", "becrimed", "becrimes", "becrowds", "becrusts", "becudgel", "becursed", "becurses", "bedabble", "bedamned", "bedarken", "bedaubed", "bedazzle", "bedboard", "bedchair", "bedcover", "beddable", "beddings", "bedeafen", "bedecked", "bedesman", "bedesmen", "bedevils", "bedewing", "bedframe", "bedgowns", "bediaper", "bedights", "bedimmed", "bedimple", "bedizens", "bedlamps", "bedmaker", "bedmates", "bedotted", "bedouins", "bedplate", "bedposts", "bedquilt", "bedrails", "bedraped", "bedrapes", "bedrench", "bedrivel", "bedrocks", "bedrolls", "bedrooms", "bedsheet", "bedsides", "bedsonia", "bedsores", "bedstand", "bedstead", "bedstraw", "bedticks", "bedtimes", "bedumbed", "bedunced", "bedunces", "bedwards", "bedwarfs", "beebread", "beechier", "beechnut", "beefalos", "beefcake", "beefiest", "beefless", "beefwood", "beehives", "beelined", "beelines", "beeriest", "beeswing", "beetlers", "beetling", "beetroot", "beeyards", "befallen", "befinger", "befitted", "befleaed", "beflecks", "beflower", "befogged", "befooled", "befouled", "befouler", "befriend", "befringe", "befuddle", "begalled", "begazing", "begetter", "beggared", "beggarly", "beginner", "begirded", "begirdle", "beglamor", "beglooms", "begonias", "begorrah", "begotten", "begrimed", "begrimes", "begroans", "begrudge", "beguiled", "beguiler", "beguiles", "beguines", "begulfed", "behalves", "behavers", "behaving", "behavior", "beheadal", "beheaded", "beheader", "behemoth", "beholden", "beholder", "behooved", "behooves", "behoving", "behowled", "beignets", "bejabers", "bejeezus", "bejewels", "bejumble", "bekissed", "bekisses", "beknight", "belabors", "belabour", "beladied", "beladies", "belauded", "belayers", "belaying", "belchers", "belching", "beldames", "beleaped", "belfried", "belfries", "believed", "believer", "believes", "beliquor", "belittle", "bellbird", "bellboys", "belleeks", "bellhops", "bellings", "bellowed", "bellower", "bellpull", "bellwort", "bellyful", "bellying", "belonged", "beloveds", "beltings", "beltless", "beltline", "beltways", "bemadams", "bemadden", "bemeaned", "bemingle", "bemiring", "bemisted", "bemixing", "bemoaned", "bemocked", "bemuddle", "bemurmur", "bemusing", "bemuzzle", "benadryl", "benaming", "benchers", "benching", "benchtop", "bendable", "bendayed", "bendiest", "bendways", "bendwise", "benedick", "benedict", "benefice", "benefits", "benignly", "benisons", "benjamin", "benomyls", "benthons", "bentwood", "benumbed", "benzenes", "benzidin", "benzines", "benzoate", "benzoins", "benzoles", "benzoyls", "benzylic", "bepaints", "bepimple", "bequeath", "bequests", "beraking", "berascal", "berating", "berberin", "berberis", "berceuse", "berdache", "bereaved", "bereaver", "bereaves", "berettas", "bergamot", "bergeres", "berhymed", "berhymes", "beriberi", "berimbau", "beriming", "beringed", "berlines", "bermudas", "bernicle", "berouged", "berretta", "berrying", "berseems", "berserks", "berthing", "beryline", "bescorch", "bescours", "bescreen", "beseemed", "besetter", "beshadow", "beshamed", "beshames", "beshiver", "beshouts", "beshrews", "beshroud", "besieged", "besieger", "besieges", "beslaved", "beslimed", "beslimes", "besmears", "besmiled", "besmiles", "besmirch", "besmoked", "besmokes", "besmooth", "besmudge", "besnowed", "besoothe", "besotted", "besought", "bespeaks", "bespoken", "bespouse", "bespread", "besprent", "besteads", "bestiary", "bestowal", "bestowed", "bestower", "bestrewn", "bestrews", "bestride", "bestrode", "bestrown", "bestrows", "beswarms", "betaines", "betaking", "betatron", "betatter", "betelnut", "bethanks", "bethesda", "bethinks", "bethorns", "bethumps", "betiding", "betokens", "betonies", "betrayal", "betrayed", "betrayer", "betroths", "bettered", "beuncled", "bevatron", "bevelers", "beveling", "bevelled", "beveller", "beverage", "bevomits", "bewailed", "bewailer", "bewaring", "bewigged", "bewilder", "bewinged", "bewormed", "bewrayed", "bewrayer", "bezazzes", "beziques", "bezzants", "bhangras", "bheestie", "bhisties", "biacetyl", "biannual", "biasedly", "biasness", "biassing", "biathlon", "bibcocks", "bibelots", "biblical", "biblists", "bibulous", "bicaudal", "bicepses", "bichrome", "bickered", "bickerer", "bicolors", "bicolour", "biconvex", "bicornes", "bicuspid", "bicycled", "bicycler", "bicycles", "bicyclic", "bidarkas", "bidarkee", "biddable", "biddably", "biddings", "bidental", "bielding", "biennale", "biennial", "biennium", "bifacial", "bifidity", "bifocals", "biforate", "biforked", "biformed", "bigamies", "bigamist", "bigamous", "bigarade", "bigaroon", "bigeminy", "bigfoots", "biggings", "bigheads", "bighorns", "bighting", "bigmouth", "bignonia", "bigstick", "bihourly", "bijugate", "bijugous", "bikeways", "bikinied", "bilabial", "bilander", "bilayers", "bilberry", "bilevels", "bilgiest", "bilinear", "billable", "billbugs", "billeted", "billeter", "billfish", "billfold", "billhead", "billhook", "billiard", "billings", "billions", "billowed", "billycan", "bilobate", "bilsteds", "biltongs", "bimanous", "bimanual", "bimbette", "bimensal", "bimester", "bimetals", "bimethyl", "bimorphs", "binaries", "binarism", "binately", "binaural", "bindable", "bindings", "bindweed", "bingeing", "binnacle", "binocles", "binomial", "bioassay", "biochips", "biocidal", "biocides", "bioclean", "biocycle", "bioethic", "biofilms", "biofuels", "biogases", "biogenic", "bioherms", "biologic", "biolyses", "biolysis", "biolytic", "biometer", "biometry", "biomorph", "bionomic", "bioplasm", "biopsied", "biopsies", "bioscope", "bioscopy", "biosolid", "biotechs", "biotical", "biotites", "biotitic", "biotopes", "biotoxin", "biotrons", "biotypes", "biotypic", "biovular", "biparous", "biparted", "biphasic", "biphenyl", "biplanes", "biracial", "biradial", "biramose", "biramous", "birching", "birdbath", "birdcage", "birdcall", "birddogs", "birdfarm", "birdfeed", "birdings", "birdlife", "birdlike", "birdlime", "birdseed", "birdseye", "birdshot", "birdsong", "birettas", "birianis", "birlings", "birretta", "birrotch", "birthday", "birthing", "biryanis", "biscotti", "biscotto", "biscuits", "biscuity", "bisected", "bisector", "bisexual", "bishoped", "bismuths", "bisnagas", "bistered", "bistorts", "bistoury", "bistroic", "bitchery", "bitchier", "bitchily", "bitching", "biteable", "bitewing", "bitingly", "bitsiest", "bitstock", "bittered", "bitterer", "bitterly", "bitterns", "bittiest", "bittings", "bittocks", "bitumens", "biunique", "bivalent", "bivalved", "bivalves", "bivinyls", "bivouacs", "biweekly", "biyearly", "bizarres", "bizarros", "biznagas", "blabbers", "blabbing", "blackboy", "blackcap", "blackens", "blackest", "blackfin", "blackfly", "blackgum", "blacking", "blackish", "blackleg", "blackout", "blacktop", "bladders", "bladdery", "bladings", "blagging", "blamable", "blamably", "blameful", "blanched", "blancher", "blanches", "blandest", "blandish", "blankest", "blankets", "blanking", "blarneys", "blastema", "blasters", "blastier", "blasties", "blasting", "blastoff", "blastoma", "blastula", "blatancy", "blathers", "blatters", "blatting", "blauboks", "blazered", "blazoned", "blazoner", "blazonry", "bleached", "bleacher", "bleaches", "bleakest", "bleakish", "blearier", "blearily", "blearing", "bleaters", "bleating", "blebbing", "bleeders", "bleeding", "bleepers", "bleeping", "blellums", "blenched", "blencher", "blenches", "blenders", "blending", "blennies", "blesboks", "blesbuck", "blessers", "blessing", "blethers", "blighted", "blighter", "blimpish", "blindage", "blinders", "blindest", "blindgut", "blinding", "blinkard", "blinkers", "blinking", "blintzes", "blipping", "blissful", "blissing", "blisters", "blistery", "blithely", "blithers", "blithest", "blitzers", "blitzing", "blizzard", "bloaters", "bloating", "blobbing", "blockade", "blockage", "blockers", "blockier", "blocking", "blockish", "bloggers", "blogging", "blondest", "blondine", "blondish", "bloodfin", "bloodied", "bloodier", "bloodies", "bloodily", "blooding", "bloodred", "bloomers", "bloomery", "bloomier", "blooming", "bloopers", "blooping", "blossoms", "blossomy", "blotched", "blotches", "blotless", "blotters", "blottier", "blotting", "blousier", "blousily", "blousing", "blousons", "bloviate", "blowback", "blowball", "blowdown", "blowfish", "blowguns", "blowhard", "blowhole", "blowiest", "blowjobs", "blowoffs", "blowouts", "blowpipe", "blowsier", "blowsily", "blowtube", "blowzier", "blowzily", "blubbers", "blubbery", "blubbing", "bluchers", "bludgeon", "bludgers", "bludging", "blueball", "bluebeat", "bluebell", "bluebill", "bluebird", "bluebook", "bluecaps", "bluecoat", "bluefins", "bluefish", "bluegill", "bluegums", "bluehead", "blueings", "bluejack", "bluejays", "blueline", "blueness", "bluenose", "bluesier", "bluesman", "bluesmen", "bluestem", "bluetick", "blueweed", "bluewood", "bluffers", "bluffest", "bluffing", "blunders", "blungers", "blunging", "bluntest", "blunting", "blurbing", "blurbist", "blurrier", "blurrily", "blurring", "blurters", "blurting", "blushers", "blushful", "blushing", "blusters", "blustery", "boarders", "boarding", "boardman", "boardmen", "boarfish", "boasters", "boastful", "boasting", "boatable", "boatbill", "boatfuls", "boathook", "boatings", "boatlift", "boatlike", "boatload", "boatneck", "boatsman", "boatsmen", "boatyard", "bobbinet", "bobbling", "bobbysox", "bobeches", "bobolink", "bobsleds", "bobstays", "bobtails", "bobwhite", "bocaccio", "bodement", "bodhrans", "bodiless", "bodingly", "bodysuit", "bodysurf", "bodywork", "boehmite", "boffolas", "bogarted", "bogbeans", "bogeying", "bogeyman", "bogeymen", "boggiest", "bogglers", "boggling", "bogwoods", "bogyisms", "bohemian", "bohemias", "bohriums", "boilable", "boiloffs", "boilover", "boinking", "boiserie", "boldface", "boldness", "bolivars", "bolivias", "bollards", "bollixed", "bollixes", "bollocks", "bolloxed", "bolloxes", "bollworm", "bolognas", "boloneys", "bolshies", "bolsters", "bolthead", "bolthole", "boltless", "boltlike", "boltonia", "boltrope", "bombable", "bombards", "bombasts", "bombesin", "bombings", "bomblets", "bombload", "bombycid", "bombyxes", "bonanzas", "bondable", "bondages", "bondings", "bondless", "bondmaid", "bondsman", "bondsmen", "bonefish", "bonehead", "boneless", "bonemeal", "bonesets", "boneyard", "boneyest", "bonfires", "bongoist", "bonhomie", "boniatos", "boniface", "boniness", "bonitoes", "bonneted", "bonniest", "bonnocks", "bonspell", "bonspiel", "bontebok", "boobirds", "boodlers", "boodling", "boogeyed", "boogying", "boogyman", "boogymen", "boohooed", "bookable", "bookcase", "bookends", "bookfuls", "bookings", "booklets", "booklice", "booklore", "bookmark", "bookrack", "bookrest", "bookshop", "bookworm", "boomiest", "boomkins", "boomlets", "boomtown", "boondock", "boonless", "boosters", "boosting", "bootable", "bootjack", "bootlace", "bootlegs", "bootless", "bootlick", "booziest", "boracite", "borating", "bordeaux", "bordello", "bordered", "borderer", "bordures", "boreases", "borecole", "boredoms", "borehole", "boresome", "boringly", "borneols", "bornites", "bornitic", "boroughs", "borrelia", "borrowed", "borrower", "borsches", "borschts", "borstals", "boscages", "boschbok", "boshboks", "boshvark", "boskages", "boskiest", "bosoming", "bosquets", "bossdoms", "bossiest", "bossisms", "botanica", "botanies", "botanise", "botanist", "botanize", "botchers", "botchery", "botchier", "botchily", "botching", "botflies", "bothered", "bothrium", "botonnee", "botryoid", "botryose", "botrytis", "bottlers", "bottling", "bottomed", "bottomer", "bottomry", "botulins", "botulism", "bouchees", "boudoirs", "bouffant", "boughpot", "boughten", "bouillon", "boulders", "bouldery", "bouncers", "bouncier", "bouncily", "bouncing", "boundary", "bounders", "bounding", "bountied", "bounties", "bouquets", "bourbons", "bourdons", "bourgeon", "bourrees", "bourride", "boursins", "bourtree", "bousouki", "boutique", "bouviers", "bouzouki", "bovinely", "bovinity", "boweling", "bowelled", "boweries", "bowering", "bowfront", "bowheads", "bowingly", "bowknots", "bowlders", "bowlfuls", "bowlines", "bowlings", "bowllike", "bowshots", "bowsprit", "bowwowed", "boxballs", "boxberry", "boxboard", "boxhauls", "boxiness", "boxthorn", "boxwoods", "boyarism", "boychick", "boychiks", "boycotts", "boyhoods", "boyishly", "brabbled", "brabbler", "brabbles", "bracelet", "braceros", "brachets", "brachial", "brachium", "bracings", "braciola", "braciole", "brackens", "brackets", "brackish", "braconid", "bracteal", "bractlet", "bradawls", "bradding", "bradoons", "braggart", "braggers", "braggest", "braggier", "bragging", "braiders", "braiding", "brailing", "brailled", "brailler", "brailles", "brainiac", "brainier", "brainily", "braining", "brainish", "brainpan", "braising", "brakeage", "brakeman", "brakemen", "brakiest", "brambled", "brambles", "branched", "branches", "branchia", "branders", "brandied", "brandies", "branding", "brandish", "branners", "brannier", "branning", "brantail", "brashest", "brashier", "brasiers", "brasilin", "brassage", "brassard", "brassart", "brassica", "brassier", "brassies", "brassily", "brassing", "brassish", "brattice", "brattier", "brattish", "brattled", "brattles", "braunite", "bravados", "bravoing", "bravuras", "brawlers", "brawlier", "brawling", "brawnier", "brawnily", "brazened", "brazenly", "braziers", "brazilin", "breached", "breacher", "breaches", "breadbox", "breading", "breadnut", "breadths", "breakage", "breakers", "breaking", "breakout", "breakups", "breaming", "breasted", "breathed", "breather", "breathes", "breccial", "breccias", "brechams", "brechans", "breeched", "breeches", "breeders", "breeding", "breezier", "breezily", "breezing", "bregmata", "bregmate", "brethren", "brevetcy", "breveted", "breviary", "breviers", "brewages", "brewings", "brewises", "brewpubs", "brewskis", "bribable", "brickbat", "brickier", "bricking", "brickles", "bricoles", "bridally", "bridging", "bridlers", "bridling", "bridoons", "briefers", "briefest", "briefing", "brigaded", "brigades", "brigands", "brighten", "brighter", "brightly", "brimfull", "brimless", "brimmers", "brimming", "brindled", "brindles", "bringers", "bringing", "briniest", "brioches", "brionies", "briquets", "brisance", "briskest", "briskets", "brisking", "brisling", "bristled", "bristles", "bristols", "britches", "britskas", "brittled", "brittler", "brittles", "britzkas", "britzska", "broached", "broacher", "broaches", "broadaxe", "broadens", "broadest", "broadish", "brocaded", "brocades", "brocatel", "broccoli", "brochure", "brockage", "brockets", "brocolis", "broguery", "broguish", "broiders", "broidery", "broilers", "broiling", "brokages", "brokenly", "brokered", "brokings", "brollies", "bromated", "bromates", "bromelin", "bromides", "bromidic", "bromines", "bromisms", "bromized", "bromizes", "bronchia", "bronchos", "bronchus", "bronzers", "bronzier", "bronzing", "brooches", "brooders", "broodier", "broodily", "brooding", "brookies", "brooking", "brookite", "brooklet", "broomier", "brooming", "brothels", "brothers", "brougham", "brouhaha", "browband", "browbeat", "browless", "brownest", "brownier", "brownies", "browning", "brownish", "brownout", "browsers", "browsing", "brucella", "brucines", "bruisers", "bruising", "bruiters", "bruiting", "brulyies", "brulzies", "brumbies", "brunched", "bruncher", "brunches", "brunette", "brunizem", "brushers", "brushier", "brushing", "brushoff", "brushups", "bruskest", "brusquer", "brutally", "brutisms", "bruxisms", "bryology", "bryonies", "bryozoan", "bubaline", "bubblers", "bubblier", "bubblies", "bubbling", "bubingas", "buccally", "buckaroo", "buckayro", "buckbean", "buckeens", "buckeroo", "bucketed", "buckeyes", "bucklers", "buckling", "buckrams", "bucksaws", "buckshee", "buckshot", "buckskin", "bucktail", "bucolics", "buddings", "buddleia", "buddying", "budgeted", "budgeter", "budworms", "buffable", "buffalos", "buffered", "buffeted", "buffeter", "buffiest", "buffoons", "bugaboos", "bugbanes", "bugbears", "buggered", "buggiest", "bughouse", "bugseeds", "buhlwork", "builders", "building", "buildups", "bulblets", "bulghurs", "bulgiest", "bulimiac", "bulimias", "bulimics", "bulkages", "bulkhead", "bulkiest", "bullaces", "bullbats", "bulldogs", "bulldoze", "bulldyke", "bulleted", "bulletin", "bullfrog", "bullhead", "bullhorn", "bulliest", "bullions", "bullneck", "bullnose", "bullocks", "bullocky", "bullpens", "bullpout", "bullring", "bullrush", "bullshat", "bullshit", "bullshot", "bullweed", "bullwhip", "bullyboy", "bullying", "bullyrag", "bulwarks", "bumblers", "bumbling", "bumboats", "bumelias", "bummalos", "bumpered", "bumpiest", "bumpkins", "bunchier", "bunchily", "bunching", "buncoing", "buncombe", "bundists", "bundlers", "bundling", "bungalow", "bunghole", "bunglers", "bungling", "bunkered", "bunkmate", "bunkoing", "bunrakus", "buntings", "buntline", "buoyages", "buoyance", "buoyancy", "burblers", "burblier", "burbling", "burdened", "burdener", "burdocks", "burettes", "burgages", "burgeons", "burghers", "burglars", "burglary", "burgling", "burgonet", "burgouts", "burgrave", "burgundy", "burkites", "burlesks", "burliest", "burnable", "burnings", "burnoose", "burnouts", "burriest", "burritos", "burrowed", "burrower", "burseeds", "bursitis", "bursters", "bursting", "burstone", "burthens", "burweeds", "busgirls", "bushbuck", "busheled", "busheler", "bushfire", "bushgoat", "bushidos", "bushiest", "bushings", "bushland", "bushless", "bushlike", "bushpigs", "bushtits", "bushveld", "bushwahs", "business", "buskined", "busloads", "bussings", "bustards", "bustiers", "bustiest", "bustlers", "bustline", "bustling", "busulfan", "busybody", "busyness", "busywork", "butanols", "butanone", "butchers", "butchery", "buttered", "butthead", "buttocks", "buttoned", "buttoner", "buttress", "butylate", "butylene", "butyrals", "butyrate", "butyrins", "butyrous", "butyryls", "buxomest", "buybacks", "buzzards", "buzzcuts", "buzzwigs", "buzzword", "byliners", "bylining", "bypassed", "bypasses", "byssuses", "bystreet", "cabalism", "cabalist", "caballed", "cabarets", "cabbaged", "cabbages", "cabbagey", "cabbalah", "cabbalas", "cabernet", "cabestro", "cabezone", "cabezons", "cabildos", "cabinets", "cabining", "cableway", "caboched", "cabochon", "cabombas", "caboodle", "cabooses", "caboshed", "cabotage", "cabresta", "cabresto", "cabretta", "cabrilla", "cabriole", "cabstand", "cachalot", "cachepot", "cacheted", "cachexia", "cachexic", "cachucha", "caciques", "cacklers", "cackling", "cacodyls", "cacomixl", "caconyms", "caconymy", "cactuses", "cadaster", "cadastre", "cadavers", "caddices", "caddised", "caddises", "caddying", "cadelles", "cadenced", "cadences", "cadenzas", "cadmiums", "caducean", "caduceus", "caducity", "caducous", "caecally", "caesiums", "caesurae", "caesural", "caesuras", "caesuric", "caffeine", "caffeins", "caftaned", "cagefuls", "cagelike", "cageling", "caginess", "caissons", "caitiffs", "cajaputs", "cajeputs", "cajolers", "cajolery", "cajoling", "cajuputs", "cakewalk", "cakiness", "calabash", "calabaza", "caladium", "calamari", "calamars", "calamary", "calamata", "calamine", "calamint", "calamite", "calamity", "calashes", "calathos", "calathus", "calcanea", "calcanei", "calcaria", "calceate", "calcific", "calcined", "calcines", "calcites", "calcitic", "calciums", "calcspar", "calctufa", "calctuff", "calculus", "caldaria", "calderas", "caldrons", "caleches", "calendal", "calendar", "calender", "calflike", "calfskin", "calibers", "calibred", "calibres", "caliches", "calicles", "calicoes", "califate", "calipash", "calipees", "calipers", "caliphal", "calisaya", "calkings", "callable", "callaloo", "callants", "callback", "callboys", "callings", "calliope", "callipee", "calliper", "calloses", "callower", "callused", "calluses", "calmness", "calomels", "calorics", "calories", "calorize", "calottes", "calotype", "caloyers", "calpacks", "calpains", "calquing", "calthrop", "caltraps", "caltrops", "calumets", "calutron", "calvados", "calvaria", "calycate", "calyceal", "calycine", "calycles", "calyculi", "calypsos", "calypter", "calyptra", "calzones", "camailed", "camasses", "cambered", "cambisms", "cambists", "cambiums", "cambogia", "cambrics", "cameleer", "camelias", "camelids", "camellia", "cameoing", "camisade", "camisado", "camisias", "camisole", "camomile", "camorras", "campagna", "campagne", "campaign", "campfire", "camphene", "camphine", "camphire", "camphols", "camphors", "campiest", "campings", "campions", "campongs", "camporee", "campouts", "campsite", "campused", "campuses", "camshaft", "canaille", "canakins", "canaling", "canalise", "canalize", "canalled", "canaller", "canaries", "canastas", "canceled", "canceler", "cancered", "cancroid", "candelas", "candidal", "candidas", "candider", "candidly", "candlers", "candling", "candours", "candying", "canellas", "canephor", "caneware", "canfield", "canikins", "caninity", "canistel", "canister", "canities", "cankered", "cannabic", "cannabin", "cannabis", "cannelon", "cannibal", "canniest", "cannikin", "cannings", "cannolis", "cannoned", "cannonry", "cannulae", "cannular", "cannulas", "canoeing", "canoeist", "canoness", "canonise", "canonist", "canonize", "canoodle", "canopied", "canopies", "canorous", "cantalas", "cantatas", "cantdogs", "canteens", "cantered", "canticle", "cantinas", "cantonal", "cantoned", "cantraip", "cantraps", "cantrips", "canulate", "canvased", "canvaser", "canvases", "canzonas", "canzones", "canzonet", "capabler", "capacity", "capelans", "capelets", "capelins", "caperers", "capering", "capeskin", "capework", "capiases", "capitals", "capitate", "capitols", "capitula", "capmaker", "capoeira", "caponata", "caponier", "caponize", "caporals", "cappings", "capricci", "caprices", "caprifig", "capriole", "caprocks", "capsicin", "capsicum", "capsidal", "capsized", "capsizes", "capsomer", "capstans", "capstone", "capsular", "capsuled", "capsules", "captains", "captions", "captious", "captives", "captured", "capturer", "captures", "capuched", "capuches", "capuchin", "capybara", "carabaos", "carabids", "carabine", "carabins", "caracals", "caracara", "caracole", "caracols", "caraculs", "caragana", "carageen", "caramels", "carangid", "carapace", "carassow", "caravans", "caravels", "caraways", "carbamic", "carbamyl", "carbarns", "carbaryl", "carbides", "carbines", "carbinol", "carbolic", "carbonic", "carbonyl", "carboras", "carboxyl", "carboyed", "carburet", "carcajou", "carcanet", "carcases", "carceral", "cardamom", "cardamon", "cardamum", "cardcase", "cardiacs", "cardigan", "cardinal", "cardings", "cardioid", "carditic", "carditis", "cardoons", "careened", "careener", "careered", "careerer", "carefree", "careless", "caressed", "caresser", "caresses", "caretake", "caretook", "careworn", "carfares", "caribous", "carillon", "carinate", "cariocas", "carioles", "carjacks", "carlines", "carlings", "carloads", "carmaker", "carmines", "carnages", "carnally", "carnauba", "carnival", "caroches", "carolers", "caroling", "carolled", "caroller", "caroming", "carotene", "carotids", "carotins", "carousal", "caroused", "carousel", "carouser", "carouses", "carpalia", "carpeted", "carpings", "carpools", "carports", "carracks", "carrells", "carriage", "carriers", "carriole", "carrions", "carritch", "carromed", "carrotin", "carryall", "carrying", "carryons", "carryout", "cartable", "cartages", "cartload", "cartoned", "cartoons", "cartoony", "cartouch", "caruncle", "carvings", "caryatic", "caryatid", "caryotin", "cascabel", "cascable", "cascaded", "cascades", "cascaras", "caseases", "caseated", "caseates", "casebook", "casefied", "casefies", "caseload", "casemate", "casement", "caseoses", "casernes", "casettes", "casework", "caseworm", "cashable", "cashbook", "cashiers", "cashless", "cashmere", "casimere", "casimire", "casketed", "cassabas", "cassatas", "cassavas", "cassenas", "cassenes", "cassette", "cassinas", "cassines", "cassinos", "cassises", "cassocks", "castable", "castanet", "castaway", "casteism", "castings", "castling", "castoffs", "castrate", "castrati", "castrato", "casually", "casualty", "casuists", "catacomb", "catalase", "cataloes", "catalogs", "catalpas", "catalyst", "catalyze", "catamite", "catapult", "cataract", "catarrhs", "catawbas", "catbirds", "catboats", "catbrier", "catcalls", "catchall", "catchers", "catchfly", "catchier", "catching", "catchups", "catclaws", "catechin", "catechol", "catechus", "category", "catenary", "catenate", "catenoid", "caterans", "caterers", "cateress", "catering", "catfaces", "catfalls", "catfight", "catheads", "cathects", "cathedra", "catheter", "cathexes", "cathexis", "cathodal", "cathodes", "cathodic", "catholic", "cathouse", "cationic", "catjangs", "catlings", "catmints", "catnaper", "catspaws", "catsuits", "cattails", "cattalos", "cattiest", "cattleya", "catwalks", "caucused", "caucuses", "caudally", "caudated", "caudates", "caudexes", "caudices", "caudillo", "cauldron", "caulicle", "caulkers", "caulking", "causable", "causally", "causerie", "causeway", "caustics", "cautions", "cautious", "cavalero", "cavalier", "cavallas", "cavatina", "cavatine", "caveated", "caveator", "cavefish", "cavelike", "caverned", "cavettos", "caviares", "cavicorn", "cavilers", "caviling", "cavilled", "caviller", "cavitary", "cavitate", "cavitied", "cavities", "cavorted", "cavorter", "cayenned", "cayennes", "caziques", "cecities", "cecropia", "cedillas", "ceilidhs", "ceilings", "ceinture", "celadons", "celeriac", "celeries", "celerity", "celestas", "celestes", "celibacy", "celibate", "cellared", "cellarer", "cellaret", "cellists", "cellmate", "cellular", "cellules", "celomata", "celosias", "cembalos", "cemented", "cementer", "cementum", "cemetery", "cenacles", "cenobite", "cenotaph", "cenozoic", "censored", "censured", "censurer", "censures", "censused", "censuses", "centares", "centaurs", "centaury", "centavos", "centered", "centeses", "centesis", "centiare", "centiles", "centimes", "centimos", "centners", "centones", "centrals", "centring", "centrism", "centrist", "centroid", "centrums", "centuple", "ceorlish", "cephalad", "cephalic", "cephalin", "cepheids", "ceramals", "ceramics", "ceramide", "ceramist", "cerastes", "ceratins", "ceratoid", "cercaria", "cercises", "cerebral", "cerebric", "cerebrum", "cerement", "ceremony", "cereuses", "cernuous", "cerotype", "cerulean", "cerumens", "cerusite", "cervelas", "cervelat", "cervezas", "cervical", "cervices", "cervixes", "cesarean", "cesarian", "cessions", "cesspits", "cesspool", "cestodes", "cestoids", "cestuses", "cetacean", "cetology", "ceviches", "chabouks", "chachkas", "chaconne", "chadarim", "chadless", "chaebols", "chaffers", "chaffier", "chaffing", "chagrins", "chaining", "chainman", "chainmen", "chainsaw", "chairing", "chairman", "chairmen", "chalazae", "chalazal", "chalazas", "chalazia", "chalcids", "chaldron", "chaliced", "chalices", "chalkier", "chalking", "challahs", "challies", "challoth", "chalones", "chalupas", "chamades", "chambers", "chambray", "chamfers", "chamfron", "chamisas", "chamises", "chamisos", "chammied", "chammies", "champaca", "champacs", "champaks", "champers", "champing", "champion", "chancels", "chancers", "chancery", "chancier", "chancily", "chancing", "chancres", "chandler", "chanfron", "changers", "changeup", "changing", "channels", "chanoyus", "chansons", "chantage", "chanters", "chanteys", "chanties", "chanting", "chantors", "chapatis", "chapatti", "chapbook", "chapeaus", "chapeaux", "chaperon", "chapiter", "chaplain", "chaplets", "chappati", "chappies", "chapping", "chapters", "chaqueta", "characid", "characin", "charades", "charases", "charcoal", "chargers", "charging", "chariest", "chariots", "charisma", "charisms", "charkhas", "charking", "charlady", "charleys", "charlies", "charlock", "charmers", "charming", "charnels", "charpais", "charpoys", "charquid", "charquis", "charrier", "charring", "charters", "charting", "chartist", "chasings", "chasseur", "chastely", "chastens", "chastest", "chastise", "chastity", "chasuble", "chatchka", "chatchke", "chateaus", "chateaux", "chatroom", "chattels", "chatters", "chattery", "chattier", "chattily", "chatting", "chaufers", "chauffer", "chaunted", "chaunter", "chausses", "chayotes", "chazanim", "chazzans", "chazzens", "cheapens", "cheapest", "cheapies", "cheapish", "cheaters", "cheating", "chechako", "checkers", "checking", "checkoff", "checkout", "checkrow", "checksum", "checkups", "cheddars", "cheddary", "cheddite", "chedites", "cheekful", "cheekier", "cheekily", "cheeking", "cheepers", "cheeping", "cheerers", "cheerful", "cheerier", "cheerily", "cheering", "cheerios", "cheerled", "cheesier", "cheesily", "cheesing", "cheetahs", "chefdoms", "cheffing", "chelated", "chelates", "chelator", "cheliped", "cheloids", "chemical", "chemises", "chemisms", "chemists", "chemurgy", "chenille", "chenopod", "chequers", "cheroots", "cherries", "chertier", "cherubic", "cherubim", "chervils", "cheshire", "chessman", "chessmen", "chestful", "chestier", "chestily", "chestnut", "chetrums", "chevalet", "cheveron", "cheviots", "chevrets", "chevrons", "chevying", "chewable", "chewiest", "chewinks", "chiantis", "chiasmal", "chiasmas", "chiasmic", "chiasmus", "chiastic", "chiauses", "chibouks", "chicaned", "chicaner", "chicanes", "chicanos", "chiccory", "chichier", "chickees", "chickens", "chickory", "chickpea", "chicness", "chiefdom", "chiefest", "chiffons", "chigetai", "chiggers", "chignons", "childbed", "childing", "childish", "children", "chiliads", "chiliasm", "chiliast", "chilidog", "chillers", "chillest", "chillier", "chillies", "chillily", "chilling", "chillums", "chilopod", "chimaera", "chimbley", "chimeras", "chimeres", "chimeric", "chimleys", "chimneys", "chinbone", "chinches", "chinkier", "chinking", "chinless", "chinning", "chinones", "chinooks", "chintses", "chintzes", "chinwags", "chipmuck", "chipmunk", "chipotle", "chippers", "chippier", "chippies", "chipping", "chirkest", "chirking", "chirming", "chirpers", "chirpier", "chirpily", "chirping", "chirring", "chirrups", "chirrupy", "chiseled", "chiseler", "chitchat", "chitling", "chitlins", "chitosan", "chitters", "chitties", "chivalry", "chivaree", "chivvied", "chivvies", "chivying", "chloasma", "chlorals", "chlorate", "chlordan", "chloride", "chlorids", "chlorine", "chlorins", "chlorite", "chlorous", "chockful", "chocking", "choicely", "choicest", "choirboy", "choiring", "chokiest", "cholates", "cholents", "choleras", "choleric", "cholines", "chompers", "chomping", "choosers", "choosier", "choosing", "chopines", "choppers", "choppier", "choppily", "chopping", "choragic", "choragus", "chorales", "chorally", "chordate", "chording", "choregus", "choreman", "choremen", "choreoid", "choriamb", "chorines", "chorioid", "chorions", "chorizos", "choroids", "chortens", "chortled", "chortler", "chortles", "chorused", "choruses", "chousers", "choushes", "chousing", "chowchow", "chowders", "chowsing", "chowtime", "chresard", "chrismal", "chrismon", "chrisoms", "christen", "christie", "chromate", "chromide", "chromier", "chroming", "chromite", "chromium", "chromize", "chromous", "chromyls", "chronaxy", "chronics", "chronons", "chthonic", "chubasco", "chubbier", "chubbily", "chuckies", "chucking", "chuckled", "chuckler", "chuckles", "chuddahs", "chuddars", "chudders", "chuffest", "chuffier", "chuffing", "chugalug", "chuggers", "chugging", "chukkars", "chukkers", "chummier", "chummily", "chumming", "chumping", "chumship", "chunkier", "chunkily", "chunking", "chunnels", "chunters", "chuppahs", "churched", "churches", "churchly", "churlish", "churners", "churning", "churring", "chutists", "chutnees", "chutneys", "chutzpah", "chutzpas", "chymists", "chymosin", "chytrids", "ciborium", "ciboules", "cicatrix", "cicelies", "cicerone", "ciceroni", "cichlids", "cicisbei", "cicisbeo", "cicorees", "cigarets", "cilantro", "ciliated", "ciliates", "cimbalom", "cinching", "cinchona", "cincture", "cindered", "cineaste", "cineasts", "cineoles", "cinerary", "cinerins", "cingular", "cingulum", "cinnabar", "cinnamic", "cinnamon", "cinnamyl", "cinquain", "cioppino", "ciphered", "cipherer", "cipolins", "circlers", "circlets", "circling", "circuits", "circuity", "circular", "circuses", "cirriped", "cislunar", "cissoids", "cisterna", "cisterns", "cistrons", "cistuses", "citadels", "citation", "citators", "citatory", "citeable", "citharas", "citherns", "cithrens", "citified", "citifies", "citizens", "citrated", "citrates", "citreous", "citrines", "citrinin", "citruses", "citterns", "cityfied", "cityward", "citywide", "civicism", "civilian", "civilise", "civility", "civilize", "clabbers", "clachans", "clackers", "clacking", "claddagh", "cladding", "cladisms", "cladists", "cladodes", "clafouti", "clagging", "claimant", "claimers", "claiming", "clambake", "clambers", "clamlike", "clammers", "clammier", "clammily", "clamming", "clamored", "clamorer", "clamours", "clampers", "clamping", "clamworm", "clangers", "clanging", "clangors", "clangour", "clankier", "clanking", "clannish", "clansman", "clansmen", "clappers", "clapping", "claptrap", "claquers", "claqueur", "clarence", "clarinet", "clarions", "clarkias", "clashers", "clashing", "claspers", "clasping", "classers", "classico", "classics", "classier", "classify", "classily", "classing", "classism", "classist", "classons", "clastics", "clatters", "clattery", "claughts", "claustra", "clavered", "clavicle", "claviers", "clawback", "clawless", "clawlike", "claybank", "clayiest", "claylike", "claymore", "claypans", "clayware", "cleaners", "cleanest", "cleaning", "cleansed", "cleanser", "cleanses", "cleanups", "clearcut", "clearers", "clearest", "clearing", "cleating", "cleavage", "cleavers", "cleaving", "cleeking", "clefting", "cleidoic", "clematis", "clemency", "clenched", "clencher", "clenches", "clergies", "clerical", "clerihew", "clerkdom", "clerking", "clerkish", "cleveite", "cleverer", "cleverly", "clevises", "clickers", "clicking", "cliental", "cliffier", "climatal", "climates", "climatic", "climaxed", "climaxes", "climbers", "climbing", "clinally", "clinched", "clincher", "clinches", "clingers", "clingier", "clinging", "clinical", "clinkers", "clinking", "clippers", "clipping", "cliquier", "cliquing", "cliquish", "clitella", "clitoral", "clitoric", "clitoris", "cloaking", "clobbers", "clochard", "clockers", "clocking", "cloddier", "cloddish", "clodpate", "clodpole", "clodpoll", "cloggers", "cloggier", "cloggily", "clogging", "cloister", "clomping", "clonally", "clonings", "clonisms", "clonking", "clonuses", "clopping", "closable", "closeout", "closeted", "closeups", "closings", "closured", "closures", "clothier", "clothing", "clotting", "clotured", "clotures", "cloudier", "cloudily", "clouding", "cloudlet", "clouring", "clouters", "clouting", "clovered", "clowders", "clownery", "clowning", "clownish", "clubable", "clubbers", "clubbier", "clubbing", "clubbish", "clubface", "clubfeet", "clubfoot", "clubhand", "clubhaul", "clubhead", "clubroom", "clubroot", "clucking", "clueless", "clumbers", "clumpier", "clumping", "clumpish", "clumsier", "clumsily", "clunkers", "clunkier", "clunking", "clupeids", "clupeoid", "clusters", "clustery", "clutched", "clutches", "clutters", "cluttery", "clypeate", "clysters", "coachers", "coaching", "coachman", "coachmen", "coacting", "coaction", "coactive", "coactors", "coadmire", "coadmits", "coaevals", "coagency", "coagents", "coagulum", "coalbins", "coalesce", "coalfish", "coalhole", "coaliest", "coalless", "coalpits", "coalsack", "coalshed", "coalyard", "coamings", "coanchor", "coappear", "coapting", "coarsely", "coarsens", "coarsest", "coassist", "coassume", "coasters", "coasting", "coatings", "coatless", "coatrack", "coatroom", "coattail", "coattend", "coattest", "coauthor", "cobaltic", "cobbiest", "cobblers", "cobbling", "cobwebby", "cocaines", "coccidia", "coccoids", "coccyges", "coccyxes", "cochairs", "cochleae", "cochlear", "cochleas", "cocinera", "cockaded", "cockades", "cockapoo", "cockatoo", "cockbill", "cockboat", "cockcrow", "cockered", "cockerel", "cockeyed", "cockeyes", "cockiest", "cocklike", "cockling", "cockloft", "cockneys", "cockpits", "cockshut", "cockspur", "cocksure", "cocktail", "cocoanut", "cocobola", "cocobolo", "cocomats", "coconuts", "cocooned", "cocoplum", "cocottes", "cocoyams", "cocreate", "coddlers", "coddling", "codebook", "codebtor", "codeinas", "codeines", "codeless", "coderive", "codesign", "codicils", "codified", "codifier", "codifies", "codirect", "codlings", "codpiece", "codriven", "codriver", "codrives", "coedited", "coeditor", "coeffect", "coelomes", "coelomic", "coembody", "coemploy", "coempted", "coenacts", "coenamor", "coendure", "coenures", "coenurus", "coenzyme", "coequals", "coequate", "coercers", "coercing", "coercion", "coercive", "coerects", "coesites", "coevally", "coevolve", "coexerts", "coexists", "coextend", "cofactor", "coffered", "coffined", "coffling", "coffrets", "cofounds", "cogently", "cogitate", "cognates", "cognised", "cognises", "cognized", "cognizer", "cognizes", "cognomen", "cognovit", "cogwheel", "cohabits", "coheaded", "coherent", "coherers", "cohering", "cohesion", "cohesive", "cohobate", "coholder", "cohoshes", "cohosted", "coiffeur", "coiffing", "coiffure", "coigning", "coinable", "coinages", "coincide", "coinfect", "coinfers", "coinhere", "coinmate", "coinsure", "cointers", "coinvent", "coistrel", "coistril", "coitally", "coitions", "coituses", "cojoined", "cokehead", "cokelike", "colander", "coldcock", "coldness", "coleader", "coleseed", "coleslaw", "colessee", "colessor", "coleuses", "colewort", "colicine", "colicins", "coliform", "colinear", "coliseum", "colistin", "collaged", "collagen", "collages", "collapse", "collards", "collared", "collaret", "collated", "collates", "collator", "collects", "colleens", "colleger", "colleges", "collegia", "colleted", "collided", "collider", "collides", "colliers", "colliery", "collogue", "colloids", "colloquy", "colluded", "colluder", "colludes", "colluvia", "collying", "collyria", "coloboma", "colocate", "cologned", "colognes", "colonels", "colonial", "colonics", "colonies", "colonise", "colonist", "colonize", "colophon", "colorado", "colorant", "coloreds", "colorers", "colorful", "coloring", "colorism", "colorist", "colorize", "colorman", "colormen", "colorway", "colossal", "colossus", "colotomy", "coloured", "colourer", "colpitis", "colubrid", "columbic", "columels", "columnal", "columnar", "columnea", "columned", "comakers", "comaking", "comanage", "comatiks", "comatose", "comatula", "combated", "combater", "combined", "combiner", "combines", "combings", "comblike", "combusts", "comeback", "comedian", "comedies", "comedown", "comelier", "comelily", "comember", "cometary", "comether", "comfiest", "comforts", "comfreys", "comingle", "comitial", "comities", "commando", "commands", "commence", "commends", "comments", "commerce", "commixed", "commixes", "commodes", "commoner", "commonly", "commoved", "commoves", "communal", "communed", "communer", "communes", "commuted", "commuter", "commutes", "comorbid", "compacts", "compadre", "compared", "comparer", "compares", "comparts", "compeers", "compends", "compered", "comperes", "competed", "competes", "compiled", "compiler", "compiles", "complain", "compleat", "complect", "complete", "complice", "complied", "complier", "complies", "compline", "complins", "complots", "comports", "composed", "composer", "composes", "composts", "compotes", "compound", "compress", "comprise", "comprize", "compting", "computed", "computer", "computes", "comrades", "comsymps", "conation", "conative", "concaved", "concaves", "conceals", "conceded", "conceder", "concedes", "conceits", "conceive", "concents", "concepti", "concepts", "concerns", "concerti", "concerto", "concerts", "conchies", "conchoid", "conciser", "conclave", "conclude", "concocts", "concords", "concours", "concrete", "condemns", "condense", "condoled", "condoler", "condoles", "condoned", "condoner", "condones", "condores", "conduced", "conducer", "conduces", "conducts", "conduits", "condylar", "condyles", "conelrad", "conenose", "conepate", "conepatl", "confects", "conferee", "conferva", "confetti", "confetto", "confided", "confider", "confides", "confined", "confiner", "confines", "confirms", "conflate", "conflict", "confocal", "conforms", "confound", "confrere", "confront", "confused", "confuses", "confuted", "confuter", "confutes", "congaing", "congeals", "congener", "congests", "conglobe", "congrats", "congress", "conicity", "conidial", "conidian", "conidium", "conifers", "coniines", "conioses", "coniosis", "conjoins", "conjoint", "conjugal", "conjunct", "conjunto", "conjured", "conjurer", "conjures", "conjuror", "connects", "connived", "conniver", "connives", "connoted", "connotes", "conodont", "conoidal", "conquers", "conquest", "conquian", "consents", "conserve", "consider", "consigns", "consists", "consoled", "consoler", "consoles", "consomme", "consorts", "conspire", "constant", "construe", "consular", "consults", "consumed", "consumer", "consumes", "contacts", "contagia", "contains", "contemns", "contempo", "contempt", "contends", "contents", "contessa", "contests", "contexts", "continua", "continue", "continuo", "contorts", "contours", "contract", "contrail", "contrary", "contrast", "contrite", "contrive", "controls", "contused", "contuses", "convects", "convened", "convener", "convenes", "convenor", "convents", "converge", "converse", "converso", "converts", "convexes", "convexly", "conveyed", "conveyer", "conveyor", "convicts", "convince", "convoked", "convoker", "convokes", "convolve", "convoyed", "convulse", "cooeeing", "cooeying", "cooingly", "cookable", "cookbook", "cookings", "cookless", "cookoffs", "cookouts", "cookshop", "cooktops", "cookware", "coolants", "cooldown", "coolness", "cooncans", "coonskin", "coonties", "coopered", "coopting", "cooption", "copaibas", "coparent", "copastor", "copatron", "copemate", "copepods", "copihues", "copilots", "coplanar", "copperah", "copperas", "coppered", "coppiced", "coppices", "copremia", "copremic", "coprince", "copulate", "copurify", "copyable", "copybook", "copyboys", "copycats", "copydesk", "copyedit", "copygirl", "copyhold", "copyists", "copyleft", "copyread", "coquetry", "coquette", "coquille", "coquinas", "coquitos", "coracles", "coracoid", "corantos", "corbeils", "corbeled", "corbinas", "cordages", "cordelle", "cordials", "cordings", "cordites", "cordless", "cordlike", "cordobas", "cordoned", "cordovan", "corduroy", "cordwain", "cordwood", "coredeem", "coreigns", "corelate", "coreless", "coremium", "corkages", "corkiest", "corklike", "corkwood", "cormlike", "cornball", "corncake", "corncobs", "corncrib", "corneous", "cornered", "cornetcy", "cornhusk", "corniced", "cornices", "corniche", "cornicle", "corniest", "cornmeal", "cornpone", "cornrows", "cornuses", "cornuted", "cornutos", "corodies", "corollas", "coronach", "coronals", "coronary", "coronate", "coronels", "coroners", "coronets", "coronoid", "corotate", "corporal", "corpsman", "corpsmen", "corpuses", "corraded", "corrades", "corrects", "corridas", "corridor", "corrival", "corroded", "corrodes", "corrupts", "corsages", "corsairs", "corselet", "corseted", "corsetry", "corslets", "corteges", "cortexes", "cortical", "cortices", "cortinas", "cortisol", "corulers", "corundum", "corvette", "corvinas", "corybant", "corymbed", "coryphee", "coscript", "cosecant", "coshered", "cosigned", "cosigner", "cosiness", "cosmetic", "cosmical", "cosmisms", "cosmists", "cosmoses", "cossacks", "cosseted", "costally", "costards", "costless", "costlier", "costmary", "costrels", "costumed", "costumer", "costumes", "costumey", "cotenant", "coteries", "cothurni", "cothurns", "cotillon", "cotingas", "cotinine", "cotquean", "cottager", "cottages", "cottagey", "cottered", "cottiers", "cottoned", "coturnix", "cotyloid", "couchant", "couchers", "couching", "coughers", "coughing", "couldest", "coulisse", "couloirs", "coulombs", "coulters", "coumaric", "coumarin", "coumarou", "councils", "counsels", "counters", "countess", "countian", "counties", "counting", "couplers", "couplets", "coupling", "courages", "courante", "couranto", "courants", "couriers", "courlans", "coursers", "coursing", "courters", "courtesy", "courtier", "courting", "couscous", "cousinly", "cousinry", "couteaux", "couthest", "couthier", "coutures", "couvades", "covalent", "covaried", "covaries", "covenant", "coverage", "coverall", "coverers", "covering", "coverlet", "coverlid", "covertly", "coverups", "coveters", "coveting", "covetous", "cowardly", "cowbanes", "cowbells", "cowberry", "cowbinds", "cowbirds", "cowboyed", "cowering", "cowflaps", "cowflops", "cowgirls", "cowhages", "cowhands", "cowherbs", "cowherds", "cowhided", "cowhides", "cowinner", "cowlicks", "cowlings", "coworker", "cowplops", "cowpokes", "cowpoxes", "cowriter", "cowrites", "cowsheds", "cowskins", "cowslips", "coxalgia", "coxalgic", "coxcombs", "coxswain", "cozenage", "cozeners", "cozening", "coziness", "craaling", "crabbers", "crabbier", "crabbily", "crabbing", "crablike", "crabmeat", "crabwise", "crackers", "cracking", "crackled", "crackles", "cracknel", "crackpot", "crackups", "cradlers", "cradling", "crafters", "craftier", "craftily", "crafting", "craggier", "craggily", "cragsman", "cragsmen", "cramboes", "crammers", "cramming", "cramoisy", "crampier", "cramping", "crampits", "crampons", "crampoon", "cranched", "cranches", "craniate", "craniums", "crankest", "crankier", "crankily", "cranking", "crankish", "crankled", "crankles", "crankous", "crankpin", "crannied", "crannies", "crannoge", "crannogs", "crapolas", "crappers", "crappier", "crappies", "crapping", "crashers", "crashing", "crassest", "cratches", "cratered", "cratonic", "cravened", "cravenly", "cravings", "crawdads", "crawfish", "crawlers", "crawlier", "crawling", "crawlway", "crayfish", "crayoned", "crayoner", "craziest", "creakier", "creakily", "creaking", "creamers", "creamery", "creamier", "creamily", "creaming", "creasers", "creasier", "creasing", "creatine", "creating", "creatins", "creation", "creative", "creators", "creature", "credence", "credenda", "credenza", "credible", "credibly", "credited", "creditor", "creeling", "creepage", "creepers", "creepier", "creepies", "creepily", "creeping", "creeshed", "creeshes", "cremains", "cremated", "cremates", "cremator", "creminis", "crenated", "creneled", "crenelle", "crenshaw", "creodont", "creolise", "creolize", "creosols", "creosote", "crepiest", "crescent", "crescive", "cressets", "cresting", "cresylic", "cretonne", "crevalle", "crevasse", "creviced", "crevices", "crewcuts", "crewless", "crewmate", "crewneck", "cribbage", "cribbers", "cribbing", "cribbled", "cribrous", "cribwork", "cricetid", "crickets", "cricking", "cricoids", "criminal", "criminis", "crimmers", "crimpers", "crimpier", "crimping", "crimpled", "crimples", "crimsons", "cringers", "cringing", "cringles", "crinites", "crinkled", "crinkles", "crinoids", "criollos", "crippled", "crippler", "cripples", "crispate", "crispens", "crispers", "crispest", "crispier", "crispily", "crisping", "cristate", "criteria", "critical", "critique", "critters", "critturs", "croakers", "croakier", "croakily", "croaking", "croceine", "croceins", "crochets", "crockery", "crockets", "crocking", "crockpot", "crocoite", "crocuses", "crofters", "cromlech", "cronyism", "crookery", "crookest", "crooking", "crooners", "crooning", "cropland", "cropless", "croppers", "croppies", "cropping", "croquets", "crosiers", "crossarm", "crossbar", "crossbow", "crosscut", "crossers", "crossest", "crossing", "crosslet", "crosstie", "crossway", "crostini", "crostino", "crotched", "crotches", "crotchet", "crouched", "crouches", "croupier", "croupily", "croupous", "crousely", "croutons", "crowbars", "crowders", "crowdies", "crowding", "crowfeet", "crowfoot", "crowners", "crownets", "crowning", "crowstep", "croziers", "crucians", "cruciate", "crucible", "crucifer", "crucifix", "cruddier", "crudding", "crudites", "cruelest", "crueller", "cruisers", "cruising", "crullers", "crumbers", "crumbier", "crumbing", "crumbled", "crumbles", "crumbums", "crumhorn", "crummier", "crummies", "crumpets", "crumping", "crumpled", "crumples", "crunched", "cruncher", "crunches", "crunodal", "crunodes", "cruppers", "crusaded", "crusader", "crusades", "crusados", "crushers", "crushing", "crustier", "crustily", "crusting", "crustose", "crutched", "crutches", "cruzados", "cruzeiro", "cryingly", "cryobank", "cryogens", "cryogeny", "cryolite", "cryonics", "cryostat", "cryotron", "crystals", "ctenidia", "cubature", "cubicity", "cubicles", "cubicula", "cubiform", "cubistic", "cuboidal", "cuckolds", "cuckooed", "cucumber", "cucurbit", "cudbears", "cuddlers", "cuddlier", "cuddling", "cudgeled", "cudgeler", "cudweeds", "cuffless", "cufflink", "cuisines", "cuittled", "cuittles", "culicids", "culicine", "culinary", "cullions", "cullises", "cullying", "culottes", "culpable", "culpably", "culprits", "cultches", "cultigen", "cultisms", "cultists", "cultivar", "cultlike", "cultrate", "cultural", "cultured", "cultures", "cultuses", "culverin", "culverts", "cumarins", "cumbered", "cumberer", "cumbrous", "cumquats", "cumshaws", "cumulate", "cumulous", "cuneated", "cuneatic", "cuniform", "cunnings", "cupboard", "cupcakes", "cupelers", "cupeling", "cupelled", "cupeller", "cupidity", "cupolaed", "cuppiest", "cuppings", "cupreous", "cuprites", "cupulate", "curacaos", "curacies", "curacoas", "curarine", "curarize", "curassow", "curating", "curative", "curators", "curbable", "curbings", "curbside", "curculio", "curcumas", "curdiest", "curdlers", "curdling", "cureless", "curetted", "curettes", "curlicue", "curliest", "curlings", "curlycue", "currachs", "curraghs", "currants", "currency", "currents", "curricle", "curriers", "curriery", "currying", "curseder", "cursedly", "cursives", "curtails", "curtains", "curtalax", "curtness", "curtseys", "curtsied", "curtsies", "curvedly", "curveted", "curviest", "cuscuses", "cushiest", "cushions", "cushiony", "cuspated", "cuspidal", "cuspides", "cuspidor", "cussedly", "cussword", "custards", "custardy", "custodes", "customer", "custumal", "cutaways", "cutbacks", "cutbanks", "cutchery", "cutdowns", "cuteness", "cutesier", "cutgrass", "cuticles", "cuticula", "cutinise", "cutinize", "cutlases", "cutlines", "cutovers", "cutpurse", "cuttable", "cuttages", "cuttings", "cuttling", "cutwater", "cutworks", "cutworms", "cuvettes", "cyanamid", "cyanates", "cyanided", "cyanides", "cyanines", "cyanites", "cyanitic", "cyanogen", "cyanosed", "cyanoses", "cyanosis", "cyanotic", "cybersex", "cycasins", "cyclamen", "cyclases", "cyclecar", "cycleway", "cyclical", "cyclicly", "cyclings", "cyclists", "cyclitol", "cyclized", "cyclizes", "cycloids", "cyclonal", "cyclones", "cyclonic", "cyclopes", "cycloses", "cyclosis", "cylinder", "cymatium", "cymbaler", "cymbalom", "cymbidia", "cymbling", "cymlings", "cymogene", "cymosely", "cynicism", "cynosure", "cyphered", "cypreses", "cyprians", "cyprinid", "cypruses", "cypselae", "cysteine", "cysteins", "cystines", "cystitis", "cystoids", "cytaster", "cytidine", "cytogeny", "cytokine", "cytology", "cytosine", "cytosols", "czardoms", "czarevna", "czarinas", "czarisms", "czarists", "czaritza", "dabblers", "dabbling", "dabchick", "dabsters", "dackered", "dactylic", "dactylus", "dadaisms", "dadaists", "daddling", "daemones", "daemonic", "daffiest", "daffodil", "daftness", "daggered", "daggling", "daglocks", "dagwoods", "dahabeah", "dahabiah", "dahabieh", "dahabiya", "daidzein", "daikered", "daimones", "daimonic", "daintier", "dainties", "daintily", "daiquiri", "dairying", "dairyman", "dairymen", "daishiki", "dakerhen", "dalapons", "dalesman", "dalesmen", "dalliers", "dallying", "dalmatic", "daltonic", "damagers", "damaging", "damasked", "damewort", "damianas", "damnable", "damnably", "damndest", "damneder", "damosels", "damozels", "dampened", "dampener", "dampings", "dampness", "danazols", "dandered", "dandiest", "dandlers", "dandling", "dandriff", "dandruff", "dandyish", "dandyism", "danegeld", "danegelt", "daneweed", "danewort", "dangered", "danglers", "danglier", "dangling", "danishes", "dankness", "danseurs", "danseuse", "daphnias", "dapperer", "dapperly", "dappling", "dapsones", "daringly", "darioles", "darkened", "darkener", "darklier", "darkling", "darkness", "darkroom", "darksome", "darlings", "darndest", "darneder", "darnings", "darshans", "dartling", "dasheens", "dashiest", "dashikis", "dashpots", "dastards", "dasyures", "databank", "database", "dataries", "dateable", "datebook", "dateless", "dateline", "datively", "daubiest", "daubries", "daughter", "daunders", "daunters", "daunting", "dauphine", "dauphins", "davening", "dawdlers", "dawdling", "dawnlike", "daybooks", "daybreak", "daycares", "daydream", "dayflies", "dayglows", "daylight", "daymares", "dayrooms", "daysides", "daystars", "daytimes", "dayworks", "dazzlers", "dazzling", "deaconed", "deaconry", "deadbeat", "deadbolt", "deadened", "deadener", "deadeyes", "deadfall", "deadhead", "deadlier", "deadlift", "deadline", "deadlock", "deadness", "deadpans", "deadwood", "deaerate", "deafened", "deafness", "deairing", "dealated", "dealates", "dealfish", "dealings", "deanship", "dearness", "deashing", "deathbed", "deathcup", "deathful", "debacles", "debagged", "debarked", "debarker", "debarred", "debasers", "debasing", "debaters", "debating", "debeaked", "debeards", "debility", "debiting", "debonair", "deboners", "deboning", "debouche", "debrided", "debrides", "debriefs", "debruise", "debtless", "debugged", "debugger", "debunked", "debunker", "debutant", "debuting", "decadent", "decagons", "decagram", "decalogs", "decamped", "decanted", "decanter", "decapods", "decayers", "decaying", "deceased", "deceases", "decedent", "deceived", "deceiver", "deceives", "decemvir", "decenary", "decennia", "decenter", "decently", "decentre", "decerned", "deciares", "decibels", "deciders", "deciding", "deciduae", "decidual", "deciduas", "decigram", "decimals", "decimate", "decipher", "decision", "decisive", "deckhand", "deckings", "declaims", "declared", "declarer", "declares", "declasse", "declawed", "declined", "decliner", "declines", "decocted", "decoders", "decoding", "decolors", "decolour", "decorate", "decorous", "decorums", "decouple", "decoyers", "decoying", "decrease", "decreers", "decrepit", "decretal", "decrials", "decriers", "decrowns", "decrying", "decrypts", "decupled", "decuples", "decuries", "decurion", "decurved", "decurves", "dedicate", "deducing", "deducted", "deediest", "deedless", "deejayed", "deemster", "deepened", "deepener", "deepness", "deerlike", "deerskin", "deerweed", "deeryard", "defacers", "defacing", "defamers", "defaming", "defanged", "defatted", "defaults", "defeated", "defeater", "defecate", "defected", "defector", "defenced", "defences", "defended", "defender", "defensed", "defenses", "deferent", "deferral", "deferred", "deferrer", "defiance", "deficits", "defilade", "defilers", "defiling", "definers", "defining", "definite", "deflated", "deflater", "deflates", "deflator", "defleaed", "deflects", "deflexed", "deflower", "defoamed", "defoamer", "defogged", "defogger", "deforced", "deforcer", "deforces", "deforest", "deformed", "deformer", "defrauds", "defrayal", "defrayed", "defrayer", "defrocks", "defrosts", "deftness", "defueled", "defunded", "defusers", "defusing", "defuzing", "degassed", "degasser", "degasses", "degender", "degermed", "deglazed", "deglazes", "degraded", "degrader", "degrades", "degrease", "degummed", "degusted", "dehisced", "dehisces", "dehorned", "dehorner", "dehorted", "deicidal", "deicides", "deictics", "deifical", "deifiers", "deifying", "deigning", "deionize", "deixises", "dejected", "dejeuner", "dekagram", "delaines", "delating", "delation", "delators", "delayers", "delaying", "deleaded", "deleaved", "deleaves", "delegacy", "delegate", "deleting", "deletion", "delicacy", "delicate", "delights", "deliming", "delimits", "delirium", "delisted", "delivers", "delivery", "deloused", "delouser", "delouses", "deltoids", "deluders", "deluding", "deluging", "delusion", "delusive", "delusory", "deluster", "demagogs", "demagogy", "demanded", "demander", "demarche", "demarked", "demasted", "demeaned", "demeanor", "demented", "dementia", "demerara", "demerged", "demerger", "demerges", "demerits", "demersal", "demesnes", "demetons", "demigods", "demijohn", "demilune", "demireps", "demising", "demister", "demitted", "demiurge", "demivolt", "demobbed", "democrat", "demolish", "demoness", "demoniac", "demonian", "demonise", "demonism", "demonist", "demonize", "demotics", "demoting", "demotion", "demotist", "demounts", "dempster", "demurely", "demurest", "demurral", "demurred", "demurrer", "denarius", "denature", "denazify", "dendrite", "dendroid", "dendrons", "deniable", "deniably", "denizens", "denoting", "denotive", "denounce", "dentalia", "dentally", "dentated", "denticle", "dentiled", "dentinal", "dentines", "dentists", "dentural", "dentures", "denudate", "denuders", "denuding", "deodands", "deodaras", "deorbits", "depaints", "departed", "departee", "depended", "depeople", "depermed", "depicted", "depicter", "depictor", "depilate", "deplaned", "deplanes", "depleted", "depleter", "depletes", "deplored", "deplorer", "deplores", "deployed", "deployer", "deplumed", "deplumes", "depolish", "deponent", "deponing", "deported", "deportee", "deporter", "deposals", "deposers", "deposing", "deposits", "depraved", "depraver", "depraves", "deprenyl", "deprival", "deprived", "depriver", "deprives", "depsides", "depurate", "deputies", "deputing", "deputize", "deraigns", "derailed", "deranged", "deranger", "deranges", "derating", "deratted", "derelict", "deriders", "deriding", "deringer", "derision", "derisive", "derisory", "derivate", "derivers", "deriving", "dermises", "dermoids", "derogate", "derricks", "derriere", "derrises", "desalted", "desalter", "desanded", "descants", "descends", "descents", "describe", "descried", "descrier", "descries", "deselect", "deserted", "deserter", "desertic", "deserved", "deserver", "deserves", "desexing", "designed", "designee", "designer", "desilver", "desinent", "desirers", "desiring", "desirous", "desisted", "desktops", "desmoids", "desolate", "desorbed", "despairs", "despatch", "despisal", "despised", "despiser", "despises", "despited", "despites", "despoils", "desponds", "despotic", "desserts", "destains", "destined", "destines", "destrier", "destroys", "destruct", "desugars", "desulfur", "detached", "detacher", "detaches", "detailed", "detailer", "detained", "detainee", "detainer", "detassel", "detected", "detecter", "detector", "detentes", "deterged", "deterger", "deterges", "deterred", "deterrer", "detested", "detester", "dethatch", "dethrone", "deticked", "deticker", "detinues", "detonate", "detoured", "detoxify", "detoxing", "detracts", "detrains", "detrital", "detritus", "detruded", "detrudes", "deucedly", "deuteric", "deuteron", "deutzias", "devalued", "devalues", "deveined", "develing", "develope", "develops", "deverbal", "devested", "deviance", "deviancy", "deviants", "deviated", "deviates", "deviator", "deviling", "devilish", "devilkin", "devilled", "deviltry", "devisals", "devisees", "devisers", "devising", "devisors", "devoiced", "devoices", "devolved", "devolves", "devonian", "devotees", "devoting", "devotion", "devoured", "devourer", "devouter", "devoutly", "dewaters", "dewaxing", "dewberry", "dewclaws", "dewdrops", "dewfalls", "dewiness", "dewooled", "dewormed", "dewormer", "dextrans", "dextrine", "dextrins", "dextrose", "dextrous", "dezinced", "dhoolies", "dhooties", "dhourras", "dhurries", "diabases", "diabasic", "diabetes", "diabetic", "diablery", "diabolic", "diabolos", "diacetyl", "diacidic", "diaconal", "diademed", "diagnose", "diagonal", "diagrams", "diagraph", "dialects", "dialings", "dialists", "diallage", "diallers", "dialling", "diallist", "dialoged", "dialoger", "dialogic", "dialogue", "dialysed", "dialyser", "dialyses", "dialysis", "dialytic", "dialyzed", "dialyzer", "dialyzes", "diamante", "diameter", "diamides", "diamines", "diamonds", "dianthus", "diapason", "diapause", "diapered", "diaphone", "diaphony", "diapiric", "diapsids", "diarchic", "diarists", "diarrhea", "diaspora", "diaspore", "diastase", "diastema", "diastems", "diasters", "diastole", "diastral", "diatomic", "diatonic", "diatribe", "diatrons", "diazepam", "diazines", "diazinon", "diazoles", "dibblers", "dibbling", "dibbukim", "dicambas", "dicastic", "dicentra", "dichasia", "dichotic", "dichroic", "dickered", "dickhead", "dickiest", "dicotyls", "dicrotal", "dicrotic", "dictated", "dictates", "dictator", "dictiest", "dictions", "dicyclic", "didactic", "didactyl", "didapper", "diddlers", "diddleys", "diddlies", "diddling", "didymium", "didymous", "didynamy", "diebacks", "diecious", "diehards", "dieldrin", "diemaker", "diereses", "dieresis", "dieretic", "dieseled", "diesters", "diestock", "diestrum", "diestrus", "dietetic", "diethers", "differed", "diffract", "diffused", "diffuser", "diffuses", "diffusor", "digamies", "digamist", "digammas", "digamous", "digerati", "digested", "digester", "digestif", "digestor", "diggings", "dighting", "digitals", "digitate", "digitize", "digoxins", "digraphs", "dihedral", "dihedron", "dihybrid", "dihydric", "dilatant", "dilatate", "dilaters", "dilating", "dilation", "dilative", "dilators", "dilatory", "dilemmas", "dilemmic", "diligent", "diluents", "diluters", "diluting", "dilution", "dilutive", "dilutors", "diluvial", "diluvian", "diluvion", "diluvium", "dimerism", "dimerize", "dimerous", "dimeters", "dimethyl", "dimetric", "diminish", "dimities", "dimmable", "dimorphs", "dimplier", "dimpling", "dindling", "dinettes", "dingbats", "dingdong", "dinghies", "dingiest", "dinguses", "dinkiest", "dinosaur", "diobolon", "diocesan", "dioceses", "dioecies", "dioecism", "dioicous", "diolefin", "diopside", "dioptase", "diopters", "dioptral", "dioptres", "dioptric", "dioramas", "dioramic", "diorites", "dioritic", "dioxanes", "dioxides", "diphasic", "diphenyl", "diplegia", "diplegic", "diplexer", "diploids", "diploidy", "diplomas", "diplomat", "diplonts", "diplopia", "diplopic", "diplopod", "diploses", "diplosis", "dipnoans", "dipodies", "dippable", "dippiest", "diprotic", "dipsades", "dipshits", "dipstick", "dipteral", "dipteran", "dipteron", "diptycas", "diptychs", "directed", "directer", "directly", "director", "direness", "dirgeful", "diriment", "dirtbags", "dirtiest", "dirtying", "disabled", "disabler", "disables", "disabuse", "disagree", "disallow", "disannul", "disarmed", "disarmer", "disarray", "disaster", "disavows", "disbands", "disbosom", "disbound", "disbowel", "disburse", "discants", "discards", "discased", "discases", "discepts", "discerns", "disciple", "disclaim", "disclike", "disclose", "discoids", "discoing", "discolor", "discords", "discount", "discover", "discreet", "discrete", "discrown", "discuses", "disdains", "diseased", "diseases", "disendow", "diseuses", "disfavor", "disfrock", "disgorge", "disgrace", "disguise", "disgusts", "dishelms", "disherit", "dishevel", "dishfuls", "dishiest", "dishlike", "dishonor", "dishpans", "dishrags", "dishware", "disinter", "disjects", "disjoins", "disjoint", "disjunct", "diskette", "disklike", "disliked", "disliker", "dislikes", "dislimns", "dislodge", "disloyal", "dismaler", "dismally", "dismasts", "dismayed", "dismount", "disobeys", "disorder", "disowned", "disparts", "dispatch", "dispends", "dispense", "disperse", "dispirit", "displace", "displant", "displays", "displode", "displume", "disports", "disposal", "disposed", "disposer", "disposes", "dispread", "disprize", "disproof", "disprove", "disputed", "disputer", "disputes", "disquiet", "disrated", "disrates", "disrobed", "disrober", "disrobes", "disroots", "disrupts", "dissaved", "dissaves", "disseats", "dissects", "disseise", "disseize", "dissents", "disserts", "disserve", "dissever", "dissolve", "dissuade", "distaffs", "distains", "distally", "distance", "distaste", "distaves", "distends", "distichs", "distills", "distinct", "distomes", "distorts", "distract", "distrain", "distrait", "distress", "district", "distrust", "disturbs", "disulfid", "disunion", "disunite", "disunity", "disusing", "disvalue", "disyoked", "disyokes", "ditchers", "ditching", "ditheism", "ditheist", "dithered", "ditherer", "ditsiest", "dittoing", "ditziest", "diureses", "diuresis", "diuretic", "diurnals", "divagate", "divalent", "divebomb", "diverged", "diverges", "diverted", "diverter", "divested", "dividend", "dividers", "dividing", "dividual", "divinely", "diviners", "divinest", "divining", "divinise", "divinity", "divinize", "division", "divisive", "divisors", "divorced", "divorcee", "divorcer", "divorces", "divulged", "divulger", "divulges", "divulsed", "divulses", "divvying", "dizening", "dizygous", "dizziest", "dizzying", "djellaba", "doblones", "docilely", "docility", "dockages", "docketed", "dockhand", "dockland", "dockside", "dockyard", "doctoral", "doctored", "doctorly", "doctrine", "document", "doddered", "dodderer", "dodgiest", "dodoisms", "doeskins", "dogbanes", "dogberry", "dogcarts", "dogeared", "dogedoms", "dogeship", "dogfaces", "dogfight", "doggedly", "doggerel", "doggiest", "doggoned", "doggoner", "doggones", "doggrels", "doghouse", "dogmatic", "dognaped", "dognaper", "dogsbody", "dogsleds", "dogteeth", "dogtooth", "dogtrots", "dogvanes", "dogwatch", "dogwoods", "dolcetto", "doldrums", "dolerite", "dolesome", "dolloped", "dollying", "dolmades", "dolmenic", "dolomite", "doloroso", "dolorous", "dolphins", "domaines", "domelike", "domesday", "domestic", "domicile", "domicils", "dominant", "dominate", "domineer", "dominick", "dominies", "dominion", "dominium", "dominoes", "donating", "donation", "donative", "donators", "doneness", "dongolas", "donnered", "donniker", "doodlers", "doodling", "doofuses", "doomiest", "doomsday", "doomster", "doorbell", "doorjamb", "doorknob", "doorless", "doormats", "doornail", "doorpost", "doorsill", "doorstep", "doorstop", "doorways", "dooryard", "dopamine", "dopehead", "dopester", "dopiness", "dorhawks", "dorkiest", "dormancy", "dormered", "dormient", "dormouse", "dornecks", "dornicks", "dornocks", "dorsally", "dosseret", "dossiers", "dotardly", "dotation", "dotingly", "dotterel", "dottiest", "dottrels", "doublers", "doublets", "doubling", "doubloon", "doublure", "doubters", "doubtful", "doubting", "douceurs", "douching", "doughboy", "doughier", "doughnut", "doupioni", "dourines", "dourness", "douzeper", "dovecote", "dovecots", "dovekeys", "dovekies", "dovelike", "dovening", "dovetail", "dowagers", "dowdiest", "dowdyish", "doweling", "dowelled", "doweries", "dowering", "downbeat", "downbows", "downcast", "downcome", "downfall", "downhaul", "downhill", "downiest", "downland", "downless", "downlike", "downlink", "download", "downpipe", "downplay", "downpour", "downside", "downsize", "downspin", "downtick", "downtime", "downtown", "downtrod", "downturn", "downward", "downwash", "downwind", "downzone", "dowsabel", "doxology", "doyennes", "dozening", "dozenths", "doziness", "drabbest", "drabbets", "drabbing", "drabbled", "drabbles", "drabness", "dracaena", "dracenas", "drachmae", "drachmai", "drachmas", "draconic", "draffier", "draffish", "draftees", "drafters", "draftier", "draftily", "drafting", "draggers", "draggier", "dragging", "draggled", "draggles", "dragline", "dragnets", "dragoman", "dragomen", "dragonet", "dragoons", "dragrope", "dragster", "drainage", "drainers", "draining", "dramatic", "dramming", "drammock", "dramshop", "drapable", "dratting", "draughts", "draughty", "drawable", "drawback", "drawbars", "drawbore", "drawdown", "drawings", "drawlers", "drawlier", "drawling", "drawtube", "drayages", "dreadful", "dreading", "dreamers", "dreamful", "dreamier", "dreamily", "dreaming", "drearier", "drearies", "drearily", "dredgers", "dredging", "dreggier", "dreggish", "dreidels", "drenched", "drencher", "drenches", "dressage", "dressers", "dressier", "dressily", "dressing", "dribbing", "dribbled", "dribbler", "dribbles", "dribblet", "driblets", "driftage", "drifters", "driftier", "drifting", "driftpin", "drillers", "drilling", "drinkers", "drinking", "dripless", "drippers", "drippier", "drippily", "dripping", "drivable", "driveled", "driveler", "driveway", "drivings", "drizzled", "drizzles", "drollery", "drollest", "drolling", "dromonds", "droolier", "drooling", "droopier", "droopily", "drooping", "drophead", "dropkick", "droplets", "dropouts", "droppers", "dropping", "dropshot", "dropsied", "dropsies", "dropwort", "droseras", "droskies", "drossier", "droughts", "droughty", "drouking", "drownded", "drowners", "drowning", "drowsier", "drowsily", "drowsing", "drubbers", "drubbing", "drudgers", "drudgery", "drudging", "druggets", "druggier", "druggies", "drugging", "druggist", "druidess", "druidism", "drumbeat", "drumbled", "drumbles", "drumfire", "drumfish", "drumhead", "drumlier", "drumlike", "drumlins", "drummers", "drumming", "drumroll", "drunkard", "drunkest", "drupelet", "druthers", "drypoint", "drystone", "drywalls", "drywells", "dualisms", "dualists", "dualized", "dualizes", "dubbings", "dubniums", "dubonnet", "duckbill", "duckiest", "duckling", "duckpins", "ducktail", "duckwalk", "duckweed", "ductings", "ductless", "ductules", "ductwork", "dudgeons", "dudishly", "duecento", "duelists", "duellers", "duelling", "duellist", "duetting", "duettist", "dukedoms", "dulcetly", "dulciana", "dulcimer", "dulcinea", "dullards", "dullness", "dumbbell", "dumbcane", "dumbhead", "dumbness", "dumfound", "dummkopf", "dummying", "dumpcart", "dumpiest", "dumpings", "dumpling", "dumpsite", "dumpster", "duncical", "duneland", "dunelike", "dungaree", "dungeons", "dunghill", "dungiest", "dunnages", "dunnites", "duodenal", "duodenum", "duologue", "duopsony", "duotones", "duperies", "duplexed", "duplexer", "duplexes", "durables", "duramens", "durances", "duration", "durative", "duresses", "durmasts", "durndest", "durneder", "duskiest", "dustbins", "dustheap", "dustiest", "dustings", "dustless", "dustlike", "dustoffs", "dustpans", "dustrags", "dutchman", "dutchmen", "dutiable", "duumviri", "duumvirs", "duvetine", "duvetyne", "duvetyns", "duxelles", "dwarfest", "dwarfing", "dwarfish", "dwarfism", "dweebier", "dweebish", "dwellers", "dwelling", "dwindled", "dwindles", "dyarchic", "dybbukim", "dyestuff", "dyeweeds", "dyewoods", "dynamics", "dynamism", "dynamist", "dynamite", "dynastic", "dynatron", "dysgenic", "dyslexia", "dyslexic", "dyspepsy", "dyspneal", "dyspneas", "dyspneic", "dyspnoea", "dyspnoic", "dystaxia", "dystocia", "dystonia", "dystonic", "dystopia", "dysurias", "eagerest", "eanlings", "earaches", "eardrops", "eardrums", "earflaps", "earldoms", "earliest", "earlobes", "earlocks", "earlship", "earmarks", "earmuffs", "earnests", "earnings", "earphone", "earpiece", "earplugs", "earrings", "earshots", "earstone", "earthier", "earthily", "earthing", "earthman", "earthmen", "earthnut", "earthpea", "earthset", "earwaxes", "earworms", "easement", "easiness", "easterly", "eastings", "eastward", "eatables", "eateries", "ebonised", "ebonises", "ebonites", "ebonized", "ebonizes", "ecaudate", "ecbolics", "ecclesia", "ecdysial", "ecdysone", "ecdysons", "ecesises", "echelles", "echelons", "echidnae", "echidnas", "echinate", "echinoid", "echogram", "echoisms", "echoless", "eclectic", "eclipsed", "eclipser", "eclipses", "eclipsis", "ecliptic", "eclogite", "eclogues", "eclosion", "ecocidal", "ecocides", "ecofreak", "ecologic", "econobox", "economic", "ecotages", "ecotonal", "ecotones", "ecotours", "ecotypes", "ecotypic", "ecraseur", "ecstatic", "ectoderm", "ectomere", "ectopias", "ectosarc", "ectozoan", "ectozoon", "ecumenic", "edacious", "edentate", "edgeless", "edgeways", "edgewise", "edginess", "edifices", "edifiers", "edifying", "editable", "editions", "editress", "educable", "educated", "educates", "educator", "educible", "eduction", "eductive", "eductors", "eelgrass", "eelpouts", "eelworms", "eeriness", "effacers", "effacing", "effected", "effecter", "effector", "effendis", "efferent", "effetely", "efficacy", "effigial", "effigies", "effluent", "effluvia", "effluxes", "effulged", "effulges", "effusing", "effusion", "effusive", "eftsoons", "egalites", "egesting", "egestion", "egestive", "eggfruit", "eggheads", "eggplant", "eggshell", "eglatere", "eglomise", "egoistic", "egomania", "egotisms", "egotists", "egressed", "egresses", "egyptian", "eidolons", "eighteen", "eighthly", "eighties", "eightvos", "einkorns", "einstein", "eisweins", "ejecting", "ejection", "ejective", "ejectors", "ekistics", "ekpweles", "ektexine", "elaphine", "elapsing", "elastase", "elastics", "elastins", "elatedly", "elaterid", "elaterin", "elations", "elatives", "elbowing", "eldritch", "electees", "electing", "election", "elective", "electors", "electret", "electric", "electron", "electros", "electrum", "elegance", "elegancy", "elegiacs", "elegised", "elegises", "elegists", "elegized", "elegizes", "elements", "elenchic", "elenchus", "elenctic", "elephant", "elevated", "elevates", "elevator", "eleventh", "elfishly", "elflocks", "elicited", "elicitor", "elidible", "eligible", "eligibly", "elisions", "elitisms", "elitists", "elkhound", "ellipses", "ellipsis", "elliptic", "eloigned", "eloigner", "eloiners", "eloining", "elongate", "eloquent", "elusions", "elutions", "eluviate", "eluviums", "elvishly", "elytroid", "elytrous", "emaciate", "emailing", "emanated", "emanates", "emanator", "embalmed", "embalmer", "embanked", "embarked", "embarred", "embattle", "embaying", "embedded", "embezzle", "embitter", "emblazed", "emblazer", "emblazes", "emblazon", "emblemed", "embodied", "embodier", "embodies", "embolden", "embolies", "embolism", "emborder", "embosked", "embosoms", "embossed", "embosser", "embosses", "embowels", "embowers", "embowing", "embraced", "embracer", "embraces", "embroils", "embrowns", "embruing", "embruted", "embrutes", "embryoid", "embryons", "emceeing", "emdashes", "emeerate", "emendate", "emenders", "emending", "emeralds", "emergent", "emerging", "emeritae", "emeritas", "emeritus", "emeroids", "emersion", "emetines", "emigrant", "emigrate", "eminence", "eminency", "emirates", "emissary", "emission", "emissive", "emitters", "emitting", "emoticon", "emotions", "empalers", "empaling", "empanada", "empanels", "empathic", "emperies", "emperors", "emphases", "emphasis", "emphatic", "empirics", "emplaced", "emplaces", "emplaned", "emplanes", "employed", "employee", "employer", "employes", "empoison", "emporium", "empowers", "emprises", "emprizes", "emptiers", "emptiest", "emptings", "emptying", "empurple", "empyemas", "empyemic", "empyreal", "empyrean", "emulated", "emulates", "emulator", "emulsify", "emulsion", "emulsive", "emulsoid", "enablers", "enabling", "enacting", "enactive", "enactors", "enactory", "enameled", "enameler", "enamines", "enamored", "enamours", "enations", "encaenia", "encaging", "encamped", "encashed", "encashes", "encasing", "enceinte", "enchains", "enchants", "enchased", "enchaser", "enchases", "enchoric", "encipher", "encircle", "enclasps", "enclaved", "enclaves", "enclitic", "enclosed", "encloser", "encloses", "encoders", "encoding", "encomium", "encoring", "encroach", "encrusts", "encrypts", "encumber", "encyclic", "encysted", "endamage", "endameba", "endanger", "endarchy", "endashes", "endbrain", "endeared", "endeavor", "endemial", "endemics", "endemism", "endermic", "endexine", "endgames", "enditing", "endleafs", "endnotes", "endocarp", "endocast", "endoderm", "endogamy", "endogens", "endogeny", "endopods", "endorsed", "endorsee", "endorser", "endorses", "endorsor", "endosarc", "endosmos", "endosome", "endostea", "endowers", "endowing", "endozoic", "endpaper", "endplate", "endplays", "endpoint", "endurers", "enduring", "energids", "energies", "energise", "energize", "enervate", "enfacing", "enfeeble", "enfeoffs", "enfetter", "enfevers", "enfilade", "enflamed", "enflames", "enfolded", "enfolder", "enforced", "enforcer", "enforces", "enframed", "enframes", "engagers", "engaging", "engender", "engilded", "engineer", "enginery", "engining", "enginous", "engirded", "engirdle", "engorged", "engorges", "engrafts", "engrails", "engrains", "engramme", "engraved", "engraver", "engraves", "engulfed", "enhaloed", "enhaloes", "enhanced", "enhancer", "enhances", "enigmata", "enisling", "enjambed", "enjoined", "enjoiner", "enjoyers", "enjoying", "enkindle", "enlacing", "enlarged", "enlarger", "enlarges", "enlisted", "enlistee", "enlister", "enlivens", "enmeshed", "enmeshes", "enmities", "enneadic", "enneagon", "ennobled", "ennobler", "ennobles", "enolases", "enophile", "enormity", "enormous", "enosises", "enounced", "enounces", "enplaned", "enplanes", "enquired", "enquires", "enraging", "enravish", "enriched", "enricher", "enriches", "enrobers", "enrobing", "enrolled", "enrollee", "enroller", "enrooted", "ensample", "ensconce", "enscroll", "ensemble", "enserfed", "ensheath", "enshrine", "enshroud", "ensiform", "ensigncy", "ensilage", "ensiling", "enskying", "enslaved", "enslaver", "enslaves", "ensnared", "ensnarer", "ensnares", "ensnarls", "ensorcel", "ensouled", "ensphere", "ensurers", "ensuring", "enswathe", "entailed", "entailer", "entameba", "entangle", "entasias", "entastic", "entellus", "ententes", "enterers", "enterics", "entering", "enterons", "enthalpy", "enthetic", "enthrall", "enthrals", "enthrone", "enthused", "enthuses", "enticers", "enticing", "entirely", "entirety", "entities", "entitled", "entitles", "entoderm", "entoiled", "entombed", "entozoal", "entozoan", "entozoic", "entozoon", "entrails", "entrains", "entrance", "entrants", "entreats", "entreaty", "entrench", "entrepot", "entresol", "entropic", "entrusts", "entryway", "entwined", "entwines", "entwists", "enureses", "enuresis", "enuretic", "envelope", "envelops", "envenoms", "enviable", "enviably", "environs", "envisage", "envision", "enwheels", "enwombed", "enzootic", "eobionts", "eohippus", "eolipile", "eolithic", "eolopile", "epaulets", "epazotes", "epeeists", "ependyma", "epergnes", "ephedras", "ephedrin", "ephemera", "ephorate", "epiblast", "epibolic", "epically", "epicalyx", "epicarps", "epicedia", "epicenes", "epiclike", "epicotyl", "epicures", "epicycle", "epidemic", "epiderms", "epidotes", "epidotic", "epidural", "epifauna", "epifocal", "epigenic", "epigeous", "epigones", "epigonic", "epigonus", "epigrams", "epigraph", "epilated", "epilates", "epilator", "epilepsy", "epilogue", "epimeres", "epimeric", "epimysia", "epinasty", "epiphany", "epiphyte", "episcias", "episcope", "episodes", "episodic", "episomal", "episomes", "epistasy", "epistler", "epistles", "epistome", "epistyle", "epitaphs", "epitases", "epitasis", "epitaxic", "epithets", "epitomes", "epitomic", "epitopes", "epizoism", "epizoite", "epizooty", "eponymic", "epopoeia", "epoxides", "epoxying", "epsilons", "equaling", "equalise", "equality", "equalize", "equalled", "equating", "equation", "equators", "equinely", "equinity", "equipage", "equipped", "equipper", "equiseta", "equitant", "equities", "equivoke", "eradiate", "erasable", "erasions", "erasures", "erecters", "erectile", "erecting", "erection", "erective", "erectors", "eremites", "eremitic", "eremurus", "erepsins", "erethism", "erewhile", "ergastic", "ergative", "ergotism", "erigeron", "eringoes", "eristics", "erlkings", "erodable", "erodible", "erogenic", "erosible", "erosions", "erotical", "erotisms", "erotized", "erotizes", "errantly", "errantry", "erratics", "errhines", "erringly", "ersatzes", "eructate", "eructing", "erumpent", "erupting", "eruption", "eruptive", "eryngoes", "erythema", "erythron", "escalade", "escalate", "escallop", "escalope", "escalops", "escapade", "escapees", "escapers", "escaping", "escapism", "escapist", "escargot", "escarole", "escarped", "eschalot", "escheats", "eschewal", "eschewed", "eschewer", "escolars", "escorted", "escoting", "escrowed", "escuages", "esculent", "eserines", "esophagi", "esoteric", "espalier", "espartos", "especial", "espiegle", "espousal", "espoused", "espouser", "espouses", "espresso", "esquired", "esquires", "essayers", "essaying", "essayist", "essences", "essonite", "estancia", "estating", "esteemed", "esterase", "esterify", "estheses", "esthesia", "esthesis", "esthetes", "esthetic", "estimate", "estivate", "estopped", "estoppel", "estovers", "estragon", "estrange", "estrayed", "estreats", "estriols", "estrogen", "estrones", "estruses", "esurient", "etageres", "etamines", "etatisms", "etcetera", "etchants", "etchings", "eternals", "eternise", "eternity", "eternize", "etesians", "ethanols", "ethephon", "ethereal", "etherify", "etherish", "etherize", "ethicals", "ethician", "ethicist", "ethicize", "ethinyls", "ethmoids", "ethnarch", "ethnical", "ethnonym", "ethnoses", "ethogram", "ethology", "ethoxies", "ethoxyls", "ethylate", "ethylene", "ethynyls", "etiolate", "etiology", "etouffee", "eucaines", "eucalypt", "eucharis", "euchring", "euclases", "eucrites", "eucritic", "eudaemon", "eudaimon", "eudemons", "eugenias", "eugenics", "eugenist", "eugenols", "euglenas", "euglenid", "eulachan", "eulachon", "eulogiae", "eulogias", "eulogies", "eulogise", "eulogist", "eulogium", "eulogize", "euonymus", "eupatrid", "eupepsia", "eupeptic", "euphenic", "euphonic", "euphoria", "euphoric", "euphotic", "euphrasy", "euphroes", "euphuism", "euphuist", "euploids", "euploidy", "eupnoeas", "eupnoeic", "eurokies", "eurokous", "europium", "eurybath", "eurythmy", "eusocial", "eustatic", "eusteles", "eutaxies", "eutectic", "eutrophy", "euxenite", "evacuant", "evacuate", "evacuees", "evadable", "evadible", "evaluate", "evanesce", "evangels", "evasions", "evection", "evenfall", "evenings", "evenness", "evensong", "eventful", "eventide", "eventual", "evermore", "eversion", "everting", "evertors", "everyday", "everyman", "everymen", "everyone", "everyway", "evictees", "evicting", "eviction", "evictors", "evidence", "evildoer", "evillest", "evilness", "evincing", "evincive", "evitable", "evocable", "evocator", "evolutes", "evolvers", "evolving", "evonymus", "evulsing", "evulsion", "exabytes", "exacters", "exactest", "exacting", "exaction", "exactors", "exahertz", "exalters", "exalting", "examined", "examinee", "examiner", "examines", "exampled", "examples", "exanthem", "exaptive", "exarchal", "excavate", "exceeded", "exceeder", "excelled", "excepted", "excerpts", "excessed", "excesses", "exchange", "exciding", "excimers", "exciples", "excising", "excision", "excitant", "exciters", "exciting", "excitons", "excitors", "exclaims", "exclaves", "excluded", "excluder", "excludes", "excretal", "excreted", "excreter", "excretes", "excursus", "excusers", "excusing", "execrate", "executed", "executer", "executes", "executor", "exegeses", "exegesis", "exegetes", "exegetic", "exemplar", "exemplum", "exempted", "exequial", "exequies", "exercise", "exergual", "exergues", "exerting", "exertion", "exertive", "exhalant", "exhalent", "exhaling", "exhausts", "exhedrae", "exhibits", "exhorted", "exhorter", "exhumers", "exhuming", "exigence", "exigency", "exigible", "exiguity", "exiguous", "exilable", "eximious", "existent", "existing", "exitless", "exocarps", "exocrine", "exocytic", "exoderms", "exoduses", "exoergic", "exogamic", "exonumia", "exorable", "exorcise", "exorcism", "exorcist", "exorcize", "exordial", "exordium", "exosmose", "exospore", "exoteric", "exotisms", "exotoxic", "exotoxin", "expanded", "expander", "expandor", "expanses", "expected", "expecter", "expedite", "expelled", "expellee", "expeller", "expended", "expender", "expensed", "expenses", "experted", "expertly", "expiable", "expiated", "expiates", "expiator", "expirers", "expiries", "expiring", "explains", "explants", "explicit", "exploded", "exploder", "explodes", "exploits", "explored", "explorer", "explores", "exponent", "exported", "exporter", "exposals", "exposers", "exposing", "exposits", "exposure", "expounds", "expresso", "expulsed", "expulses", "expunged", "expunger", "expunges", "exscinds", "exsecant", "exsected", "exserted", "extended", "extender", "extensor", "exterior", "external", "externes", "extincts", "extolled", "extoller", "extorted", "extorter", "extracts", "extrados", "extranet", "extremer", "extremes", "extremum", "extrorse", "extruded", "extruder", "extrudes", "extubate", "exudates", "exultant", "exulting", "exurbias", "exuviate", "eyeballs", "eyebeams", "eyeblack", "eyeblink", "eyebolts", "eyebrows", "eyedness", "eyedrops", "eyefolds", "eyeglass", "eyeholes", "eyehooks", "eyelifts", "eyeliner", "eyepiece", "eyepoint", "eyeshade", "eyeshine", "eyeshots", "eyesight", "eyesores", "eyespots", "eyestalk", "eyestone", "eyeteeth", "eyetooth", "eyewater", "eyewinks", "fabliaux", "fabulate", "fabulist", "fabulous", "faceable", "facedown", "faceless", "facelift", "facemask", "facetely", "facetiae", "faceting", "facetted", "facially", "faciends", "facilely", "facility", "factions", "factious", "factoids", "factored", "factotum", "factures", "faddiest", "faddisms", "faddists", "fadeaway", "fadeless", "fadeouts", "faggiest", "faggoted", "faggotry", "fagoters", "fagoting", "fahlband", "faiences", "failings", "failures", "faineant", "fainters", "faintest", "fainting", "faintish", "fairgoer", "fairings", "fairlead", "fairness", "fairways", "fairyism", "faithful", "faithing", "faitours", "fakeries", "falafels", "falbalas", "falcated", "falchion", "falconer", "falconet", "falconry", "falderal", "falderol", "fallaway", "fallback", "fallfish", "fallible", "fallibly", "falloffs", "fallouts", "fallowed", "falsetto", "faltboat", "faltered", "falterer", "fameless", "familial", "familiar", "families", "familism", "famished", "famishes", "famously", "fanatics", "fanciers", "fanciest", "fanciful", "fancying", "fandango", "fanegada", "fanfares", "fanfaron", "fanfolds", "fangless", "fanglike", "fanlight", "fantails", "fantasia", "fantasie", "fantasms", "fantasts", "fanworts", "fanzines", "faradaic", "faradays", "faradise", "faradism", "faradize", "farceurs", "farcical", "farewell", "farfalle", "farinhas", "farinose", "farmable", "farmhand", "farmings", "farmland", "farmwife", "farmwork", "farmyard", "farnesol", "farolito", "farouche", "farriers", "farriery", "farrowed", "farsides", "farthest", "farthing", "fartleks", "fasciate", "fascicle", "fascines", "fascisms", "fascists", "fascitis", "fashions", "fashious", "fastback", "fastball", "fastened", "fastener", "fastings", "fastness", "fastuous", "fatalism", "fatalist", "fatality", "fatbacks", "fatbirds", "fatheads", "fathered", "fatherly", "fathomed", "fathomer", "fatigued", "fatigues", "fatlings", "fatstock", "fattened", "fattener", "fattiest", "fatwoods", "faubourg", "faultier", "faultily", "faulting", "faunally", "faunlike", "fauteuil", "fauvisms", "fauvists", "favellas", "favonian", "favorers", "favoring", "favorite", "favoured", "favourer", "fawniest", "fawnlike", "fayalite", "fazendas", "fealties", "fearless", "fearsome", "feasance", "feasible", "feasibly", "feasters", "feastful", "feasting", "feathers", "feathery", "featlier", "featured", "features", "febrific", "feckless", "feculent", "fedayeen", "federacy", "federals", "federate", "fedexing", "feeblest", "feeblish", "feedable", "feedback", "feedbags", "feedhole", "feedlots", "feedyard", "feelings", "feetless", "feigners", "feigning", "feinting", "feistier", "feistily", "felafels", "feldsher", "feldspar", "felicity", "felinely", "felinity", "fellable", "fellahin", "fellated", "fellates", "fellatio", "fellator", "fellness", "fellowed", "fellowly", "felonies", "felsites", "felsitic", "felspars", "felstone", "feltings", "feltlike", "feluccas", "felworts", "feminacy", "feminazi", "feminine", "feminise", "feminism", "feminist", "feminity", "feminize", "fenagled", "fenagles", "fencerow", "fencible", "fencings", "fendered", "fenestra", "fenlands", "fenniest", "fentanyl", "fenthion", "fenurons", "feoffees", "feoffers", "feoffing", "feoffors", "feracity", "feretory", "ferities", "fermatas", "ferments", "fermions", "fermiums", "ferniest", "ferninst", "fernless", "fernlike", "ferocity", "ferrates", "ferreled", "ferreous", "ferreted", "ferreter", "ferriage", "ferrites", "ferritic", "ferritin", "ferruled", "ferrules", "ferrying", "ferryman", "ferrymen", "feruling", "fervency", "fervidly", "fervours", "fesswise", "festally", "festered", "festival", "festoons", "fetation", "fetchers", "fetching", "feterita", "fetiales", "fetialis", "fetiches", "feticide", "fetidity", "fetishes", "fetlocks", "fetology", "fettered", "fetterer", "fettling", "feudally", "feudists", "feverfew", "fevering", "feverish", "feverous", "fewtrils", "fiancees", "fiascoes", "fiberize", "fibranne", "fibrilla", "fibroids", "fibroins", "fibromas", "fibroses", "fibrosis", "fibrotic", "fibsters", "ficklest", "fictions", "fiddlers", "fiddling", "fideisms", "fideists", "fidelity", "fidgeted", "fidgeter", "fiducial", "fiefdoms", "fielders", "fielding", "fiendish", "fiercely", "fiercest", "fieriest", "fifteens", "fiftieth", "fiftyish", "figeater", "fighters", "fighting", "figments", "figuline", "figurant", "figurate", "figurers", "figurine", "figuring", "figworts", "filagree", "filament", "filarees", "filariae", "filarial", "filarian", "filariid", "filature", "filberts", "filchers", "filching", "fileable", "filefish", "filename", "fileting", "filially", "filiated", "filiates", "filibegs", "filicide", "filiform", "filigree", "filister", "fillable", "filleted", "fillings", "filliped", "filmable", "filmcard", "filmdoms", "filmgoer", "filmiest", "filmland", "filmless", "filmlike", "filmsets", "filtered", "filterer", "filthier", "filthily", "filtrate", "fimbriae", "fimbrial", "finagled", "finagler", "finagles", "finalise", "finalism", "finalist", "finality", "finalize", "financed", "finances", "finbacks", "findable", "findings", "fineable", "fineness", "fineries", "finespun", "finessed", "finesses", "finfoots", "fingered", "fingerer", "finialed", "finickin", "finiking", "finished", "finisher", "finishes", "finitely", "finitude", "finmarks", "finnicky", "finniest", "finnmark", "finochio", "fireable", "firearms", "fireback", "fireball", "firebase", "firebird", "fireboat", "firebomb", "firebrat", "firebugs", "fireclay", "firedamp", "firedogs", "firefang", "firehall", "fireless", "firelock", "firepans", "firepink", "fireplug", "firepots", "fireroom", "fireship", "fireside", "firetrap", "firewall", "fireweed", "firewood", "firework", "fireworm", "firmness", "firmware", "firriest", "fiscally", "fishable", "fishbolt", "fishbone", "fishbowl", "fisheyes", "fishgigs", "fishhook", "fishiest", "fishings", "fishkill", "fishless", "fishlike", "fishline", "fishmeal", "fishnets", "fishpole", "fishpond", "fishtail", "fishways", "fishwife", "fishworm", "fissions", "fissiped", "fissural", "fissured", "fissures", "fistfuls", "fistnote", "fistulae", "fistular", "fistulas", "fitchets", "fitchews", "fitfully", "fitments", "fittable", "fittings", "fivefold", "fivepins", "fixatifs", "fixating", "fixation", "fixative", "fixities", "fixtures", "fizziest", "fizzling", "flabbier", "flabbily", "flabella", "flackery", "flacking", "flagella", "flaggers", "flaggier", "flagging", "flagless", "flagpole", "flagrant", "flagship", "flailing", "flakiest", "flambeau", "flambeed", "flamenco", "flameout", "flamiest", "flamines", "flamingo", "flamming", "flancard", "flanerie", "flaneurs", "flangers", "flanging", "flankers", "flanking", "flannels", "flaperon", "flapjack", "flapless", "flappers", "flappier", "flapping", "flareups", "flashers", "flashgun", "flashier", "flashily", "flashing", "flaskets", "flatbeds", "flatboat", "flatcaps", "flatcars", "flatfeet", "flatfish", "flatfoot", "flathead", "flatiron", "flatland", "flatlets", "flatline", "flatling", "flatlong", "flatmate", "flatness", "flattens", "flatters", "flattery", "flattest", "flatting", "flattish", "flattops", "flatuses", "flatware", "flatwash", "flatways", "flatwise", "flatwork", "flatworm", "flaunted", "flaunter", "flautist", "flavanol", "flavines", "flavones", "flavonol", "flavored", "flavorer", "flavours", "flavoury", "flawiest", "flawless", "flaxiest", "flaxseed", "fleabags", "fleabane", "fleabite", "fleapits", "fleawort", "flecking", "flection", "fledgier", "fledging", "fleecers", "fleeched", "fleeches", "fleecier", "fleecily", "fleecing", "fleering", "fleetest", "fleeting", "flehmens", "fleishig", "flenched", "flenches", "flensers", "flensing", "fleshers", "fleshier", "fleshily", "fleshing", "fleshpot", "fletched", "fletcher", "fletches", "fleurons", "flexagon", "flexible", "flexibly", "flexions", "flextime", "flexuose", "flexuous", "flexural", "flexures", "flichter", "flickers", "flickery", "flicking", "flighted", "flimflam", "flimsier", "flimsies", "flimsily", "flinched", "flincher", "flinches", "flinders", "flingers", "flinging", "flinkite", "flintier", "flintily", "flinting", "flipbook", "flipflop", "flippant", "flippers", "flippest", "flipping", "flirters", "flirtier", "flirting", "flitched", "flitches", "flitters", "flitting", "flivvers", "floatage", "floatels", "floaters", "floatier", "floating", "floccing", "floccose", "floccule", "flocculi", "flockier", "flocking", "floggers", "flogging", "flokatis", "flooders", "flooding", "floodlit", "floodway", "floorage", "floorers", "flooring", "floosies", "floozies", "flopover", "floppers", "floppier", "floppies", "floppily", "flopping", "florally", "florence", "floridly", "florigen", "florists", "floruits", "flossers", "flossier", "flossies", "flossily", "flossing", "flotages", "flotilla", "flotsams", "flounced", "flounces", "flounder", "flouring", "flourish", "flouters", "flouting", "flowages", "flowered", "flowerer", "floweret", "flubbers", "flubbing", "flubdubs", "fluently", "fluerics", "fluffers", "fluffier", "fluffily", "fluffing", "fluidics", "fluidise", "fluidity", "fluidize", "fluidram", "flukiest", "flummery", "flumping", "flunkers", "flunkeys", "flunkies", "flunking", "fluorene", "fluoride", "fluorids", "fluorine", "fluorins", "fluorite", "flurried", "flurries", "flushers", "flushest", "flushing", "flusters", "flutiest", "flutings", "flutists", "flutters", "fluttery", "fluxgate", "fluxions", "flyaways", "flybelts", "flyblown", "flyblows", "flyboats", "flyovers", "flypaper", "flypasts", "flysches", "flysheet", "flyspeck", "flytiers", "flytings", "flytraps", "flywheel", "foamable", "foamiest", "foamless", "foamlike", "focaccia", "focalise", "focalize", "focusers", "focusing", "focussed", "focusses", "foddered", "foetuses", "fogbound", "fogeyish", "fogeyism", "fogfruit", "foggages", "foggiest", "foghorns", "fogyisms", "foilable", "foilsman", "foilsmen", "foisting", "folacins", "foldable", "foldaway", "foldboat", "folderol", "foldouts", "foliaged", "foliages", "foliated", "foliates", "folioing", "folkiest", "folklife", "folklike", "folklore", "folkmoot", "folkmote", "folkmots", "folksier", "folksily", "folksong", "folktale", "folkways", "follicle", "followed", "follower", "followup", "fomented", "fomenter", "fondants", "fondlers", "fondling", "fondness", "fonduing", "fontanel", "fontinas", "foodless", "foodways", "foofaraw", "foolfish", "foolscap", "foosball", "footages", "footbags", "football", "footbath", "footboys", "footfall", "footgear", "foothill", "foothold", "footiest", "footings", "footlers", "footless", "footlike", "footling", "footmark", "footnote", "footpace", "footpads", "footpath", "footrace", "footrest", "footrope", "footsies", "footslog", "footsore", "footstep", "footwall", "footways", "footwear", "footwork", "footworn", "foozlers", "foozling", "foragers", "foraging", "foramens", "foramina", "forayers", "foraying", "forbears", "forbidal", "forboded", "forbodes", "forborne", "forcedly", "forceful", "forcible", "forcibly", "forcipes", "fordable", "fordless", "fordoing", "forearms", "forebays", "forebear", "forebode", "forebody", "foreboom", "forecast", "foredate", "foredeck", "foredoes", "foredone", "foredoom", "foreface", "forefeel", "forefeet", "forefelt", "forefend", "forefoot", "foregoer", "foregoes", "foregone", "foreguts", "forehand", "forehead", "forehoof", "foreknew", "foreknow", "forelady", "foreland", "forelegs", "forelimb", "forelock", "foremast", "foremilk", "foremost", "forename", "forenoon", "forensic", "forepart", "forepast", "forepaws", "forepeak", "foreplay", "forerank", "foreruns", "foresaid", "foresail", "foreseen", "foreseer", "foresees", "foreshow", "foreside", "foreskin", "forestal", "forestay", "forested", "forester", "forestry", "foretell", "foretime", "foretold", "foretops", "forevers", "forewarn", "forewent", "forewing", "foreword", "foreworn", "foreyard", "forfeits", "forfends", "forgings", "forgiven", "forgiver", "forgives", "forgoers", "forgoing", "forjudge", "forkball", "forkedly", "forkfuls", "forkiest", "forkless", "forklift", "forklike", "forksful", "formable", "formably", "formalin", "formally", "formants", "formates", "formerly", "formicas", "formless", "formulae", "formulas", "formwork", "fornical", "fornices", "forrader", "forsaken", "forsaker", "forsakes", "forsooth", "forspent", "forswear", "forswore", "forsworn", "fortieth", "fortress", "fortuity", "fortuned", "fortunes", "fortyish", "forwards", "forzandi", "forzando", "fossette", "fossicks", "fostered", "fosterer", "fouettes", "foughten", "foulards", "foulings", "foulness", "founders", "founding", "fountain", "fourchee", "foureyed", "fourfold", "fourgons", "fourplex", "foursome", "fourteen", "fourthly", "foveated", "foveolae", "foveolar", "foveolas", "foveoles", "foveolet", "fowlings", "foxfires", "foxglove", "foxholes", "foxhound", "foxhunts", "foxiness", "foxskins", "foxtails", "foxtrots", "foziness", "frabjous", "fracases", "fractals", "fraction", "fracture", "fracturs", "fraenums", "fragging", "fragment", "fragrant", "frailest", "frakturs", "framable", "framings", "francium", "francize", "frankers", "frankest", "franking", "franklin", "frapping", "fraughts", "fraulein", "frayings", "frazzled", "frazzles", "freakier", "freakily", "freaking", "freakish", "freakout", "freckled", "freckles", "freebase", "freebees", "freebies", "freeboot", "freeborn", "freedman", "freedmen", "freedoms", "freeform", "freehand", "freehold", "freeload", "freeness", "freesias", "freeware", "freeways", "freewill", "freezers", "freezing", "freights", "fremitus", "frenched", "frenches", "frenetic", "frenular", "frenulum", "frenzied", "frenzies", "frenzily", "frequent", "frescoed", "frescoer", "frescoes", "freshens", "freshest", "freshets", "freshing", "freshman", "freshmen", "fresnels", "fretless", "fretsaws", "fretsome", "fretters", "frettier", "fretting", "fretwork", "friaries", "fribbled", "fribbler", "fribbles", "fricando", "friction", "friended", "friendly", "frigates", "frigging", "frighted", "frighten", "frigidly", "frijoles", "frillers", "frillier", "frilling", "fringier", "fringing", "frippery", "frisbees", "frisette", "friseurs", "friskers", "friskets", "friskier", "friskily", "frisking", "frissons", "frittata", "fritters", "fritting", "frivoled", "frivoler", "frizette", "frizzers", "frizzier", "frizzies", "frizzily", "frizzing", "frizzled", "frizzler", "frizzles", "frocking", "frogeyed", "frogeyes", "frogfish", "froggier", "frogging", "froglets", "froglike", "frolicky", "fromages", "fromenty", "frondeur", "frondose", "frontage", "frontals", "frontier", "fronting", "frontlet", "frontman", "frontmen", "frontons", "frostbit", "frosteds", "frostier", "frostily", "frosting", "frostnip", "frothers", "frothier", "frothily", "frothing", "frottage", "frotteur", "froufrou", "frounced", "frounces", "frouzier", "frowners", "frowning", "frowsier", "frowsted", "frowzier", "frowzily", "frozenly", "fructify", "fructose", "frugally", "frugging", "fruitage", "fruiters", "fruitful", "fruitier", "fruitily", "fruiting", "fruition", "fruitlet", "frumenty", "frumpier", "frumpily", "frumpish", "frustule", "frustums", "frybread", "fubsiest", "fuchsias", "fuchsine", "fuchsins", "fuckoffs", "fucoidal", "fuddling", "fuehrers", "fuellers", "fuelling", "fuelwood", "fugacity", "fuggiest", "fugitive", "fugleman", "fuglemen", "fuguists", "fulcrums", "fulfills", "fullback", "fullered", "fullface", "fullness", "fulmined", "fulmines", "fulminic", "fumarase", "fumarate", "fumarole", "fumatory", "fumblers", "fumbling", "fumeless", "fumelike", "fumettes", "fumigant", "fumigate", "fumingly", "fumitory", "function", "functors", "funerals", "funerary", "funereal", "funfairs", "funfests", "fungible", "fungoids", "funguses", "funhouse", "funicles", "funiculi", "funkiest", "funneled", "funniest", "funnyman", "funnymen", "furanose", "furbelow", "furcated", "furcates", "furcraea", "furculae", "furcular", "furculum", "furfural", "furfuran", "furfures", "furibund", "furlable", "furlongs", "furlough", "furmenty", "furnaced", "furnaces", "furriers", "furriery", "furriest", "furriner", "furrings", "furrowed", "furrower", "furthers", "furthest", "furuncle", "furziest", "fusarium", "fuselage", "fuseless", "fuselike", "fusiform", "fusileer", "fusilier", "fusillis", "fusional", "fussiest", "fusspots", "fustians", "fustiest", "futharcs", "futharks", "futhorcs", "futhorks", "futilely", "futility", "futtocks", "futurism", "futurist", "futurity", "fuzziest", "fuzztone", "gabbards", "gabbarts", "gabbiest", "gabblers", "gabbling", "gabbroic", "gabbroid", "gabelled", "gabelles", "gabfests", "gadabout", "gadarene", "gadflies", "gadgetry", "gadroons", "gadwalls", "gadzooks", "gaggling", "gagsters", "gahnites", "gaieties", "gainable", "gainless", "gainlier", "gainsaid", "gainsays", "galabias", "galabieh", "galabiya", "galactic", "galangal", "galangas", "galateas", "galavant", "galaxies", "galbanum", "galeated", "galenite", "galettes", "galilees", "galipots", "galivant", "gallants", "gallates", "galleass", "galleins", "galleons", "galleria", "galletas", "galleted", "galliard", "galliass", "gallican", "gallicas", "galliots", "gallipot", "galliums", "gallnuts", "galloons", "galloots", "galloped", "galloper", "gallused", "galluses", "gallying", "galopade", "galoping", "galoshed", "galoshes", "galumphs", "galvanic", "gamashes", "gambades", "gambados", "gambeson", "gambiers", "gamblers", "gambling", "gamboges", "gamboled", "gambrels", "gambusia", "gamecock", "gamelans", "gamelike", "gameness", "gamesman", "gamesmen", "gamesome", "gamester", "gaminess", "gammadia", "gammiest", "gammoned", "gammoner", "gamodeme", "ganaches", "gandered", "gangbang", "gangland", "ganglial", "gangliar", "ganglier", "gangling", "ganglion", "gangplow", "gangrels", "gangrene", "gangstas", "gangster", "gangways", "ganister", "gantlets", "gantline", "gantlope", "gantries", "ganymede", "gapeseed", "gapeworm", "gapingly", "gappiest", "garaging", "garbages", "garbagey", "garbanzo", "garblers", "garbless", "garbling", "garboard", "garboils", "gardened", "gardener", "gardenia", "gardyloo", "garganey", "garglers", "gargling", "gargoyle", "garigues", "garishly", "garlands", "garlicky", "garments", "garnered", "garoting", "garotted", "garotter", "garottes", "garpikes", "garreted", "garrison", "garroted", "garroter", "garrotes", "garrotte", "gartered", "gasalier", "gaselier", "gashouse", "gasified", "gasifier", "gasifies", "gasiform", "gaskings", "gaslight", "gasogene", "gasohols", "gasolene", "gasolier", "gasoline", "gassiest", "gassings", "gastight", "gastness", "gastraea", "gastreas", "gastrins", "gastrula", "gasworks", "gatefold", "gateless", "gatelike", "gatepost", "gateways", "gathered", "gatherer", "gauchely", "gauchest", "gaudiest", "gauffers", "gauntest", "gauntlet", "gauziest", "gaveling", "gavelled", "gavelock", "gavotted", "gavottes", "gawkiest", "gayeties", "gaywings", "gazaboes", "gazanias", "gazeboes", "gazelles", "gazetted", "gazettes", "gazogene", "gazpacho", "gazumped", "gazumper", "gearcase", "gearhead", "gearings", "gearless", "geekdoms", "geekiest", "geepound", "gelatine", "gelating", "gelatins", "gelation", "geldings", "gelidity", "gellants", "gelsemia", "gematria", "geminate", "gemmated", "gemmates", "gemmiest", "gemmules", "gemology", "gemsboks", "gemsbuck", "gemstone", "gendarme", "gendered", "generals", "generate", "generics", "generous", "genetics", "genettes", "genially", "genipaps", "genitals", "genitive", "genitors", "geniture", "geniuses", "gennaker", "genocide", "genogram", "genoises", "genomics", "genotype", "gensengs", "gentians", "gentiles", "gentlest", "gentling", "gentrice", "gentries", "gentrify", "geodesic", "geodetic", "geoducks", "geognosy", "geologer", "geologic", "geomancy", "geometer", "geometry", "geophagy", "geophone", "geophyte", "geoponic", "geoprobe", "georgics", "geotaxes", "geotaxis", "geranial", "geraniol", "geranium", "gerardia", "gerberas", "gerbille", "gerenuks", "germanic", "germfree", "germiest", "germinal", "germlike", "gerontic", "gesneria", "gestalts", "gestapos", "gestated", "gestates", "gestical", "gestural", "gestured", "gesturer", "gestures", "getaways", "gettable", "gettered", "gewgawed", "gharials", "gharries", "ghastful", "gheraoed", "gheraoes", "gherkins", "ghettoed", "ghettoes", "ghillies", "ghostier", "ghosting", "ghoulies", "ghoulish", "giantess", "giantism", "giardias", "gibbered", "gibbeted", "gibbsite", "gibingly", "giddiest", "giddying", "giftable", "giftedly", "giftless", "giftware", "giftwrap", "gigabits", "gigabyte", "gigaflop", "gigantic", "gigatons", "gigawatt", "gigglers", "gigglier", "giggling", "gilberts", "gildhall", "gildings", "gillnets", "gillying", "gilthead", "gimbaled", "gimcrack", "gimleted", "gimmicks", "gimmicky", "gimpiest", "gingalls", "gingeley", "gingelis", "gingelli", "gingelly", "gingered", "gingerly", "ginghams", "gingilis", "gingilli", "gingivae", "gingival", "gingkoes", "ginkgoes", "ginniest", "ginnings", "ginsengs", "gipsying", "giraffes", "girasole", "girasols", "girdlers", "girdling", "girlhood", "girliest", "girolles", "girosols", "girthing", "gisarmes", "gitterns", "giveable", "giveaway", "giveback", "gizzards", "gjetosts", "glabella", "glabrate", "glabrous", "glaceing", "glaciate", "glaciers", "glacises", "gladdens", "gladdest", "gladding", "gladiate", "gladiest", "gladiola", "gladioli", "gladlier", "gladness", "gladsome", "glairier", "glairing", "glamours", "glancers", "glancing", "glanders", "glandule", "glariest", "glasnost", "glassful", "glassier", "glassies", "glassily", "glassine", "glassing", "glassman", "glassmen", "glaucoma", "glaucous", "glaziers", "glaziery", "glaziest", "glazings", "gleamers", "gleamier", "gleaming", "gleaners", "gleaning", "gleeking", "gleesome", "gleetier", "gleeting", "glegness", "glenlike", "gleyings", "gliadine", "gliadins", "glibbest", "glibness", "glimmers", "glimpsed", "glimpser", "glimpses", "glintier", "glinting", "gliomata", "glissade", "glistens", "glisters", "glitches", "glitters", "glittery", "glitzier", "glitzing", "gloaming", "gloaters", "gloating", "globally", "globated", "globbier", "globoids", "globular", "globules", "globulin", "glochids", "glomming", "glonoins", "gloomful", "gloomier", "gloomily", "glooming", "gloppier", "glopping", "gloriole", "glorious", "glorying", "glossary", "glosseme", "glossers", "glossier", "glossies", "glossily", "glossina", "glossing", "glouting", "glowered", "glowworm", "gloxinia", "glucagon", "glucinic", "glucinum", "glucoses", "glucosic", "gluelike", "gluepots", "glugging", "gluhwein", "gluiness", "glummest", "glumness", "glumpier", "glumpily", "glunched", "glunches", "glutelin", "glutenin", "glutting", "gluttons", "gluttony", "glyceric", "glycerin", "glycerol", "glyceryl", "glycines", "glycogen", "glycolic", "glyconic", "glycosyl", "glyptics", "gnarlier", "gnarling", "gnarring", "gnashing", "gnathion", "gnathite", "gnatlike", "gnattier", "gnawable", "gnawings", "gneisses", "gneissic", "gnomical", "gnomists", "gnomonic", "gnostics", "goadlike", "goalless", "goalpost", "goalward", "goatfish", "goatherd", "goatlike", "goatskin", "gobblers", "gobbling", "gobioids", "gobshite", "godchild", "goddamns", "godetias", "godheads", "godhoods", "godliest", "godlings", "godroons", "godsends", "godships", "goethite", "goffered", "gogglers", "gogglier", "goggling", "goitrous", "golconda", "goldarns", "goldbugs", "goldener", "goldenly", "goldeyes", "goldfish", "goldtone", "goldurns", "golfings", "golgotha", "goliards", "goliaths", "golliwog", "gollywog", "goloshes", "gombeens", "gombroon", "gomerals", "gomerels", "gomerils", "gonadial", "gondolas", "goneness", "gonfalon", "gonfanon", "gonglike", "gonidial", "gonidium", "gonocyte", "gonopore", "goodbyes", "goodlier", "goodness", "goodwife", "goodwill", "goofball", "goofiest", "googlies", "goombahs", "goombays", "gooniest", "goopiest", "goosiest", "gorbelly", "gorblimy", "gorcocks", "gorditas", "gorgedly", "gorgeous", "gorgerin", "gorgeted", "gorillas", "goriness", "gormands", "gormless", "gorsiest", "goshawks", "goslings", "gospeler", "gospelly", "gosports", "gossamer", "gossiped", "gossiper", "gossipry", "gossoons", "gossypol", "gothites", "gouaches", "gouramis", "gourmand", "gourmets", "goutiest", "governed", "governor", "gownsman", "gownsmen", "grabbers", "grabbier", "grabbing", "grabbled", "grabbler", "grabbles", "graceful", "graciles", "gracilis", "gracioso", "gracious", "grackles", "gradable", "gradated", "gradates", "gradient", "gradines", "graduals", "graduand", "graduate", "graduses", "graecize", "graffiti", "graffito", "graftage", "grafters", "grafting", "grainers", "grainier", "graining", "gramarye", "gramercy", "grammars", "grandads", "grandame", "grandams", "granddad", "granddam", "grandees", "grandest", "grandeur", "grandkid", "grandmas", "grandpas", "grandsir", "grandson", "grangers", "granitas", "granites", "granitic", "grannies", "granolas", "grantees", "granters", "granting", "grantors", "granular", "granules", "grapheme", "graphics", "graphing", "graphite", "grapiest", "grapline", "graplins", "grapnels", "grappled", "grappler", "grapples", "graspers", "grasping", "grassier", "grassily", "grassing", "grateful", "gratinee", "gratings", "gratuity", "graupels", "gravamen", "graveled", "gravelly", "gravidae", "gravidas", "gravidly", "gravitas", "graviton", "gravlaks", "gravures", "grayback", "grayfish", "graylags", "grayling", "graymail", "grayness", "grayouts", "grazable", "graziers", "grazings", "grazioso", "greasers", "greasier", "greasily", "greasing", "greatens", "greatest", "grecized", "grecizes", "greedier", "greedily", "greegree", "greenbug", "greenery", "greenest", "greenfly", "greenier", "greenies", "greening", "greenish", "greenlet", "greenlit", "greenths", "greenway", "greeters", "greeting", "greisens", "gremials", "gremlins", "gremmies", "grenades", "grewsome", "greyhens", "greylags", "greyness", "gribbles", "gridders", "griddled", "griddles", "gridiron", "gridlock", "grievant", "grievers", "grieving", "grievous", "griffins", "griffons", "grifters", "grifting", "grillade", "grillage", "grillers", "grillery", "grilling", "grimaced", "grimacer", "grimaces", "grimiest", "grimmest", "grimness", "grinches", "grinders", "grindery", "grinding", "grinners", "grinning", "gripiest", "grippers", "grippier", "gripping", "gripsack", "griseous", "grisette", "griskins", "grislier", "gristers", "gristles", "gritters", "grittier", "grittily", "gritting", "grizzled", "grizzler", "grizzles", "groaners", "groaning", "grodiest", "groggery", "groggier", "groggily", "grograms", "grogshop", "groining", "grokking", "grommets", "gromwell", "groomers", "grooming", "groovers", "groovier", "grooving", "grosbeak", "groschen", "grossers", "grossest", "grossing", "grottier", "grottoed", "grottoes", "grouched", "grouches", "grounded", "grounder", "groupers", "groupies", "grouping", "groupoid", "grousers", "grousing", "grouters", "groutier", "grouting", "groveled", "groveler", "growable", "growlers", "growlier", "growling", "grownups", "grubbers", "grubbier", "grubbily", "grubbing", "grubworm", "grudgers", "grudging", "gruelers", "grueling", "gruelled", "grueller", "gruesome", "gruffest", "gruffier", "gruffily", "gruffing", "gruffish", "gruiform", "grumbled", "grumbler", "grumbles", "grummest", "grummets", "grumphie", "grumpier", "grumpily", "grumping", "grumpish", "grungers", "grungier", "grunions", "grunters", "grunting", "gruntled", "gruntles", "grutched", "grutches", "gruyeres", "gryphons", "guacharo", "guaiacol", "guaiacum", "guaiocum", "guanacos", "guanases", "guanidin", "guanines", "guaranas", "guaranis", "guaranty", "guardant", "guarddog", "guarders", "guardian", "guarding", "guayules", "gudgeons", "guerdons", "gueridon", "guerilla", "guernsey", "guessers", "guessing", "guesting", "guffawed", "guggling", "guidable", "guidance", "guideway", "guilders", "guileful", "guiltier", "guiltily", "guipures", "guisards", "guitguit", "gulfiest", "gulflike", "gulfweed", "gullable", "gullably", "gullible", "gullibly", "gullwing", "gullying", "gulosity", "gulpiest", "gumballs", "gumboils", "gumboots", "gumbotil", "gumdrops", "gumlines", "gummiest", "gummites", "gummoses", "gummosis", "gumption", "gumshoed", "gumshoes", "gumtrees", "gumweeds", "gumwoods", "gunboats", "gunfight", "gunfires", "gunflint", "gunkhole", "gunkiest", "gunlocks", "gunmetal", "gunnings", "gunnybag", "gunpaper", "gunplays", "gunpoint", "gunrooms", "gunships", "gunshots", "gunsmith", "gunstock", "gunwales", "gurglets", "gurgling", "gurnards", "guruship", "gushiest", "gusseted", "gussying", "gustable", "gustiest", "gustless", "gutsiest", "guttated", "guttered", "guttiest", "guttlers", "guttling", "guttural", "guylines", "guzzlers", "guzzling", "gweducks", "gymkhana", "gymnasia", "gymnasts", "gynaecea", "gynaecia", "gynandry", "gynarchy", "gynecium", "gynecoid", "gyniatry", "gynoecia", "gyplures", "gypseian", "gypseous", "gypsters", "gypsydom", "gypsying", "gypsyish", "gypsyism", "gyrating", "gyration", "gyrators", "gyratory", "gyroidal", "gyrostat", "habanera", "habanero", "habdalah", "habitans", "habitant", "habitats", "habiting", "habitual", "habitude", "habitues", "hachured", "hachures", "hacienda", "hackable", "hackbuts", "hacklers", "hacklier", "hackling", "hackneys", "hacksawn", "hacksaws", "hackwork", "haddocks", "hadronic", "haematal", "haematic", "haematin", "haeredes", "hafniums", "haftarah", "haftaras", "haftarot", "haftorah", "haftoros", "haftorot", "hagadist", "hagberry", "haggadah", "haggadas", "haggadic", "haggadot", "haggards", "haggises", "hagglers", "haggling", "hagrider", "hagrides", "hahniums", "hairball", "hairband", "haircaps", "haircuts", "hairiest", "hairless", "hairlike", "hairline", "hairlock", "hairnets", "hairpins", "hairwork", "hairworm", "halachas", "halachic", "halachot", "halakahs", "halakhah", "halakhas", "halakhic", "halakhot", "halakist", "halakoth", "halalahs", "halation", "halavahs", "halazone", "halberds", "halberts", "halcyons", "haleness", "halfback", "halfbeak", "halflife", "halfness", "halfpipe", "halftime", "halftone", "halibuts", "halidome", "halidoms", "halliard", "hallmark", "halloaed", "halloing", "hallooed", "hallowed", "hallower", "hallucal", "halluces", "hallways", "halogens", "halolike", "haltered", "halteres", "haltless", "halutzim", "halyards", "hamartia", "hamboned", "hambones", "hamburgs", "hammadas", "hammered", "hammerer", "hammiest", "hammocks", "hampered", "hamperer", "hamsters", "hamulate", "hamulose", "hamulous", "hanapers", "handaxes", "handbags", "handball", "handbell", "handbill", "handbook", "handcars", "handcart", "handclap", "handcuff", "handfast", "handfuls", "handgrip", "handguns", "handheld", "handhold", "handicap", "handiest", "handlers", "handless", "handlike", "handling", "handlist", "handloom", "handmade", "handmaid", "handoffs", "handouts", "handover", "handpick", "handrail", "handsaws", "handsels", "handsets", "handsewn", "handsful", "handsome", "handwork", "handwrit", "handyman", "handymen", "hangable", "hangared", "hangbird", "hangdogs", "hangfire", "hangings", "hangnail", "hangnest", "hangouts", "hangover", "hangtags", "hankered", "hankerer", "hanseled", "hanumans", "haphtara", "hapkidos", "haplites", "haploids", "haploidy", "haplonts", "haplopia", "haploses", "haplosis", "happened", "happiest", "haptenes", "haptenic", "haptical", "harangue", "harassed", "harasser", "harasses", "harbored", "harborer", "harbours", "hardback", "hardball", "hardboot", "hardcase", "hardcore", "hardedge", "hardened", "hardener", "hardhack", "hardhats", "hardhead", "hardiest", "hardline", "hardness", "hardnose", "hardpack", "hardpans", "hardship", "hardtack", "hardtops", "hardware", "hardwire", "hardwood", "harebell", "harelike", "harelips", "harianas", "haricots", "harijans", "harissas", "harkened", "harkener", "harlotry", "harmines", "harmless", "harmonic", "harpings", "harpists", "harpoons", "harridan", "harriers", "harrowed", "harrower", "harrumph", "harrying", "harshens", "harshest", "harslets", "harumphs", "haruspex", "harvests", "hasheesh", "hashhead", "hassiums", "hassling", "hassocks", "hasteful", "hastened", "hastener", "hastiest", "hatbands", "hatboxes", "hatcheck", "hatchels", "hatchers", "hatchery", "hatchets", "hatching", "hatchway", "hateable", "hatmaker", "hatracks", "hatteria", "hauberks", "haulages", "hauliers", "haulmier", "haulyard", "haunched", "haunches", "haunters", "haunting", "hausfrau", "hautbois", "hautboys", "hauteurs", "havartis", "havdalah", "havelock", "havening", "haverels", "havering", "haviours", "havocked", "havocker", "hawfinch", "hawkbill", "hawkeyed", "hawkings", "hawklike", "hawkmoth", "hawknose", "hawkshaw", "hawkweed", "hawthorn", "haycocks", "hayfield", "hayforks", "haylages", "haylofts", "haymaker", "hayracks", "hayricks", "hayrides", "hayseeds", "haystack", "haywards", "haywires", "hazarded", "hazarder", "hazelhen", "hazelnut", "haziness", "hazzanim", "headache", "headachy", "headband", "headends", "headfish", "headfuls", "headgate", "headgear", "headhunt", "headiest", "headings", "headlamp", "headland", "headless", "headline", "headlock", "headlong", "headmost", "headnote", "headpins", "headrace", "headrest", "headroom", "headsail", "headsets", "headship", "headsman", "headsmen", "headstay", "headways", "headwind", "headword", "headwork", "healable", "hearable", "hearings", "hearkens", "hearsays", "hearsing", "heartens", "heartier", "hearties", "heartily", "hearting", "heatable", "heatedly", "heathens", "heathers", "heathery", "heathier", "heatless", "heavenly", "heaviest", "heavyset", "hebdomad", "hebetate", "hebetude", "hebraize", "hecatomb", "hecklers", "heckling", "hectares", "hectical", "hecticly", "hectored", "hedgehog", "hedgehop", "hedgepig", "hedgerow", "hedgiest", "hedonics", "hedonism", "hedonist", "heedless", "heehawed", "heelball", "heelings", "heelless", "heelpost", "heeltaps", "heftiest", "hegemons", "hegemony", "hegumene", "hegumens", "hegumeny", "heighten", "heighths", "heirdoms", "heirless", "heirloom", "heirship", "heisters", "heisting", "hektares", "heliacal", "heliasts", "helicity", "helicoid", "helicons", "helicopt", "helilift", "helipads", "heliport", "helistop", "hellbent", "hellcats", "helleris", "hellfire", "hellhole", "hellions", "hellkite", "helloing", "helmeted", "helminth", "helmless", "helmsman", "helmsmen", "helotage", "helotism", "helpable", "helpings", "helpless", "helpmate", "helpmeet", "hemagogs", "hematein", "hematics", "hematine", "hematins", "hematite", "hematoid", "hematoma", "hemiolas", "hemiolia", "hemipter", "hemlines", "hemlocks", "hemocoel", "hemocyte", "hemolyze", "hemostat", "hempiest", "hemplike", "hempseed", "hempweed", "henbanes", "henchman", "henchmen", "hencoops", "henequen", "henequin", "henhouse", "heniquen", "hennaing", "henpecks", "heparins", "hepatica", "hepatics", "hepatize", "hepatoma", "heptagon", "heptanes", "heptarch", "heptoses", "heralded", "heraldic", "heraldry", "herbaged", "herbages", "herbaria", "herbiest", "herbless", "herblike", "hercules", "herdlike", "herdsman", "herdsmen", "hereaway", "heredity", "hereinto", "heresies", "heretics", "heretrix", "hereunto", "hereupon", "herewith", "heritage", "heritors", "heritrix", "hermaean", "hermetic", "hermitic", "hermitry", "herniate", "heroical", "heroines", "heroisms", "heroized", "heroizes", "herpetic", "herrings", "herrying", "herstory", "hesitant", "hesitate", "hessians", "hessites", "hetaerae", "hetaeras", "hetaeric", "hetairai", "hetairas", "hexagons", "hexagram", "hexamine", "hexaplar", "hexaplas", "hexapods", "hexapody", "hexarchy", "hexereis", "hexosans", "hiatuses", "hibachis", "hibernal", "hibiscus", "hiccough", "hiccuped", "hidalgos", "hiddenly", "hideaway", "hideless", "hideouts", "hidroses", "hidrosis", "hidrotic", "hierarch", "hieratic", "hierurgy", "higglers", "higgling", "highball", "highborn", "highboys", "highbred", "highbrow", "highbush", "highjack", "highland", "highlife", "highness", "highrise", "highroad", "highspot", "hightail", "highting", "hightops", "highways", "hijacked", "hijacker", "hilarity", "hildings", "hilliest", "hilloaed", "hillocks", "hillocky", "hilloing", "hillside", "hilltops", "hiltless", "himation", "hindered", "hinderer", "hindguts", "hindmost", "hinkiest", "hinnying", "hipbones", "hiplines", "hipparch", "hippiest", "hipsters", "hiragana", "hireable", "hireling", "hirpling", "hirseled", "hirsling", "hirudins", "hissiest", "hissings", "histamin", "histidin", "histogen", "histones", "historic", "hitchers", "hitching", "hitherto", "hittable", "hiveless", "hizzoner", "hoactzin", "hoarders", "hoarding", "hoariest", "hoarsely", "hoarsens", "hoarsest", "hoatzins", "hobblers", "hobbling", "hobbyist", "hobnails", "hoboisms", "hockshop", "hocusing", "hocussed", "hocusses", "hoecakes", "hoedowns", "hogbacks", "hogmanay", "hogmanes", "hogmenay", "hognoses", "hogshead", "hogtying", "hogweeds", "hoicking", "hoidened", "hoisters", "hoisting", "hokiness", "hokypoky", "holdable", "holdalls", "holdback", "holddown", "holdfast", "holdings", "holdouts", "holdover", "holeless", "holibuts", "holidays", "holiness", "holistic", "hollaing", "hollands", "hollered", "holloaed", "holloing", "hollooed", "hollowed", "hollower", "hollowly", "holmiums", "holocene", "hologamy", "hologram", "hologyny", "holotype", "holozoic", "holstein", "holsters", "holydays", "holytide", "homagers", "homaging", "homburgs", "homebody", "homeboys", "homebred", "homebrew", "homegirl", "homeland", "homeless", "homelier", "homelike", "homemade", "homeobox", "homeotic", "homepage", "homeport", "homering", "homeroom", "homesick", "homesite", "homespun", "homestay", "hometown", "homeward", "homework", "homicide", "homilies", "homilist", "hominess", "hominian", "hominids", "hominies", "hominine", "hominize", "hominoid", "hommocks", "hommoses", "homogamy", "homogeny", "homogony", "homologs", "homology", "homonyms", "homonymy", "honchoed", "hondling", "honester", "honestly", "honewort", "honeybee", "honeybun", "honeydew", "honeyful", "honeying", "honeypot", "hongiing", "honorand", "honorary", "honorees", "honorers", "honoring", "honoured", "honourer", "hoochies", "hoodiest", "hoodless", "hoodlike", "hoodlums", "hoodmold", "hoodooed", "hoodwink", "hoofbeat", "hoofless", "hooflike", "hookiest", "hookless", "hooklets", "hooklike", "hooknose", "hookworm", "hooligan", "hoopless", "hooplike", "hoopster", "hoorahed", "hoorayed", "hoosegow", "hoosgows", "hootches", "hootiest", "hoovered", "hopefuls", "hopeless", "hopheads", "hopingly", "hoplites", "hoplitic", "hoppiest", "hoppings", "hoppling", "hopsacks", "hoptoads", "hordeins", "hordeola", "horizons", "hormonal", "hormones", "hormonic", "hornbeam", "hornbill", "hornbook", "hornfels", "horniest", "hornings", "hornists", "hornitos", "hornless", "hornlike", "hornpipe", "hornpout", "horntail", "hornworm", "hornwort", "horologe", "horology", "horrible", "horribly", "horrider", "horridly", "horrific", "horsecar", "horsefly", "horseman", "horsemen", "horsepox", "horsiest", "hosannah", "hosannas", "hoselike", "hosepipe", "hoseying", "hospices", "hospital", "hospitia", "hospodar", "hostages", "hosteled", "hosteler", "hostelry", "hostiles", "hostlers", "hotblood", "hotboxes", "hotcakes", "hotching", "hotchpot", "hoteldom", "hotelier", "hotelman", "hotelmen", "hotfoots", "hotheads", "hothouse", "hotlines", "hotlinks", "hotpress", "hotshots", "hotspots", "hotspurs", "hounders", "hounding", "hourlies", "hourlong", "houseboy", "housefly", "houseful", "houseled", "houseman", "housemen", "housesat", "housesit", "housetop", "housings", "hoveling", "hovelled", "hoverers", "hoverfly", "hovering", "howdying", "howitzer", "hoydened", "hryvnias", "huarache", "huaracho", "hubrises", "huckster", "huddlers", "huddling", "huffiest", "hugeness", "huggable", "huipiles", "huisache", "hulkiest", "hulloaed", "hulloing", "hullooed", "humanely", "humanest", "humanise", "humanism", "humanist", "humanity", "humanize", "humanoid", "humblers", "humblest", "humbling", "humdrums", "humerals", "humidify", "humidity", "humidors", "humified", "humility", "humiture", "hummable", "hummocks", "hummocky", "hummuses", "humorful", "humoring", "humorist", "humorous", "humoured", "humpback", "humphing", "humpiest", "humpless", "hunching", "hundreds", "hungered", "hungover", "hungrier", "hungrily", "hunkered", "hunkiest", "huntable", "huntedly", "huntings", "huntress", "huntsman", "huntsmen", "hurdlers", "hurdling", "hurlings", "hurrahed", "hurrayed", "hurriers", "hurrying", "hurtless", "hurtling", "husbands", "hushedly", "huskiest", "huskings", "husklike", "hustings", "hustlers", "hustling", "huswifes", "huswives", "hutching", "hutments", "hutzpahs", "huzzahed", "huzzaing", "hyacinth", "hyalines", "hyalites", "hyalogen", "hyaloids", "hybrises", "hydatids", "hydracid", "hydragog", "hydranth", "hydrants", "hydrases", "hydrated", "hydrates", "hydrator", "hydrides", "hydrilla", "hydrogel", "hydrogen", "hydroids", "hydromel", "hydronic", "hydropic", "hydropsy", "hydroski", "hydrosol", "hydroxyl", "hygeists", "hygieist", "hygienes", "hygienic", "hylozoic", "hymeneal", "hymenial", "hymenium", "hymnbook", "hymnists", "hymnless", "hymnlike", "hyoidean", "hyoscine", "hypergol", "hyperons", "hyperope", "hyphemia", "hyphened", "hyphenic", "hypnoses", "hypnosis", "hypnotic", "hypoacid", "hypoderm", "hypogeal", "hypogean", "hypogene", "hypogeum", "hypogyny", "hyponeas", "hyponoia", "hyponyms", "hyponymy", "hypopnea", "hypopyon", "hypothec", "hypoxias", "hyracoid", "hysteria", "hysteric", "iambuses", "iatrical", "ibogaine", "icebergs", "iceblink", "iceboats", "icebound", "iceboxes", "icefalls", "icehouse", "icekhana", "icemaker", "ichnites", "ichorous", "ichthyic", "ickiness", "iconical", "icterics", "idealess", "idealise", "idealism", "idealist", "ideality", "idealize", "idealogy", "ideating", "ideation", "ideative", "identify", "identity", "ideogram", "ideology", "idiocies", "idiolect", "idiotism", "idiotype", "idleness", "idlesses", "idocrase", "idolater", "idolator", "idolatry", "idolised", "idoliser", "idolises", "idolisms", "idolized", "idolizer", "idolizes", "idoneity", "idoneous", "idylists", "idyllist", "iffiness", "ignatias", "ignified", "ignifies", "igniters", "igniting", "ignition", "ignitors", "ignitron", "ignominy", "ignorami", "ignorant", "ignorers", "ignoring", "iguanian", "iguanids", "ikebanas", "illation", "illative", "illegals", "illinium", "illiquid", "illogics", "illuding", "illumine", "illuming", "illusion", "illusive", "illusory", "illuvial", "illuvium", "ilmenite", "imaginal", "imagined", "imaginer", "imagines", "imagings", "imagisms", "imagists", "imamates", "imbalmed", "imbalmer", "imbarked", "imbecile", "imbedded", "imbibers", "imbibing", "imbitter", "imblazed", "imblazes", "imbodied", "imbodies", "imbolden", "imbosoms", "imbowers", "imbrowns", "imbruing", "imbruted", "imbrutes", "imitable", "imitated", "imitates", "imitator", "immanent", "immature", "immenser", "immerged", "immerges", "immersed", "immerses", "immeshed", "immeshes", "imminent", "immingle", "immixing", "immobile", "immodest", "immolate", "immortal", "immotile", "immunise", "immunity", "immunize", "immuring", "impacted", "impacter", "impactor", "impaints", "impaired", "impairer", "impalers", "impaling", "impanels", "imparity", "imparked", "imparted", "imparter", "impasses", "impasted", "impastes", "impastos", "impawned", "impearls", "impeders", "impeding", "impelled", "impeller", "impellor", "impended", "imperial", "imperils", "imperium", "impetigo", "impinged", "impinger", "impinges", "impishly", "implants", "impleads", "impledge", "implicit", "imploded", "implodes", "implored", "implorer", "implores", "implying", "impolicy", "impolite", "imponing", "imporous", "imported", "importer", "imposers", "imposing", "imposted", "imposter", "impostor", "impotent", "impounds", "impowers", "impregns", "impresas", "impreses", "imprests", "imprimis", "imprints", "imprison", "improper", "improved", "improver", "improves", "impudent", "impugned", "impugner", "impulsed", "impulses", "impunity", "impurely", "impurest", "impurity", "imputers", "imputing", "inaction", "inactive", "inarable", "inarched", "inarches", "inarming", "inbeings", "inboards", "inbounds", "inbreeds", "inbursts", "incaging", "incanted", "incasing", "incensed", "incenses", "incented", "incenter", "incepted", "inceptor", "inchmeal", "inchoate", "inchworm", "incident", "incipits", "incising", "incision", "incisive", "incisors", "incisory", "incisure", "incitant", "inciters", "inciting", "inclasps", "inclined", "incliner", "inclines", "inclosed", "incloser", "incloses", "included", "includes", "incomers", "incoming", "inconnus", "incorpse", "increase", "increate", "incrusts", "incubate", "incudate", "incumber", "incurred", "incurved", "incurves", "incusing", "indagate", "indamine", "indamins", "indebted", "indecent", "indented", "indenter", "indentor", "indevout", "indexers", "indexing", "indicans", "indicant", "indicate", "indicias", "indicium", "indicted", "indictee", "indicter", "indictor", "indigene", "indigens", "indigent", "indignly", "indigoes", "indigoid", "indirect", "inditers", "inditing", "indocile", "indolent", "indorsed", "indorsee", "indorser", "indorses", "indorsor", "indowing", "indoxyls", "indrafts", "inducers", "inducing", "inducted", "inductee", "inductor", "indulged", "indulger", "indulges", "induline", "indulins", "indurate", "indusial", "indusium", "industry", "indwells", "inearths", "inedible", "inedibly", "inedited", "inequity", "inerrant", "inertiae", "inertial", "inertias", "inexpert", "infamies", "infamous", "infantas", "infantes", "infantry", "infarcts", "infaunae", "infaunal", "infaunas", "infected", "infecter", "infector", "infecund", "infeoffs", "inferior", "infernal", "infernos", "inferred", "inferrer", "infested", "infester", "infidels", "infields", "infights", "infinite", "infinity", "infirmed", "infirmly", "infixing", "infixion", "inflamed", "inflamer", "inflames", "inflated", "inflater", "inflates", "inflator", "inflects", "inflexed", "inflicts", "inflight", "influent", "influxes", "infobahn", "infolded", "infolder", "informal", "informed", "informer", "infought", "infracts", "infrared", "infringe", "infrugal", "infusers", "infusing", "infusion", "infusive", "ingather", "ingenues", "ingested", "ingoting", "ingrafts", "ingrains", "ingrates", "inground", "ingroups", "ingrowth", "inguinal", "ingulfed", "inhabits", "inhalant", "inhalers", "inhaling", "inhauler", "inherent", "inhering", "inherits", "inhesion", "inhibins", "inhibits", "inholder", "inhumane", "inhumers", "inhuming", "inimical", "iniquity", "initials", "initiate", "injected", "injector", "injurers", "injuries", "injuring", "inkberry", "inkblots", "inkhorns", "inkiness", "inklings", "inkstand", "inkstone", "inkwells", "inkwoods", "inlacing", "inlander", "inlayers", "inlaying", "inmeshed", "inmeshes", "innately", "innerved", "innerves", "innocent", "innovate", "innuendo", "inoculum", "inosines", "inosites", "inositol", "inpoured", "inputted", "inputter", "inquests", "inquiets", "inquired", "inquirer", "inquires", "inrushes", "insanely", "insanest", "insanity", "inscapes", "inscribe", "inscroll", "insculps", "insectan", "insecure", "inserted", "inserter", "insetted", "insetter", "insheath", "inshrine", "insiders", "insights", "insignia", "insisted", "insister", "insnared", "insnarer", "insnares", "insolate", "insolent", "insomnia", "insomuch", "insouled", "inspects", "insphere", "inspired", "inspirer", "inspires", "inspirit", "instable", "installs", "instance", "instancy", "instants", "instated", "instates", "instills", "instinct", "instroke", "instruct", "insulant", "insulars", "insulate", "insulins", "insulted", "insulter", "insurant", "insureds", "insurers", "insuring", "inswathe", "intactly", "intaglio", "intarsia", "integers", "integral", "intended", "intender", "intenser", "intently", "interact", "interage", "interbed", "intercom", "intercut", "interest", "interims", "interior", "interlap", "interlay", "intermat", "intermit", "intermix", "internal", "interned", "internee", "internes", "interred", "interrex", "interrow", "intersex", "intertie", "interval", "interwar", "inthrall", "inthrals", "inthrone", "intifada", "intimacy", "intimate", "intimist", "intitled", "intitles", "intitule", "intombed", "intonate", "intoners", "intoning", "intorted", "intraday", "intrados", "intranet", "intrants", "intreats", "intrench", "intrepid", "intrigue", "introits", "intromit", "introrse", "intruded", "intruder", "intrudes", "intrusts", "intubate", "intuited", "inturned", "intwined", "intwines", "intwists", "inulases", "inundant", "inundate", "inurbane", "inurning", "invaders", "invading", "invalids", "invasion", "invasive", "invected", "inveighs", "inveigle", "invented", "inventer", "inventor", "inverity", "inversed", "inverses", "inverted", "inverter", "invertin", "invertor", "invested", "investor", "inviable", "inviably", "invirile", "inviscid", "invitees", "inviters", "inviting", "invocate", "invoiced", "invoices", "invokers", "invoking", "involute", "involved", "involver", "involves", "inwalled", "inwardly", "inweaved", "inweaves", "iodating", "iodation", "iodinate", "iodising", "iodizers", "iodizing", "iodoform", "iodophor", "iodopsin", "ionicity", "ionising", "ionizers", "ionizing", "ionogens", "ionomers", "iotacism", "ipomoeas", "irefully", "irenical", "iridiums", "iritises", "ironbark", "ironclad", "ironical", "ironings", "ironists", "ironized", "ironizes", "ironlike", "ironness", "ironside", "ironware", "ironweed", "ironwood", "ironwork", "irrigate", "irritant", "irritate", "irrupted", "isagoges", "isagogic", "isarithm", "isatines", "isatinic", "ischemia", "ischemic", "islanded", "islander", "isleless", "isobares", "isobaric", "isobaths", "isobutyl", "isocheim", "isochime", "isochore", "isochors", "isochron", "isocline", "isocracy", "isoforms", "isogenic", "isogloss", "isogonal", "isogones", "isogonic", "isograft", "isograms", "isograph", "isogrivs", "isohyets", "isolable", "isolated", "isolates", "isolator", "isoleads", "isolines", "isologue", "isomeric", "isometry", "isomorph", "isonomic", "isopachs", "isophote", "isopleth", "isopodan", "isoprene", "isospins", "isospory", "isostacy", "isostasy", "isotachs", "isothere", "isotherm", "isotones", "isotonic", "isotopes", "isotopic", "isotropy", "isotypes", "isotypic", "isozymes", "isozymic", "issuable", "issuably", "issuance", "isthmian", "isthmoid", "itchiest", "itchings", "itemised", "itemises", "itemized", "itemizer", "itemizes", "iterance", "iterated", "iterates", "jabbered", "jabberer", "jacamars", "jacinthe", "jacinths", "jackaroo", "jackboot", "jackdaws", "jackeroo", "jacketed", "jackfish", "jacklegs", "jackpots", "jackroll", "jackstay", "jacobins", "jaconets", "jacquard", "jaculate", "jacuzzis", "jadeites", "jadelike", "jadishly", "jaggeder", "jaggedly", "jagghery", "jaggiest", "jailable", "jailbait", "jailbird", "jalapeno", "jalapins", "jalopies", "jalousie", "jambeaux", "jamboree", "jammable", "jammiest", "janglers", "janglier", "jangling", "janiform", "janisary", "janitors", "janizary", "japanize", "japanned", "japanner", "japeries", "japingly", "japonica", "jargoned", "jargonel", "jargoons", "jarheads", "jarldoms", "jarosite", "jarovize", "jasmines", "jauncing", "jaundice", "jauntier", "jauntily", "jaunting", "javelina", "javelins", "jawboned", "jawboner", "jawbones", "jawlines", "jaybirds", "jaywalks", "jazziest", "jazzlike", "jealousy", "jeepneys", "jejunely", "jejunity", "jellabas", "jellying", "jelutong", "jemadars", "jemidars", "jemmying", "jeopards", "jeopardy", "jeremiad", "jerkiest", "jeroboam", "jerreeds", "jerrican", "jerrycan", "jerseyed", "jestings", "jesuitic", "jesuitry", "jetbeads", "jetfoils", "jetliner", "jetports", "jettiest", "jettison", "jettying", "jewelers", "jeweling", "jewelled", "jeweller", "jezebels", "jibbooms", "jibingly", "jigaboos", "jiggered", "jiggiest", "jigglier", "jiggling", "jigsawed", "jillions", "jimmying", "jingalls", "jingkoes", "jinglers", "jinglier", "jingling", "jingoish", "jingoism", "jingoist", "jipijapa", "jittered", "jiujitsu", "jiujutsu", "jobnames", "jockette", "jockeyed", "jocosely", "jocosity", "jocundly", "jodhpurs", "joggings", "jogglers", "joggling", "johannes", "johnboat", "johnnies", "johnsons", "joinable", "joinders", "joinings", "jointers", "jointing", "jointure", "joisting", "jokester", "jokiness", "jokingly", "jolliers", "jolliest", "jollying", "joltiest", "jonesing", "jongleur", "jonquils", "jostlers", "jostling", "jottings", "jouncier", "jouncing", "journals", "journeys", "jousters", "jousting", "jovially", "jovialty", "jowliest", "joyances", "joyfully", "joyously", "joyrider", "joyrides", "joystick", "jubilant", "jubilate", "jubilees", "juddered", "judgment", "judicial", "judoists", "jugglers", "jugglery", "juggling", "jugheads", "jugulars", "jugulate", "juiciest", "jujitsus", "jujuisms", "jujuists", "jujutsus", "julienne", "jumblers", "jumbling", "jumbucks", "jumpable", "jumpiest", "jumpoffs", "jumpsuit", "junction", "juncture", "junglier", "junipers", "junketed", "junketer", "junkiest", "junkyard", "jurassic", "juratory", "juristic", "juryless", "jussives", "justices", "justling", "justness", "jutelike", "juttying", "juvenals", "juvenile", "kabalism", "kabalist", "kabbalah", "kabbalas", "kabeljou", "kachinas", "kaffiyah", "kaffiyeh", "kailyard", "kainites", "kaiserin", "kajeputs", "kakemono", "kakiemon", "kalamata", "kalewife", "kaleyard", "kalifate", "kalimbas", "kallidin", "kalyptra", "kamaaina", "kamacite", "kamikaze", "kampongs", "kamseens", "kangaroo", "kanteles", "kaoliang", "kaolines", "kaolinic", "karakuls", "karaokes", "karosses", "kartings", "karyotin", "kashered", "kashmirs", "kashruth", "kashruts", "katakana", "katchina", "katcinas", "kathodal", "kathodes", "kathodic", "katsuras", "katydids", "kavakava", "kavasses", "kayakers", "kayaking", "kazachki", "kazachok", "kazatski", "kazatsky", "kebbocks", "kebbucks", "keckling", "kedgeree", "keelages", "keelboat", "keelhale", "keelhaul", "keelless", "keelsons", "keenness", "keepable", "keepings", "keepsake", "keeshond", "keesters", "keffiyah", "keffiyeh", "kegelers", "keglings", "keiretsu", "keisters", "keitloas", "keloidal", "kenneled", "kennings", "kenotron", "kephalin", "keramics", "keratins", "keratoid", "keratoma", "keratose", "kerchief", "kermesse", "kermises", "kerneled", "kernelly", "kernites", "kerogens", "kerosene", "kerosine", "kerplunk", "kerygmas", "kestrels", "ketamine", "ketchups", "keyboard", "keycards", "keyholes", "keynoted", "keynoter", "keynotes", "keypunch", "keysters", "keystone", "keywords", "khaddars", "khalifas", "khamseen", "khamsins", "khanates", "khazenim", "khedival", "khedives", "khirkahs", "kibbling", "kibitzed", "kibitzer", "kibitzes", "kiboshed", "kiboshes", "kickable", "kickback", "kickball", "kickiest", "kickoffs", "kickshaw", "kidnaped", "kidnapee", "kidnaper", "kidskins", "kielbasa", "kielbasi", "kielbasy", "kiesters", "killable", "killdeer", "killdees", "killicks", "killings", "killjoys", "killocks", "kilobars", "kilobase", "kilobaud", "kilobits", "kilobyte", "kilogram", "kilomole", "kilorads", "kilotons", "kilovolt", "kilowatt", "kiltings", "kiltlike", "kimchees", "kimonoed", "kindlers", "kindless", "kindlier", "kindling", "kindness", "kindreds", "kinesics", "kinetics", "kinetins", "kinfolks", "kingbird", "kingbolt", "kingcups", "kingdoms", "kingfish", "kinghood", "kingless", "kinglets", "kinglier", "kinglike", "kingpins", "kingpost", "kingship", "kingside", "kingwood", "kinkajou", "kinkiest", "kinsfolk", "kinships", "kippered", "kipperer", "kipskins", "kirigami", "kirsches", "kismetic", "kissable", "kissably", "kistfuls", "kitchens", "kitelike", "kitharas", "kitlings", "kitsches", "kittened", "kittlest", "kittling", "klatches", "klaverns", "kleagles", "klephtic", "klezmers", "klisters", "klondike", "kludgier", "kludging", "klutzier", "klystron", "knackers", "knackery", "knacking", "knappers", "knapping", "knapsack", "knapweed", "kneaders", "kneading", "kneecaps", "kneehole", "kneelers", "kneeling", "kneepads", "kneepans", "kneesies", "kneesock", "knelling", "knessets", "knickers", "knighted", "knightly", "knitters", "knitting", "knitwear", "knobbier", "knoblike", "knockers", "knocking", "knockoff", "knockout", "knollers", "knolling", "knothole", "knotless", "knotlike", "knotters", "knottier", "knottily", "knotting", "knotweed", "knouting", "knowable", "knowings", "knubbier", "knuckled", "knuckler", "knuckles", "knurlier", "knurling", "kohlrabi", "kokanees", "kolbasis", "kolbassi", "kolhozes", "kolinski", "kolinsky", "kolkhosy", "kolkhozy", "kolkozes", "komatiks", "komondor", "kookiest", "kopiykas", "koshered", "kotowers", "kotowing", "koumises", "koumyses", "koupreys", "kowtowed", "kowtower", "kraaling", "kremlins", "kreplach", "kreplech", "kreutzer", "kreuzers", "krimmers", "krullers", "krumhorn", "krumkake", "kryolite", "kryolith", "kryptons", "kumisses", "kumquats", "kunzites", "kurtoses", "kurtosis", "kuvaszok", "kvelling", "kvetched", "kvetcher", "kvetches", "kyanised", "kyanises", "kyanites", "kyanized", "kyanizes", "kyboshed", "kyboshes", "kymogram", "kyphoses", "kyphosis", "kyphotic", "laagered", "labarums", "labdanum", "labelers", "labeling", "labelled", "labeller", "labellum", "labially", "labiated", "labiates", "lability", "laborers", "laboring", "laborite", "laboured", "labourer", "labrador", "labroids", "labrusca", "laburnum", "laceless", "lacelike", "lacerate", "lacertid", "lacewing", "lacewood", "lacework", "laciness", "lackaday", "lackered", "lackeyed", "laconism", "lacquers", "lacqueys", "lacrimal", "lacrosse", "lactases", "lactated", "lactates", "lacteals", "lacteous", "lactones", "lactonic", "lactoses", "lacunars", "lacunary", "lacunate", "lacunose", "ladanums", "laddered", "ladening", "ladhoods", "ladleful", "ladrones", "ladybird", "ladybugs", "ladyfish", "ladyhood", "ladykins", "ladylike", "ladylove", "ladypalm", "ladyship", "laetrile", "lagering", "laggards", "laggings", "lagnappe", "lagoonal", "laically", "laicised", "laicises", "laicisms", "laicized", "laicizes", "laitance", "lakebeds", "lakelike", "lakeport", "lakeside", "laliques", "lallands", "lallygag", "lamasery", "lambadas", "lambaste", "lambasts", "lambdoid", "lambency", "lamberts", "lambiest", "lambkill", "lambkins", "lamblike", "lambskin", "lamellae", "lamellar", "lamellas", "lameness", "lamented", "lamenter", "laminals", "laminary", "laminate", "laminins", "laminose", "laminous", "lamister", "lampases", "lampions", "lampoons", "lamppost", "lampreys", "lampyrid", "lamsters", "lancelet", "lanceted", "lanciers", "landfall", "landfill", "landform", "landgrab", "landings", "landlady", "landlers", "landless", "landline", "landlord", "landmark", "landmass", "landside", "landskip", "landslid", "landslip", "landsman", "landsmen", "landward", "laneways", "langlauf", "langleys", "langrage", "langrels", "langshan", "langsyne", "language", "languets", "languish", "languors", "laniards", "lanitals", "lankiest", "lankness", "lanneret", "lanoline", "lanolins", "lanosity", "lantanas", "lanterns", "lanthorn", "lanyards", "lapboard", "lapelled", "lapidary", "lapidate", "lapidify", "lapidist", "lapillus", "lappered", "lappeted", "lapsable", "lapsible", "lapwings", "larboard", "larcener", "lardiest", "lardlike", "lardoons", "largando", "largesse", "lariated", "larkiest", "larksome", "larkspur", "larrigan", "larrikin", "larruped", "larruper", "laryngal", "larynges", "larynxes", "lasagnas", "lasagnes", "lashings", "lashkars", "lassoers", "lassoing", "lastborn", "lastings", "latakias", "latchets", "latching", "latchkey", "lateener", "lateness", "latening", "latently", "laterals", "laterite", "laterize", "latewood", "lathered", "latherer", "lathiest", "lathings", "lathwork", "latigoes", "latillas", "latinity", "latinize", "latitude", "latosols", "latrines", "latterly", "latticed", "lattices", "laudable", "laudably", "laudanum", "laudator", "laughers", "laughing", "laughter", "launched", "launcher", "launches", "launders", "laureate", "laureled", "lauwines", "lavaboes", "lavalava", "lavalier", "lavalike", "lavashes", "lavation", "lavatory", "laveered", "lavender", "laverock", "lavished", "lavisher", "lavishes", "lavishly", "lavrocks", "lawbooks", "lawfully", "lawgiver", "lawmaker", "lawsuits", "lawyered", "lawyerly", "laxation", "laxative", "laxities", "layabout", "layaways", "layerage", "layering", "layettes", "layovers", "laywoman", "laywomen", "lazarets", "laziness", "lazulite", "lazurite", "leachate", "leachers", "leachier", "leaching", "leadened", "leadenly", "leadiest", "leadings", "leadless", "leadoffs", "leadsman", "leadsmen", "leadwork", "leadwort", "leafages", "leafiest", "leafless", "leaflets", "leaflike", "leafworm", "leaguers", "leaguing", "leakages", "leakiest", "leakless", "lealties", "leanings", "leanness", "leapfrog", "leariest", "learners", "learning", "leasable", "leashing", "leasings", "leathern", "leathers", "leathery", "leavened", "leaviest", "leavings", "lechayim", "lechered", "lecithin", "lecterns", "lections", "lectured", "lecturer", "lectures", "lecythis", "lecythus", "ledgiest", "leeboard", "leeching", "leeriest", "leewards", "leftisms", "leftists", "leftmost", "leftover", "leftward", "leftwing", "legacies", "legalese", "legalise", "legalism", "legalist", "legality", "legalize", "legatees", "legatine", "legating", "legation", "legators", "legendry", "legerity", "leggiero", "leggiest", "leggings", "leghorns", "legrooms", "legumins", "legworks", "lehayims", "leisters", "leisured", "leisures", "lekythoi", "lekythos", "lekythus", "lemmings", "lemnisci", "lemonade", "lemonish", "lempiras", "lemurine", "lemuroid", "lendable", "lengthen", "lenience", "leniency", "lenities", "leniting", "lenition", "lenitive", "lensless", "lentando", "lenticel", "lentisks", "lentoids", "leopards", "leotards", "lepidote", "leporids", "leporine", "leprotic", "leptonic", "lesbians", "lesioned", "lessened", "lessoned", "letching", "letdowns", "lethally", "lethargy", "lettered", "letterer", "lettuces", "leucemia", "leucemic", "leucines", "leucites", "leucitic", "leucomas", "leukemia", "leukemic", "leukomas", "leukoses", "leukosis", "leukotic", "levanted", "levanter", "levators", "leveeing", "levelers", "leveling", "levelled", "leveller", "leverage", "leverets", "levering", "leviable", "levigate", "levirate", "levitate", "levities", "levodopa", "levogyre", "levulins", "levulose", "lewdness", "lewisite", "lewisson", "lexicons", "liaising", "liaisons", "libation", "libeccio", "libelant", "libelees", "libelers", "libeling", "libelist", "libelled", "libellee", "libeller", "libelous", "liberals", "liberate", "librated", "librates", "libretti", "libretto", "licenced", "licencee", "licencer", "licences", "licensed", "licensee", "licenser", "licenses", "licensor", "lichened", "lichenin", "lichting", "lickings", "lickspit", "licorice", "liegeman", "liegemen", "lienable", "lientery", "lifeboat", "lifecare", "lifeless", "lifelike", "lifeline", "lifelong", "lifespan", "lifetime", "lifeways", "lifework", "liftable", "liftgate", "liftoffs", "ligament", "ligating", "ligation", "ligative", "ligature", "lightens", "lighters", "lightest", "lightful", "lighting", "lightish", "ligneous", "lignites", "lignitic", "ligroine", "ligroins", "ligulate", "liguloid", "likeable", "likelier", "likeness", "likening", "likewise", "lilliput", "lilylike", "limacine", "limacons", "limbecks", "limbered", "limberer", "limberly", "limbiest", "limbless", "limbuses", "limeades", "limekiln", "limeless", "limerick", "liminess", "limitary", "limiteds", "limiters", "limiting", "limnetic", "limonene", "limonite", "limpidly", "limpkins", "limpness", "limpsier", "limuloid", "linalols", "linalool", "linchpin", "lindanes", "lineable", "lineages", "lineally", "linearly", "lineated", "linebred", "linecuts", "lineless", "linelike", "linesman", "linesmen", "lingcods", "lingered", "lingerer", "lingerie", "lingiest", "linguals", "linguica", "linguine", "linguini", "linguisa", "linguist", "lingulae", "lingular", "liniment", "linkable", "linkages", "linkboys", "linksman", "linksmen", "linkwork", "linocuts", "linoleum", "linotype", "linsangs", "linseeds", "linstock", "lintiest", "lintless", "linurons", "lionfish", "lionised", "lioniser", "lionises", "lionized", "lionizer", "lionizes", "lionlike", "lipocyte", "lipoidal", "lipomata", "liposome", "lippened", "lippered", "lippiest", "lippings", "lipreads", "lipstick", "liquated", "liquates", "liqueurs", "liquidly", "liquored", "liriopes", "liripipe", "lissomly", "listable", "listened", "listener", "listeria", "listings", "listless", "litanies", "liteness", "literacy", "literals", "literary", "literate", "literati", "litharge", "lithemia", "lithemic", "lithiums", "lithoing", "lithosol", "litigant", "litigate", "litmuses", "littered", "litterer", "littlest", "littlish", "littoral", "liturgic", "liveable", "livelier", "livelily", "livelong", "liveners", "liveness", "livening", "liveried", "liveries", "livering", "liverish", "livetrap", "lividity", "livingly", "lixivial", "lixivium", "loadings", "loadstar", "loamiest", "loamless", "loanable", "loanings", "loanword", "loathers", "loathful", "loathing", "lobately", "lobation", "lobbyers", "lobbygow", "lobbying", "lobbyism", "lobbyist", "lobefins", "lobelias", "lobeline", "loblolly", "lobotomy", "lobsters", "lobstick", "lobulate", "lobulose", "lobworms", "localise", "localism", "localist", "localite", "locality", "localize", "locaters", "locating", "location", "locative", "locators", "lockable", "lockages", "lockdown", "lockjaws", "locknuts", "lockouts", "lockrams", "locksets", "lockstep", "locofoco", "locoisms", "locomote", "locoweed", "loculate", "locustae", "locustal", "locution", "locutory", "lodestar", "lodgings", "lodgment", "lodicule", "loessial", "loftiest", "loftless", "loftlike", "logbooks", "loggiest", "loggings", "logician", "logicise", "logicize", "loginess", "logistic", "logogram", "logomach", "logotype", "logotypy", "logrolls", "logwoods", "loitered", "loiterer", "lollipop", "lolloped", "lollygag", "lollypop", "lomentum", "lonelier", "lonelily", "loneness", "lonesome", "longboat", "longbows", "longeing", "longeron", "longhair", "longhand", "longhead", "longhorn", "longings", "longjump", "longleaf", "longline", "longneck", "longness", "longship", "longsome", "longspur", "longtime", "longueur", "longways", "longwise", "lookdown", "lookisms", "lookists", "lookouts", "looksism", "looniest", "loophole", "loopiest", "loosened", "loosener", "loppered", "loppiest", "lopsided", "lopstick", "lordings", "lordless", "lordlier", "lordlike", "lordling", "lordomas", "lordoses", "lordosis", "lordotic", "lordship", "lorgnons", "loricate", "lorikeet", "lorimers", "loriners", "lornness", "losingly", "lossless", "lostness", "lothario", "lothsome", "loudened", "loudlier", "loudness", "loungers", "lounging", "lousiest", "louvered", "loveable", "loveably", "lovebird", "lovebugs", "lovefest", "loveless", "lovelier", "lovelies", "lovelily", "lovelock", "lovelorn", "loveseat", "lovesick", "lovesome", "lovevine", "lovingly", "lowballs", "lowbrows", "lowdowns", "lowering", "lowlands", "lowliest", "lowlifer", "lowlifes", "lowlight", "lowlives", "lowrider", "loyalest", "loyalism", "loyalist", "lozenges", "lubberly", "lubrical", "lucarnes", "lucences", "lucently", "lucernes", "lucidity", "lucifers", "luckiest", "luckless", "luculent", "luggages", "lugsails", "lugworms", "lukewarm", "lumbagos", "lumbered", "lumberer", "lumberly", "luminary", "luminism", "luminist", "luminous", "lummoxes", "lumpfish", "lumpiest", "lunacies", "lunarian", "lunately", "lunatics", "lunation", "lunchbox", "luncheon", "lunchers", "lunching", "lunettes", "lungfish", "lungfuls", "lungworm", "lungwort", "lunkhead", "lunulate", "lupanars", "lupulins", "lurchers", "lurching", "lurdanes", "luringly", "luscious", "lushness", "lustered", "lustiest", "lustrate", "lustring", "lustrous", "lustrums", "lutanist", "lutecium", "lutefisk", "lutenist", "luteolin", "lutetium", "lutfisks", "lutherns", "luthiers", "luxating", "luxation", "luxuries", "lycopene", "lycopods", "lyddites", "lymphoid", "lymphoma", "lynchers", "lynching", "lynchpin", "lyophile", "lyrately", "lyrebird", "lyricise", "lyricism", "lyricist", "lyricize", "lyricons", "lyriform", "lysogens", "lysogeny", "lysosome", "lysozyme", "macadams", "macaques", "macaroni", "macaroon", "maccabaw", "maccaboy", "maccoboy", "macerate", "machetes", "machined", "machines", "machismo", "machoism", "machrees", "machzors", "mackerel", "mackinaw", "mackling", "macrames", "macrural", "macruran", "maculate", "maculing", "macumbas", "maddened", "madeiras", "maderize", "madhouse", "madonnas", "madrasah", "madrasas", "madrases", "madrassa", "madrigal", "madronas", "madrones", "madronos", "madwoman", "madwomen", "madworts", "madzoons", "maenades", "maenadic", "maestoso", "maestros", "mafficks", "mafiosos", "magalogs", "magazine", "magdalen", "magentas", "magician", "magicked", "magister", "magmatic", "magnates", "magnesia", "magnesic", "magnetic", "magneton", "magnetos", "magnific", "magnolia", "maharaja", "maharani", "mahatmas", "mahimahi", "mahjongg", "mahjongs", "mahogany", "mahonias", "mahuangs", "mahzorim", "maiasaur", "maidenly", "maidhood", "maieutic", "mailable", "mailbags", "mailgram", "mailings", "mailless", "maillots", "mailroom", "mainland", "mainline", "mainmast", "mainsail", "mainstay", "maintain", "maintops", "maiolica", "majaguas", "majestic", "majolica", "majoring", "majority", "makeable", "makebate", "makefast", "makeover", "makimono", "malaccas", "maladies", "malaises", "malamute", "malangas", "malapert", "malaprop", "malarial", "malarian", "malarias", "malarkey", "malaroma", "maleates", "maledict", "malemiut", "malemute", "maleness", "maligned", "maligner", "malignly", "malihini", "malinger", "malisons", "mallards", "malleoli", "mallings", "malmiest", "malmseys", "malodors", "malposed", "maltases", "maltiest", "maltoses", "maltreat", "maltster", "malvasia", "mamaliga", "mamboing", "mameluke", "mammatus", "mammered", "mammilla", "mammitis", "mammocks", "mammoths", "manacled", "manacles", "managers", "managing", "manakins", "manatees", "manatoid", "manchets", "manciple", "mandalas", "mandalic", "mandamus", "mandarin", "mandated", "mandates", "mandator", "mandible", "mandioca", "mandolas", "mandolin", "mandrake", "mandrels", "mandrill", "mandrils", "maneless", "maneuver", "manfully", "mangabey", "manganic", "manganin", "mangiest", "manglers", "mangling", "mangolds", "mangonel", "mangrove", "manholes", "manhoods", "manhunts", "maniacal", "manicure", "manifest", "manifold", "manihots", "manikins", "manillas", "manilles", "maniocas", "maniples", "manitous", "manliest", "mannered", "mannerly", "mannikin", "mannites", "mannitic", "mannitol", "mannoses", "manorial", "manpower", "manropes", "mansards", "mansions", "manteaus", "manteaux", "mantelet", "mantilla", "mantises", "mantissa", "mantlets", "mantling", "mantrams", "mantraps", "manually", "manubria", "manumits", "manurers", "manurial", "manuring", "manwards", "manyfold", "mapmaker", "mappable", "mappings", "maquette", "maquilas", "marabous", "marabout", "marantas", "marascas", "marasmic", "marasmus", "marathon", "marauded", "marauder", "maravedi", "marblers", "marblier", "marbling", "marcatos", "marchers", "marchesa", "marchese", "marchesi", "marching", "margaric", "margarin", "margents", "marginal", "margined", "margrave", "mariachi", "marigold", "marimbas", "marinade", "marinara", "marinate", "mariners", "mariposa", "marishes", "maritime", "marjoram", "markdown", "markedly", "marketed", "marketer", "markhoor", "markhors", "markings", "marksman", "marksmen", "marliest", "marlines", "marlings", "marlites", "marlitic", "marmites", "marmoset", "marocain", "marooned", "marplots", "marquees", "marquess", "marquise", "marranos", "marriage", "marrieds", "marriers", "marrowed", "marrying", "marsalas", "marshall", "marshals", "marshier", "marsupia", "martagon", "martello", "martians", "martinet", "martinis", "martlets", "martyred", "martyrly", "marveled", "maryjane", "marzipan", "mascaras", "mashgiah", "maskable", "maskings", "masklike", "masoning", "masonite", "masquers", "massacre", "massaged", "massager", "massages", "masscult", "massedly", "masseter", "masseurs", "masseuse", "massicot", "massiest", "massless", "mastabah", "mastabas", "mastered", "masterly", "masthead", "mastiche", "mastiffs", "mastitic", "mastitis", "mastixes", "mastless", "mastlike", "mastodon", "mastoids", "masurium", "matadors", "matchbox", "matchers", "matching", "matchups", "mateless", "matelote", "matelots", "material", "materiel", "maternal", "mateship", "matildas", "matinees", "matiness", "matrices", "matrixes", "matronal", "matronly", "mattedly", "mattered", "mattings", "mattocks", "mattoids", "mattrass", "mattress", "maturate", "maturely", "maturers", "maturest", "maturing", "maturity", "matzoons", "maumetry", "maunders", "maundies", "mausolea", "maverick", "maxicoat", "maxillae", "maxillas", "maximals", "maximins", "maximise", "maximite", "maximize", "maximums", "maxwells", "mayapple", "maybirds", "mayflies", "mayoress", "maypoles", "mayweeds", "mazaedia", "mazelike", "mazeltov", "maziness", "mazourka", "mazurkas", "mazzards", "mbaqanga", "meagerly", "meagrely", "mealiest", "mealless", "mealtime", "mealworm", "mealybug", "meanders", "meanings", "meanness", "meantime", "measlier", "measured", "measurer", "measures", "meatball", "meathead", "meatiest", "meatless", "meatloaf", "meatuses", "mechanic", "mechitza", "meconium", "medaling", "medalist", "medalled", "medallic", "meddlers", "meddling", "medevacs", "medflies", "medially", "medianly", "mediants", "mediated", "mediates", "mediator", "medicaid", "medicals", "medicant", "medicare", "medicate", "medicide", "medicine", "medieval", "medigaps", "mediocre", "meditate", "medivacs", "medullae", "medullar", "medullas", "medusans", "medusoid", "meekness", "meerkats", "meetings", "meetness", "megabars", "megabits", "megabuck", "megabyte", "megacity", "megadeal", "megadose", "megadyne", "megaflop", "megahits", "megalith", "megalops", "megaplex", "megapode", "megapods", "megasses", "megastar", "megatons", "megavolt", "megawatt", "megillah", "megillas", "megilphs", "meisters", "melamdim", "melamine", "melanges", "melanian", "melanics", "melanins", "melanism", "melanist", "melanite", "melanize", "melanoid", "melanoma", "melanous", "melilite", "melilots", "melinite", "melismas", "mellific", "mellowed", "mellower", "mellowly", "melodeon", "melodias", "melodica", "melodies", "melodise", "melodist", "melodize", "meltable", "meltages", "meltdown", "membered", "membrane", "mementos", "memetics", "memorial", "memories", "memorise", "memorize", "memsahib", "menacers", "menacing", "menarche", "menazons", "mendable", "mendigos", "mendings", "menfolks", "menhaden", "menially", "meninges", "meniscal", "meniscus", "menology", "menorahs", "menschen", "mensches", "menseful", "menstrua", "mensural", "menswear", "mentally", "menthene", "menthols", "mentions", "mentored", "mephitic", "mephitis", "mercapto", "merchant", "merciful", "mercuric", "merengue", "mergence", "meridian", "meringue", "meristem", "meristic", "meriting", "mermaids", "meropias", "merriest", "mescluns", "mesdames", "meseemed", "meshiest", "meshugah", "meshugga", "meshugge", "meshwork", "mesially", "mesmeric", "mesnalty", "mesocarp", "mesoderm", "mesoglea", "mesomere", "mesophyl", "mesosome", "mesotron", "mesozoan", "mesozoic", "mesquite", "mesquits", "messaged", "messages", "messiahs", "messiest", "messmate", "messuage", "mestesos", "mestinos", "mestizas", "mestizos", "metaling", "metalise", "metalist", "metalize", "metalled", "metallic", "metamere", "metamers", "metaphor", "metatags", "metazoal", "metazoan", "metazoic", "metazoon", "meteoric", "meterage", "metering", "methadon", "methanes", "methanol", "methinks", "methodic", "methoxyl", "methylal", "methylic", "meticais", "meticals", "metisses", "metonyms", "metonymy", "metopons", "metrazol", "metrical", "metrists", "metritis", "meuniere", "mezereon", "mezereum", "mezquite", "mezquits", "mezuzahs", "mezuzoth", "miaouing", "miaowing", "miasmata", "miauling", "micawber", "micellae", "micellar", "micelles", "micklest", "microbar", "microbes", "microbic", "microbus", "microcap", "microdot", "microhms", "microlux", "micromho", "micrurgy", "midbrain", "midcults", "middlers", "middling", "midfield", "midirons", "midlands", "midlifer", "midlines", "midlists", "midlives", "midmonth", "midmosts", "midnight", "midnoons", "midpoint", "midrange", "midriffs", "midships", "midsized", "midsoles", "midspace", "midstory", "midterms", "midtowns", "midwatch", "midweeks", "midwifed", "midwifes", "midwived", "midwives", "midyears", "miffiest", "mightier", "mightily", "mignonne", "migraine", "migrants", "migrated", "migrates", "migrator", "mijnheer", "miladies", "mildened", "mildewed", "mildness", "mileages", "milepost", "milesian", "milesimo", "milfoils", "miliaria", "militant", "military", "militate", "militias", "milkfish", "milkiest", "milkless", "milkmaid", "milkshed", "milksops", "milkweed", "milkwood", "milkwort", "millable", "millages", "millcake", "milldams", "milleped", "milliard", "milliare", "milliary", "millibar", "millieme", "milliers", "milligal", "millilux", "millimes", "millimho", "milliner", "millines", "millings", "milliohm", "millions", "milliped", "millirem", "millpond", "millrace", "millruns", "millwork", "miltiest", "mimeoing", "mimetite", "mimicked", "mimicker", "minacity", "minarets", "minatory", "minciest", "mindless", "mindsets", "mineable", "minerals", "mingiest", "minglers", "mingling", "minibars", "minibike", "minicabs", "minicamp", "minicams", "minicars", "minidisc", "minified", "minifies", "minikins", "minilabs", "minimals", "minimill", "minimise", "minimize", "minimums", "minipark", "minipill", "minished", "minishes", "miniskis", "minister", "ministry", "minivans", "minivers", "minorcas", "minoring", "minority", "minsters", "minstrel", "mintages", "mintiest", "minuends", "minutely", "minutest", "minutiae", "minutial", "minuting", "minyanim", "miquelet", "miracles", "miradors", "mirepoix", "miriness", "mirkiest", "mirliton", "mirrored", "mirthful", "misacted", "misadapt", "misadded", "misagent", "misaimed", "misalign", "misallot", "misalter", "misandry", "misapply", "misassay", "misatone", "misavers", "misaward", "misbegan", "misbegin", "misbegot", "misbegun", "misbills", "misbinds", "misbound", "misbrand", "misbuild", "misbuilt", "miscalls", "miscarry", "miscasts", "mischief", "mischose", "miscible", "miscited", "miscites", "misclaim", "misclass", "miscoded", "miscodes", "miscoins", "miscolor", "miscooks", "miscount", "miscuing", "misdated", "misdates", "misdeals", "misdealt", "misdeeds", "misdeems", "misdials", "misdoers", "misdoing", "misdoubt", "misdrawn", "misdraws", "misdrive", "misdrove", "miseases", "miseaten", "misedits", "misenrol", "misenter", "misentry", "miserere", "miseries", "misevent", "misfaith", "misfeeds", "misfield", "misfiled", "misfiles", "misfired", "misfires", "misfocus", "misforms", "misframe", "misgauge", "misgiven", "misgives", "misgrade", "misgraft", "misgrown", "misgrows", "misguess", "misguide", "misheard", "mishears", "mishmash", "mishmosh", "misinfer", "misinter", "misjoins", "misjudge", "miskeeps", "miskicks", "misknown", "misknows", "mislabel", "mislabor", "mislayer", "misleads", "mislearn", "mislight", "misliked", "misliker", "mislikes", "mislived", "mislives", "mislodge", "mislying", "mismakes", "mismarks", "mismatch", "mismated", "mismates", "mismeets", "mismoved", "mismoves", "misnamed", "misnames", "misnomer", "misogamy", "misogyny", "misology", "misorder", "mispaged", "mispages", "mispaint", "misparse", "misparts", "mispatch", "misplace", "misplans", "misplant", "misplays", "misplead", "mispoint", "mispoise", "misprice", "misprint", "misprize", "misquote", "misraise", "misrated", "misrates", "misreads", "misrefer", "misroute", "misruled", "misrules", "missable", "misseats", "missends", "missense", "misshape", "missiles", "missilry", "missions", "missises", "missives", "missorts", "missound", "missouts", "misspace", "misspeak", "misspell", "misspelt", "misspend", "misspent", "misspoke", "misstamp", "misstart", "misstate", "missteer", "missteps", "misstops", "misstyle", "missuits", "missuses", "mistaken", "mistaker", "mistakes", "mistbows", "misteach", "mistends", "misterms", "misthink", "misthrew", "misthrow", "mistiest", "mistimed", "mistimes", "mistitle", "mistouch", "mistrace", "mistrain", "mistrals", "mistreat", "mistress", "mistrial", "mistrust", "mistruth", "mistryst", "mistuned", "mistunes", "mistutor", "mistyped", "mistypes", "misunion", "misusage", "misusers", "misusing", "misvalue", "miswords", "miswrite", "miswrote", "misyoked", "misyokes", "miterers", "mitering", "miticide", "mitigate", "mitogens", "mitsvahs", "mitsvoth", "mittened", "mittimus", "mitzvahs", "mitzvoth", "mixology", "mixtures", "mizzling", "mnemonic", "moatlike", "mobbisms", "mobilise", "mobility", "mobilize", "mobocrat", "mobsters", "moccasin", "mochilas", "mockable", "mocktail", "modality", "modelers", "modeling", "modelist", "modelled", "modeller", "modeming", "moderate", "moderato", "moderner", "modernes", "modernly", "modester", "modestly", "modicums", "modified", "modifier", "modifies", "modiolus", "modishly", "modistes", "modulars", "modulate", "mofettes", "moffette", "moidores", "moieties", "moistens", "moistest", "moistful", "moisture", "mojarras", "molality", "molarity", "molasses", "moldable", "moldered", "moldiest", "moldings", "moldwarp", "molecule", "molehill", "moleskin", "molested", "molester", "mollusca", "molluscs", "mollusks", "moltenly", "molybdic", "momently", "momentos", "momentum", "monachal", "monacids", "monadism", "monandry", "monarchs", "monarchy", "monardas", "monastic", "monaural", "monaxial", "monaxons", "monazite", "monecian", "monellin", "monerans", "monetary", "monetise", "monetize", "moneybag", "moneyers", "moneyman", "moneymen", "mongeese", "mongered", "mongoose", "mongrels", "monicker", "monikers", "monished", "monishes", "monistic", "monition", "monitive", "monitors", "monitory", "monkeyed", "monkfish", "monkhood", "monoacid", "monocarp", "monocled", "monocles", "monocots", "monocrat", "monocyte", "monodies", "monodist", "monofils", "monofuel", "monogamy", "monogeny", "monogerm", "monoglot", "monogram", "monogyny", "monohull", "monokine", "monolith", "monologs", "monology", "monomers", "monomial", "monopode", "monopods", "monopody", "monopole", "monopoly", "monorail", "monosome", "monosomy", "monotint", "monotone", "monotony", "monotype", "monoxide", "monsieur", "monsoons", "monstera", "monsters", "montaged", "montages", "montanes", "monteith", "monteros", "monument", "monurons", "moochers", "mooching", "moodiest", "moonbeam", "moonbows", "mooncalf", "moondust", "mooneyes", "moonfish", "mooniest", "moonless", "moonlets", "moonlike", "moonport", "moonrise", "moonroof", "moonsail", "moonseed", "moonsets", "moonshot", "moonwalk", "moonward", "moonwort", "moorages", "moorcock", "moorfowl", "moorhens", "mooriest", "moorings", "moorland", "moorwort", "mootness", "mopboard", "moperies", "mopiness", "mopingly", "mopishly", "moquette", "morainal", "moraines", "morainic", "moralise", "moralism", "moralist", "morality", "moralize", "morasses", "moratory", "morbidly", "morbific", "morbilli", "morceaux", "mordancy", "mordants", "mordents", "morelles", "morellos", "moreness", "moreover", "moresque", "moribund", "mornings", "moroccos", "moronism", "moronity", "morosely", "morosity", "morpheme", "morphias", "morphine", "morphing", "morphins", "morrions", "morrises", "morseled", "mortally", "mortared", "mortgage", "morticed", "mortices", "mortised", "mortiser", "mortises", "mortmain", "mortuary", "mosasaur", "moschate", "moseying", "moshavim", "moshings", "mosquito", "mossback", "mossiest", "mosslike", "mostests", "mothball", "mothered", "motherly", "mothiest", "mothlike", "motility", "motional", "motioned", "motioner", "motivate", "motiving", "motivity", "motleyer", "motliest", "motorbus", "motorcar", "motordom", "motoring", "motorise", "motorist", "motorize", "motorman", "motormen", "motorway", "mottlers", "mottling", "mouching", "mouchoir", "moufflon", "mouflons", "moulages", "moulders", "mouldier", "moulding", "moulters", "moulting", "mounding", "mountain", "mounters", "mounting", "mourners", "mournful", "mourning", "mousakas", "mousepad", "mousiest", "mousings", "moussaka", "moussing", "mouthers", "mouthful", "mouthier", "mouthily", "mouthing", "movables", "moveable", "moveably", "moveless", "movement", "moviedom", "movieola", "movingly", "moviolas", "mozettas", "mozzetta", "mozzette", "mridanga", "muchacho", "muchness", "mucidity", "mucilage", "mucinoid", "mucinous", "muckiest", "muckluck", "muckrake", "muckworm", "mucoidal", "mucosity", "mucrones", "muddiest", "muddlers", "muddling", "muddying", "mudflaps", "mudflats", "mudflows", "mudguard", "mudholes", "mudlarks", "mudpacks", "mudpuppy", "mudrocks", "mudrooms", "mudsills", "mudslide", "mudstone", "mueddins", "muenster", "muezzins", "mufflers", "muffling", "muggiest", "muggings", "mugworts", "mugwumps", "mulattos", "mulberry", "mulching", "mulcting", "muleteer", "mulishly", "mulleins", "mulligan", "mullions", "mullites", "mullocks", "mullocky", "multiage", "multicar", "multiday", "multifid", "multijet", "multiped", "multiple", "multiply", "multiton", "multiuse", "multures", "mumblers", "mumbling", "mummying", "munchers", "munchies", "munching", "munchkin", "mundungo", "mungoose", "muniment", "munition", "munnions", "munsters", "muntings", "muntjacs", "muntjaks", "muoniums", "muraenid", "muralist", "muralled", "murdered", "murderee", "murderer", "muriated", "muriates", "muricate", "murkiest", "murmured", "murmurer", "murphies", "murrains", "murrelet", "murrhine", "murthers", "muscadel", "muscadet", "muscatel", "muscling", "muscular", "musettes", "mushiest", "mushroom", "musicale", "musicals", "musician", "musicked", "musingly", "musketry", "muskiest", "muskoxen", "muskrats", "muskroot", "muspikes", "musquash", "mussiest", "mustache", "mustangs", "mustards", "mustardy", "mustelid", "mustered", "mustiest", "mutagens", "mutating", "mutation", "mutative", "mutchkin", "muteness", "muticous", "mutilate", "mutineer", "mutinied", "mutinies", "mutining", "mutinous", "muttered", "mutterer", "mutually", "muzziest", "muzzlers", "muzzling", "myalgias", "mycelial", "mycelian", "mycelium", "myceloid", "mycetoma", "mycology", "myelines", "myelinic", "myelitis", "myelomas", "mylonite", "mynheers", "myoblast", "myogenic", "myograph", "myologic", "myopathy", "myoscope", "myositis", "myosotes", "myosotis", "myotomes", "myotonia", "myotonic", "myriapod", "myriopod", "myrmidon", "mystagog", "mystical", "mysticly", "mystique", "mythical", "mythiest", "myxameba", "myxedema", "myxocyte", "myxomata", "nabobery", "nabobess", "nabobish", "nabobism", "nacelles", "nacreous", "naething", "naggiest", "nailfold", "nailhead", "nailsets", "nainsook", "naivetes", "nakedest", "naloxone", "nameable", "nameless", "namesake", "nametags", "nandinas", "nankeens", "nannyish", "nanogram", "nanotech", "nanotube", "nanowatt", "napalmed", "naperies", "naphthas", "naphthol", "naphthyl", "naphtols", "napiform", "napoleon", "nappiest", "naproxen", "narceine", "narceins", "narcisms", "narcissi", "narcists", "narcomas", "narcoses", "narcosis", "narcotic", "narghile", "nargileh", "nargiles", "narrated", "narrater", "narrates", "narrator", "narrowed", "narrower", "narrowly", "narwhale", "narwhals", "nasalise", "nasalism", "nasality", "nasalize", "nascence", "nascency", "nastiest", "natality", "natantly", "natation", "natatory", "nathless", "national", "natively", "nativism", "nativist", "nativity", "natriums", "nattered", "nattiest", "naturals", "naturism", "naturist", "naumachy", "nauplial", "nauplius", "nauseant", "nauseate", "nauseous", "nautches", "nautical", "nautilus", "navettes", "navicert", "navigate", "naysayer", "nazified", "nazifies", "nearlier", "nearness", "nearside", "neatened", "neatherd", "neatness", "neatniks", "nebbishy", "nebulise", "nebulize", "nebulose", "nebulous", "neckband", "neckings", "necklace", "neckless", "necklike", "neckline", "neckties", "neckwear", "necropsy", "necrosed", "necroses", "necrosis", "necrotic", "needfuls", "neediest", "needlers", "needless", "needling", "negaters", "negating", "negation", "negative", "negatons", "negators", "negatron", "neglects", "negligee", "negliges", "negroids", "negronis", "neighbor", "neighing", "nektonic", "nelumbos", "nematode", "neoliths", "neologic", "neomorph", "neomycin", "neonatal", "neonates", "neophyte", "neoplasm", "neoprene", "neotenic", "neoteric", "neotypes", "nepenthe", "nephrism", "nephrite", "nephrons", "nepotism", "nepotist", "nerdiest", "nereides", "nerviest", "nervines", "nervings", "nervules", "nervures", "nescient", "nestable", "nestlers", "nestlike", "nestling", "netizens", "netsukes", "nettable", "nettiest", "nettings", "nettlers", "nettlier", "nettling", "networks", "neumatic", "neurally", "neuraxon", "neurines", "neuritic", "neuritis", "neuromas", "neuronal", "neurones", "neuronic", "neurosal", "neuroses", "neurosis", "neurotic", "neurulae", "neurular", "neurulas", "neustons", "neutered", "neutrals", "neutrino", "neutrons", "newborns", "newcomer", "newfound", "newlywed", "newsbeat", "newsboys", "newscast", "newsdesk", "newsgirl", "newshawk", "newsiest", "newsless", "newspeak", "newsreel", "newsroom", "newswire", "newwaver", "nextdoor", "ngultrum", "nibblers", "nibbling", "niblicks", "niceness", "niceties", "nickeled", "nickelic", "nickered", "nickling", "nicknack", "nickname", "nicotine", "nicotins", "nictated", "nictates", "nidating", "nidation", "nidering", "nidified", "nidifies", "niellist", "nielloed", "niffered", "niftiest", "nigellas", "niggards", "nigglers", "nigglier", "niggling", "nighness", "nightcap", "nighties", "nightjar", "nigrosin", "nihilism", "nihilist", "nihility", "nilghais", "nilghaus", "nimblest", "nimbused", "nimbuses", "ninebark", "ninefold", "ninepins", "nineteen", "nineties", "ninnyish", "niobates", "niobites", "niobiums", "nippiest", "nirvanas", "nirvanic", "nitchies", "niteries", "nitinols", "nitpicks", "nitpicky", "nitrated", "nitrates", "nitrator", "nitrided", "nitrides", "nitriles", "nitrites", "nitrogen", "nitrolic", "nitrosyl", "nittiest", "nizamate", "nobbiest", "nobblers", "nobbling", "nobelium", "nobility", "nobleman", "noblemen", "noblesse", "nobodies", "noctuids", "noctules", "noctuoid", "nocturne", "nocturns", "nodality", "noddling", "nodosity", "nodulose", "nodulous", "noesises", "noggings", "noisette", "noisiest", "nomadism", "nomarchs", "nomarchy", "nombrils", "nominals", "nominate", "nominees", "nomistic", "nomogram", "nomology", "nonacids", "nonactor", "nonadult", "nonagons", "nonbanks", "nonbasic", "nonbeing", "nonblack", "nonbooks", "nonbrand", "nonclass", "noncling", "noncolas", "noncolor", "noncrime", "nondairy", "nondance", "nonelect", "nonelite", "nonempty", "nonentry", "nonequal", "nonesuch", "nonevent", "nonfacts", "nonfatal", "nonfatty", "nonfinal", "nonfluid", "nonfocal", "nonglare", "nongreen", "nonguest", "nonguilt", "nonhardy", "nonhuman", "nonideal", "nonimage", "noninert", "nonionic", "nonissue", "nonjuror", "nonlabor", "nonleafy", "nonlegal", "nonlevel", "nonlives", "nonlocal", "nonloyal", "nonlyric", "nonmajor", "nonmetal", "nonmetro", "nonmodal", "nonmoney", "nonmoral", "nonmusic", "nonnasal", "nonnaval", "nonnoble", "nonnovel", "nonobese", "nonohmic", "nonowner", "nonpagan", "nonpapal", "nonparty", "nonpasts", "nonplays", "nonpoint", "nonpolar", "nonprint", "nonquota", "nonrated", "nonrigid", "nonrival", "nonroyal", "nonrural", "nonsense", "nonskeds", "nonskier", "nonsolar", "nonsolid", "nonstick", "nonstops", "nonstory", "nonstyle", "nonsugar", "nonsuits", "nontaxes", "nontidal", "nontitle", "nontonal", "nontonic", "nontoxic", "nontrump", "nontruth", "nonunion", "nonuples", "nonurban", "nonusers", "nonusing", "nonvalid", "nonviral", "nonvital", "nonvocal", "nonvoter", "nonwhite", "nonwoody", "nonwords", "nonwoven", "noodging", "noodling", "nooklike", "noondays", "noonings", "noontide", "noontime", "nopalito", "norlands", "normalcy", "normally", "normande", "normless", "northern", "northers", "northing", "nosebags", "noseband", "nosedive", "nosedove", "nosegays", "noseless", "noselike", "nosiness", "nosology", "nostrils", "nostrums", "notables", "notarial", "notaries", "notarize", "notating", "notation", "notchers", "notching", "notebook", "notecard", "notecase", "noteless", "notepads", "nothings", "noticers", "noticing", "notified", "notifier", "notifies", "notional", "notornis", "notturni", "notturno", "noumenal", "noumenon", "nounally", "nounless", "nouvelle", "novalike", "novation", "novelise", "novelist", "novelize", "novellas", "novercal", "nowadays", "nowheres", "nubbiest", "nubblier", "nubility", "nubilose", "nubilous", "nucellar", "nucellus", "nuclease", "nucleate", "nucleins", "nucleoid", "nucleole", "nucleoli", "nucleons", "nuclides", "nuclidic", "nudeness", "nudicaul", "nudities", "nudnicks", "nudzhing", "nugatory", "nuisance", "numbered", "numberer", "numbfish", "numbness", "numchuck", "numeracy", "numerals", "numerary", "numerate", "numerics", "numerous", "numinous", "nummular", "numskull", "nunataks", "nunchaku", "nuptials", "nursings", "nursling", "nurtural", "nurtured", "nurturer", "nurtures", "nutating", "nutation", "nutbrown", "nutcases", "nutgalls", "nutgrass", "nuthatch", "nuthouse", "nutmeats", "nutpicks", "nutrient", "nutsedge", "nutshell", "nutsiest", "nuttiest", "nuttings", "nutwoods", "nuzzlers", "nuzzling", "nylghais", "nylghaus", "nymphean", "nymphets", "nystatin", "oafishly", "oarlocks", "oatcakes", "oatmeals", "obduracy", "obdurate", "obeahism", "obedient", "obeisant", "obelised", "obelises", "obelisks", "obelisms", "obelized", "obelizes", "obeyable", "obituary", "objected", "objector", "oblately", "oblation", "oblatory", "obligate", "obligati", "obligato", "obligees", "obligers", "obliging", "obligors", "obliqued", "obliques", "oblivion", "oblongly", "obscener", "obscured", "obscurer", "obscures", "observed", "observer", "observes", "obsessed", "obsesses", "obsessor", "obsidian", "obsolete", "obstacle", "obstruct", "obtained", "obtainer", "obtected", "obtested", "obtruded", "obtruder", "obtrudes", "obtunded", "obturate", "obtusely", "obtusest", "obtusity", "obverses", "obverted", "obviable", "obviated", "obviates", "obviator", "obvolute", "ocarinas", "occasion", "occident", "occipita", "occiputs", "occluded", "occludes", "occlusal", "occulted", "occulter", "occultly", "occupant", "occupied", "occupier", "occupies", "occurred", "oceanaut", "ocellate", "ochering", "ocherous", "ochreous", "ocotillo", "octagons", "octangle", "octanols", "octantal", "octarchy", "octettes", "octonary", "octopods", "octoroon", "octupled", "octuples", "octuplet", "octuplex", "ocularly", "oculists", "odalisks", "oddballs", "oddities", "oddments", "odiously", "odograph", "odometer", "odometry", "odonates", "odontoid", "odorants", "odorized", "odorizes", "odorless", "odourful", "odysseys", "oecology", "oedemata", "oedipean", "oeillade", "oenology", "oenomels", "oersteds", "oestrins", "oestriol", "oestrone", "oestrous", "oestrums", "offbeats", "offcasts", "offences", "offended", "offender", "offenses", "offerers", "offering", "offerors", "officers", "official", "offishly", "offloads", "offprint", "offramps", "offshoot", "offshore", "offsides", "offstage", "offtrack", "oftenest", "ofttimes", "oghamist", "ogreisms", "ogresses", "ogrishly", "ohmmeter", "oilbirds", "oilcamps", "oilcloth", "oilholes", "oiliness", "oilpaper", "oilproof", "oilseeds", "oilskins", "oilstone", "oiltight", "oinology", "oinomels", "ointment", "oiticica", "okeydoke", "oldsquaw", "oldsters", "oldstyle", "oldwives", "oleander", "oleaster", "olefines", "olefinic", "olestras", "olibanum", "olicooks", "oligarch", "oligomer", "oliguria", "olivines", "olivinic", "ologists", "olorosos", "olympiad", "omelette", "omentums", "omicrons", "omikrons", "omission", "omissive", "omitters", "omitting", "omniarch", "omniform", "omnimode", "omnivora", "omnivore", "omophagy", "omphalos", "onanisms", "onanists", "oncidium", "oncogene", "oncology", "oncoming", "ondogram", "oneriest", "onloaded", "onlooker", "onrushes", "onscreen", "onstream", "ontogeny", "ontology", "oogamete", "oogamies", "oogamous", "oogenies", "oogonial", "oogonium", "oolachan", "oologies", "oologist", "oomiacks", "oompahed", "oophytes", "oophytic", "oosperms", "oosphere", "oospores", "oosporic", "oothecae", "oothecal", "ooziness", "opalesce", "opalines", "opaquely", "opaquest", "opaquing", "openable", "opencast", "openings", "openness", "openwork", "operable", "operably", "operands", "operants", "operated", "operates", "operatic", "operator", "opercele", "opercula", "opercule", "operetta", "ophidian", "opiating", "opinions", "opiumism", "opossums", "oppidans", "oppilant", "oppilate", "opponent", "opposers", "opposing", "opposite", "oppugned", "oppugner", "opsonify", "opsonins", "opsonize", "optative", "optician", "opticist", "optimise", "optimism", "optimist", "optimize", "optimums", "optional", "optioned", "optionee", "opulence", "opulency", "opuntias", "opuscula", "opuscule", "oquassas", "oracular", "oralisms", "oralists", "orangery", "orangier", "orangish", "orations", "oratorio", "oratress", "orbitals", "orbiters", "orbiting", "orchards", "orchises", "orchitic", "orchitis", "orcinols", "ordained", "ordainer", "orderers", "ordering", "ordinals", "ordinand", "ordinary", "ordinate", "ordnance", "ordurous", "orective", "oreganos", "oreodont", "organdie", "organics", "organise", "organism", "organist", "organize", "organons", "organums", "organzas", "orgasmed", "orgasmic", "orgastic", "orgiasts", "orgulous", "oribatid", "oriental", "oriented", "orienter", "orifices", "origamis", "origanum", "original", "orinasal", "ornament", "ornately", "ornerier", "ornithes", "ornithic", "orogenic", "orometer", "orphaned", "orphical", "orphisms", "orphreys", "orpiment", "orreries", "orthicon", "orthodox", "orthoepy", "orthoses", "orthosis", "orthotic", "ortolans", "oscinine", "oscitant", "osculant", "osculate", "osmosing", "osmundas", "osnaburg", "ossature", "ossetras", "ossicles", "ossified", "ossifier", "ossifies", "osteitic", "osteitis", "osteoids", "osteomas", "osteoses", "osteosis", "ostinati", "ostinato", "ostiolar", "ostioles", "ostmarks", "ostomate", "ostomies", "ostracod", "ostracon", "ostrakon", "otalgias", "otalgies", "otiosely", "otiosity", "otitides", "otitises", "otocysts", "otoliths", "otoscope", "otoscopy", "ototoxic", "ottomans", "ouabains", "oughting", "ouguiyas", "ouistiti", "outacted", "outadded", "outargue", "outasked", "outbacks", "outbaked", "outbakes", "outbarks", "outbawls", "outbeams", "outbitch", "outblaze", "outbleat", "outbless", "outbloom", "outbluff", "outblush", "outboard", "outboast", "outbound", "outboxed", "outboxes", "outbrags", "outbrave", "outbrawl", "outbreak", "outbreed", "outbribe", "outbuild", "outbuilt", "outbulge", "outbulks", "outbully", "outburns", "outburnt", "outburst", "outcalls", "outcaper", "outcaste", "outcasts", "outcatch", "outcavil", "outcharm", "outcheat", "outchide", "outclass", "outclimb", "outclomb", "outcoach", "outcomes", "outcooks", "outcount", "outcrawl", "outcried", "outcries", "outcrops", "outcross", "outcrowd", "outcrows", "outcurse", "outcurve", "outdance", "outdared", "outdares", "outdated", "outdates", "outdodge", "outdoers", "outdoing", "outdoors", "outdrags", "outdrank", "outdrawn", "outdraws", "outdream", "outdress", "outdrink", "outdrive", "outdrops", "outdrove", "outdrunk", "outduels", "outearns", "outeaten", "outfable", "outfaced", "outfaces", "outfalls", "outfasts", "outfawns", "outfeast", "outfeels", "outfence", "outfield", "outfight", "outfinds", "outfired", "outfires", "outflank", "outflies", "outfloat", "outflown", "outflows", "outfools", "outfoots", "outfound", "outfoxed", "outfoxes", "outfrown", "outgains", "outgazed", "outgazes", "outgiven", "outgives", "outglare", "outgleam", "outglows", "outgnawn", "outgnaws", "outgoing", "outgrins", "outgross", "outgroup", "outgrown", "outgrows", "outguess", "outguide", "outhauls", "outheard", "outhears", "outhomer", "outhouse", "outhowls", "outhumor", "outhunts", "outjumps", "outkeeps", "outkicks", "outkills", "outlands", "outlasts", "outlaugh", "outlawed", "outlawry", "outleads", "outleaps", "outleapt", "outlearn", "outliers", "outlined", "outliner", "outlines", "outlived", "outliver", "outlives", "outlooks", "outloved", "outloves", "outlying", "outmarch", "outmatch", "outmoded", "outmodes", "outmoved", "outmoves", "outpaced", "outpaces", "outpaint", "outpitch", "outplace", "outplans", "outplays", "outplods", "outplots", "outpoint", "outpolls", "outports", "outposts", "outpours", "outpower", "outprays", "outpreen", "outpress", "outprice", "outpulls", "outpunch", "outpupil", "outquote", "outraced", "outraces", "outraged", "outrages", "outraise", "outrance", "outrange", "outranks", "outrated", "outrates", "outraved", "outraves", "outreach", "outreads", "outrider", "outrides", "outright", "outrings", "outrival", "outroars", "outrocks", "outrolls", "outroots", "outrowed", "outsails", "outsavor", "outscold", "outscoop", "outscore", "outscorn", "outsells", "outserts", "outserve", "outshame", "outshine", "outshone", "outshoot", "outshout", "outsider", "outsides", "outsight", "outsings", "outsized", "outsizes", "outskate", "outskirt", "outsleep", "outslept", "outslick", "outsmart", "outsmell", "outsmelt", "outsmile", "outsmoke", "outsnore", "outsoars", "outsoles", "outspans", "outspeak", "outspeed", "outspell", "outspelt", "outspend", "outspent", "outspoke", "outstand", "outstare", "outstart", "outstate", "outstays", "outsteer", "outstood", "outstrip", "outstudy", "outstunt", "outsulks", "outsware", "outswear", "outsweep", "outswept", "outswims", "outswing", "outswore", "outsworn", "outswung", "outtakes", "outtalks", "outtasks", "outtells", "outthank", "outthink", "outthrew", "outthrob", "outthrow", "outtower", "outtrade", "outtrick", "outtrots", "outtrump", "outturns", "outvalue", "outvaunt", "outvoice", "outvoted", "outvotes", "outvying", "outwaits", "outwalks", "outwards", "outwaste", "outwatch", "outwears", "outweary", "outweeps", "outweigh", "outwhirl", "outwiled", "outwiles", "outwills", "outwinds", "outworks", "outwrite", "outwrote", "outyells", "outyelps", "outyield", "ovalness", "ovariole", "ovaritis", "ovations", "ovenbird", "ovenlike", "ovenware", "overable", "overacts", "overaged", "overages", "overalls", "overarch", "overarms", "overawed", "overawes", "overbake", "overbear", "overbeat", "overbets", "overbids", "overbill", "overbite", "overblew", "overblow", "overboil", "overbold", "overbook", "overbore", "overborn", "overbred", "overburn", "overbusy", "overbuys", "overcall", "overcame", "overcast", "overcoat", "overcold", "overcome", "overcook", "overcool", "overcram", "overcrop", "overcure", "overcuts", "overdare", "overdear", "overdeck", "overdoer", "overdoes", "overdogs", "overdone", "overdose", "overdraw", "overdrew", "overdubs", "overdyed", "overdyer", "overdyes", "overeasy", "overeats", "overedit", "overfast", "overfear", "overfeed", "overfill", "overfish", "overflew", "overflow", "overfond", "overfoul", "overfree", "overfull", "overfund", "overgild", "overgilt", "overgird", "overgirt", "overglad", "overgoad", "overgrew", "overgrow", "overhand", "overhang", "overhard", "overhate", "overhaul", "overhead", "overheap", "overhear", "overheat", "overheld", "overhigh", "overhold", "overholy", "overhope", "overhung", "overhunt", "overhype", "overidle", "overjoys", "overjust", "overkeen", "overkill", "overkind", "overlade", "overlaid", "overlain", "overland", "overlaps", "overlate", "overlays", "overleaf", "overleap", "overlend", "overlent", "overlets", "overlewd", "overlies", "overlive", "overload", "overlong", "overlook", "overlord", "overloud", "overlove", "overlush", "overmans", "overmany", "overmeek", "overmelt", "overmild", "overmilk", "overmine", "overmuch", "overnear", "overneat", "overnice", "overpack", "overpaid", "overpass", "overpast", "overpays", "overpert", "overplan", "overplay", "overplot", "overplus", "overpump", "overrank", "overrash", "overrate", "overrich", "override", "overrife", "overripe", "overrode", "overrude", "overruff", "overrule", "overruns", "oversale", "oversalt", "oversave", "overseas", "overseed", "overseen", "overseer", "oversees", "oversell", "oversets", "oversewn", "oversews", "overshoe", "overshot", "oversick", "overside", "oversize", "overslip", "overslow", "oversoak", "oversoft", "oversold", "oversoon", "oversoul", "overspin", "overstay", "overstep", "overstir", "oversuds", "oversups", "oversure", "overtake", "overtalk", "overtame", "overtart", "overtask", "overthin", "overtime", "overtips", "overtire", "overtoil", "overtone", "overtook", "overtops", "overtrim", "overture", "overturn", "overurge", "overused", "overuses", "overview", "overvote", "overwarm", "overwary", "overweak", "overwear", "overween", "overwets", "overwide", "overwily", "overwind", "overwise", "overword", "overwore", "overwork", "overworn", "overzeal", "ovicidal", "ovicides", "oviducal", "oviducts", "oviposit", "ovoidals", "ovulated", "ovulates", "owlishly", "oxalated", "oxalates", "oxalises", "oxazepam", "oxazines", "oxbloods", "oxhearts", "oxidable", "oxidants", "oxidases", "oxidasic", "oxidated", "oxidates", "oxidised", "oxidiser", "oxidises", "oxidized", "oxidizer", "oxidizes", "oximeter", "oximetry", "oxpecker", "oxtongue", "oxyacids", "oxygenic", "oxymoron", "oxyphile", "oxyphils", "oxysalts", "oxysomes", "oxytocic", "oxytocin", "oxytones", "oystered", "oysterer", "ozonated", "ozonates", "ozonides", "ozonised", "ozonises", "ozonized", "ozonizer", "ozonizes", "pabulums", "pachadom", "pachalic", "pachinko", "pachisis", "pachouli", "pachucos", "pacified", "pacifier", "pacifies", "pacifism", "pacifist", "packable", "packaged", "packager", "packages", "packeted", "packings", "packness", "packsack", "pactions", "paddings", "paddlers", "paddling", "paddocks", "padishah", "padlocks", "padrones", "padshahs", "paduasoy", "paeanism", "paesanos", "pagandom", "paganise", "paganish", "paganism", "paganist", "paganize", "pageants", "pageboys", "pagefuls", "paginate", "pagurian", "pagurids", "pahlavis", "pahoehoe", "pailfuls", "paillard", "pailsful", "painches", "painless", "painters", "paintier", "painting", "pairings", "paisanas", "paisanos", "paisleys", "pajamaed", "palabras", "paladins", "palatals", "palatial", "palatine", "palavers", "palazzos", "paleface", "paleness", "paleosol", "palestra", "paletots", "palettes", "paleways", "palewise", "palfreys", "palikars", "palimony", "palinode", "palisade", "palladia", "palladic", "palleted", "pallette", "palliate", "pallidly", "palliest", "palliums", "palmated", "palmette", "palmetto", "palmfuls", "palmiest", "palmists", "palmitin", "palmlike", "palmtops", "palmyras", "palomino", "palookas", "palpable", "palpably", "palpated", "palpates", "palpator", "palpebra", "palships", "palsying", "paltered", "palterer", "paltrier", "paltrily", "paludism", "pampeans", "pampered", "pamperer", "pamperos", "pamphlet", "panacean", "panaceas", "panaches", "panatela", "panbroil", "pancaked", "pancakes", "pancetta", "pancreas", "pandanus", "pandects", "pandemic", "pandered", "panderer", "pandoors", "pandoras", "pandores", "pandours", "pandowdy", "panduras", "pandying", "paneless", "paneling", "panelist", "panelled", "panetela", "panfried", "panfries", "pangenes", "pangolin", "pangrams", "panhuman", "panicked", "panicled", "panicles", "panicums", "panmixes", "panmixia", "panmixis", "panniers", "pannikin", "panochas", "panoches", "panoptic", "panorama", "panpipes", "pansophy", "pantalet", "pantheon", "panthers", "pantiled", "pantiles", "pantofle", "pantoums", "pantries", "pantsuit", "papacies", "papadams", "papadoms", "papadums", "paperboy", "paperers", "papering", "paphians", "papillae", "papillar", "papillon", "papistic", "papistry", "papooses", "pappadam", "pappiest", "pappoose", "papricas", "paprikas", "papulose", "papyrian", "papyrine", "parables", "parabola", "parachor", "paraders", "paradigm", "parading", "paradise", "paradors", "paradrop", "paraffin", "parafoil", "paraform", "paragoge", "paragons", "parakeet", "parakite", "parallax", "parallel", "paralyse", "paralyze", "parament", "paramour", "paranoea", "paranoia", "paranoic", "paranoid", "parapets", "paraquat", "paraquet", "parasail", "parasang", "parashah", "parashot", "parasite", "parasols", "paravane", "parawing", "parazoan", "parbaked", "parbakes", "parboils", "parceled", "parcener", "parchesi", "parching", "parchisi", "parclose", "pardners", "pardoned", "pardoner", "parecism", "pareiras", "parental", "parented", "parergon", "paretics", "parfaits", "parflesh", "parfocal", "pargeted", "pargings", "parhelia", "parhelic", "parietal", "parietes", "parishes", "parities", "parkades", "parkette", "parkings", "parkland", "parklike", "parkways", "parlance", "parlando", "parlante", "parlayed", "parleyed", "parleyer", "parlours", "parmesan", "parodied", "parodies", "parodist", "parolees", "paroling", "paronyms", "paroquet", "parosmia", "parotids", "parotoid", "paroxysm", "parquets", "parridge", "parriers", "parritch", "parroket", "parroted", "parroter", "parrying", "parsable", "parsleys", "parslied", "parsnips", "parsonic", "partaken", "partaker", "partakes", "parterre", "partials", "partible", "particle", "partiers", "partings", "partisan", "partitas", "partizan", "partlets", "partners", "partyers", "partying", "parvenue", "parvenus", "parvises", "parvolin", "paschals", "pashadom", "pashalic", "pashalik", "pashmina", "pasquils", "passable", "passably", "passades", "passados", "passaged", "passages", "passband", "passbook", "passerby", "passible", "passings", "passions", "passives", "passkeys", "passless", "passover", "passport", "passuses", "password", "pasterns", "pasteups", "pasticci", "pastiche", "pastiest", "pastille", "pastimes", "pastinas", "pastises", "pastitso", "pastless", "pastness", "pastoral", "pastored", "pastorly", "pastrami", "pastries", "pastromi", "pastural", "pastured", "pasturer", "pastures", "patagial", "patagium", "patamars", "patchers", "patchier", "patchily", "patching", "patellae", "patellar", "patellas", "patented", "patentee", "patently", "patentor", "paternal", "pathetic", "pathless", "pathogen", "pathoses", "pathways", "patience", "patients", "patinaed", "patinate", "patining", "patinize", "patootie", "patriate", "patriots", "patronal", "patronly", "patroons", "pattamar", "pattened", "pattered", "patterer", "patterns", "pattypan", "patulent", "patulous", "pauldron", "paunched", "paunches", "paupered", "pavement", "pavilion", "pavillon", "paviours", "pavisers", "pavisses", "pavlovas", "pavonine", "pawkiest", "pawnable", "pawnages", "pawnshop", "paxwaxes", "payables", "paybacks", "paycheck", "paygrade", "payloads", "payments", "payrolls", "pazazzes", "peaceful", "peacenik", "peachers", "peachier", "peaching", "peacoats", "peacocks", "peacocky", "peafowls", "peakiest", "peakless", "peaklike", "pearlash", "pearlers", "pearlier", "pearling", "pearlite", "pearmain", "peartest", "pearwood", "peasants", "peascods", "peasecod", "peatiest", "pebblier", "pebbling", "peccable", "peccancy", "peccavis", "peckiest", "pecorini", "pecorino", "pectases", "pectates", "pectines", "pectized", "pectizes", "pectoral", "peculate", "peculiar", "peculium", "pedagogs", "pedagogy", "pedalers", "pedalfer", "pedalier", "pedaling", "pedalled", "pedaller", "pedantic", "pedantry", "pedately", "peddlers", "peddlery", "peddling", "pederast", "pedestal", "pedicabs", "pedicels", "pedicled", "pedicles", "pedicure", "pediform", "pedigree", "pediment", "pedipalp", "pedocals", "pedology", "peduncle", "peebeens", "peekaboo", "peekapoo", "peelable", "peelings", "peephole", "peepshow", "peerages", "peerless", "peesweep", "peetweet", "pegboard", "pegboxes", "peignoir", "pekepoos", "pelagial", "pelagics", "pelerine", "pelicans", "pelisses", "pellagra", "pelletal", "pelleted", "pellicle", "pellmell", "pellucid", "pelorian", "pelorias", "pelotons", "peltasts", "peltered", "peltless", "peltries", "pelvises", "pembinas", "pemicans", "pemmican", "pemoline", "penalise", "penality", "penalize", "penanced", "penances", "penchant", "penciled", "penciler", "pendants", "pendency", "pendents", "pendular", "pendulum", "penguins", "penicils", "penitent", "penknife", "penlight", "penlites", "pennames", "pennants", "pennated", "pennines", "pennoned", "penoches", "penology", "penoncel", "penpoint", "pensione", "pensions", "pensters", "penstock", "pentacle", "pentagon", "pentanes", "pentanol", "pentarch", "pentenes", "pentodes", "pentomic", "pentosan", "pentoses", "penuches", "penuchis", "penuchle", "penuckle", "penumbra", "penuries", "peonages", "peonisms", "peoplers", "peopling", "peperoni", "peploses", "peplumed", "pepluses", "peponida", "peponium", "peppered", "pepperer", "peppiest", "pepsines", "peptalks", "peptides", "peptidic", "peptized", "peptizer", "peptizes", "peptones", "peptonic", "peracids", "percales", "perceive", "percents", "percepts", "perchers", "perching", "percoids", "perdured", "perdures", "peregrin", "pereions", "pereopod", "perfecta", "perfecto", "perfects", "perforce", "performs", "perfumed", "perfumer", "perfumes", "perfused", "perfuses", "pergolas", "perianth", "periapts", "periblem", "pericarp", "pericope", "periderm", "peridial", "peridium", "peridots", "perigeal", "perigean", "perigees", "perigons", "perigyny", "periling", "perillas", "perilled", "perilous", "perilune", "perineal", "perineum", "periodic", "periodid", "periotic", "peripety", "peripter", "periques", "perisarc", "perished", "perishes", "periwigs", "perjured", "perjurer", "perjures", "perkiest", "perlites", "perlitic", "permeant", "permease", "permeate", "permuted", "permutes", "peroneal", "perorate", "peroxide", "peroxids", "perpends", "perpents", "persalts", "persists", "personae", "personal", "personas", "perspire", "perspiry", "persuade", "pertains", "pertness", "perturbs", "perusals", "perusers", "perusing", "pervaded", "pervader", "pervades", "perverse", "perverts", "pervious", "peskiest", "pestered", "pesterer", "pesthole", "pestiest", "pestling", "petabyte", "petaline", "petalled", "petalody", "petaloid", "petalous", "petcocks", "petechia", "petering", "petiolar", "petioled", "petioles", "petition", "petnaper", "petrales", "petrolic", "petronel", "petrosal", "pettable", "pettedly", "pettiest", "pettifog", "pettings", "pettling", "petulant", "petunias", "petuntse", "petuntze", "pewterer", "peytrals", "peytrels", "pfennige", "pfennigs", "phaetons", "phalange", "phallism", "phallist", "phantasm", "phantast", "phantasy", "phantoms", "pharaohs", "pharisee", "pharmacy", "pharming", "pharoses", "phaseout", "phasmids", "phattest", "pheasant", "phellems", "phelonia", "phenates", "phenazin", "phenetic", "phenetol", "phenixes", "phenolic", "phenylic", "phereses", "pheresis", "philabeg", "philibeg", "philomel", "philters", "philtred", "philtres", "philtrum", "phimoses", "phimosis", "phimotic", "phonated", "phonates", "phonemes", "phonemic", "phonetic", "phoneyed", "phoniest", "phonying", "phorates", "phoronid", "phosgene", "phosphid", "phosphin", "phosphor", "photoing", "photomap", "photonic", "photopia", "photopic", "photoset", "phrasing", "phratral", "phratric", "phreaked", "phreaker", "phreatic", "phthalic", "phthalin", "phthises", "phthisic", "phthisis", "phylaxis", "phyleses", "phylesis", "phyletic", "phyllary", "phyllite", "phyllode", "phylloid", "phyllome", "physical", "physique", "phytanes", "phytonic", "piacular", "piaffers", "piaffing", "pianisms", "pianists", "piasabas", "piasavas", "piassaba", "piassava", "piasters", "piastres", "pibrochs", "picachos", "picadors", "picaroon", "picayune", "piccolos", "piciform", "pickadil", "pickaxed", "pickaxes", "pickeers", "pickerel", "picketed", "picketer", "pickiest", "pickings", "pickling", "picklock", "pickoffs", "pickwick", "picloram", "picnicky", "picogram", "picoline", "picolins", "picomole", "picotees", "picoting", "picowave", "picquets", "picrated", "picrates", "picrites", "picritic", "pictured", "pictures", "piddlers", "piddling", "piddocks", "piebalds", "piecings", "piecrust", "piedfort", "piedmont", "pieforts", "pieholes", "pieplant", "piercers", "piercing", "pierrots", "pietisms", "pietists", "piffling", "pigboats", "piggiest", "pigments", "pignolia", "pignolis", "pigskins", "pigsneys", "pigstick", "pigsties", "pigtails", "pigweeds", "pilaster", "pilchard", "pileated", "pileless", "pilewort", "pilfered", "pilferer", "pilgrims", "piliform", "pillaged", "pillager", "pillages", "pillared", "pillions", "pillowed", "pilosity", "pilotage", "piloting", "pilsener", "pilsners", "pimentos", "pimiento", "pimplier", "pinafore", "pinaster", "pinballs", "pinbones", "pinchbug", "pincheck", "pinchers", "pinching", "pindling", "pinecone", "pineland", "pinelike", "pineries", "pinesaps", "pinewood", "pinfolds", "pingrass", "pinheads", "pinholes", "pinioned", "pinitols", "pinkened", "pinkeyes", "pinkings", "pinkness", "pinkroot", "pinnaces", "pinnacle", "pinnated", "pinniped", "pinnulae", "pinnular", "pinnules", "pinochle", "pinocles", "pinpoint", "pinprick", "pinscher", "pintadas", "pintados", "pintails", "pintanos", "pintsize", "pinwales", "pinweeds", "pinwheel", "pinworks", "pinworms", "pioneers", "pipeages", "pipefish", "pipefuls", "pipeless", "pipelike", "pipeline", "piperine", "pipestem", "pipetted", "pipettes", "pipiness", "pipingly", "piquance", "piquancy", "piracies", "piraguas", "piranhas", "pirarucu", "pirating", "piriform", "pirogies", "pirogues", "piroques", "piroshki", "pirozhki", "pirozhok", "piscator", "piscinae", "piscinal", "piscinas", "pishoges", "pishogue", "pisiform", "pismires", "pisolite", "pisolith", "pissants", "pissoirs", "pistache", "pistoled", "pistoles", "pitahaya", "pitapats", "pitchers", "pitchier", "pitchily", "pitching", "pitchman", "pitchmen", "pitchout", "pitfalls", "pitheads", "pithiest", "pithless", "pitiable", "pitiably", "pitiless", "pittance", "pittings", "pivoting", "pivotman", "pivotmen", "pixieish", "pixiness", "pizazzes", "pizzazes", "pizzazzy", "pizzelle", "pizzeria", "placable", "placably", "placards", "placated", "placater", "placates", "placebos", "placeman", "placemen", "placenta", "placidly", "plackets", "placoids", "plafonds", "plagiary", "plaguers", "plaguily", "plaguing", "plainest", "plaining", "plaister", "plaiters", "plaiting", "planaria", "planches", "planchet", "planform", "plangent", "planking", "plankter", "plankton", "planless", "planners", "planning", "planosol", "plantain", "planters", "planting", "plantlet", "planulae", "planular", "plashers", "plashier", "plashing", "plasmids", "plasmins", "plasmoid", "plasmons", "plasters", "plastery", "plastics", "plastids", "plastral", "plastron", "plastrum", "platanes", "plateaus", "plateaux", "plateful", "platelet", "platform", "platiest", "platinas", "platings", "platinic", "platinum", "platonic", "platoons", "platters", "platting", "platypus", "plaudits", "plausive", "playable", "playacts", "playback", "playbill", "playbook", "playboys", "playdate", "playdays", "playdown", "playgirl", "playgoer", "playland", "playless", "playlets", "playlike", "playlist", "playmate", "playoffs", "playpens", "playroom", "playsuit", "playtime", "playwear", "pleached", "pleaches", "pleaders", "pleading", "pleasant", "pleasers", "pleasing", "pleasure", "pleaters", "pleather", "pleating", "plebeian", "plectron", "plectrum", "pledgees", "pledgeor", "pledgers", "pledgets", "pledging", "pledgors", "pleiades", "plenches", "plenisms", "plenists", "plenties", "pleonasm", "pleopods", "plessors", "plethora", "pleurisy", "pleuston", "plexuses", "pliantly", "plicated", "plighted", "plighter", "plimsole", "plimsoll", "plimsols", "plinkers", "plinking", "pliocene", "pliofilm", "pliotron", "pliskies", "plodders", "plodding", "ploidies", "plonking", "plopping", "plosions", "plosives", "plotless", "plotline", "plottage", "plotters", "plottier", "plotties", "plotting", "plotzing", "ploughed", "plougher", "plowable", "plowback", "plowboys", "plowhead", "plowland", "pluckers", "pluckier", "pluckily", "plucking", "pluggers", "plugging", "plugless", "plugolas", "plugugly", "plumaged", "plumages", "plumbago", "plumbers", "plumbery", "plumbing", "plumbism", "plumbous", "plumbums", "plumelet", "plumeria", "plumiest", "plumiped", "plumlike", "plummest", "plummets", "plummier", "plumpens", "plumpers", "plumpest", "plumping", "plumpish", "plumular", "plumules", "plunders", "plungers", "plunging", "plunkers", "plunkier", "plunking", "plurally", "plushest", "plushier", "plushily", "plussage", "plutonic", "pluvials", "pluviose", "pluvious", "plyingly", "plywoods", "poaceous", "poachers", "poachier", "poaching", "poblanos", "pochards", "pocketed", "pocketer", "pockiest", "pockmark", "pocosens", "pocosins", "pocosons", "podagral", "podagras", "podagric", "podestas", "podgiest", "podiatry", "podocarp", "podomere", "podsolic", "podzolic", "poechore", "poetical", "poetised", "poetiser", "poetises", "poetized", "poetizer", "poetizes", "poetless", "poetlike", "poetries", "pogonias", "pogonips", "pogromed", "poignant", "poinding", "pointers", "pointier", "pointing", "pointman", "pointmen", "poisoned", "poisoner", "poitrels", "pokeroot", "pokeweed", "pokiness", "polarise", "polarity", "polarize", "polarons", "poleaxed", "poleaxes", "polecats", "poleless", "polemics", "polemist", "polemize", "polentas", "polestar", "poleward", "policers", "policies", "policing", "polished", "polisher", "polishes", "politely", "politest", "politick", "politico", "politics", "polities", "polkaing", "pollacks", "pollards", "pollened", "pollical", "pollices", "pollinia", "pollinic", "pollists", "polliwog", "pollocks", "pollster", "polluted", "polluter", "pollutes", "pollywog", "poloists", "polonium", "poltroon", "polybrid", "polycots", "polyenes", "polyenic", "polygala", "polygamy", "polygene", "polyglot", "polygons", "polygony", "polygyny", "polymath", "polymers", "polynyas", "polyomas", "polypary", "polypeds", "polypide", "polypnea", "polypods", "polypody", "polypoid", "polypore", "polypous", "polysemy", "polysome", "polytene", "polyteny", "polytype", "polyuria", "polyuric", "polyzoan", "polyzoic", "pomading", "pomander", "pomatums", "pomfrets", "pommeled", "pomology", "pompanos", "ponchoed", "pondered", "ponderer", "pondweed", "poniards", "pontifex", "pontiffs", "pontific", "pontoons", "ponytail", "pooching", "pooftahs", "poofters", "poolhall", "poolroom", "poolside", "poontang", "poorness", "poortith", "popcorns", "popedoms", "popeless", "popelike", "poperies", "popinjay", "popishly", "poplitei", "poplitic", "popovers", "poppadom", "poppadum", "poppling", "popsicle", "populace", "populate", "populism", "populist", "populous", "porcinis", "porkiest", "porkpies", "porkwood", "porniest", "porosity", "porously", "porphyry", "porpoise", "porridge", "porridgy", "portable", "portably", "portaged", "portages", "portaled", "portance", "portapak", "portends", "portents", "portered", "porthole", "porticos", "portiere", "portions", "portless", "portlier", "portrait", "portrays", "portress", "portside", "poshness", "posingly", "positing", "position", "positive", "positron", "posology", "possible", "possibly", "postages", "postally", "postanal", "postbags", "postbase", "postboys", "postburn", "postcard", "postcava", "postcode", "postcoup", "postdate", "postdive", "postdocs", "postdrug", "posteens", "posterns", "postface", "postfire", "postform", "postgame", "postgrad", "postheat", "posthole", "postiche", "postings", "postique", "postlude", "postmark", "postoral", "postpaid", "postpone", "postpose", "postpunk", "postrace", "postriot", "postshow", "postsync", "postteen", "posttest", "postural", "postured", "posturer", "postures", "potables", "potashes", "potassic", "potation", "potatoes", "potatory", "potbelly", "potboils", "potbound", "potences", "potently", "potheads", "potheens", "potherbs", "pothered", "potholed", "potholes", "pothooks", "pothouse", "potiches", "potlache", "potlatch", "potlines", "potlucks", "potshard", "potsherd", "potshots", "potstone", "pottages", "potteens", "pottered", "potterer", "pottiest", "pouchier", "pouching", "poularde", "poulards", "poulters", "poultice", "pouncers", "pouncing", "poundage", "poundals", "pounders", "pounding", "pourable", "poussies", "poutiest", "poutines", "powdered", "powderer", "powerful", "powering", "powwowed", "poxvirus", "pozzolan", "practice", "practise", "praecipe", "praedial", "praefect", "praelect", "praetors", "prairies", "praisers", "praising", "pralines", "prancers", "prancing", "prandial", "pranging", "pranking", "prankish", "pratfall", "pratique", "prattled", "prattler", "prattles", "prawners", "prawning", "praxises", "preached", "preacher", "preaches", "preacted", "preadapt", "preadmit", "preadopt", "preadult", "preallot", "prealter", "preamble", "preapply", "prearmed", "preaudit", "preavers", "preaxial", "prebaked", "prebakes", "prebasal", "prebends", "prebills", "prebinds", "prebirth", "prebless", "preboard", "preboils", "prebooks", "prebound", "prebuild", "prebuilt", "precasts", "precavae", "precaval", "preceded", "precedes", "precents", "precepts", "precheck", "prechill", "prechose", "precieux", "precinct", "precious", "precipes", "precised", "preciser", "precises", "precited", "preclean", "preclear", "preclude", "precoded", "precodes", "precooks", "precools", "precrash", "precured", "precures", "predated", "predates", "predator", "predawns", "predeath", "predella", "predicts", "predraft", "predried", "predries", "predrill", "predusks", "preedits", "preelect", "preemies", "preempts", "preenact", "preeners", "preening", "preerect", "preexist", "prefaced", "prefacer", "prefaces", "prefaded", "prefades", "prefects", "prefight", "prefiled", "prefiles", "prefired", "prefires", "prefixal", "prefixed", "prefixes", "preflame", "prefocus", "preforms", "prefrank", "prefroze", "prefunds", "pregames", "preggers", "pregnant", "preguide", "preheats", "prehuman", "prejudge", "prelates", "prelatic", "prelects", "prelegal", "prelimit", "prelives", "preloads", "preluded", "preluder", "preludes", "prelunch", "premedic", "premiere", "premiers", "premised", "premises", "premiums", "premixed", "premixes", "premolar", "premolds", "premoral", "premorse", "prenames", "prenatal", "prenomen", "prentice", "preorder", "preowned", "prepacks", "prepared", "preparer", "prepares", "prepaste", "prepaved", "prepaves", "prepense", "preplace", "preplans", "preplant", "preppier", "preppies", "preppily", "prepping", "prepregs", "prepress", "preprice", "preprint", "prepubes", "prepubis", "prepuces", "prepunch", "prepupae", "prepupal", "prepupas", "prequels", "preradio", "prerenal", "prerinse", "presaged", "presager", "presages", "presales", "prescind", "prescore", "presells", "presence", "presents", "preserve", "preshape", "preships", "preshown", "preshows", "presided", "presider", "presides", "presidia", "presidio", "presifts", "presleep", "preslice", "presoaks", "presolve", "presorts", "presplit", "pressers", "pressing", "pressman", "pressmen", "pressors", "pressrun", "pressure", "prestamp", "presters", "prestige", "prestore", "presumed", "presumer", "presumes", "pretaped", "pretapes", "pretaste", "preteens", "pretells", "pretence", "pretends", "pretense", "preterit", "preterms", "pretests", "pretexts", "pretrain", "pretreat", "pretrial", "pretrims", "prettied", "prettier", "pretties", "prettify", "prettily", "pretyped", "pretypes", "pretzels", "preunion", "preunite", "prevails", "prevalue", "prevents", "preverbs", "previews", "previous", "prevised", "previses", "previsit", "previsor", "prevuing", "prewarms", "prewarns", "preweigh", "prewired", "prewires", "preworks", "prewraps", "priapean", "priapism", "priciest", "prickers", "prickets", "prickier", "pricking", "prickled", "prickles", "prideful", "priedieu", "priested", "priestly", "priggery", "prigging", "priggish", "priggism", "prilling", "primages", "primatal", "primates", "primeros", "primeval", "primines", "primings", "primmest", "primming", "primness", "primping", "primrose", "primulas", "primuses", "princely", "princess", "principe", "principi", "princock", "prinkers", "prinking", "printers", "printery", "printing", "printout", "priorate", "prioress", "priories", "priority", "priseres", "prismoid", "prisoned", "prisoner", "prissier", "prissies", "prissily", "prissing", "pristane", "pristine", "privater", "privates", "priviest", "probable", "probably", "probands", "probangs", "probated", "probates", "problems", "procaine", "procarps", "proceeds", "prochain", "prochein", "proclaim", "proctors", "procural", "procured", "procurer", "procures", "prodders", "prodding", "prodigal", "prodrome", "prodrugs", "produced", "producer", "produces", "products", "proemial", "proettes", "profaned", "profaner", "profanes", "proffers", "profiled", "profiler", "profiles", "profited", "profiter", "proforma", "profound", "progeria", "proggers", "progging", "prognose", "prograde", "programs", "progress", "prohibit", "projects", "prolabor", "prolamin", "prolapse", "prolific", "prolines", "prolixly", "prologed", "prologue", "prolonge", "prolongs", "promines", "promised", "promisee", "promiser", "promises", "promisor", "promoing", "promoted", "promoter", "promotes", "prompted", "prompter", "promptly", "promulge", "pronated", "pronates", "pronator", "pronging", "pronotum", "pronouns", "proofers", "proofing", "propanes", "propends", "propenes", "propenol", "propense", "propenyl", "properer", "properly", "property", "prophage", "prophase", "prophecy", "prophesy", "prophets", "propined", "propines", "propjets", "propolis", "proponed", "propones", "proposal", "proposed", "proposer", "proposes", "propound", "propping", "proprium", "propylic", "propylon", "prorated", "prorates", "prorogue", "prosaism", "prosaist", "prosects", "prosiest", "prosodic", "prosomal", "prosomas", "prospect", "prospers", "prossies", "prostate", "prosties", "prostyle", "protamin", "protases", "protasis", "protatic", "proteans", "protease", "protects", "protegee", "proteges", "proteide", "proteids", "proteins", "protends", "proteome", "proteose", "protests", "protists", "protiums", "protocol", "protonic", "protopod", "protoxid", "protozoa", "protract", "protrade", "protrude", "protyles", "proudest", "proudful", "prounion", "provable", "provably", "provenly", "proverbs", "provided", "provider", "provides", "province", "proviral", "provirus", "provisos", "provoked", "provoker", "provokes", "provosts", "prowlers", "prowling", "proxemic", "proximal", "prudence", "pruinose", "prunable", "prunella", "prunelle", "prunello", "prunuses", "prurient", "prurigos", "pruritic", "pruritus", "pryingly", "psalming", "psalmist", "psalmody", "psalters", "psaltery", "psammite", "psammons", "pschents", "psephite", "pshawing", "psilocin", "psiloses", "psilosis", "psilotic", "psoralea", "psoralen", "psychics", "psyching", "psyllids", "psyllium", "pteropod", "pterygia", "pterylae", "ptomaine", "ptomains", "ptyalins", "ptyalism", "pubertal", "publican", "publicly", "puccoons", "puckered", "puckerer", "puddings", "puddlers", "puddlier", "puddling", "pudendal", "pudendum", "pudgiest", "pudibund", "puerpera", "puffball", "puffiest", "pugarees", "puggaree", "puggiest", "puggrees", "puggries", "pugilism", "pugilist", "pugmarks", "puissant", "pulicene", "pulicide", "pulingly", "pullback", "pullmans", "pullouts", "pullover", "pulmonic", "pulmotor", "pulpally", "pulpiest", "pulpital", "pulpless", "pulpwood", "pulsated", "pulsates", "pulsator", "pulsejet", "pulsions", "pulsojet", "pulvilli", "pulvinar", "pulvinus", "pumicers", "pumicing", "pumicite", "pummeled", "pummelos", "pumpkins", "pumpless", "pumplike", "puncheon", "punchers", "punchier", "punchily", "punching", "punctate", "punctual", "puncture", "punditic", "punditry", "pungency", "pungling", "puniness", "punished", "punisher", "punishes", "punition", "punitive", "punitory", "punkiest", "punniest", "punsters", "puparial", "puparium", "pupating", "pupation", "pupilage", "pupilary", "puppetry", "puppydom", "puppyish", "purblind", "purchase", "purebred", "pureeing", "pureness", "purflers", "purfling", "purgings", "purified", "purifier", "purifies", "puristic", "puritans", "purities", "purlieus", "purlines", "purlings", "purloins", "purplest", "purpling", "purplish", "purports", "purposed", "purposes", "purpuras", "purpures", "purpuric", "purpurin", "pursiest", "purslane", "pursuant", "pursuers", "pursuing", "pursuits", "purtiest", "purulent", "purveyed", "purveyor", "purviews", "pushball", "pushcart", "pushdown", "pushiest", "pushover", "pushpins", "pushrods", "pussiest", "pussleys", "pusslies", "pusslike", "pussycat", "pustular", "pustuled", "pustules", "putamina", "putative", "putdowns", "putridly", "putsches", "puttered", "putterer", "puttiers", "puttying", "puzzlers", "puzzling", "pyaemias", "pycnidia", "pycnoses", "pycnosis", "pycnotic", "pyelitic", "pyelitis", "pygidial", "pygidium", "pygmaean", "pygmyish", "pygmyism", "pyknoses", "pyknosis", "pyknotic", "pyoderma", "pyogenic", "pyorrhea", "pyralids", "pyramids", "pyranoid", "pyranose", "pyrenoid", "pyrexial", "pyrexias", "pyridine", "pyriform", "pyritous", "pyrogens", "pyrolize", "pyrology", "pyrolyze", "pyronine", "pyrostat", "pyroxene", "pyrrhics", "pyrroles", "pyrrolic", "pyruvate", "pythonic", "pyxidium", "qabalahs", "qindarka", "quaalude", "quackery", "quackier", "quacking", "quackish", "quackism", "quadding", "quadplex", "quadrans", "quadrant", "quadrate", "quadrats", "quadrics", "quadriga", "quadroon", "quaestor", "quaffers", "quaffing", "quaggier", "quagmire", "quagmiry", "quahaugs", "quaiches", "quailing", "quainter", "quaintly", "quakiest", "qualmier", "qualmish", "quandang", "quandary", "quandong", "quantics", "quantify", "quantile", "quanting", "quantity", "quantize", "quantong", "quarrels", "quarried", "quarrier", "quarries", "quartans", "quartern", "quarters", "quartets", "quartics", "quartier", "quartile", "quartzes", "quashers", "quashing", "quassias", "quassins", "quatorze", "quatrain", "quavered", "quaverer", "quayages", "quaylike", "quayside", "queasier", "queasily", "queazier", "queendom", "queening", "queerest", "queering", "queerish", "quellers", "quelling", "quenched", "quencher", "quenches", "quenelle", "quercine", "queridas", "queriers", "querists", "querying", "questers", "questing", "question", "questors", "quetzals", "queueing", "quezales", "quibbled", "quibbler", "quibbles", "quickens", "quickest", "quickies", "quickset", "quiddity", "quidnunc", "quietens", "quieters", "quietest", "quieting", "quietism", "quietist", "quietude", "quillaia", "quillais", "quillaja", "quillets", "quilling", "quilters", "quilting", "quincunx", "quinelas", "quinella", "quiniela", "quininas", "quinines", "quinnats", "quinoids", "quinolin", "quinones", "quinsied", "quinsies", "quintain", "quintals", "quintans", "quintars", "quintets", "quintics", "quintile", "quintins", "quippers", "quippier", "quipping", "quippish", "quipster", "quirkier", "quirkily", "quirking", "quirkish", "quirting", "quisling", "quitches", "quitrent", "quitters", "quitting", "quittors", "quivered", "quiverer", "quixotes", "quixotic", "quixotry", "quizzers", "quizzing", "quoining", "quoiting", "quomodos", "quotable", "quotably", "quotient", "qurushes", "rabbeted", "rabbinic", "rabbited", "rabbiter", "rabbitry", "rabblers", "rabbling", "rabbonis", "rabidity", "rabietic", "raccoons", "racemate", "racemism", "racemize", "racemoid", "racemose", "racemous", "racewalk", "raceways", "racheted", "rachides", "rachilla", "rachises", "rachitic", "rachitis", "racially", "raciness", "racketed", "rackfuls", "rackwork", "raclette", "racquets", "raddling", "radiable", "radialia", "radially", "radiance", "radiancy", "radiants", "radiated", "radiates", "radiator", "radicals", "radicand", "radicate", "radicels", "radicles", "radioing", "radioman", "radiomen", "radishes", "radiuses", "radwaste", "rafflers", "raffling", "raftered", "raftsman", "raftsmen", "raggeder", "raggedly", "ragingly", "ragouted", "ragtimes", "ragweeds", "ragworts", "railbird", "railcars", "railhead", "railings", "raillery", "railroad", "railways", "raiments", "rainband", "rainbird", "rainbows", "raincoat", "raindrop", "rainfall", "rainiest", "rainless", "rainouts", "rainwash", "rainwear", "raisable", "raisings", "raisonne", "rakehell", "rakeoffs", "rakishly", "ralliers", "rallying", "rallyist", "ralphing", "ramblers", "rambling", "rambutan", "ramekins", "ramentum", "ramequin", "ramified", "ramifies", "ramiform", "ramilies", "ramillie", "rammiest", "ramosely", "ramosity", "rampaged", "rampager", "rampages", "rampancy", "ramparts", "rampikes", "rampions", "rampoles", "ramshorn", "ramtilla", "ramulose", "ramulous", "ranchero", "ranchers", "ranching", "ranchman", "ranchmen", "rancidly", "rancored", "rancours", "randiest", "randomly", "rangiest", "rankings", "rankless", "rankling", "rankness", "ranpikes", "ransacks", "ransomed", "ransomer", "rapacity", "rapeseed", "raphides", "rapidest", "rapidity", "rapiered", "rapparee", "rappeled", "rapports", "raptness", "raptured", "raptures", "rarebits", "rarefied", "rarefier", "rarefies", "rareness", "rareripe", "rarified", "rarifies", "rarities", "rasboras", "rascally", "rashlike", "rashness", "rasorial", "raspiest", "raspings", "rassling", "ratables", "ratafees", "ratafias", "ratanies", "rataplan", "ratatats", "ratchets", "rateable", "rateably", "ratfinks", "ratholes", "raticide", "ratified", "ratifier", "ratifies", "rational", "rationed", "ratlines", "ratooned", "ratooner", "ratsbane", "rattails", "ratteens", "rattened", "rattener", "rattiest", "rattlers", "rattling", "rattoons", "rattraps", "raunches", "ravagers", "ravaging", "ravelers", "raveling", "ravelins", "ravelled", "raveller", "raveners", "ravening", "ravenous", "ravigote", "ravingly", "ravining", "raviolis", "ravished", "ravisher", "ravishes", "rawboned", "rawhided", "rawhides", "raygrass", "razeeing", "razoring", "reabsorb", "reaccede", "reaccent", "reaccept", "reaccuse", "reachers", "reaching", "reactant", "reacting", "reaction", "reactive", "reactors", "readable", "readably", "readapts", "readdict", "readding", "readerly", "readiest", "readings", "readjust", "readmits", "readopts", "readorns", "readouts", "readying", "reaffirm", "reagents", "reaginic", "realgars", "realigns", "realised", "realiser", "realises", "realisms", "realists", "realized", "realizer", "realizes", "reallots", "realness", "realters", "realties", "realtors", "reanoint", "reapable", "reaphook", "reappear", "reargued", "reargues", "rearmice", "rearming", "rearmost", "rearouse", "rearrest", "rearward", "reascend", "reascent", "reasoned", "reasoner", "reassail", "reassert", "reassess", "reassign", "reassort", "reassume", "reassure", "reattach", "reattack", "reattain", "reavails", "reavowed", "reawaked", "reawaken", "reawakes", "reawoken", "rebaited", "rebaters", "rebating", "rebegins", "rebeldom", "rebelled", "rebidden", "rebilled", "rebirths", "reblends", "reblooms", "reboards", "rebodied", "rebodies", "reboiled", "rebooked", "rebooted", "reboring", "rebottle", "rebought", "rebounds", "rebranch", "rebreeds", "rebuffed", "rebuilds", "rebukers", "rebuking", "reburial", "reburied", "reburies", "rebuttal", "rebutted", "rebutter", "rebutton", "rebuying", "recalled", "recaller", "recamier", "recaning", "recanted", "recanter", "recapped", "recarpet", "receding", "receipts", "received", "receiver", "receives", "recement", "recensor", "recenter", "recently", "receptor", "recessed", "recesses", "rechange", "recharge", "recharts", "recheats", "rechecks", "rechewed", "rechoose", "rechosen", "recircle", "recision", "recitals", "reciters", "reciting", "reckless", "reckoned", "reckoner", "reclaims", "reclames", "reclasps", "recleans", "reclined", "recliner", "reclines", "reclothe", "recluses", "recoaled", "recoated", "recocked", "recodify", "recoding", "recoiled", "recoiler", "recoined", "recolors", "recombed", "recommit", "reconfer", "reconned", "reconvey", "recooked", "recopied", "recopies", "recorded", "recorder", "recorked", "recounts", "recouped", "recouple", "recourse", "recovers", "recovery", "recrated", "recrates", "recreant", "recreate", "recrowns", "recruits", "rectally", "recurred", "recurved", "recurves", "recusals", "recusant", "recusing", "recycled", "recycler", "recycles", "redacted", "redactor", "redamage", "redargue", "redating", "redbaits", "redbirds", "redbones", "redbrick", "redcoats", "reddened", "reddling", "redecide", "redeemed", "redeemer", "redefeat", "redefect", "redefied", "redefies", "redefine", "redemand", "redenied", "redenies", "redeploy", "redesign", "redheads", "redhorse", "redialed", "redigest", "redipped", "redirect", "redivide", "redlined", "redliner", "redlines", "rednecks", "redocked", "redolent", "redonned", "redouble", "redoubts", "redounds", "redpolls", "redrafts", "redrawer", "redreams", "redreamt", "redrills", "redriven", "redrives", "redroots", "redrying", "redshank", "redshift", "redshirt", "redskins", "redstart", "redtails", "redubbed", "reducers", "reducing", "reductor", "reduviid", "redwares", "redwings", "redwoods", "redyeing", "reearned", "reechier", "reechoed", "reechoes", "reedbird", "reedbuck", "reediest", "reedings", "reedited", "reedlike", "reedling", "reefable", "reefiest", "reejects", "reekiest", "reelable", "reelects", "reelings", "reembark", "reembody", "reemerge", "reemploy", "reenacts", "reendows", "reengage", "reenjoys", "reenlist", "reenroll", "reenters", "reequips", "reerects", "reesting", "reevoked", "reevokes", "reexpels", "reexport", "reexpose", "refacing", "refallen", "refasten", "refected", "refelled", "refenced", "refences", "refereed", "referees", "referent", "referral", "referred", "referrer", "refights", "refigure", "refiling", "refilled", "refilmed", "refilter", "refiners", "refinery", "refining", "refinish", "refiring", "refitted", "refixing", "reflated", "reflates", "reflects", "reflexed", "reflexes", "reflexly", "refloats", "refloods", "reflowed", "reflower", "refluent", "refluxed", "refluxes", "reflying", "refolded", "reforest", "reforged", "reforges", "reformat", "reformed", "reformer", "refought", "refounds", "refracts", "refrains", "reframed", "reframes", "refreeze", "refronts", "refrozen", "refrying", "refueled", "refugees", "refuging", "refugium", "refunded", "refunder", "refusals", "refusers", "refusing", "refusnik", "refutals", "refuters", "refuting", "regained", "regainer", "regalers", "regaling", "regality", "regarded", "regather", "regattas", "regauged", "regauges", "regeared", "regelate", "regental", "regicide", "regilded", "regimens", "regiment", "regional", "register", "registry", "regiving", "reglazed", "reglazes", "reglowed", "regluing", "regnancy", "regolith", "regorged", "regorges", "regosols", "regraded", "regrades", "regrafts", "regrants", "regrated", "regrates", "regreens", "regreets", "regrinds", "regrooms", "regroove", "reground", "regroups", "regrowth", "regulars", "regulate", "reguline", "rehabbed", "rehabber", "rehammer", "rehandle", "rehanged", "reharden", "rehashed", "rehashes", "rehearse", "reheated", "reheater", "reheeled", "rehemmed", "rehinged", "rehinges", "rehiring", "rehoboam", "rehoused", "rehouses", "reifiers", "reifying", "reigning", "reignite", "reimaged", "reimages", "reimport", "reimpose", "reincite", "reincurs", "reindeer", "reindict", "reinduce", "reinduct", "reinfect", "reinform", "reinfuse", "reinject", "reinjure", "reinjury", "reinking", "reinless", "reinsert", "reinsman", "reinsmen", "reinsure", "reinters", "reinvade", "reinvent", "reinvest", "reinvite", "reinvoke", "reissued", "reissuer", "reissues", "reitboks", "rejacket", "rejected", "rejectee", "rejecter", "rejector", "rejigged", "rejigger", "rejoiced", "rejoicer", "rejoices", "rejoined", "rejudged", "rejudges", "rejuggle", "rekeying", "rekindle", "relabels", "relacing", "relanded", "relapsed", "relapser", "relapses", "relaters", "relating", "relation", "relative", "relators", "relaunch", "relaxant", "relaxers", "relaxing", "relaxins", "relaying", "relearns", "relearnt", "released", "releaser", "releases", "relegate", "relented", "reletter", "relevant", "reliable", "reliably", "reliance", "relieved", "reliever", "relieves", "relievos", "relights", "religion", "relining", "relinked", "reliques", "relished", "relishes", "relisted", "reliving", "rellenos", "reloaded", "reloader", "reloaned", "relocate", "relocked", "relooked", "relucent", "relucted", "relumine", "reluming", "remailed", "remained", "remakers", "remaking", "remanded", "remanent", "remanned", "remapped", "remarked", "remarker", "remarket", "remarque", "remaster", "remating", "remedial", "remedied", "remedies", "remelted", "remember", "remended", "remerged", "remerges", "remigial", "reminded", "reminder", "reminted", "remising", "remissly", "remittal", "remitted", "remitter", "remittor", "remixing", "remnants", "remodels", "remodify", "remolade", "remolded", "remorses", "remotely", "remotest", "remotion", "remounts", "removals", "removers", "removing", "renailed", "renaming", "renature", "rendered", "renderer", "rendible", "rendzina", "renegade", "renegado", "renegers", "reneging", "renested", "renewals", "renewers", "renewing", "reniform", "renigged", "renitent", "renminbi", "rennases", "renogram", "renotify", "renounce", "renovate", "renowned", "rentable", "rentiers", "renumber", "reobject", "reobtain", "reoccupy", "reoccurs", "reoffers", "reoiling", "reopened", "reoppose", "reordain", "reorders", "reorient", "reoutfit", "reovirus", "repacify", "repacked", "repaints", "repaired", "repairer", "repandly", "repanels", "repapers", "reparked", "repartee", "repassed", "repasses", "repasted", "repaving", "repaying", "repealed", "repealer", "repeated", "repeater", "repegged", "repelled", "repeller", "repented", "repenter", "repeople", "reperked", "repetend", "rephrase", "repiners", "repining", "repinned", "replaced", "replacer", "replaces", "replants", "replated", "replates", "replayed", "repleads", "repledge", "repletes", "replevin", "replicas", "replicon", "repliers", "replowed", "replumbs", "replunge", "replying", "repolish", "repolled", "reported", "reporter", "reposals", "reposers", "reposing", "reposits", "repotted", "repoured", "repousse", "repowers", "repriced", "reprices", "reprieve", "reprints", "reprisal", "reprised", "reprises", "reproach", "reprobed", "reprobes", "reproofs", "reproval", "reproved", "reprover", "reproves", "reptiles", "reptilia", "republic", "repugned", "repulsed", "repulser", "repulses", "repumped", "repurify", "repursue", "reputing", "requests", "requiems", "required", "requirer", "requires", "requital", "requited", "requiter", "requites", "reracked", "reraised", "reraises", "rerecord", "reremice", "reremind", "rerented", "rerepeat", "rereview", "rereward", "rerigged", "rerising", "rerolled", "reroller", "reroofed", "rerouted", "reroutes", "resaddle", "resailed", "resalute", "resample", "resawing", "resaying", "rescaled", "rescales", "reschool", "rescinds", "rescored", "rescores", "rescreen", "rescript", "rescuers", "rescuing", "resculpt", "resealed", "research", "reseason", "reseated", "resected", "resecure", "reseeded", "reseeing", "reseized", "reseizes", "reselect", "reseller", "resemble", "resented", "reserved", "reserver", "reserves", "resetter", "resettle", "resewing", "reshaped", "reshaper", "reshapes", "reshaved", "reshaven", "reshaves", "reshined", "reshines", "reshoots", "reshowed", "reshower", "resident", "residers", "residing", "residual", "residues", "residuum", "resifted", "resights", "resigned", "resigner", "resiling", "resilins", "resilver", "resinate", "resinify", "resining", "resinoid", "resinous", "resisted", "resister", "resistor", "resiting", "resizing", "resketch", "reslated", "reslates", "resmelts", "resmooth", "resoaked", "resodded", "resoften", "resojets", "resolder", "resoling", "resolute", "resolved", "resolver", "resolves", "resonant", "resonate", "resorbed", "resorcin", "resorted", "resorter", "resought", "resounds", "resource", "resowing", "respaced", "respaces", "respaded", "respades", "respeaks", "respects", "respells", "respired", "respires", "respited", "respites", "resplice", "resplits", "respoken", "responds", "responsa", "response", "respools", "resprang", "resprays", "respread", "respring", "resprout", "resprung", "restable", "restacks", "restaffs", "restaged", "restages", "restamps", "restarts", "restated", "restates", "restitch", "restless", "restocks", "restoked", "restokes", "restoral", "restored", "restorer", "restores", "restrain", "restress", "restrict", "restrike", "restring", "restrive", "restroom", "restrove", "restruck", "restrung", "restuffs", "restyled", "restyles", "resubmit", "resulted", "resumers", "resuming", "resummon", "resupine", "resupply", "resurged", "resurges", "resurvey", "retables", "retacked", "retackle", "retagged", "retailed", "retailer", "retailor", "retained", "retainer", "retakers", "retaking", "retaping", "retarded", "retarder", "retarget", "retasted", "retastes", "retaught", "retaxing", "retching", "reteamed", "retemper", "retested", "rethinks", "rethread", "retiarii", "reticent", "reticles", "reticula", "reticule", "retieing", "retiform", "retiling", "retiming", "retinals", "retinene", "retinite", "retinoid", "retinols", "retinted", "retinued", "retinues", "retinula", "retirant", "retirees", "retirers", "retiring", "retitled", "retitles", "retooled", "retorted", "retorter", "retotals", "retraced", "retracer", "retraces", "retracks", "retracts", "retrains", "retrally", "retreads", "retreats", "retrench", "retrials", "retrieve", "retroact", "retrofit", "retronym", "retrorse", "retrying", "retsinas", "retuning", "returned", "returnee", "returner", "retwists", "retyping", "reunions", "reunited", "reuniter", "reunites", "reuptake", "reusable", "reutters", "revalued", "revalues", "revamped", "revamper", "revanche", "revealed", "revealer", "revehent", "reveille", "revelers", "reveling", "revelled", "reveller", "revenant", "revenged", "revenger", "revenges", "revenual", "revenued", "revenuer", "revenues", "reverbed", "reverend", "reverent", "reverers", "reveries", "reverify", "revering", "reversal", "reversed", "reverser", "reverses", "reversos", "reverted", "reverter", "revested", "revetted", "reviewal", "reviewed", "reviewer", "revilers", "reviling", "revisals", "revisers", "revising", "revision", "revisits", "revisors", "revisory", "revivals", "revivers", "revivify", "reviving", "revoiced", "revoices", "revokers", "revoking", "revolted", "revolter", "revolute", "revolved", "revolver", "revolves", "revoting", "revuists", "revulsed", "rewakens", "rewaking", "rewarded", "rewarder", "rewarmed", "rewashed", "rewashes", "rewaxing", "reweaved", "reweaves", "rewedded", "reweighs", "rewelded", "rewetted", "rewidens", "rewinded", "rewinder", "rewiring", "reworded", "reworked", "rewriter", "rewrites", "reynards", "rezeroed", "rezeroes", "rezoning", "rhabdome", "rhabdoms", "rhamnose", "rhapsode", "rhapsody", "rhematic", "rheniums", "rheobase", "rheology", "rheophil", "rheostat", "rhesuses", "rhetoric", "rheumier", "rhinitis", "rhizobia", "rhizoids", "rhizomes", "rhizomic", "rhizopod", "rhizopus", "rhodamin", "rhodiums", "rhodoras", "rhomboid", "rhonchal", "rhonchus", "rhubarbs", "rhumbaed", "rhyolite", "rhythmic", "ribaldly", "ribaldry", "ribbands", "ribbiest", "ribbings", "ribboned", "ribgrass", "ribosome", "ribozyme", "ribworts", "ricebird", "ricercar", "richened", "richness", "richweed", "rickrack", "rickshas", "rickshaw", "ricochet", "ricottas", "rictuses", "riddance", "riddlers", "riddling", "rideable", "ridgetop", "ridgiest", "ridgling", "ridicule", "ridottos", "riesling", "rifampin", "rifeness", "rifflers", "riffling", "riffraff", "rifleman", "riflemen", "riflings", "riftless", "rigadoon", "rigatoni", "rigaudon", "riggings", "righters", "rightest", "rightful", "righties", "righting", "rightism", "rightist", "rigidify", "rigidity", "rigorism", "rigorist", "rigorous", "rikishas", "rikshaws", "rimester", "rimfires", "riminess", "rimlands", "rimosely", "rimosity", "rimpling", "rimrocks", "rimshots", "rindless", "ringbark", "ringbolt", "ringbone", "ringdove", "ringgits", "ringhals", "ringlets", "ringlike", "ringneck", "ringside", "ringtail", "ringtaws", "ringtoss", "ringworm", "rinsable", "rinsible", "rinsings", "riparian", "ripcords", "ripeners", "ripeness", "ripening", "ripienos", "riposted", "ripostes", "rippable", "ripplers", "ripplets", "ripplier", "rippling", "ripsawed", "ripstops", "riptides", "risibles", "riskiest", "riskless", "risottos", "rissoles", "ritually", "ritziest", "rivaling", "rivalled", "riverbed", "riverine", "riveters", "riveting", "rivetted", "rivieras", "rivieres", "rivulets", "rivulose", "roaching", "roadbeds", "roadkill", "roadless", "roadshow", "roadside", "roadster", "roadways", "roadwork", "roarings", "roasters", "roasting", "roborant", "robotics", "robotism", "robotize", "robustas", "robuster", "robustly", "rocaille", "rockable", "rockabye", "rockaway", "rocketed", "rocketer", "rocketry", "rockfall", "rockfish", "rockiest", "rockless", "rocklike", "rockling", "rockoons", "rockrose", "rockweed", "rockwork", "rodeoing", "roebucks", "roentgen", "rogation", "rogatory", "rogering", "rogueing", "roiliest", "roisters", "rolamite", "rollaway", "rollback", "rollicks", "rollicky", "rollings", "rollmops", "rollouts", "rollover", "rollways", "romaines", "romanced", "romancer", "romances", "romanise", "romanize", "romantic", "romaunts", "rondeaux", "rondelet", "rondelle", "rondures", "rontgens", "roofings", "roofless", "rooflike", "roofline", "rooftops", "rooftree", "rookiest", "roomette", "roomfuls", "roomiest", "roommate", "roorbach", "roorback", "roosters", "roosting", "rootages", "rootcaps", "roothold", "rootiest", "rootless", "rootlets", "rootlike", "rootling", "rootworm", "ropelike", "roperies", "ropewalk", "ropeways", "ropiness", "roqueted", "roquette", "rorquals", "rosaceas", "rosarian", "rosaries", "rosarium", "rosebays", "rosebuds", "rosebush", "rosefish", "rosehips", "roselike", "roselles", "rosemary", "roseolar", "roseolas", "roseries", "roseroot", "roseslug", "rosettes", "rosewood", "rosiness", "rosining", "rosinols", "rosinous", "rosolios", "rostella", "rostrate", "rostrums", "rosulate", "rotaries", "rotating", "rotation", "rotative", "rotators", "rotatory", "rotenone", "rotifers", "rotiform", "rototill", "rottener", "rottenly", "rotundas", "rotundly", "roturier", "roughage", "roughdry", "roughens", "roughers", "roughest", "roughhew", "roughies", "roughing", "roughish", "roughleg", "rouilles", "roulades", "rouleaus", "rouleaux", "roulette", "roundels", "rounders", "roundest", "rounding", "roundish", "roundlet", "roundups", "roupiest", "rousseau", "rousters", "rousting", "routeman", "routemen", "routeway", "routines", "rovingly", "rowboats", "rowdiest", "rowdyish", "rowdyism", "roweling", "rowelled", "rowlocks", "royalism", "royalist", "roysters", "rubaboos", "rubaiyat", "rubasses", "rubbaboo", "rubbered", "rubbings", "rubbishy", "rubblier", "rubbling", "rubboard", "rubdowns", "rubellas", "rubeolar", "rubeolas", "rubicund", "rubidium", "rubrical", "rubylike", "ruchings", "ruckling", "rucksack", "ruckuses", "ructions", "ructious", "ruddiest", "ruddling", "ruddocks", "rudeness", "ruderals", "ruderies", "rudiment", "ruefully", "ruffians", "rufflers", "rufflier", "rufflike", "ruffling", "rugalach", "rugelach", "ruggeder", "ruggedly", "rugosely", "rugosity", "rugulose", "ruinable", "ruinated", "ruinates", "ruleless", "rumbaing", "rumblers", "rumbling", "ruminant", "ruminate", "rummaged", "rummager", "rummages", "rummiest", "rumoring", "rumoured", "rumpless", "rumplier", "rumpling", "rumpuses", "runabout", "runagate", "runaways", "runbacks", "rundlets", "rundowns", "runelike", "rungless", "runkling", "runniest", "runnings", "runovers", "runround", "runtiest", "ruptured", "ruptures", "ruralise", "ruralism", "ruralist", "ruralite", "rurality", "ruralize", "rushiest", "rushings", "rushlike", "rustable", "rustical", "rusticly", "rustiest", "rustlers", "rustless", "rustling", "rutabaga", "ruthenic", "ruthless", "rutilant", "ruttiest", "ryegrass", "sabatons", "sabayons", "sabbaths", "sabbatic", "sabering", "sabotage", "saboteur", "sabulose", "sabulous", "sacatons", "saccades", "saccadic", "saccular", "saccules", "sacculus", "sachemic", "sacheted", "sackbuts", "sackfuls", "sackings", "sacklike", "sacksful", "sacraria", "sacredly", "sacrings", "sacrists", "sacristy", "saddened", "saddlers", "saddlery", "saddling", "sadirons", "sadistic", "safaried", "safeness", "safetied", "safeties", "saffrons", "safranin", "safroles", "sagacity", "sagamore", "saganash", "sageness", "saggards", "saggared", "saggered", "saggiest", "sagittal", "saguaros", "sahiwals", "sahuaros", "sailable", "sailboat", "sailfish", "sailings", "sailless", "sailorly", "sainfoin", "saintdom", "sainting", "salaamed", "salacity", "saladang", "salariat", "salaried", "salaries", "salchows", "saleable", "saleably", "saleroom", "salesman", "salesmen", "salicine", "salicins", "salience", "saliency", "salients", "salified", "salifies", "salinity", "salinize", "salivary", "salivate", "salliers", "sallowed", "sallower", "sallowly", "sallying", "salmonid", "salpians", "salsilla", "saltbush", "salterns", "saltiers", "saltiest", "saltines", "saltings", "saltires", "saltless", "saltlike", "saltness", "saltpans", "saltwork", "saltwort", "salutary", "saluters", "saluting", "salvable", "salvably", "salvaged", "salvagee", "salvager", "salvages", "salvific", "salvoing", "samadhis", "samarium", "sambaing", "sambhars", "sambhurs", "sambucas", "sambukes", "sameness", "samisens", "samizdat", "samovars", "samoyeds", "samphire", "samplers", "sampling", "samsaras", "samurais", "sanative", "sanctify", "sanction", "sanctity", "sanctums", "sandable", "sandaled", "sandarac", "sandbags", "sandbank", "sandbars", "sandburr", "sandburs", "sanddabs", "sandfish", "sandhogs", "sandiest", "sandless", "sandlike", "sandling", "sandlots", "sandpeep", "sandpile", "sandpits", "sandshoe", "sandsoap", "sandspur", "sandwich", "sandworm", "sandwort", "saneness", "sangaree", "sangrias", "sanguine", "sanicles", "sanidine", "sanitary", "sanitate", "sanities", "sanitise", "sanitize", "sannyasi", "sanserif", "santalic", "santalol", "santeras", "santeria", "santeros", "santonin", "santoors", "santours", "sapajous", "sapheads", "saphenae", "saphenas", "sapidity", "sapience", "sapiency", "sapients", "saplings", "saponify", "saponine", "saponins", "saponite", "saporous", "sapphics", "sapphire", "sapphism", "sapphist", "sappiest", "sapremia", "sapremic", "saprobes", "saprobic", "sapropel", "sapsagos", "sapwoods", "saraband", "sarcasms", "sarcenet", "sarcinae", "sarcinas", "sarcoids", "sarcomas", "sardanas", "sardined", "sardines", "sardonic", "sardonyx", "sargasso", "sarkiest", "sarmenta", "sarments", "sarodist", "sarsenet", "sarsnets", "sartorii", "sashayed", "sashimis", "sashless", "sassiest", "sasswood", "sastruga", "sastrugi", "satanism", "satanist", "satchels", "satiable", "satiably", "satiated", "satiates", "satinets", "satinpod", "satirise", "satirist", "satirize", "satsumas", "saturant", "saturate", "satyrids", "saucebox", "saucepan", "saucepot", "sauciers", "sauciest", "saunaing", "saunters", "saurians", "sauropod", "sausages", "sauteing", "sauterne", "sautoire", "sautoirs", "savagely", "savagery", "savagest", "savaging", "savagism", "savannah", "savannas", "savarins", "saveable", "saveloys", "savingly", "saviours", "savorers", "savorier", "savories", "savorily", "savoring", "savorous", "savoured", "savourer", "savviest", "savvying", "sawbills", "sawbones", "sawbucks", "sawdusts", "sawdusty", "sawflies", "sawhorse", "sawmills", "sawteeth", "sawtooth", "saxatile", "saxhorns", "saxonies", "saxtubas", "sayonara", "scabbard", "scabbier", "scabbily", "scabbing", "scabbled", "scabbles", "scabiosa", "scabious", "scabland", "scablike", "scabrous", "scaffold", "scalable", "scalably", "scalades", "scalados", "scalages", "scalares", "scalawag", "scalding", "scalenus", "scalepan", "scaleups", "scaliest", "scallion", "scallops", "scalpels", "scalpers", "scalping", "scammers", "scamming", "scammony", "scampers", "scampies", "scamping", "scampish", "scamster", "scandals", "scandent", "scandias", "scandium", "scanners", "scanning", "scansion", "scantest", "scantier", "scanties", "scantily", "scanting", "scaphoid", "scapulae", "scapular", "scapulas", "scarcely", "scarcest", "scarcity", "scareder", "scarfers", "scarfing", "scarfpin", "scariest", "scariose", "scarious", "scarless", "scarlets", "scarpers", "scarphed", "scarping", "scarrier", "scarring", "scarting", "scatback", "scathing", "scatters", "scattier", "scatting", "scaupers", "scavenge", "scenario", "scending", "scenical", "scenting", "scepters", "sceptics", "sceptral", "sceptred", "sceptres", "schappes", "schedule", "schemata", "schemers", "scheming", "scherzos", "schiller", "schizier", "schizoid", "schizont", "schlepps", "schliere", "schlocks", "schlocky", "schlumps", "schlumpy", "schmaltz", "schmalzy", "schmatte", "schmears", "schmeers", "schmelze", "schmoose", "schmooze", "schmoozy", "schmucks", "schnapps", "schnecke", "schnooks", "schnozes", "scholars", "scholium", "schooled", "schooner", "schticks", "schussed", "schusser", "schusses", "sciaenid", "sciatica", "sciatics", "sciences", "scilicet", "scimetar", "scimitar", "scimiter", "scincoid", "sciolism", "sciolist", "scirocco", "scirrhus", "scissile", "scission", "scissors", "scissure", "sciurids", "sciurine", "sciuroid", "sclaffed", "sclaffer", "sclereid", "sclerite", "scleroid", "scleroma", "sclerose", "sclerous", "scoffers", "scoffing", "scofflaw", "scolders", "scolding", "scoleces", "scolices", "scolioma", "scollops", "scombrid", "sconcing", "scooched", "scooches", "scoopers", "scoopful", "scooping", "scooters", "scooting", "scopulae", "scopulas", "scorched", "scorcher", "scorches", "scorepad", "scorners", "scornful", "scorning", "scorpion", "scotched", "scotches", "scotomas", "scotopia", "scotopic", "scotties", "scourers", "scourged", "scourger", "scourges", "scouring", "scouters", "scouther", "scouting", "scowders", "scowlers", "scowling", "scrabble", "scrabbly", "scragged", "scraggly", "scraichs", "scraighs", "scramble", "scramjet", "scrammed", "scrannel", "scrapers", "scrapies", "scraping", "scrapped", "scrapper", "scrapple", "scratchy", "scrawled", "scrawler", "screaked", "screamed", "screamer", "screechy", "screeded", "screened", "screener", "screwers", "screwier", "screwing", "screwups", "scribble", "scribbly", "scribers", "scribing", "scrieved", "scrieves", "scrimped", "scrimper", "scrimpit", "scripted", "scripter", "scriving", "scrofula", "scrolled", "scrooges", "scrooped", "scrootch", "scrotums", "scrouged", "scrouges", "scrounge", "scroungy", "scrubbed", "scrubber", "scrummed", "scrunchy", "scrupled", "scruples", "scrutiny", "scubaing", "scudding", "scuffers", "scuffing", "scuffled", "scuffler", "scuffles", "sculches", "sculkers", "sculking", "scullers", "scullery", "sculling", "scullion", "sculping", "sculpins", "sculpted", "sculptor", "scumbags", "scumbled", "scumbles", "scumless", "scumlike", "scummers", "scummier", "scummily", "scumming", "scunners", "scuppaug", "scuppers", "scurfier", "scurried", "scurries", "scurrile", "scurvier", "scurvies", "scurvily", "scutages", "scutched", "scutcher", "scutches", "scutella", "scutters", "scuttled", "scuttles", "scutwork", "scuzzier", "scyphate", "scything", "seabeach", "seabirds", "seaboard", "seaboots", "seaborne", "seacoast", "seacocks", "seacraft", "seadrome", "seafarer", "seafloor", "seafoods", "seafowls", "seafront", "seagoing", "seagulls", "seahorse", "sealable", "sealants", "sealifts", "seallike", "sealskin", "seamanly", "seamarks", "seamiest", "seamless", "seamlike", "seamount", "seamster", "seapiece", "seaplane", "seaports", "seaquake", "searched", "searcher", "searches", "searobin", "seascape", "seascout", "seashell", "seashore", "seasides", "seasonal", "seasoned", "seasoner", "seatback", "seatbelt", "seatings", "seatless", "seatmate", "seatrain", "seatrout", "seatwork", "seawalls", "seawants", "seawards", "seawares", "seawater", "seaweeds", "secalose", "secantly", "secateur", "seceders", "seceding", "secerned", "secluded", "secludes", "seconals", "seconded", "seconder", "secondes", "secondly", "secreted", "secreter", "secretes", "secretin", "secretly", "secretor", "sections", "sectoral", "sectored", "seculars", "secundly", "secundum", "securely", "securers", "securest", "securing", "security", "sedately", "sedatest", "sedating", "sedation", "sedative", "sederunt", "sedgiest", "sedilium", "sediment", "sedition", "seducers", "seducing", "seducive", "sedulity", "sedulous", "seecatch", "seedbeds", "seedcake", "seedcase", "seediest", "seedless", "seedlike", "seedling", "seedpods", "seedsman", "seedsmen", "seedtime", "seemings", "seemlier", "seepages", "seepiest", "seesawed", "seething", "segments", "segueing", "seicento", "seigneur", "seignior", "seignory", "seisable", "seisings", "seismism", "seisures", "seizable", "seizings", "seizures", "seladang", "selamlik", "selcouth", "seldomly", "selected", "selectee", "selectly", "selector", "selenate", "selenide", "selenite", "selenium", "selenous", "selfdoms", "selfheal", "selfhood", "selfless", "selfness", "selfsame", "selfward", "sellable", "selloffs", "sellouts", "seltzers", "selvaged", "selvages", "selvedge", "semantic", "semester", "semiarid", "semibald", "semicoma", "semideaf", "semidome", "semigala", "semihard", "semihigh", "semihobo", "semillon", "semimatt", "semimild", "semimute", "seminars", "seminary", "seminoma", "seminude", "semiopen", "semioses", "semiosis", "semiotic", "semioval", "semipros", "semisoft", "semitist", "semitone", "semiwild", "semolina", "semplice", "senarius", "senators", "sendable", "sendoffs", "senecios", "senhoras", "senhores", "senilely", "senility", "sennight", "senopias", "senorita", "sensated", "sensates", "senseful", "sensible", "sensibly", "sensilla", "sensoria", "sensuous", "sentence", "sentient", "sentimos", "sentinel", "sentries", "sepaline", "sepalled", "sepaloid", "sepalous", "separate", "seppukus", "septages", "septaria", "septette", "septical", "septimes", "septuple", "sequelae", "sequence", "sequency", "sequents", "sequined", "sequitur", "sequoias", "seraglio", "seraphic", "seraphim", "seraphin", "serenade", "serenata", "serenate", "serenely", "serenest", "serenity", "serfages", "serfdoms", "serfhood", "serflike", "sergeant", "sergings", "serially", "seriated", "seriates", "seriatim", "sericins", "seriemas", "seriffed", "seringas", "serjeant", "sermonic", "serology", "serosity", "serotine", "serotiny", "serotype", "serovars", "serpents", "serpigos", "serranid", "serranos", "serrated", "serrates", "serrying", "servable", "servants", "serviced", "servicer", "services", "servings", "servitor", "sesamoid", "sessions", "sesspool", "sesterce", "sestinas", "sestines", "setbacks", "setenant", "setiform", "setlines", "setscrew", "settings", "settlers", "settling", "settlors", "setulose", "setulous", "sevenths", "severals", "severely", "severest", "severing", "severity", "seviches", "sevrugas", "sewerage", "sewering", "sexiness", "sexology", "sextains", "sextants", "sextarii", "sextette", "sextiles", "sextuple", "sextuply", "sexually", "sforzato", "sfumatos", "shabbier", "shabbily", "shacking", "shackled", "shackler", "shackles", "shackoes", "shadblow", "shadbush", "shadchan", "shaddock", "shadiest", "shadings", "shadkhan", "shadoofs", "shadowed", "shadower", "shadrach", "shafting", "shagbark", "shaggier", "shaggily", "shagging", "shagreen", "shahdoms", "shaitans", "shakable", "shakeout", "shakeups", "shakiest", "shaliest", "shalloon", "shallops", "shallots", "shallows", "shamable", "shamably", "shamanic", "shambled", "shambles", "shameful", "shamisen", "shammash", "shammers", "shammied", "shammies", "shamming", "shamosim", "shamoyed", "shampoos", "shamrock", "shamuses", "shandies", "shanghai", "shanking", "shannies", "shanteys", "shanties", "shantihs", "shantung", "shapable", "shapeups", "sharable", "shariahs", "sharkers", "sharking", "sharpens", "sharpers", "sharpest", "sharpies", "sharping", "shashlik", "shasliks", "shatters", "shauling", "shavable", "shavings", "shawling", "sheafing", "shealing", "shearers", "shearing", "sheathed", "sheather", "sheathes", "sheaving", "shebangs", "shebeans", "shebeens", "shedable", "shedders", "shedding", "shedlike", "sheeneys", "sheenful", "sheenier", "sheenies", "sheening", "sheepcot", "sheepdog", "sheepish", "sheepman", "sheepmen", "sheerest", "sheering", "sheeters", "sheetfed", "sheeting", "sheikdom", "sheitans", "shekalim", "shekelim", "shelduck", "shelfful", "shellack", "shellacs", "shellers", "shellier", "shelling", "shelters", "shelties", "shelvers", "shelvier", "shelving", "shending", "shepherd", "sheqalim", "sherbert", "sherbets", "shereefs", "sheriffs", "sherlock", "sheroots", "sherries", "shetland", "shiatsus", "shiatzus", "shickers", "shicksas", "shielded", "shielder", "shieling", "shifters", "shiftier", "shiftily", "shifting", "shigella", "shiitake", "shikaree", "shikaris", "shikkers", "shiksehs", "shilingi", "shillala", "shilling", "shimmers", "shimmery", "shimmied", "shimmies", "shimming", "shinbone", "shindies", "shindigs", "shingled", "shingler", "shingles", "shiniest", "shinleaf", "shinnery", "shinneys", "shinnied", "shinnies", "shinning", "shiplaps", "shipless", "shipload", "shipmate", "shipment", "shippens", "shippers", "shipping", "shippons", "shipside", "shipways", "shipworm", "shipyard", "shirkers", "shirking", "shirring", "shirtier", "shirting", "shitakes", "shithead", "shitless", "shitlist", "shitload", "shittahs", "shittier", "shittims", "shitting", "shivaree", "shivered", "shiverer", "shivitis", "shkotzim", "shlemiel", "shlepped", "shlumped", "shmaltzy", "shmoozed", "shmoozes", "shnorrer", "shoalest", "shoalier", "shoaling", "shockers", "shocking", "shoddier", "shoddies", "shoddily", "shoebill", "shoehorn", "shoelace", "shoeless", "shoepack", "shoepacs", "shoetree", "shofroth", "shogging", "shogunal", "shooling", "shooters", "shooting", "shootout", "shopboys", "shopgirl", "shophars", "shoplift", "shoppers", "shopping", "shoptalk", "shopworn", "shorings", "shortage", "shortcut", "shortens", "shortest", "shortias", "shorties", "shorting", "shortish", "shotguns", "shothole", "shotting", "shoulder", "shouldst", "shouters", "shouting", "shoveled", "shoveler", "showable", "showboat", "showcase", "showdown", "showered", "showerer", "showgirl", "showiest", "showings", "showoffs", "showring", "showroom", "showtime", "shrapnel", "shredded", "shredder", "shrewder", "shrewdie", "shrewdly", "shrewing", "shrewish", "shrieked", "shrieker", "shrieval", "shrieved", "shrieves", "shrilled", "shriller", "shrimped", "shrimper", "shrining", "shrinker", "shrivels", "shrivers", "shriving", "shroffed", "shrouded", "shrugged", "shrunken", "shtetels", "shuckers", "shucking", "shudders", "shuddery", "shuffled", "shuffler", "shuffles", "shunners", "shunning", "shunpike", "shunters", "shunting", "shushers", "shushing", "shutdown", "shuteyes", "shutoffs", "shutouts", "shutters", "shutting", "shuttled", "shuttler", "shuttles", "shvartze", "shwanpan", "shylocks", "shysters", "sialidan", "siamangs", "siameses", "sibilant", "sibilate", "siblings", "sibyllic", "sickbays", "sickbeds", "sickened", "sickener", "sickerly", "sicklied", "sicklier", "sicklies", "sicklily", "sickling", "sickness", "sickouts", "sickroom", "siddurim", "sidearms", "sideband", "sidebars", "sidecars", "sidehill", "sidekick", "sideline", "sideling", "sidelong", "sidereal", "siderite", "sideshow", "sideslip", "sidespin", "sidestep", "sidewalk", "sidewall", "sideward", "sideways", "sidewise", "sienites", "sierozem", "sieverts", "siffleur", "siftings", "siganids", "sighless", "sighlike", "sighters", "sighting", "sightsaw", "sightsee", "sigmoids", "signages", "signaled", "signaler", "signally", "signeted", "signiori", "signiors", "signiory", "signoras", "signpost", "silenced", "silencer", "silences", "silenter", "silently", "silesias", "silicate", "silicide", "silicify", "silicium", "silicles", "silicone", "silicons", "silicula", "siliquae", "siliques", "silkiest", "silklike", "silkweed", "silkworm", "sillabub", "sillibub", "silliest", "siloxane", "siltiest", "silurian", "silurids", "siluroid", "silvered", "silverer", "silverly", "silvexes", "silvical", "simaruba", "simazine", "simitars", "simmered", "simoleon", "simoniac", "simonies", "simonist", "simonize", "simpered", "simperer", "simplest", "simplify", "simplism", "simplist", "simulant", "simulars", "simulate", "sinapism", "sincerer", "sinciput", "sinecure", "sinewing", "sinfonia", "sinfonie", "sinfully", "singable", "singeing", "singlets", "singling", "singsong", "singular", "sinicize", "sinister", "sinkable", "sinkages", "sinkhole", "sinology", "sinopias", "sintered", "sinuated", "sinuates", "sinusoid", "siphonal", "siphoned", "siphonic", "sirenian", "sirloins", "siroccos", "sirupier", "siruping", "sirvente", "sissiest", "sissyish", "sistered", "sisterly", "sistroid", "sistrums", "sitarist", "sithence", "sitology", "sittings", "situated", "situates", "sitzmark", "sixpence", "sixpenny", "sixteens", "sixtieth", "sixtyish", "sizeable", "sizeably", "siziness", "sizzlers", "sizzling", "sjamboks", "skankers", "skankier", "skanking", "skatings", "skatoles", "skeeters", "skeining", "skeletal", "skeleton", "skellums", "skelping", "skelters", "skeptics", "skerries", "sketched", "sketcher", "sketches", "skewback", "skewbald", "skewered", "skewness", "skiagram", "skidders", "skiddier", "skidding", "skiddoos", "skidooed", "skidways", "skiffled", "skiffles", "skijorer", "skilless", "skillets", "skillful", "skilling", "skimmers", "skimming", "skimpier", "skimpily", "skimping", "skinfuls", "skinhead", "skinkers", "skinking", "skinless", "skinlike", "skinners", "skinnier", "skinning", "skioring", "skipjack", "skiplane", "skippers", "skippets", "skipping", "skirling", "skirmish", "skirrets", "skirring", "skirters", "skirting", "skitters", "skittery", "skittish", "skittles", "skivvied", "skivvies", "sklented", "skoaling", "skreeghs", "skreighs", "skulkers", "skulking", "skullcap", "skulling", "skunkier", "skunking", "skyboard", "skyborne", "skyboxes", "skydived", "skydiver", "skydives", "skyhooks", "skyjacks", "skylarks", "skylight", "skylines", "skysails", "skysurfs", "skywalks", "skywards", "skywrite", "skywrote", "slabbers", "slabbery", "slabbing", "slablike", "slackens", "slackers", "slackest", "slacking", "slaggier", "slagging", "slakable", "slalomed", "slalomer", "slammers", "slamming", "slanders", "slangier", "slangily", "slanging", "slanting", "slapdash", "slapjack", "slappers", "slapping", "slashers", "slashing", "slatches", "slathers", "slatiest", "slatings", "slattern", "slatting", "slavered", "slaverer", "slayable", "sleaving", "sleazier", "sleazily", "sleazoid", "sledders", "sledding", "sledging", "sleekens", "sleekers", "sleekest", "sleekier", "sleeking", "sleepers", "sleepier", "sleepily", "sleeping", "sleetier", "sleeting", "sleeving", "sleighed", "sleigher", "sleights", "sleuthed", "slickens", "slickers", "slickest", "slicking", "slidable", "slideway", "slighted", "slighter", "slightly", "slimiest", "slimmers", "slimmest", "slimming", "slimness", "slimsier", "slingers", "slinging", "slinkier", "slinkily", "slinking", "slipcase", "slipform", "slipknot", "slipless", "slipouts", "slipover", "slippage", "slippers", "slippery", "slippier", "slippily", "slipping", "slipshod", "slipslop", "slipsole", "slipware", "slipways", "slithers", "slithery", "slitless", "slitlike", "slitters", "slittier", "slitting", "slivered", "sliverer", "slivovic", "slobbers", "slobbery", "slobbier", "slobbish", "sloggers", "slogging", "sloppier", "sloppily", "slopping", "slopwork", "sloshier", "sloshing", "slotback", "slothful", "slotters", "slotting", "slouched", "sloucher", "slouches", "sloughed", "slovenly", "slowdown", "slowness", "slowpoke", "slowworm", "slubbers", "slubbing", "sludgier", "sludging", "sluffing", "slugabed", "slugfest", "sluggard", "sluggers", "slugging", "sluggish", "sluicing", "slumbers", "slumbery", "slumgums", "slumisms", "slumlord", "slummers", "slummier", "slumming", "slumping", "slurping", "slurried", "slurries", "slurring", "slushier", "slushily", "slushing", "sluttier", "sluttish", "slyboots", "smackers", "smacking", "smallage", "smallest", "smallish", "smallpox", "smaltine", "smaltite", "smaragde", "smaragds", "smarmier", "smarmily", "smartass", "smartens", "smartest", "smarties", "smarting", "smashers", "smashing", "smashups", "smatters", "smearers", "smearier", "smearing", "smectite", "smeddums", "smeeking", "smellers", "smellier", "smelling", "smelters", "smeltery", "smelting", "smerking", "smidgens", "smidgeon", "smidgins", "smilaxes", "smirched", "smirches", "smirkers", "smirkier", "smirkily", "smirking", "smithers", "smithery", "smithies", "smocking", "smoggier", "smogless", "smokable", "smokepot", "smokiest", "smolders", "smooched", "smoocher", "smooches", "smooshed", "smooshes", "smoothed", "smoothen", "smoother", "smoothes", "smoothie", "smoothly", "smothers", "smothery", "smoulder", "smudgier", "smudgily", "smudging", "smuggest", "smuggled", "smuggler", "smuggles", "smugness", "smushing", "smutched", "smutches", "smuttier", "smuttily", "smutting", "snackers", "snacking", "snaffled", "snaffles", "snafuing", "snaggier", "snagging", "snaglike", "snailing", "snakebit", "snakepit", "snakiest", "snapback", "snapless", "snappers", "snappier", "snappily", "snapping", "snappish", "snapshot", "snapweed", "snarfing", "snarkier", "snarkily", "snarlers", "snarlier", "snarling", "snatched", "snatcher", "snatches", "snazzier", "sneakers", "sneakier", "sneakily", "sneaking", "sneaping", "snedding", "sneerers", "sneerful", "sneerier", "sneering", "sneeshes", "sneezers", "sneezier", "sneezing", "snellest", "snelling", "snibbing", "snickers", "snickery", "snicking", "sniffers", "sniffier", "sniffily", "sniffing", "sniffish", "sniffled", "sniffler", "sniffles", "snifters", "sniggers", "sniggled", "sniggler", "sniggles", "sniglets", "snippers", "snippets", "snippety", "snippier", "snippily", "snipping", "snitched", "snitcher", "snitches", "sniveled", "sniveler", "snobbery", "snobbier", "snobbily", "snobbish", "snobbism", "snogging", "snooding", "snookers", "snooking", "snooling", "snoopers", "snoopier", "snoopily", "snooping", "snootier", "snootily", "snooting", "snoozers", "snoozier", "snoozing", "snoozled", "snoozles", "snorkels", "snorters", "snorting", "snottier", "snottily", "snoutier", "snouting", "snoutish", "snowball", "snowbank", "snowbell", "snowbelt", "snowbird", "snowbush", "snowcaps", "snowcats", "snowdrop", "snowfall", "snowiest", "snowland", "snowless", "snowlike", "snowmelt", "snowmold", "snowpack", "snowplow", "snowshed", "snowshoe", "snowsuit", "snubbers", "snubbier", "snubbing", "snubness", "snuffbox", "snuffers", "snuffier", "snuffily", "snuffing", "snuffled", "snuffler", "snuffles", "snuggery", "snuggest", "snuggies", "snugging", "snuggled", "snuggles", "snugness", "soakages", "soapbark", "soapiest", "soapless", "soaplike", "soapsuds", "soapwort", "soarings", "soberest", "sobering", "soberize", "sobriety", "socagers", "soccages", "sociable", "sociably", "socially", "societal", "socketed", "sockeyes", "sockless", "sodaless", "sodalist", "sodalite", "sodality", "sodamide", "soddened", "soddenly", "sodomies", "sodomist", "sodomite", "sodomize", "sofabeds", "softback", "softball", "softcore", "softened", "softener", "softhead", "softness", "software", "softwood", "soggiest", "soilages", "soilless", "soilures", "sojourns", "solacers", "solacing", "solander", "solanine", "solanins", "solanums", "solarise", "solarism", "solarium", "solarize", "solating", "solation", "solatium", "soldered", "solderer", "soldiers", "soldiery", "solecise", "solecism", "solecist", "solecize", "soleless", "solemner", "solemnly", "soleness", "solenoid", "solerets", "soleuses", "solfeges", "solfeggi", "solicits", "solidago", "solidary", "solidest", "solidify", "solidity", "soliquid", "solitary", "solitons", "solitude", "solleret", "soloists", "solonets", "solonetz", "solstice", "solubles", "solution", "solvable", "solvated", "solvates", "solvency", "solvents", "somberly", "sombrely", "sombrero", "sombrous", "somebody", "somedeal", "someones", "somerset", "sometime", "someways", "somewhat", "somewhen", "somewise", "sonances", "sonantal", "sonantic", "sonarman", "sonarmen", "sonatina", "sonatine", "songbird", "songbook", "songfest", "songless", "songlike", "songster", "sonhoods", "sonicate", "sonneted", "sonobuoy", "sonogram", "sonorant", "sonority", "sonorous", "sonships", "sonsiest", "soochong", "soothers", "soothest", "soothing", "soothsay", "sootiest", "sophisms", "sophists", "sopiting", "soppiest", "sopranos", "sorbable", "sorbates", "sorbents", "sorbitol", "sorboses", "sorcerer", "sordidly", "sordines", "sorehead", "soreness", "sorghums", "soricine", "soroches", "sororate", "sorority", "sorption", "sorptive", "sorriest", "sorrowed", "sorrower", "sortable", "sortably", "sottedly", "soubises", "souchong", "souffled", "souffles", "soughing", "soulless", "soullike", "soulmate", "soundbox", "sounders", "soundest", "sounding", "soundman", "soundmen", "soupcons", "soupiest", "soupless", "souplike", "sourball", "sourcing", "sourdine", "sourness", "sourpuss", "soursops", "sourwood", "sousliks", "soutache", "soutanes", "southern", "southers", "southing", "southpaw", "southron", "souvenir", "souvlaki", "sovkhozy", "sovranly", "sovranty", "sowbelly", "sowbread", "soybeans", "soymilks", "spaceman", "spacemen", "spaciest", "spacings", "spacious", "spackled", "spackles", "spadeful", "spadices", "spadille", "spadixes", "spadones", "spaeings", "spaetzle", "spagyric", "spaldeen", "spallers", "spalling", "spalpeen", "spambots", "spammers", "spamming", "spancels", "spandrel", "spandril", "spangled", "spangles", "spaniels", "spankers", "spanking", "spanless", "spanners", "spanning", "spansule", "spanworm", "sparable", "sparerib", "spargers", "sparging", "sparkers", "sparkier", "sparkily", "sparking", "sparkish", "sparkled", "sparkler", "sparkles", "sparklet", "sparlike", "sparling", "sparoids", "sparrier", "sparring", "sparrows", "sparsely", "sparsest", "sparsity", "spartina", "spasming", "spastics", "spathose", "spatters", "spatting", "spatular", "spatulas", "spatzles", "spavined", "spawners", "spawning", "speakers", "speaking", "speaning", "spearers", "speargun", "spearing", "spearman", "spearmen", "speccing", "specials", "speciate", "specific", "specimen", "specious", "specking", "speckled", "speckles", "spectate", "specters", "spectral", "spectres", "spectrum", "specular", "speculum", "speeches", "speeders", "speedier", "speedily", "speeding", "speedups", "speedway", "speeling", "speering", "speiling", "speiring", "speisses", "spelaean", "spellers", "spelling", "spelters", "speltzes", "spelunks", "spencers", "spenders", "spendier", "spending", "spermary", "spermine", "spermous", "sphagnum", "sphenoid", "spherics", "spherier", "sphering", "spheroid", "spherule", "sphinges", "sphingid", "sphinxes", "sphygmic", "sphygmus", "sphynxes", "spicated", "spiccato", "spiciest", "spiculae", "spicular", "spicules", "spiculum", "spiegels", "spielers", "spieling", "spiering", "spiffied", "spiffier", "spiffies", "spiffily", "spiffing", "spikelet", "spikiest", "spilikin", "spilings", "spillage", "spillers", "spilling", "spillway", "spinachy", "spinages", "spinally", "spindled", "spindler", "spindles", "spinelle", "spiniest", "spinifex", "spinless", "spinners", "spinnery", "spinneys", "spinnies", "spinning", "spinoffs", "spinouts", "spinster", "spinulae", "spinules", "spiracle", "spiraeas", "spiraled", "spirally", "spirants", "spiremes", "spiriest", "spirilla", "spirited", "spirting", "spirulae", "spirulas", "spitball", "spiteful", "spitfire", "spitters", "spitting", "spittles", "spittoon", "splashed", "splasher", "splashes", "splatted", "splatter", "splaying", "splendid", "splendor", "splenial", "splenium", "splenius", "splicers", "splicing", "splining", "splinted", "splinter", "splitter", "splodged", "splodges", "sploshed", "sploshes", "splotchy", "splurged", "splurger", "splurges", "splutter", "spodosol", "spoilage", "spoilers", "spoiling", "spoliate", "spondaic", "spondees", "spongers", "spongier", "spongily", "sponging", "spongins", "sponsion", "sponsons", "sponsors", "spontoon", "spoofers", "spoofery", "spoofing", "spookery", "spookier", "spookily", "spooking", "spookish", "spoolers", "spooling", "spooneys", "spoonful", "spoonier", "spoonies", "spoonily", "spooning", "spooring", "sporadic", "sporozoa", "sporrans", "sporters", "sportful", "sportier", "sportily", "sporting", "sportive", "sporular", "sporules", "spotless", "spotters", "spottier", "spottily", "spotting", "spousals", "spousing", "spouters", "spouting", "spraddle", "sprained", "sprattle", "sprawled", "sprawler", "sprayers", "spraying", "spreader", "sprigged", "sprigger", "sprights", "springal", "springed", "springer", "springes", "sprinkle", "sprinted", "sprinter", "spritzed", "spritzer", "spritzes", "sprocket", "sprouted", "sprucely", "sprucest", "sprucier", "sprucing", "spryness", "spudders", "spudding", "spumiest", "spumones", "spumonis", "spunkier", "spunkies", "spunkily", "spunking", "spurgall", "spurious", "spurners", "spurning", "spurrers", "spurreys", "spurrier", "spurries", "spurring", "spurters", "spurting", "spurtles", "sputniks", "sputters", "sputtery", "spyglass", "squabble", "squadded", "squadron", "squalene", "squalled", "squaller", "squalors", "squamate", "squamose", "squamous", "squander", "squarely", "squarers", "squarest", "squaring", "squarish", "squashed", "squasher", "squashes", "squatted", "squatter", "squawked", "squawker", "squeaked", "squeaker", "squealed", "squealer", "squeegee", "squeezed", "squeezer", "squeezes", "squegged", "squelchy", "squibbed", "squidded", "squiffed", "squiggle", "squiggly", "squilgee", "squillae", "squillas", "squinted", "squinter", "squireen", "squiring", "squirish", "squirmed", "squirmer", "squirrel", "squirted", "squirter", "squished", "squishes", "squooshy", "squushed", "squushes", "sraddhas", "stabbers", "stabbing", "stabiles", "stablers", "stablest", "stabling", "stablish", "staccati", "staccato", "stackers", "stacking", "stackups", "staddles", "stadiums", "staffers", "staffing", "stageful", "staggard", "staggart", "staggers", "staggery", "staggier", "staggies", "stagging", "stagiest", "stagings", "stagnant", "stagnate", "staidest", "stainers", "staining", "stairway", "staithes", "stakeout", "stalkers", "stalkier", "stalkily", "stalking", "stalling", "stallion", "stalwart", "stamened", "staminal", "staminas", "stammels", "stammers", "stampede", "stampers", "stamping", "stanched", "stancher", "stanches", "stanchly", "standard", "standbys", "standees", "standers", "standing", "standish", "standoff", "standout", "standpat", "standups", "stanging", "stanhope", "stanines", "stannary", "stannite", "stannous", "stannums", "stanzaed", "stanzaic", "stapedes", "stapelia", "staplers", "stapling", "starched", "starches", "stardoms", "stardust", "starfish", "stargaze", "starkers", "starkest", "starless", "starlets", "starlike", "starling", "starnose", "starrier", "starring", "starship", "starters", "starting", "startled", "startler", "startles", "startups", "starvers", "starving", "starwort", "stashing", "stasimon", "statable", "statedly", "statical", "statices", "staticky", "stations", "statisms", "statists", "statives", "statuary", "statures", "statuses", "statutes", "staumrel", "staysail", "steadied", "steadier", "steadies", "steadily", "steading", "stealage", "stealers", "stealing", "stealths", "stealthy", "steamers", "steamier", "steamily", "steaming", "steapsin", "stearate", "stearine", "stearins", "steatite", "stedfast", "steeking", "steelier", "steelies", "steeling", "steenbok", "steepens", "steepers", "steepest", "steeping", "steepish", "steepled", "steeples", "steerage", "steerers", "steering", "steeving", "stegodon", "steinbok", "stellate", "stellify", "stellite", "stemless", "stemlike", "stemmata", "stemmers", "stemmery", "stemmier", "stemming", "stemsons", "stemware", "stenches", "stencils", "stengahs", "stenosed", "stenoses", "stenosis", "stenotic", "stentors", "stepdame", "steplike", "steppers", "stepping", "stepsons", "stepwise", "stereoed", "sterical", "sterigma", "sterlets", "sterling", "sternest", "sternite", "sternson", "sternums", "sternway", "steroids", "stertors", "stetsons", "stetting", "stewable", "stewards", "stewbums", "stewpans", "sthenias", "stibines", "stibiums", "stibnite", "stickers", "stickful", "stickier", "stickies", "stickily", "sticking", "stickled", "stickler", "stickles", "stickman", "stickmen", "stickout", "stickpin", "stickums", "stickups", "stiction", "stiffens", "stiffest", "stiffies", "stiffing", "stiffish", "stiflers", "stifling", "stigmata", "stilbene", "stilbite", "stiletto", "stillest", "stillier", "stilling", "stillman", "stillmen", "stilting", "stimulus", "stimying", "stingers", "stingier", "stingily", "stinging", "stingray", "stinkard", "stinkbug", "stinkers", "stinkier", "stinking", "stinkpot", "stinters", "stinting", "stipends", "stipites", "stippled", "stippler", "stipples", "stipular", "stipuled", "stipules", "stirrers", "stirring", "stirrups", "stitched", "stitcher", "stitches", "stithied", "stithies", "stobbing", "stoccado", "stoccata", "stockade", "stockage", "stockcar", "stockers", "stockier", "stockily", "stocking", "stockish", "stockist", "stockman", "stockmen", "stockpot", "stodgier", "stodgily", "stodging", "stoicism", "stokesia", "stolider", "stolidly", "stollens", "stolonic", "stolport", "stomachs", "stomachy", "stomatal", "stomates", "stomatic", "stomodea", "stompers", "stomping", "stonable", "stonefly", "stoniest", "stooging", "stookers", "stooking", "stoolies", "stooling", "stoopers", "stooping", "stopbank", "stopcock", "stopgaps", "stopoffs", "stopover", "stoppage", "stoppers", "stopping", "stoppled", "stopples", "stopword", "storable", "storages", "storaxes", "storeyed", "stormier", "stormily", "storming", "storying", "stotinka", "stotinki", "stotinov", "stotting", "stounded", "stoutens", "stoutest", "stoutish", "stowable", "stowages", "stowaway", "straddle", "strafers", "strafing", "straggle", "straggly", "straight", "strained", "strainer", "straiten", "straiter", "straitly", "stramash", "stramony", "stranded", "strander", "stranger", "stranges", "strangle", "strapped", "strapper", "strasses", "strategy", "stratify", "stratous", "stratums", "stravage", "stravaig", "strawhat", "strawier", "strawing", "strayers", "straying", "streaked", "streaker", "streamed", "streamer", "streeked", "streeker", "streeled", "strength", "stressed", "stresses", "stressor", "stretchy", "strettas", "strettos", "streusel", "strewers", "strewing", "striated", "striates", "striatum", "stricken", "strickle", "stricter", "strictly", "stridden", "strident", "striders", "striding", "stridors", "strigils", "strigose", "strikers", "striking", "stringed", "stringer", "stripers", "stripier", "striping", "stripped", "stripper", "strivers", "striving", "strobila", "strobile", "strobili", "strobils", "strokers", "stroking", "strolled", "stroller", "stromata", "stronger", "strongly", "strongyl", "strontia", "strontic", "strophes", "strophic", "stropped", "stropper", "strowing", "stroyers", "stroying", "strucken", "strudels", "struggle", "strummed", "strummer", "strumose", "strumous", "strumpet", "strunted", "strutted", "strutter", "stubbier", "stubbily", "stubbing", "stubbled", "stubbles", "stubborn", "stuccoed", "stuccoer", "stuccoes", "studbook", "studdies", "studding", "students", "studfish", "studiers", "studious", "studlier", "studwork", "studying", "stuffers", "stuffier", "stuffily", "stuffing", "stuivers", "stultify", "stumbled", "stumbler", "stumbles", "stumming", "stumpage", "stumpers", "stumpier", "stumping", "stunners", "stunning", "stunsail", "stunting", "stuntman", "stuntmen", "stupider", "stupidly", "sturdied", "sturdier", "sturdies", "sturdily", "sturgeon", "stutters", "stylings", "stylised", "styliser", "stylises", "stylists", "stylites", "stylitic", "stylized", "stylizer", "stylizes", "styluses", "stymying", "styptics", "styraxes", "styrenes", "suasions", "subabbot", "subacrid", "subacute", "subadars", "subadult", "subagent", "subahdar", "subareas", "subatoms", "subaural", "subaxial", "subbases", "subbasin", "subbings", "subblock", "subbreed", "subcaste", "subcause", "subcells", "subchief", "subclaim", "subclans", "subclass", "subclerk", "subcodes", "subcools", "subcults", "subcutes", "subcutis", "subdeans", "subdepot", "subduals", "subduced", "subduces", "subducts", "subduers", "subduing", "subdural", "subdwarf", "subedits", "subentry", "subepoch", "suberect", "suberins", "suberise", "suberize", "suberose", "suberous", "subfield", "subfiles", "subfixes", "subfloor", "subfluid", "subframe", "subfuscs", "subgenre", "subgenus", "subgoals", "subgrade", "subgraph", "subgroup", "subheads", "subhuman", "subhumid", "subideas", "subindex", "subitems", "subjects", "subjoins", "sublated", "sublates", "sublease", "sublevel", "sublimed", "sublimer", "sublimes", "sublimit", "sublines", "sublunar", "submenus", "submerge", "submerse", "subnasal", "subniche", "subnodal", "subocean", "suboptic", "suborder", "suborned", "suborner", "subovate", "suboxide", "subpanel", "subparts", "subpenas", "subphase", "subphyla", "subplots", "subpoena", "subpolar", "subpubic", "subraces", "subrents", "subrings", "subrules", "subsales", "subscale", "subsects", "subsense", "subseres", "subserve", "subshaft", "subshell", "subshrub", "subsided", "subsider", "subsides", "subsists", "subsites", "subskill", "subsoils", "subsolar", "subsonic", "subspace", "substage", "substate", "subsumed", "subsumes", "subtasks", "subtaxon", "subteens", "subtends", "subtests", "subtexts", "subtheme", "subtiler", "subtilin", "subtilty", "subtitle", "subtlest", "subtlety", "subtones", "subtonic", "subtopia", "subtopic", "subtotal", "subtract", "subtrend", "subtribe", "subtunic", "subtypes", "subulate", "subunits", "suburban", "suburbed", "suburbia", "subvened", "subvenes", "subverts", "subvicar", "subviral", "subvirus", "subvocal", "subwayed", "subworld", "subzones", "succeeds", "succinct", "succinic", "succinyl", "succored", "succorer", "succours", "succubae", "succubas", "succubus", "succumbs", "suchlike", "suchness", "suckered", "suckfish", "suckiest", "sucklers", "suckless", "suckling", "sucrases", "sucroses", "suctions", "sudaries", "sudarium", "sudation", "sudatory", "suddenly", "sudsiest", "sudsless", "suffaris", "suffered", "sufferer", "sufficed", "sufficer", "suffices", "suffixal", "suffixed", "suffixes", "sufflate", "suffrage", "suffused", "suffuses", "sugarers", "sugarier", "sugaring", "suggests", "suicidal", "suicided", "suicides", "suitable", "suitably", "suitcase", "suitings", "suitlike", "sukiyaki", "sulcated", "sulfated", "sulfates", "sulfides", "sulfinyl", "sulfites", "sulfitic", "sulfones", "sulfonic", "sulfonyl", "sulfured", "sulfuret", "sulfuric", "sulfuryl", "sulkiest", "sullages", "sullener", "sullenly", "sullying", "sulphate", "sulphide", "sulphids", "sulphite", "sulphone", "sulphurs", "sulphury", "sultanas", "sultanic", "sultrier", "sultrily", "summable", "summands", "summated", "summates", "summered", "summerly", "summital", "summited", "summitry", "summoned", "summoner", "sumoists", "sumpters", "sumpweed", "sunbaked", "sunbathe", "sunbaths", "sunbeams", "sunbeamy", "sunbelts", "sunbirds", "sunblock", "sunburns", "sunburnt", "sunburst", "sunchoke", "sundecks", "sundered", "sunderer", "sundials", "sundowns", "sundress", "sundries", "sundrily", "sundrops", "sunglass", "sunglows", "sunlamps", "sunlands", "sunlight", "sunniest", "sunporch", "sunproof", "sunrises", "sunroofs", "sunrooms", "sunscald", "sunshade", "sunshine", "sunshiny", "sunspots", "sunstone", "sunsuits", "sunwards", "superadd", "superbad", "superber", "superbly", "superbug", "supercar", "supercop", "superego", "superfan", "superfix", "superhit", "superhot", "supering", "superior", "superjet", "superlay", "superlie", "superman", "supermen", "supermom", "supernal", "superpro", "supersex", "superspy", "supertax", "supinate", "supinely", "supplant", "supplely", "supplest", "supplied", "supplier", "supplies", "suppling", "supports", "supposal", "supposed", "supposer", "supposes", "suppress", "supremer", "supremes", "supremos", "surbased", "surbases", "surcease", "surcoats", "surefire", "sureness", "sureties", "surfable", "surfaced", "surfacer", "surfaces", "surfbird", "surfboat", "surfeits", "surffish", "surfiest", "surfings", "surflike", "surfside", "surgeons", "surgical", "suricate", "surliest", "surmised", "surmiser", "surmises", "surmount", "surnamed", "surnamer", "surnames", "surplice", "surprint", "surprise", "surprize", "surround", "surroyal", "surtaxed", "surtaxes", "surtitle", "surtouts", "surveils", "surveyed", "surveyor", "survival", "survived", "surviver", "survives", "survivor", "suspects", "suspends", "suspense", "suspired", "suspires", "sustains", "susurrus", "suturing", "suzerain", "svarajes", "svedberg", "sveltely", "sveltest", "swabbers", "swabbies", "swabbing", "swaddled", "swaddles", "swaggers", "swaggies", "swagging", "swainish", "swallows", "swampers", "swampier", "swamping", "swampish", "swanherd", "swankest", "swankier", "swankily", "swanking", "swanlike", "swannery", "swanning", "swanpans", "swanskin", "swappers", "swapping", "swarajes", "swarding", "swarmers", "swarming", "swashers", "swashing", "swastica", "swastika", "swatches", "swathers", "swathing", "swatters", "swatting", "swayable", "swayback", "swearers", "swearing", "sweatbox", "sweaters", "sweatier", "sweatily", "sweating", "sweeneys", "sweenies", "sweepers", "sweepier", "sweeping", "sweetens", "sweetest", "sweeties", "sweeting", "sweetish", "sweetsop", "swellest", "swelling", "swelters", "swervers", "swerving", "swiddens", "swifters", "swiftest", "swiftlet", "swiggers", "swigging", "swillers", "swilling", "swimmers", "swimmier", "swimmily", "swimming", "swimsuit", "swimwear", "swindled", "swindler", "swindles", "swinepox", "swingbys", "swingers", "swingier", "swinging", "swingled", "swingles", "swingman", "swingmen", "swinking", "swinneys", "swipples", "swirlier", "swirling", "swishers", "swishier", "swishing", "switched", "switcher", "switches", "swithers", "swiveled", "swizzled", "swizzler", "swizzles", "swobbers", "swobbing", "swooners", "swoonier", "swooning", "swoopers", "swoopier", "swooping", "swooshed", "swooshes", "swopping", "swordman", "swordmen", "swotters", "swotting", "swounded", "swouning", "sybarite", "sycamine", "sycamore", "sycomore", "syconium", "syenites", "syenitic", "syllabic", "syllable", "syllabub", "syllabus", "sylphids", "sylphish", "sylvatic", "sylvines", "sylvites", "symbions", "symbiont", "symbiote", "symbiots", "symboled", "symbolic", "symmetry", "sympathy", "sympatry", "symphony", "sympodia", "symposia", "symptoms", "synagogs", "synanons", "synapsed", "synapses", "synapsid", "synapsis", "synaptic", "syncarps", "syncarpy", "synching", "synchros", "syncline", "syncopal", "syncopes", "syncopic", "syncytia", "syndeses", "syndesis", "syndetic", "syndical", "syndrome", "synectic", "synergia", "synergic", "synergid", "synfuels", "syngamic", "syngases", "syngenic", "synkarya", "synonyme", "synonyms", "synonymy", "synopses", "synopsis", "synoptic", "synovial", "synovias", "syntagma", "syntagms", "syntaxes", "synthpop", "syntonic", "syphered", "syphilis", "syphoned", "syrettes", "syringas", "syringed", "syringes", "syrinxes", "syrphian", "syrphids", "syrupier", "syruping", "sysadmin", "systemic", "systoles", "systolic", "syzygial", "syzygies", "tabanids", "tabarded", "tabarets", "tabbises", "tabbying", "tabering", "tabetics", "tableaus", "tableaux", "tableful", "tableted", "tabletop", "tabloids", "tabooing", "tabooley", "taborers", "taborets", "taborine", "taboring", "taborins", "tabouleh", "taboulis", "taboured", "tabourer", "tabouret", "tabulate", "tachinid", "tachisme", "tachisms", "tachiste", "tachists", "tachyons", "taciturn", "tackiest", "tacklers", "tackless", "tackling", "tacnodes", "taconite", "tacrines", "tactical", "tactions", "tactless", "tadpoles", "taffarel", "tafferel", "taffetas", "taffrail", "tagalong", "tagboard", "taggants", "taglines", "tagmemes", "tagmemic", "taiglach", "tailback", "tailbone", "tailcoat", "tailfans", "tailfins", "tailgate", "tailings", "taillamp", "tailless", "tailleur", "taillike", "tailored", "tailpipe", "tailrace", "tailskid", "tailspin", "tailwind", "tainting", "takeable", "takeaway", "takedown", "takeoffs", "takeouts", "takeover", "takingly", "talapoin", "talcking", "taleggio", "talented", "talesman", "talesmen", "taleysim", "talipeds", "talipots", "talisman", "talkable", "talkback", "talkiest", "talkings", "tallaged", "tallages", "tallboys", "talliers", "tallises", "tallisim", "talliths", "tallitim", "tallness", "tallowed", "tallyhos", "tallying", "tallyman", "tallymen", "talmudic", "talookas", "tamandua", "tamandus", "tamarack", "tamaraos", "tamaraus", "tamarind", "tamarins", "tamarisk", "tamashas", "tambalas", "tamboura", "tambours", "tamburas", "tameable", "tameless", "tameness", "tampalas", "tampered", "tamperer", "tampions", "tamponed", "tanagers", "tanbarks", "tandoori", "tandoors", "tangelos", "tangence", "tangency", "tangents", "tangible", "tangibly", "tangiest", "tanglers", "tanglier", "tangling", "tangoing", "tangrams", "tanistry", "tankages", "tankards", "tankfuls", "tankinis", "tankless", "tanklike", "tankship", "tannable", "tannages", "tannates", "tannings", "tantalic", "tantalum", "tantalus", "tantaras", "tantrism", "tantrums", "tanyards", "tapadera", "tapadero", "tapeable", "tapeless", "tapelike", "tapeline", "tapenade", "taperers", "tapering", "tapestry", "tapeworm", "tapholes", "taphouse", "tapiocas", "tappable", "tappings", "taprooms", "taproots", "tapsters", "taqueria", "tarantas", "tarboosh", "tardiest", "tardyons", "targeted", "tariffed", "tarlatan", "tarletan", "tarnally", "tarpaper", "tarragon", "tarriers", "tarriest", "tarrying", "tarsiers", "tartanas", "tartaric", "tartiest", "tartlets", "tartness", "tartrate", "tartufes", "tartuffe", "tarweeds", "taskbars", "taskwork", "tasseled", "tastable", "tasteful", "tastiest", "tatouays", "tattered", "tattiest", "tattings", "tattlers", "tattling", "tattooed", "tattooer", "taunters", "taunting", "taurines", "tautaugs", "tautened", "tautness", "tautomer", "tautonym", "tavernas", "taverner", "tawdrier", "tawdries", "tawdrily", "tawniest", "taxables", "taxation", "taxicabs", "taxingly", "taxiways", "taxonomy", "taxpayer", "teaberry", "teaboard", "teabowls", "teaboxes", "teacakes", "teacarts", "teachers", "teaching", "teahouse", "teakwood", "teamaker", "teammate", "teamster", "teamwork", "tearable", "tearaway", "teardown", "teardrop", "teariest", "tearless", "tearooms", "teasable", "teaseled", "teaseler", "teashops", "teaspoon", "teatimes", "teawares", "teazeled", "teazling", "techiest", "technics", "tectites", "tectonic", "teddered", "teenaged", "teenager", "teeniest", "teensier", "teenybop", "teetered", "teethers", "teething", "teetotal", "teetotum", "tefillin", "tegmenta", "tegminal", "tegument", "tegumina", "teiglach", "tektites", "tektitic", "telecast", "telecoms", "telefilm", "telegony", "telegram", "telemark", "teleosts", "telepath", "teleplay", "teleport", "telerans", "teleshop", "telestic", "teletext", "telethon", "teletype", "teleview", "televise", "telexing", "telfered", "telfords", "tellable", "telltale", "telluric", "telneted", "telomere", "telphers", "telsonic", "temblors", "temerity", "temperas", "tempered", "temperer", "tempests", "templars", "template", "templets", "temporal", "tempters", "tempting", "tempuras", "tenacity", "tenacula", "tenaille", "tenanted", "tenantry", "tendance", "tendence", "tendency", "tendered", "tenderer", "tenderly", "tendrils", "tenebrae", "tenement", "tenesmic", "tenesmus", "tenfolds", "teniases", "teniasis", "tennises", "tennists", "tenoners", "tenoning", "tenorist", "tenorite", "tenotomy", "tenpence", "tenpenny", "tensible", "tensibly", "tensions", "tentacle", "tentages", "tentered", "tentiest", "tentless", "tentlike", "tentoria", "tenurial", "tenuring", "teocalli", "teosinte", "tepefied", "tepefies", "tephrite", "tepidity", "tequilas", "terabyte", "teraflop", "teraohms", "teraphim", "teratism", "teratoid", "teratoma", "terawatt", "terbiums", "tercelet", "terebene", "tergites", "teriyaki", "terminal", "terminus", "termites", "termitic", "termless", "termtime", "ternions", "terpenes", "terpenic", "terpinol", "terraced", "terraces", "terrains", "terranes", "terrapin", "terraria", "terrases", "terrazzo", "terreens", "terrella", "terrenes", "terrible", "terribly", "terriers", "terrific", "terrines", "tertials", "tertians", "tertiary", "terylene", "tesserae", "testable", "testates", "testator", "testicle", "testiest", "testoons", "testudos", "tetanics", "tetanies", "tetanise", "tetanize", "tetanoid", "tetchier", "tetchily", "tethered", "tetotums", "tetracid", "tetradic", "tetragon", "tetramer", "tetrapod", "tetrarch", "tetrodes", "tetroxid", "tevatron", "textbook", "textiles", "textless", "textuary", "textural", "textured", "textures", "thacking", "thalamic", "thalamus", "thallium", "thalloid", "thallous", "thalwegs", "thanages", "thanatos", "thankers", "thankful", "thanking", "thataway", "thatched", "thatcher", "thatches", "thawless", "thearchy", "theaters", "theatres", "theatric", "thebaine", "theelins", "theelols", "theistic", "thelitis", "thematic", "thenages", "theocrat", "theodicy", "theogony", "theologs", "theology", "theonomy", "theorbos", "theorems", "theories", "theorise", "theorist", "theorize", "therefor", "theremin", "theriaca", "theriacs", "therians", "thermals", "thermels", "thermion", "thermite", "thermits", "theropod", "thesauri", "thespian", "thetical", "theurgic", "thewiest", "thewless", "thiamine", "thiamins", "thiazide", "thiazine", "thiazins", "thiazole", "thiazols", "thickens", "thickest", "thickets", "thickety", "thickish", "thickset", "thievery", "thieving", "thievish", "thimbles", "thinclad", "thindown", "thinkers", "thinking", "thinners", "thinness", "thinnest", "thinning", "thinnish", "thionate", "thionine", "thionins", "thionyls", "thiophen", "thiotepa", "thiourea", "thirlage", "thirling", "thirsted", "thirster", "thirteen", "thirties", "thisaway", "thistles", "tholepin", "thoracal", "thoraces", "thoracic", "thoraxes", "thorites", "thoriums", "thornier", "thornily", "thorning", "thorough", "thoughts", "thousand", "thowless", "thraldom", "thralled", "thrashed", "thrasher", "thrashes", "thrawart", "thrawing", "thrawnly", "threaded", "threader", "threaped", "threaper", "threated", "threaten", "threeped", "threnode", "threnody", "threshed", "thresher", "threshes", "thrilled", "thriller", "thrivers", "thriving", "throated", "throbbed", "throbber", "thrombin", "thrombus", "thronged", "throning", "throstle", "throttle", "throwers", "throwing", "thrummed", "thrummer", "thruputs", "thrushes", "thrusted", "thruster", "thrustor", "thruways", "thudding", "thuggees", "thuggery", "thuggish", "thuliums", "thumbing", "thumbkin", "thumbnut", "thumpers", "thumping", "thunders", "thundery", "thunking", "thurible", "thurifer", "thwacked", "thwacker", "thwarted", "thwarter", "thwartly", "thymiest", "thymines", "thymosin", "thymuses", "thyreoid", "thyroids", "thyroxin", "thyrsoid", "ticketed", "tickings", "ticklers", "tickling", "ticklish", "tickseed", "ticktack", "ticktock", "tiddlers", "tideland", "tideless", "tidelike", "tidemark", "tiderips", "tideways", "tidiness", "tidytips", "tiebacks", "tiebreak", "tieclasp", "tiercels", "tiffined", "tigereye", "tigerish", "tightens", "tightest", "tightwad", "tilapias", "tilefish", "tilelike", "tillable", "tillages", "tillered", "tillites", "tiltable", "tiltyard", "timaraus", "timbales", "timbered", "timbrels", "timecard", "timeless", "timelier", "timeline", "timeouts", "timework", "timeworn", "timidest", "timidity", "timolols", "timorous", "timpanum", "tinamous", "tincting", "tincture", "tinfoils", "tingeing", "tinglers", "tinglier", "tingling", "tinhorns", "tininess", "tinkered", "tinkerer", "tinklers", "tinklier", "tinkling", "tinniest", "tinnitus", "tinplate", "tinseled", "tinselly", "tinsmith", "tinsnips", "tinstone", "tintings", "tintless", "tintypes", "tinwares", "tinworks", "tipcarts", "tippable", "tippiest", "tipplers", "tippling", "tippytoe", "tipsheet", "tipsiest", "tipstaff", "tipsters", "tipstock", "tiramisu", "tiredest", "tireless", "tiresome", "tirrivee", "tissuing", "tissular", "titanate", "titaness", "titanias", "titanism", "titanite", "titanium", "titanous", "tithable", "tithings", "tithonia", "titivate", "titlarks", "titlists", "titmouse", "titrable", "titrants", "titrated", "titrates", "titrator", "tittered", "titterer", "tittuped", "tittuppy", "titubant", "titulars", "titulary", "toadfish", "toadflax", "toadless", "toadlike", "toadying", "toadyish", "toadyism", "toasters", "toastier", "toasting", "tobaccos", "toboggan", "toccatas", "tochered", "tocology", "toddlers", "toddling", "toeholds", "toenails", "toepiece", "toeplate", "toeshoes", "tofuttis", "together", "togglers", "toggling", "toileted", "toiletry", "toilette", "toilsome", "toilworn", "tokamaks", "tokening", "tokenism", "tokology", "tokomaks", "tokonoma", "tolarjev", "tolbooth", "tolerant", "tolerate", "tolidine", "tolidins", "tollages", "tollbars", "tollgate", "tollways", "toluates", "toluenes", "toluides", "toluidin", "toluoles", "tomahawk", "tomalley", "tomatoes", "tomatoey", "tombacks", "tombless", "tomblike", "tombolas", "tombolos", "tomentum", "tomfools", "tommyrot", "tomogram", "tomorrow", "tompions", "tonality", "tonearms", "toneless", "tonetics", "tonettes", "tonguing", "tonicity", "tonights", "tonishly", "tonnages", "tonneaus", "tonneaux", "tonsilar", "tonsured", "tonsures", "tontines", "toolbars", "toolhead", "toolings", "toolless", "toolroom", "toolshed", "toothier", "toothily", "toothing", "tootlers", "tootling", "tootsies", "topazine", "topcoats", "topcross", "topkicks", "topknots", "toplines", "toplofty", "topmasts", "topnotch", "topology", "toponyms", "toponymy", "topotype", "toppings", "toppling", "topsails", "topsider", "topsides", "topsoils", "topspins", "topstone", "topworks", "torchere", "torchier", "torching", "torchons", "toreador", "toreutic", "torments", "tornadic", "tornados", "tornillo", "toroidal", "torosity", "torpedos", "torpidly", "torquate", "torquers", "torquing", "torrents", "torrider", "torridly", "torsades", "torsions", "tortilla", "tortious", "tortoise", "tortonis", "tortuous", "tortured", "torturer", "tortures", "tosspots", "tostadas", "tostados", "totaling", "totalise", "totalism", "totalist", "totality", "totalize", "totalled", "toteable", "totemism", "totemist", "totemite", "tottered", "totterer", "touchers", "touchier", "touchily", "touching", "touchpad", "touchups", "toughens", "toughest", "toughies", "toughing", "toughish", "touracos", "tourings", "tourisms", "tourista", "tourists", "touristy", "tourneys", "tousling", "touzling", "tovarich", "tovarish", "towardly", "towaways", "towboats", "toweling", "towelled", "towerier", "towering", "towheads", "towlines", "towmonds", "towmonts", "townfolk", "townhome", "townless", "townlets", "township", "townsman", "townsmen", "townwear", "towpaths", "towplane", "towropes", "towsacks", "toxaemia", "toxaemic", "toxemias", "toxicant", "toxicity", "toyshops", "trabeate", "tracheae", "tracheal", "tracheas", "tracheid", "trachled", "trachles", "trachoma", "trachyte", "tracings", "trackage", "trackers", "tracking", "trackman", "trackmen", "trackpad", "trackway", "tractate", "tractile", "traction", "tractive", "tractors", "tradable", "tradeoff", "traditor", "traduced", "traducer", "traduces", "traffics", "tragical", "tragopan", "traiking", "trailers", "trailing", "trainees", "trainers", "trainful", "training", "trainman", "trainmen", "trainway", "traipsed", "traipses", "traitors", "trajects", "tramcars", "trameled", "tramells", "tramless", "tramline", "trammels", "tramming", "trampers", "trampier", "tramping", "trampish", "trampled", "trampler", "tramples", "tramroad", "tramways", "tranches", "trancing", "trangams", "trannies", "tranquil", "transact", "transect", "transept", "transfer", "transfix", "tranship", "transits", "transmit", "transoms", "transude", "trapball", "trapdoor", "trapesed", "trapeses", "trapezes", "trapezia", "trapezii", "traplike", "trapline", "trapnest", "trappean", "trappers", "trapping", "trappose", "trappous", "traprock", "trapunto", "trashers", "trashier", "trashily", "trashing", "trashman", "trashmen", "trauchle", "traumata", "travails", "traveled", "traveler", "travelog", "traverse", "travesty", "travoise", "trawlers", "trawleys", "trawling", "trawlnet", "trayfuls", "treacles", "treaders", "treading", "treadled", "treadler", "treadles", "treasons", "treasure", "treasury", "treaters", "treaties", "treating", "treatise", "trebling", "trecento", "treddled", "treddles", "treelawn", "treeless", "treelike", "treenail", "treetops", "trefoils", "trehalas", "trekkers", "trekking", "trembled", "trembler", "trembles", "tremolos", "trenails", "trenched", "trencher", "trenches", "trendier", "trendies", "trendily", "trending", "trendoid", "trepangs", "trephine", "trespass", "tressels", "tressier", "tressour", "tressure", "trestles", "trevally", "triacids", "triadics", "triadism", "triaging", "triangle", "triarchy", "triassic", "triaxial", "triazine", "triazins", "triazole", "tribades", "tribadic", "tribally", "tribasic", "tribrach", "tribunal", "tribunes", "tributes", "trichina", "trichite", "trichoid", "trichome", "trickers", "trickery", "trickier", "trickily", "tricking", "trickish", "trickled", "trickles", "triclads", "tricolor", "tricorne", "tricorns", "trictrac", "tricycle", "tridents", "triduums", "triennia", "trientes", "triethyl", "trifecta", "triflers", "trifling", "trifocal", "triforia", "triggers", "triggest", "trigging", "triglyph", "trigness", "trigonal", "trigrams", "trigraph", "trihedra", "trilbies", "triliths", "trillers", "trilling", "trillion", "trillium", "trilobal", "trilobed", "trimaran", "trimeric", "trimeter", "trimmers", "trimmest", "trimming", "trimness", "trimorph", "trimotor", "trindled", "trindles", "trinkets", "trinkums", "trinodal", "triolets", "trioxide", "trioxids", "tripacks", "tripedal", "triphase", "triplane", "triplets", "tripling", "triplite", "triploid", "tripodal", "tripodic", "tripolis", "triposes", "trippers", "trippets", "trippier", "tripping", "triptane", "triptans", "triptyca", "triptych", "tripwire", "triremes", "triscele", "trisects", "trisemes", "trisemic", "trishaws", "triskele", "trisomes", "trisomic", "tristate", "tristeza", "tristful", "tristich", "trithing", "triticum", "tritiums", "tritomas", "tritones", "triumphs", "triumvir", "triunity", "trivalve", "troaking", "trochaic", "trochars", "trochees", "trochili", "trochils", "trochlea", "trochoid", "trocking", "troffers", "troilism", "troilite", "trolands", "trollers", "trolleys", "trollied", "trollies", "trolling", "trollops", "trollopy", "trombone", "trommels", "tromping", "troopers", "troopial", "trooping", "trophied", "trophies", "tropical", "tropines", "tropisms", "troponin", "trothing", "trotline", "trotters", "trotting", "troubled", "troubler", "troubles", "trounced", "trouncer", "trounces", "troupers", "troupial", "trouping", "trousers", "troutier", "trouvere", "trouveur", "troweled", "troweler", "trowsers", "truanted", "truantly", "truantry", "truckage", "truckers", "truckful", "trucking", "truckled", "truckler", "truckles", "truckman", "truckmen", "trudgens", "trudgeon", "trudgers", "trudging", "trueblue", "trueborn", "truebred", "truelove", "trueness", "truffled", "truffles", "truistic", "trumeaux", "trumpery", "trumpets", "trumping", "truncate", "trundled", "trundler", "trundles", "trunkful", "trunnels", "trunnion", "trussers", "trussing", "trusteed", "trustees", "trusters", "trustful", "trustier", "trusties", "trustily", "trusting", "trustors", "truthful", "tryingly", "trypsins", "trysails", "trysters", "trysting", "tryworks", "tsardoms", "tsarevna", "tsarinas", "tsarisms", "tsarists", "tsaritza", "tsatskes", "tsktsked", "tsorriss", "tsunamic", "tsunamis", "tuataras", "tuateras", "tubaists", "tubbable", "tubbiest", "tubeless", "tubelike", "tubenose", "tubercle", "tuberoid", "tuberose", "tuberous", "tubework", "tubeworm", "tubiform", "tubulate", "tubulins", "tubulose", "tubulous", "tubulure", "tuckahoe", "tuckered", "tuckshop", "tuftiest", "tuftings", "tugboats", "tughriks", "tuitions", "tullibee", "tumblers", "tumbling", "tumbrels", "tumbrils", "tumefied", "tumefies", "tumesced", "tumesces", "tumidity", "tummlers", "tumorous", "tumpline", "tumulose", "tumulous", "tuneable", "tuneably", "tuneless", "tungsten", "tungstic", "tunicate", "tunicles", "tunnages", "tunneled", "tunneler", "tuppence", "tuppenny", "turacous", "turbaned", "turbeths", "turbidly", "turbinal", "turbines", "turbiths", "turbocar", "turbofan", "turbojet", "turfiest", "turfless", "turflike", "turfskis", "turgency", "turgidly", "turgites", "turistas", "turmeric", "turmoils", "turnable", "turncoat", "turndown", "turnhall", "turnings", "turnkeys", "turnoffs", "turnouts", "turnover", "turnpike", "turnsole", "turnspit", "turpeths", "turquois", "turreted", "turrical", "turtlers", "turtling", "tuskless", "tusklike", "tussises", "tussling", "tussocks", "tussocky", "tussores", "tussucks", "tutelage", "tutelars", "tutelary", "tutorage", "tutoress", "tutorial", "tutoring", "tutoyers", "tuxedoed", "tuxedoes", "twaddled", "twaddler", "twaddles", "twangers", "twangier", "twanging", "twangled", "twangler", "twangles", "twankies", "twasomes", "twattled", "twattles", "tweakier", "tweaking", "tweedier", "tweedled", "tweedles", "tweeners", "tweeness", "tweenies", "tweeters", "tweeting", "tweezers", "tweezing", "twelfths", "twelvemo", "twenties", "twibills", "twiddled", "twiddler", "twiddles", "twiggier", "twigging", "twigless", "twiglike", "twilight", "twilling", "twinborn", "twinging", "twiniest", "twinight", "twinjets", "twinkies", "twinkled", "twinkler", "twinkles", "twinning", "twinsets", "twinship", "twirlers", "twirlier", "twirling", "twisters", "twistier", "twisting", "twitched", "twitcher", "twitches", "twitters", "twittery", "twitting", "twofolds", "twoonies", "twopence", "twopenny", "twosomes", "tylosins", "tympanal", "tympanic", "tympanum", "typeable", "typebars", "typecase", "typecast", "typeface", "typesets", "typhoids", "typhonic", "typhoons", "typhuses", "typified", "typifier", "typifies", "typology", "tyramine", "tyrannic", "tyrosine", "tzardoms", "tzarevna", "tzarinas", "tzarisms", "tzarists", "tzaritza", "tziganes", "tzitzith", "ubieties", "ubiquity", "udometer", "udometry", "uglified", "uglifier", "uglifies", "ugliness", "uintaite", "ukeleles", "ukuleles", "ulcerate", "ulcering", "ulcerous", "ulexites", "ulterior", "ultimacy", "ultimata", "ultimate", "ultradry", "ultrahip", "ultrahot", "ultraism", "ultraist", "ultralow", "ultrared", "ululated", "ululates", "umangite", "umbellar", "umbelled", "umbellet", "umbering", "umbilici", "umbonate", "umbrages", "umbrella", "umbrette", "umlauted", "umpirage", "umpiring", "umteenth", "unabated", "unabused", "unacidic", "unafraid", "unageing", "unagreed", "unakites", "unallied", "unamazed", "unamused", "unanchor", "unaneled", "unarched", "unargued", "unarming", "unartful", "unatoned", "unavowed", "unawaked", "unawares", "unbacked", "unbaling", "unbanded", "unbanned", "unbarbed", "unbarred", "unbasted", "unbathed", "unbeared", "unbeaten", "unbelief", "unbelted", "unbended", "unbenign", "unbiased", "unbidden", "unbilled", "unbitted", "unbitten", "unbitter", "unblamed", "unblocks", "unbloody", "unbobbed", "unbodied", "unboiled", "unbolted", "unbonded", "unbonnet", "unbooted", "unbosoms", "unbottle", "unbought", "unbouncy", "unbowing", "unboxing", "unbraced", "unbraces", "unbraids", "unbraked", "unbrakes", "unbreech", "unbridle", "unbright", "unbroken", "unbuckle", "unbuilds", "unbundle", "unburden", "unburied", "unburned", "unbusted", "unbutton", "uncaging", "uncaking", "uncalled", "uncandid", "uncanned", "uncapped", "uncarded", "uncaring", "uncarted", "uncarved", "uncashed", "uncasing", "uncasked", "uncatchy", "uncaught", "uncaused", "unchains", "unchairs", "unchancy", "uncharge", "unchaste", "unchewed", "unchicly", "unchoked", "unchokes", "unchosen", "unchurch", "uncially", "unciform", "uncinate", "unclamps", "unclasps", "unclassy", "unclawed", "unclench", "unclinch", "uncloaks", "unclosed", "uncloses", "unclothe", "unclouds", "uncloudy", "uncloyed", "uncoated", "uncocked", "uncoffin", "uncoiled", "uncoined", "uncombed", "uncomely", "uncommon", "uncooked", "uncooled", "uncorked", "uncouple", "uncovers", "uncrated", "uncrates", "uncreate", "uncrewed", "uncrowns", "unctions", "unctuous", "uncuffed", "uncurbed", "uncurled", "uncursed", "undamped", "undaring", "undecked", "undenied", "undented", "underact", "underage", "underarm", "underate", "underbid", "underbud", "underbuy", "undercut", "underdid", "underdog", "undereat", "underfed", "underfur", "undergod", "underjaw", "underlap", "underlay", "underlet", "underlie", "underlip", "underlit", "underpay", "underpin", "underran", "underrun", "undersea", "underset", "undertax", "undertow", "underuse", "underway", "undevout", "undimmed", "undoable", "undocile", "undocked", "undoings", "undotted", "undouble", "undraped", "undrapes", "undreamt", "undubbed", "undulant", "undulate", "undulled", "unearned", "unearths", "uneasier", "uneasily", "unedible", "unedited", "unending", "unenvied", "unequals", "unerased", "unerotic", "unerring", "unevaded", "unevener", "unevenly", "unexotic", "unexpert", "unfading", "unfairer", "unfairly", "unfaiths", "unfallen", "unfamous", "unfasten", "unfeared", "unfelted", "unfenced", "unfences", "unfetter", "unfilial", "unfilled", "unfilmed", "unfished", "unfitted", "unfixing", "unflashy", "unflawed", "unflexed", "unfluted", "unfoiled", "unfolded", "unfolder", "unforced", "unforged", "unforgot", "unforked", "unformed", "unfought", "unframed", "unfreeze", "unfrocks", "unfrozen", "unfunded", "unfurled", "ungainly", "ungalled", "ungarbed", "ungazing", "ungelded", "ungenial", "ungentle", "ungently", "ungifted", "ungirded", "ungiving", "unglazed", "ungloved", "ungloves", "ungluing", "ungotten", "ungowned", "ungraced", "ungraded", "ungreedy", "unground", "unguards", "unguenta", "unguents", "unguided", "ungulate", "unhailed", "unhaired", "unhairer", "unhallow", "unhalved", "unhanded", "unhanged", "unharmed", "unhatted", "unhealed", "unheated", "unhedged", "unheeded", "unhelmed", "unhelped", "unheroic", "unhinged", "unhinges", "unholier", "unholily", "unhooded", "unhooked", "unhorsed", "unhorses", "unhoused", "unhouses", "unhusked", "unialgal", "uniaxial", "unicolor", "unicorns", "unicycle", "unideaed", "unifaces", "unifiers", "unifilar", "uniforms", "unifying", "unilobed", "unimbued", "unionise", "unionism", "unionist", "unionize", "unipolar", "uniquely", "uniquest", "unironed", "unironic", "unisexes", "unisonal", "unissued", "unitages", "unitards", "unitedly", "unitized", "unitizer", "unitizes", "unitrust", "univalve", "universe", "univocal", "unjammed", "unjoined", "unjoints", "unjoyful", "unjudged", "unjustly", "unkeeled", "unkenned", "unkennel", "unkinder", "unkindly", "unkingly", "unkinked", "unkissed", "unknowns", "unkosher", "unlacing", "unlading", "unlashed", "unlashes", "unlawful", "unlaying", "unleaded", "unlearns", "unlearnt", "unleased", "unlethal", "unletted", "unlevels", "unlevied", "unlicked", "unlikely", "unlimber", "unlinked", "unlisted", "unlively", "unliving", "unloaded", "unloader", "unlocked", "unloosed", "unloosen", "unlooses", "unlovely", "unloving", "unmailed", "unmakers", "unmaking", "unmanful", "unmanned", "unmapped", "unmarked", "unmarred", "unmasked", "unmasker", "unmatted", "unmeetly", "unmellow", "unmelted", "unmended", "unmeshed", "unmeshes", "unmewing", "unmilled", "unmingle", "unmiters", "unmitred", "unmitres", "unmixing", "unmodish", "unmolded", "unmolten", "unmoored", "unmoving", "unmuffle", "unmuzzle", "unnailed", "unneeded", "unnerved", "unnerves", "unopened", "unornate", "unpacked", "unpacker", "unpadded", "unpaired", "unparted", "unpaying", "unpeeled", "unpegged", "unpenned", "unpeople", "unperson", "unpicked", "unpiling", "unpinned", "unpitied", "unpitted", "unplaced", "unplaits", "unplayed", "unpliant", "unplowed", "unpoetic", "unpoised", "unpolite", "unpolled", "unposted", "unpotted", "unpretty", "unpriced", "unprimed", "unprized", "unprobed", "unproved", "unproven", "unpruned", "unpucker", "unpurely", "unpurged", "unpuzzle", "unquiets", "unquoted", "unquotes", "unraised", "unranked", "unravels", "unreally", "unreason", "unreeled", "unreeler", "unreeved", "unreeves", "unrented", "unrepaid", "unrepair", "unrested", "unretire", "unrhymed", "unribbed", "unriddle", "unrifled", "unrigged", "unrinsed", "unripely", "unripest", "unripped", "unrobing", "unrolled", "unroofed", "unrooted", "unrounds", "unrulier", "unrushed", "unrusted", "unsaddle", "unsafely", "unsafety", "unsalted", "unsavory", "unsaying", "unscaled", "unscrews", "unsealed", "unseamed", "unseared", "unseated", "unseeded", "unseeing", "unseemly", "unseized", "unserved", "unsettle", "unsewing", "unsexing", "unsexual", "unshaded", "unshaken", "unshamed", "unshaped", "unshapen", "unshared", "unshaved", "unshaven", "unshells", "unshifts", "unshrunk", "unsicker", "unsifted", "unsights", "unsigned", "unsilent", "unsinful", "unslaked", "unsliced", "unslings", "unsmoked", "unsnarls", "unsoaked", "unsocial", "unsoiled", "unsolder", "unsolved", "unsonsie", "unsorted", "unsought", "unsoured", "unspeaks", "unsphere", "unspoilt", "unspoken", "unspools", "unsprung", "unstable", "unstably", "unstacks", "unstated", "unstates", "unstayed", "unsteady", "unsteels", "unsticks", "unstitch", "unstoned", "unstraps", "unstress", "unstring", "unstrung", "unstuffy", "unsubtle", "unsubtly", "unsuited", "unsurely", "unswathe", "unswayed", "unswears", "untacked", "untagged", "untangle", "untanned", "untapped", "untasted", "untaught", "untended", "untented", "untested", "untether", "unthawed", "unthinks", "unthread", "unthrone", "untidied", "untidier", "untidies", "untidily", "untieing", "untilled", "untilted", "untimely", "untinged", "untipped", "untiring", "untitled", "untoward", "untraced", "untracks", "untreads", "untrendy", "untruest", "untrusty", "untruths", "untucked", "untufted", "untuning", "unturned", "untwined", "untwines", "untwists", "ununbium", "ununited", "unusable", "unvalued", "unvaried", "unveiled", "unveined", "unversed", "unvested", "unviable", "unvoiced", "unvoices", "unwalled", "unwaning", "unwanted", "unwarier", "unwarily", "unwarmed", "unwarned", "unwarped", "unwashed", "unwasted", "unweaned", "unweaves", "unwedded", "unweeded", "unweight", "unwelded", "unwetted", "unwieldy", "unwifely", "unwilled", "unwinder", "unwisdom", "unwisely", "unwisest", "unwished", "unwishes", "unwitted", "unwonted", "unwooded", "unworked", "unworthy", "unyeaned", "unyoking", "unzipped", "upbearer", "upboiled", "upbraids", "upbuilds", "upchucks", "upclimbs", "upcoiled", "upcoming", "upcurled", "upcurved", "upcurves", "updarted", "updaters", "updating", "updiving", "updrafts", "updrying", "upending", "upflings", "upflowed", "upfolded", "upgather", "upgazing", "upgirded", "upgraded", "upgrades", "upgrowth", "upheaped", "upheaval", "upheaved", "upheaver", "upheaves", "uphoards", "upholder", "uplander", "upleaped", "uplifted", "uplifter", "uplights", "uplinked", "uploaded", "upmarket", "uppercut", "uppiling", "uppishly", "upraised", "upraiser", "upraises", "uprating", "upreared", "uprights", "uprisers", "uprising", "uprivers", "uprootal", "uprooted", "uprooter", "uproused", "uprouses", "uprushed", "uprushes", "upscaled", "upscales", "upsetter", "upshifts", "upshoots", "upsilons", "upsizing", "upsoared", "upsprang", "upspring", "upsprung", "upstaged", "upstager", "upstages", "upstairs", "upstands", "upstared", "upstares", "upstarts", "upstater", "upstates", "upstream", "upstroke", "upsurged", "upsurges", "upsweeps", "upswells", "upswings", "uptalked", "uptempos", "upthrown", "upthrows", "upthrust", "uptilted", "uptossed", "uptosses", "uptowner", "uptrends", "upturned", "upwafted", "upwardly", "upwelled", "uraemias", "uraeuses", "uralites", "uralitic", "uranides", "uranisms", "uranites", "uranitic", "uraniums", "uranylic", "urbanely", "urbanest", "urbanise", "urbanism", "urbanist", "urbanite", "urbanity", "urbanize", "uredinia", "ureteral", "ureteric", "urethane", "urethans", "urethrae", "urethral", "urethras", "urgently", "urgingly", "uridines", "urinated", "urinates", "urinator", "urinemia", "urinemic", "urochord", "urodeles", "uroliths", "urologic", "uropodal", "uropygia", "uroscopy", "urostyle", "ursiform", "urticant", "urticate", "urushiol", "usaunces", "usefully", "username", "ushering", "usquabae", "usquebae", "ustulate", "usufruct", "usurious", "usurpers", "usurping", "utensils", "uteruses", "utilidor", "utilised", "utiliser", "utilises", "utilized", "utilizer", "utilizes", "utopians", "utopisms", "utopists", "utricles", "utriculi", "utterers", "uttering", "uvularly", "uvulitis", "uxorious", "vacantly", "vacating", "vacation", "vaccinal", "vaccinas", "vaccinee", "vaccines", "vaccinia", "vacuolar", "vacuoles", "vacuumed", "vagabond", "vagaries", "vagility", "vaginate", "vagotomy", "vagrancy", "vagrants", "vainness", "valanced", "valances", "valences", "valencia", "valerate", "valerian", "valeting", "valguses", "valiance", "valiancy", "valiants", "validate", "validity", "valkyrie", "valleyed", "valonias", "valorise", "valorize", "valorous", "valuable", "valuably", "valuated", "valuates", "valuator", "valvelet", "valvulae", "valvular", "valvules", "vambrace", "vamoosed", "vamooses", "vamosing", "vampiest", "vampires", "vampiric", "vanadate", "vanadium", "vanadous", "vandalic", "vandyked", "vandykes", "vanguard", "vanillas", "vanillic", "vanillin", "vanished", "vanisher", "vanishes", "vanitied", "vanities", "vanitory", "vanloads", "vanpools", "vanquish", "vantages", "vapidity", "vaporers", "vaporing", "vaporise", "vaporish", "vaporize", "vaporous", "vapoured", "vapourer", "vaqueros", "varactor", "variable", "variably", "variance", "variants", "variated", "variates", "varicose", "variedly", "varietal", "variform", "variolar", "variolas", "varioles", "variorum", "varistor", "varletry", "varments", "varmints", "varnishy", "varoomed", "vascular", "vasculum", "vaselike", "vaseline", "vasiform", "vasotomy", "vastiest", "vastness", "vaticide", "vaulters", "vaultier", "vaulting", "vaunters", "vauntful", "vaunting", "vavasors", "vavasour", "vavassor", "vealiest", "vectored", "vedalias", "vedettes", "veganism", "vegetant", "vegetate", "vegetist", "vegetive", "vehement", "vehicles", "veiledly", "veilings", "veillike", "veiniest", "veinings", "veinless", "veinlets", "veinlike", "veinules", "veinulet", "velamina", "velarium", "velarize", "veligers", "velleity", "velocity", "veloutes", "veluring", "velveret", "velveted", "venality", "venation", "vendable", "vendaces", "vendetta", "vendeuse", "vendible", "vendibly", "veneered", "veneerer", "venenate", "venenose", "venerate", "venereal", "veneries", "venetian", "vengeful", "venially", "venisons", "venogram", "venology", "venomers", "venoming", "venomous", "venosity", "venously", "ventages", "ventails", "ventless", "ventrals", "ventured", "venturer", "ventures", "venturis", "venulose", "venulous", "veracity", "verandah", "verandas", "veratria", "veratrin", "veratrum", "verbally", "verbatim", "verbenas", "verbiage", "verbiles", "verbless", "verboten", "verdancy", "verderer", "verderor", "verdicts", "verditer", "verdured", "verdures", "verecund", "vergence", "verified", "verifier", "verifies", "verismos", "veristic", "verities", "verjuice", "vermeils", "vermoulu", "vermouth", "vermuths", "vernacle", "vernally", "vernicle", "verniers", "vernixes", "veronica", "verrucae", "verrucas", "versants", "verseman", "versemen", "versicle", "versines", "versions", "vertebra", "vertexes", "vertical", "vertices", "verticil", "vertigos", "vervains", "vesicant", "vesicate", "vesicles", "vesicula", "vesperal", "vespiary", "vesseled", "vestally", "vestiary", "vestiges", "vestigia", "vestings", "vestless", "vestlike", "vestment", "vestries", "vestural", "vestured", "vestures", "vesuvian", "veterans", "vetivers", "vetivert", "vexation", "vexillar", "vexillum", "vexingly", "viaducts", "vialling", "viatical", "viaticum", "viatores", "vibrance", "vibrancy", "vibrants", "vibrated", "vibrates", "vibrator", "vibratos", "vibrioid", "vibrions", "vibrissa", "vibronic", "viburnum", "vicarage", "vicarate", "vicarial", "viceless", "vicenary", "viceroys", "vicinage", "vicinity", "vicomtes", "victoria", "victress", "victuals", "vicugnas", "videotex", "videttes", "vidicons", "viewable", "viewdata", "viewiest", "viewings", "viewless", "vigilant", "vigneron", "vignette", "vigorish", "vigoroso", "vigorous", "vilayets", "vileness", "vilified", "vilifier", "vilifies", "vilipend", "villadom", "villager", "villages", "villains", "villainy", "villatic", "villeins", "vinasses", "vincible", "vincibly", "vinculum", "vindaloo", "vinegars", "vinegary", "vineries", "vineyard", "vinifera", "vinified", "vinifies", "vinosity", "vinously", "vintager", "vintages", "vintners", "violable", "violably", "violated", "violater", "violates", "violator", "violence", "violists", "violones", "viomycin", "viperine", "viperish", "viperous", "viragoes", "virelais", "virelays", "viremias", "virgates", "virginal", "virgules", "viricide", "viridian", "viridity", "virilely", "virilism", "virility", "virilize", "virology", "virtuosa", "virtuose", "virtuosi", "virtuoso", "virtuous", "virucide", "virulent", "virusoid", "viscacha", "visceral", "viscidly", "viscoses", "viscount", "viselike", "visional", "visioned", "visitant", "visiters", "visiting", "visitors", "visoring", "visually", "vitalise", "vitalism", "vitalist", "vitality", "vitalize", "vitamers", "vitamine", "vitamins", "vitellin", "vitellus", "vitesses", "vitiable", "vitiated", "vitiates", "vitiator", "vitiligo", "vitrains", "vitreous", "vitrines", "vitriols", "vittling", "vituline", "vivacity", "vivaries", "vivarium", "viverrid", "vividest", "vivified", "vivifier", "vivifies", "vivipara", "vivisect", "vixenish", "vizarded", "vizcacha", "vizirate", "vizirial", "vizoring", "vocables", "vocalese", "vocalics", "vocalise", "vocalism", "vocalist", "vocality", "vocalize", "vocation", "vocative", "vocoders", "vogueing", "voguings", "voiceful", "voicings", "voidable", "voidance", "voidness", "volatile", "volcanic", "volcanos", "voleries", "volitant", "volition", "volitive", "volleyed", "volleyer", "volplane", "voltages", "voltaism", "voluming", "volutins", "volution", "volvoxes", "volvulus", "vomerine", "vomiters", "vomiting", "vomitive", "vomitory", "vomitous", "voodooed", "voracity", "vorlages", "vortexes", "vortical", "vortices", "votaress", "votaries", "votarist", "voteable", "voteless", "votively", "vouchees", "vouchers", "vouching", "voudouns", "voussoir", "vouvrays", "vowelize", "voyagers", "voyageur", "voyaging", "vrooming", "vuggiest", "vulcanic", "vulgarer", "vulgarly", "vulgates", "vulguses", "vultures", "vulvitis", "wabblers", "wabblier", "wabbling", "wackiest", "waddings", "waddlers", "waddling", "waddying", "wadeable", "wadmaals", "wadmolls", "waesucks", "wafering", "wafflers", "wafflier", "waffling", "waftages", "waftures", "wageless", "wagerers", "wagering", "wagglier", "waggling", "waggoned", "waggoner", "wagonage", "wagoners", "wagoning", "wagtails", "wahconda", "waiflike", "wailsome", "wainscot", "waisters", "waisting", "waitered", "waitings", "waitlist", "waitress", "waitrons", "wakandas", "wakeless", "wakeners", "wakening", "wakerife", "walkable", "walkaway", "walkings", "walkouts", "walkover", "walkways", "walkyrie", "wallaroo", "walleyed", "walleyes", "walloped", "walloper", "wallowed", "wallower", "walruses", "waltzers", "waltzing", "wamblier", "wambling", "wamefous", "wamefuls", "wammuses", "wampuses", "wandered", "wanderer", "wanderoo", "wanglers", "wangling", "wanigans", "wannabee", "wannabes", "wannigan", "wantages", "wantoned", "wantoner", "wantonly", "warblers", "warbling", "warcraft", "wardenry", "wardless", "wardress", "wardrobe", "wardroom", "wardship", "wareroom", "warfares", "warfarin", "warheads", "warhorse", "wariness", "warisons", "warlocks", "warlords", "warmaker", "warmness", "warmouth", "warnings", "warpages", "warpaths", "warplane", "warpower", "warpwise", "warragal", "warrants", "warranty", "warrener", "warrigal", "warriors", "warships", "warslers", "warsling", "warstled", "warstler", "warstles", "warthogs", "wartiest", "wartimes", "wartless", "wartlike", "warworks", "washable", "washbowl", "washdays", "washiest", "washings", "washouts", "washrags", "washroom", "washtubs", "waspiest", "wasplike", "wassails", "wastable", "wastages", "wasteful", "wastelot", "wasterie", "wasteway", "wastrels", "wastries", "watchcry", "watchdog", "watchers", "watcheye", "watchful", "watching", "watchman", "watchmen", "watchout", "waterage", "waterbed", "waterbus", "waterdog", "waterers", "waterhen", "waterier", "waterily", "watering", "waterish", "waterjet", "waterlog", "waterloo", "waterman", "watermen", "waterski", "waterway", "wattages", "wattapes", "watthour", "wattless", "wattling", "wauchted", "waughted", "waveband", "waveform", "waveless", "wavelets", "wavelike", "waveoffs", "waverers", "wavering", "wavicles", "waviness", "waxberry", "waxbills", "waxiness", "waxplant", "waxweeds", "waxwings", "waxworks", "waxworms", "waybills", "wayfarer", "waygoing", "waylayer", "waypoint", "waysides", "weakened", "weakener", "weakfish", "weaklier", "weakling", "weakness", "weakside", "weanling", "weaponed", "weaponry", "wearable", "weariest", "weariful", "wearying", "weasands", "weaseled", "weaselly", "weathers", "weazands", "webbiest", "webbings", "webcasts", "webpages", "websites", "websters", "webworks", "webworms", "weddings", "wedeling", "wedgiest", "wedlocks", "weediest", "weedless", "weedlike", "weekdays", "weekends", "weeklies", "weeklong", "weeniest", "weensier", "weepiest", "weepings", "weeviled", "weevilly", "weftwise", "weigelas", "weigelia", "weighers", "weighing", "weighman", "weighmen", "weighted", "weighter", "weirdest", "weirdies", "weirding", "weirdoes", "welchers", "welching", "welcomed", "welcomer", "welcomes", "weldable", "weldless", "weldment", "welfares", "welladay", "wellaway", "wellborn", "wellcurb", "welldoer", "wellhead", "wellhole", "wellness", "wellsite", "welshers", "welshing", "weltered", "weltings", "wenchers", "wenching", "wendigos", "wenniest", "weregild", "werewolf", "wergelds", "wergelts", "wergilds", "wessands", "westered", "westerly", "westerns", "westings", "westmost", "westward", "wetbacks", "wetlands", "wetproof", "wetsuits", "wettable", "wettings", "wetwares", "whackers", "whackier", "whacking", "whaleman", "whalemen", "whalings", "whammies", "whamming", "whangees", "whanging", "whappers", "whapping", "wharfage", "wharfing", "whatever", "whatness", "whatnots", "whatsits", "wheatear", "wheatens", "wheedled", "wheedler", "wheedles", "wheelers", "wheelies", "wheeling", "wheelman", "wheelmen", "wheeping", "wheepled", "wheeples", "wheezers", "wheezier", "wheezily", "wheezing", "whelkier", "whelming", "whelping", "whenever", "wherever", "wherried", "wherries", "whetters", "whetting", "wheyface", "wheylike", "whickers", "whidding", "whiffers", "whiffets", "whiffing", "whiffled", "whiffler", "whiffles", "whimbrel", "whimpers", "whimseys", "whimsied", "whimsies", "whinchat", "whingers", "whinging", "whiniest", "whinnied", "whinnier", "whinnies", "whipcord", "whiplash", "whiplike", "whippers", "whippets", "whippier", "whipping", "whiprays", "whipsawn", "whipsaws", "whiptail", "whipworm", "whirlers", "whirlier", "whirlies", "whirling", "whirried", "whirries", "whirring", "whishing", "whishted", "whiskers", "whiskery", "whiskeys", "whiskies", "whisking", "whispers", "whispery", "whisting", "whistled", "whistler", "whistles", "whitecap", "whitefly", "whitened", "whitener", "whiteout", "whitiest", "whitings", "whitlows", "whitrack", "whitters", "whittled", "whittler", "whittles", "whittret", "whizbang", "whizzers", "whizzier", "whizzing", "whodunit", "wholisms", "whomever", "whomping", "whoofing", "whoopees", "whoopers", "whoopies", "whooping", "whooplas", "whooshed", "whooshes", "whoppers", "whopping", "whoredom", "whoreson", "whortles", "whosever", "whosises", "whumping", "whupping", "wickapes", "wickeder", "wickedly", "wickings", "wickiups", "wickless", "wickyups", "wicopies", "widdling", "wideband", "widebody", "wideners", "wideness", "widening", "wideouts", "widgeons", "widowers", "widowing", "widthway", "wielders", "wieldier", "wielding", "wifedoms", "wifehood", "wifeless", "wifelier", "wifelike", "wiftiest", "wiggiest", "wiggings", "wigglers", "wigglier", "wiggling", "wigmaker", "wildcard", "wildcats", "wildered", "wildfire", "wildfowl", "wildings", "wildland", "wildlife", "wildling", "wildness", "wildwood", "wilfully", "wiliness", "willable", "williwau", "williwaw", "willowed", "willower", "willyard", "willyart", "willying", "willywaw", "wimbling", "wimpiest", "wimpling", "winchers", "winching", "windable", "windages", "windbags", "windbell", "windburn", "windfall", "windflaw", "windgall", "windiest", "windigos", "windings", "windlass", "windless", "windling", "windmill", "windowed", "windpipe", "windrows", "windsock", "windsurf", "windward", "windways", "wineless", "wineries", "winesaps", "wineshop", "wineskin", "winesops", "wingback", "wingbows", "wingding", "wingedly", "wingiest", "wingless", "winglets", "winglike", "wingover", "wingspan", "wingtips", "winkling", "winnable", "winnings", "winnocks", "winnowed", "winnower", "winsomer", "wintered", "winterer", "winterly", "wintling", "wintrier", "wintrily", "wipeouts", "wiredraw", "wiredrew", "wirehair", "wireless", "wirelike", "wiretaps", "wireways", "wirework", "wireworm", "wiriness", "wiseacre", "wiseguys", "wiselier", "wiseness", "wishbone", "wishless", "wispiest", "wisplike", "wistaria", "wisteria", "witchery", "witchier", "witching", "withdraw", "withdrew", "withered", "witherer", "witherod", "withheld", "withhold", "withiest", "withouts", "witlings", "witloofs", "wittiest", "wittings", "wizardly", "wizardry", "wizening", "wobblers", "wobblier", "wobblies", "wobbling", "wobegone", "woefully", "wofuller", "wolffish", "wolflike", "wolframs", "womaning", "womanise", "womanish", "womanism", "womanist", "womanize", "wombiest", "wommeras", "wondered", "wonderer", "wondrous", "wonkiest", "wontedly", "woodbind", "woodbine", "woodbins", "woodchat", "woodcock", "woodcuts", "woodener", "woodenly", "woodhens", "woodiest", "woodland", "woodlark", "woodless", "woodlore", "woodlots", "woodnote", "woodpile", "woodruff", "woodshed", "woodsias", "woodsier", "woodsman", "woodsmen", "woodtone", "woodwind", "woodwork", "woodworm", "wooingly", "woolfell", "woolhats", "wooliest", "woollens", "woollier", "woollies", "woollike", "woollily", "woolpack", "woolsack", "woolshed", "woolskin", "woolwork", "woomeras", "woopsing", "wooralis", "wooraris", "wooshing", "wooziest", "wordages", "wordbook", "wordiest", "wordings", "wordless", "wordplay", "workable", "workably", "workaday", "workbags", "workboat", "workbook", "workdays", "workfare", "workflow", "workfolk", "workhour", "workings", "workless", "workload", "workmate", "workouts", "workroom", "workshop", "workweek", "wormgear", "wormhole", "wormiest", "wormlike", "wormroot", "wormseed", "wormwood", "wornness", "worriers", "worrited", "worrying", "worsened", "worships", "worsteds", "worsting", "worthful", "worthier", "worthies", "worthily", "worthing", "wouldest", "wounding", "wrackful", "wracking", "wrangled", "wrangler", "wrangles", "wrappers", "wrapping", "wrassled", "wrassles", "wrastled", "wrastles", "wrathful", "wrathier", "wrathily", "wrathing", "wreakers", "wreaking", "wreathed", "wreathen", "wreather", "wreathes", "wreckage", "wreckers", "wreckful", "wrecking", "wrenched", "wrencher", "wrenches", "wresters", "wresting", "wrestled", "wrestler", "wrestles", "wretched", "wretches", "wricking", "wriggled", "wriggler", "wriggles", "wringers", "wringing", "wrinkled", "wrinkles", "wristier", "wristlet", "writable", "writerly", "writhers", "writhing", "writings", "wrongers", "wrongest", "wrongful", "wronging", "wrothful", "wrynecks", "wurtzite", "wussiest", "wuthered", "xanthans", "xanthate", "xanthein", "xanthene", "xanthine", "xanthins", "xanthoma", "xanthone", "xanthous", "xenogamy", "xenogeny", "xenolith", "xerosere", "xeroxing", "xiphoids", "xylidine", "xylidins", "xylitols", "xylocarp", "xylotomy", "yabbered", "yachters", "yachting", "yachtman", "yachtmen", "yahooism", "yahrzeit", "yakitori", "yamalkas", "yammered", "yammerer", "yamulkas", "yardages", "yardarms", "yardbird", "yardland", "yardwand", "yardwork", "yarmelke", "yarmulke", "yashmacs", "yashmaks", "yatagans", "yataghan", "yattered", "yawmeter", "yawpings", "yealings", "yeanling", "yearbook", "yearends", "yearlies", "yearling", "yearlong", "yearners", "yearning", "yeasayer", "yeastier", "yeastily", "yeasting", "yellowed", "yellower", "yellowly", "yeomanly", "yeomanry", "yeshivah", "yeshivas", "yeshivot", "yestreen", "yielders", "yielding", "yodelers", "yodeling", "yodelled", "yodeller", "yoghourt", "yoghurts", "yohimbes", "yokeless", "yokelish", "yokemate", "yokozuna", "yolkiest", "youngers", "youngest", "youngish", "younkers", "yourself", "youthens", "youthful", "yperites", "ytterbia", "ytterbic", "yttriums", "yuckiest", "yukkiest", "yuletide", "yummiest", "zabaione", "zabajone", "zacatons", "zaddikim", "zaibatsu", "zamarras", "zamarros", "zamindar", "zaniness", "zapateos", "zappiest", "zaptiahs", "zaptiehs", "zaratite", "zareebas", "zarzuela", "zastruga", "zastrugi", "zealotry", "zebranos", "zebrines", "zecchini", "zecchino", "zecchins", "zelkovas", "zemindar", "zemstvos", "zenaidas", "zenithal", "zeolites", "zeolitic", "zeppelin", "zeppoles", "zestiest", "zestless", "zibeline", "ziggurat", "zigzaggy", "zikkurat", "zikurats", "zillions", "zincates", "zincites", "zincking", "zingiest", "zippered", "zippiest", "zircaloy", "zirconia", "zirconic", "zitherns", "zizzling", "zodiacal", "zoisites", "zombiism", "zonation", "zoneless", "zonetime", "zoochore", "zooecium", "zoogenic", "zoogleae", "zoogleal", "zoogleas", "zoogloea", "zoolater", "zoolatry", "zoologic", "zoomania", "zoometry", "zoomorph", "zoonoses", "zoonosis", "zoonotic", "zoophile", "zoophily", "zoophobe", "zoophyte", "zoosperm", "zoospore", "zootiest", "zootomic", "zorillas", "zorilles", "zorillos", "zucchini", "zugzwang", "zwieback", "zygomata", "zygosity", "zygotene", "zymogene", "zymogens", "zymogram", "zymology", "zymosans", "zyzzyvas"];
        var correct="........";
        var letter="";
        var misses="";
        function getRandomInt(max) {
          return Math.floor(Math.random() * max);
        }
        function getWord() {
          if (letter) {
            var patterns = words.map(word => word.replaceAll(new RegExp("[^" + letter + "]", "g"), "[^" + letter + "]")).reduce(function (acc, curr) { return acc[curr] ? ++acc[curr] : acc[curr] = 1, acc }, {});
            var maxcount = Math.max(...Object.values(patterns));
            var bestpatterns = Object.keys(Object.fromEntries(Object.entries(patterns).filter(([key, value]) => value == maxcount)));
            if (bestpatterns.length > 1) {
              var maxlength = Math.max(...bestpatterns.map(pat => pat.length));
              var bestpatterns = bestpatterns.filter(key => key.length == maxlength);
            }
            var bestpattern = new RegExp(bestpatterns[getRandomInt(bestpatterns.length)]);
            words = words.filter(word => bestpattern.test(word));
            words = words.filter(word => bestpattern.test(word));
            lesswords = words.filter(word => new RegExp("[^" + letter + "]").test(word));
            if (lesswords.length) words = lesswords;
          }
          return words[getRandomInt(words.length)];
        }
        function numCorrect() {
          return 8 - (correct.match(/\./g) || []).length;
        }
        function update() {
          var entry = document.getElementById("letter");
          if (entry.value) {
            letter = entry.value.charAt(0);
            entry.value = "";
            if (/[^a-z]/.test(letter) || misses.indexOf(letter) >= 0 || correct.indexOf(letter) >= 0) {
              return;
            }
            var word = getWord();
            if (word.indexOf(letter) === -1) {
              misses += letter;
              misses = misses.split('').sort().join('');
            } else {
              correct = correct.split('').map((c, i) => word[i] == letter ? letter : c).join('');
            }
          }
          var canvas = document.getElementById('nooseman');
          if (canvas.getContext) {
            var ctx = canvas.getContext('2d');
            ctx.clearRect(0, 0, canvas.width, canvas.height);
            ctx.translate(0.5, 0.5);
            ctx.beginPath();
            ctx.strokeStyle = 'black';
            ctx.textAlign = "center";
            var x = 60;
            var y = 100;
            ctx.moveTo(x, y);
            ctx.lineTo(x + 20, y + 20);
            ctx.lineTo(x - 20, y + 20);
            ctx.lineTo(x, y);
            ctx.lineTo(x, y - 80);
            ctx.lineTo(x + 30, y - 80);
            ctx.lineTo(x + 30, y - 70);
            if (numCorrect() == 8) {
              y += 23;
              ctx.moveTo(x + 30, y - 70);
            }
            if (misses || numCorrect() == 8) {
              ctx.ellipse(x + 30, y - 63, 6, 7, 0, -Math.PI / 2, 5 * Math.PI / 2);
              y += 4;
            }
            if (misses.length > 1 || numCorrect() == 8) {
              ctx.moveTo(x + 30, y - 60);
              ctx.lineTo(x + 30, y - 25);
            }
            ctx.translate(-0.5, -0.5);
            if (misses.length > 2 || numCorrect() == 8) {
              ctx.lineTo(x + 20, y - 5);
            }
            if (misses.length > 3 || numCorrect() == 8) {
              ctx.moveTo(x + 30, y - 25);
              ctx.lineTo(x + 40, y - 5);
            }
            if (misses.length > 4 || numCorrect() == 8) {
              ctx.moveTo(x + 30, y - 50);
              ctx.lineTo(x + 15, y - 45);
            }
            if (misses.length > 5 || numCorrect() == 8) {
              ctx.moveTo(x + 30, y - 50);
              ctx.lineTo(x + 45, y - 45);
            }
            if (misses.length > 6 || numCorrect() == 8) {
              ctx.moveTo(x + 20, y - 5);
              ctx.lineTo(x + 15, y - 5);
            }
            if (misses.length > 7 || numCorrect() == 8) {
              ctx.moveTo(x + 40, y - 5);
              ctx.lineTo(x + 45, y - 5);
            }
            if (misses.length > 8 && numCorrect() < 8) {
              ctx.moveTo(x + 27, y - 64);
              ctx.ellipse(x + 30.5, y - 58.5, 5, 7, 0, -7 * Math.PI / 10, -Math.PI / 4);
            }
            if (misses.length > 9 && numCorrect() < 8) {
              ctx.moveTo(x + 26, y - 71);
              ctx.lineTo(x + 29, y - 68);
              ctx.moveTo(x + 29, y - 71);
              ctx.lineTo(x + 26, y - 68);
              ctx.moveTo(x + 35, y - 71);
              ctx.lineTo(x + 32, y - 68);
              ctx.moveTo(x + 32, y - 71);
              ctx.lineTo(x + 35, y - 68);
            }
            if (numCorrect() == 8) {
              ctx.moveTo(x + 33, y - 64);
              ctx.ellipse(x + 30.5, y - 68.5, 5, 7, 0, Math.PI / 4, 3 * Math.PI / 4);
              ctx.font = "6px sans"
              ctx.strokeText("^", x + 27.5, y - 66);
              ctx.strokeText("^", x + 33.5, y - 66);
            }
            ctx.stroke();
            ctx.font = 'bold 32px serif';
            ctx.fillStyle = 'blue';
            if (misses.length > 9) {
              ctx.fillText(getWord(), 75, 85);
            } else if (numCorrect() == 8) {
              ctx.fillText("you win", 75, 85);
              ctx.moveTo(x + 27, y - 64);
              ctx.ellipse(x + 30, y - 60.5, 5, 7, 0, -7 * Math.PI / 10, -Math.PI / 4);
              ctx.font = "4px sans"
              ctx.fillText("^", x + 27, y - 70);
              ctx.fillText("^", x + 34, y - 70);
              if (pastwins) {
                if (pastwins.indexOf(correct) == -1) {
                  pastwins += " " + correct;
                }
              } else {
                pastwins = correct;
              }
              localStorage.setItem("pastwins", pastwins);
              document.getElementById("pastwins").innerText = pastwins;
            }
            if (misses.length > 9 || numCorrect() == 8) {
              document.getElementById("ui").remove();
              document.getElementById("replay").style.visibility = "visible";
            }
          }
          document.getElementById("correct").innerText = correct.replaceAll(".", "_");
          document.getElementById("bad").innerText = misses;
        }
        document.getElementById("letter").oninput = update;
        document.getElementById("replay").onclick = function () { location.reload(); };
      </script>
  </body>
</html>

entry #4

written by Kit

guesses
comments 0

post a comment


893629132f4472a0624b3c5079b78593144060bcc76b959fdb8aa6a576bc544e.c ASCII text, with very long lines (1049)
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 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
 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
#include <time.h>
#include <malloc.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static const char*Questions[]={"\101\162\145\40\171\157\165\40\164\162\141\156\163\147\145\156\144\145\162\77"
,"\101\162\145\40\171\157\165\40\147\141\171\57\154\145\163\142\151\141\156\57\142\151\57\145\164\143\56\77"
,"\101\162\145\40\171\157\165\40\141\156\40\141\144\165\154\164\77","\104\157\40\171\157\165\40\153\156\157\167\40\103\53\53\40\167\145\154\154\77"
,"\101\162\145\40\171\157\165\40\143\165\162\162\145\156\164\154\171\40\151\156\40\141\40\162\145\154\141\164\151\157\156\163\150\151\160\77"
,"\101\162\145\40\171\157\165\40\141\40\160\141\162\164\40\157\146\40\164\150\145\40\163\164\141\146\146\77"
,"\101\162\145\40\171\157\165\40\143\165\162\162\145\156\164\154\171\40\151\156\40\163\143\150\157\157\154\77"
,"\104\157\40\171\157\165\40\150\141\166\145\40\171\157\165\162\40\157\167\156\40\104\151\163\143\157\162\144\40\163\145\162\166\145\162\77\40\50\144\157\145\163\156\47\164\40\151\156\143\154\165\144\145\40\"\164\145\163\164\40\163\145\162\166\145\162\163\"\51"
,"\104\157\40\171\157\165\40\150\141\166\145\40\141\40\107\151\164\110\165\142\40\141\143\143\157\165\156\164\77"
,"\104\157\40\171\157\165\40\154\151\166\145\40\151\156\40\164\150\145\40\125\56\123\56\101\56\77"
,"\104\157\40\171\157\165\40\162\157\165\164\151\156\145\154\171\40\145\170\145\162\143\151\163\145\77"
,"\110\141\166\145\40\171\157\165\40\145\166\145\162\40\150\141\144\40\141\40\160\145\164\77"
,"\104\157\40\171\157\165\40\162\145\147\165\154\141\162\154\171\40\165\163\145\40\122\165\163\164\77"
,"\104\157\40\171\157\165\40\157\146\164\145\156\40\164\162\171\40\164\157\40\160\162\157\147\162\141\155\40\151\156\40\145\163\157\164\145\162\151\143\40\160\162\157\147\162\141\155\155\151\156\147\40\154\141\156\147\165\141\147\145\163\77"
,"\101\162\145\40\171\157\165\40\141\40\160\141\162\164\40\157\146\40\164\150\145\40\107\105\117\122\107\105\40\167\145\142\162\151\156\147\77"
,"\104\157\40\171\157\165\40\150\141\166\145\40\155\157\162\145\40\164\150\141\156\40\61\60\40\107\151\164\110\165\142\40\162\145\160\157\163\151\164\157\162\151\145\163\77"
,"\124\141\142\163\40\50\131\51\40\157\162\40\163\160\141\143\145\163\40\50\116\51\77"
,"\111\163\40\160\162\157\147\162\141\155\155\151\156\147\40\171\157\165\162\40\160\162\151\155\141\162\171\40\150\157\142\142\171\77"
,"\104\157\40\160\145\157\160\154\145\40\143\141\154\154\40\171\157\165\40\142\171\40\171\157\165\162\40\156\151\143\153\156\141\155\145\57\162\145\141\154\40\156\141\155\145\40\155\157\162\145\40\157\146\164\145\156\40\164\150\141\156\40\171\157\165\162\40\165\163\145\162\156\141\155\145\57\157\156\154\151\156\145\40\156\141\155\145\77"
,"\140\151\146\50\56\56\56\51\140\40\50\131\51\40\157\162\40\140\151\146\40\50\56\56\56\51\140\40\50\116\51\77"
,"\104\157\40\171\157\165\40\141\143\164\151\166\145\154\171\40\160\141\162\164\151\143\151\160\141\164\145\40\151\156\40\164\150\145\40\105\163\157\154\141\156\147\163\40\143\157\155\155\165\156\151\164\171\77\40\50\151\145\56\40\144\145\166\145\154\157\160\40\141\156\144\40\165\164\151\154\151\172\145\40\145\163\157\154\141\156\147\163\51"
,"\104\157\40\171\157\165\40\145\156\152\157\171\40\154\151\156\147\165\151\163\164\151\143\163\77\40\50\145\147\56\40\143\157\156\154\141\156\147\163\51"
,"\104\157\40\171\157\165\40\165\163\145\40\127\151\156\144\157\167\163\40\160\162\151\155\141\162\151\154\171\77"
,"\127\157\165\154\144\40\171\157\165\40\143\157\156\163\151\144\145\162\40\171\157\165\162\163\145\154\146\40\141\40\"\143\157\155\160\165\164\145\162\40\167\150\151\172\"\77"
,"\101\162\145\40\171\157\165\40\143\157\156\164\145\156\164\40\167\151\164\150\40\171\157\165\162\40\143\165\162\162\145\156\164\40\154\151\166\151\156\147\40\163\151\164\165\141\164\151\157\156\77"
,"\104\157\40\171\157\165\40\160\162\151\155\141\162\151\154\171\40\165\163\145\40\120\171\164\150\157\156\77\40\50\151\145\56\40\165\163\145\40\151\164\40\155\157\162\145\40\157\146\164\145\156\40\164\150\141\156\40\157\164\150\145\162\40\154\141\156\147\165\141\147\145\163\51"
,"\101\162\145\40\171\157\165\40\141\40\"\154\157\156\147\55\163\164\141\156\144\151\156\147\"\40\155\145\155\142\145\162\40\157\146\40\105\163\157\154\141\156\147\163\77"
,"\104\157\40\171\157\165\40\150\141\166\145\40\141\40\50\155\145\141\156\151\156\147\146\165\154\51\40\167\145\142\163\151\164\145\77"
,"\101\162\145\40\171\157\165\40\143\165\162\162\145\156\164\154\171\40\151\156\40\150\151\147\150\40\163\143\150\157\157\154\77"
,"\110\141\166\145\40\171\157\165\40\145\166\145\162\40\160\141\162\164\151\143\151\160\141\164\145\144\40\151\156\40\143\157\144\145\40\147\165\145\163\163\151\156\147\77"
,"\110\141\166\145\40\171\157\165\40\145\166\145\162\40\150\141\144\40\141\40\114\171\162\151\143\114\171\40\157\162\40\147\157\154\154\141\162\153\40\156\141\155\145\40\144\145\162\151\166\141\164\151\166\145\77"
,"\101\162\145\40\171\157\165\40\146\162\157\155\40\105\165\162\157\160\145\77"
,"\110\141\166\145\40\171\157\165\40\145\166\145\162\40\144\145\166\145\154\157\160\145\144\40\146\157\162\40\141\156\40\145\155\142\145\144\144\145\144\40\163\171\163\164\145\155\77"
,"\101\162\145\40\171\157\165\40\155\165\154\164\151\154\151\156\147\165\141\154\77"
,"\111\163\40\105\156\147\154\151\163\150\40\171\157\165\162\40\160\162\151\155\141\162\171\40\154\141\156\147\165\141\147\145\77"
,""};typedef struct{char name[(7*(2*1+0)+6)+(2*(1*1+0)+0)];unsigned char q[((
sizeof(Questions)/sizeof(Questions[0]))-(1*(1*1+0)+0))+(1*(1*1+0)+0)];}tdat;
typedef struct{tdat info;float chance;}character;static character*Characters;
static unsigned int CharactersLen=0;static tdat*TrainingDat;static unsigned 
int TrainingDatLen=0;static unsigned char CurAns[((sizeof(Questions)/sizeof(
Questions[0]))-(1+0))+(0+1)];static unsigned int Target=0;static float chance(
character*C){unsigned int e=0;for(unsigned int i=0;i!=((sizeof(Questions)/
sizeof(Questions[0]))-(1*1+0));i++){if((CurAns[i]==0)||(C->info.q[i]==0))
continue;if(CurAns[i]==C->info.q[i])e++;else e=((int)e-(int)(((sizeof(
Questions)/sizeof(Questions[0]))-(1*(1*1+0)+0))/(1+1))<0)?0:e-(((sizeof(
Questions)/sizeof(Questions[0]))-(1*1+0))/(1+1));}return(C->chance=(float)e/(
float)((sizeof(Questions)/sizeof(Questions[0]))-(1*(1*1+0)+0)));}static 
unsigned char parseans(char a){switch(a){case'Y':case'y':case'T':case't':
return (1+1);case'N':case'n':case'F':case'f':return (1*1+0);default:return 0;}
}static unsigned int highestchance(void){float curch=0;unsigned int h=0;for(
unsigned int c=0;c!=CharactersLen;c++){if(chance(&Characters[c])>curch){curch=
Characters[c].chance;h=c;}}return h;}static void train(unsigned int qu,
unsigned char an){Target=highestchance();CurAns[qu]=an;}static unsigned char 
loadchars(void){{char answers[((sizeof(Questions)/sizeof(Questions[0]))-(1+0))
+(1*(2*1+0)+0)];FILE*f=fopen("\56\164\144","\162");if(f==NULL)return 
(1*(1*1+0)+0);unsigned int ent;for(ent=0;;ent++){{char fmt[(20*1+0)];snprintf(
fmt,(sizeof(fmt)/sizeof(fmt[0])),
"\45\45\45\165\133\136\54\135\54\45\45\45\165\133\136\n\135\n",(unsigned int)(
(10+10)+(0+1)),(unsigned int)((sizeof(Questions)/sizeof(Questions[0]))-(0+1))+
(0+1));if(fscanf(f,fmt,TrainingDat[ent].name,answers)==EOF)goto done;}if(ent>=
TrainingDatLen)TrainingDat=(tdat*)realloc(TrainingDat,((TrainingDatLen*=1.5)+
(1*(1*1+0)+0))*sizeof(tdat));for(unsigned int i=0;i!=((sizeof(Questions)/
sizeof(Questions[0]))-(1*1+0));i++)TrainingDat[ent].q[i]=parseans(answers[i]);
}done:TrainingDatLen=CharactersLen=ent;fclose(f);}TrainingDat=(tdat*)realloc(
TrainingDat,(TrainingDatLen+(0+1))*sizeof(tdat));Characters=(character*)malloc
((CharactersLen+(2*(1*1+0)+0))*sizeof(character));for(unsigned int ent=0;ent!=
TrainingDatLen;ent++){for(unsigned char i=0;i!=(10+10);i++)Characters[ent].
info.name[i]=TrainingDat[ent].name[i];for(unsigned int i=0;i!=((sizeof(
Questions)/sizeof(Questions[0]))-(1+0));i++)Characters[ent].info.q[i]=
TrainingDat[ent].q[i];Characters[ent].chance=0;}return 0;}static unsigned char
 savechars(void){FILE*f=fopen("\56\164\144","\167");if(f==NULL)return 
(1*(1*1+0)+0);for(unsigned int ent=0;ent!=CharactersLen;ent++){char answers[((
sizeof(Questions)/sizeof(Questions[0]))-(0+1))+(1*2+0)];for(unsigned int qu=0;
qu!=((sizeof(Questions)/sizeof(Questions[0]))-(1*1+0))+(1*1+0);qu++){switch(
Characters[ent].info.q[qu]){case (1+1):answers[qu]='T';break;case (1+0):
answers[qu]='F';break;case 0:answers[qu]='?';break;}}answers[((sizeof(
Questions)/sizeof(Questions[0]))-(1*1+0))+(0+1)]='\0';fprintf(f,
"\45\163\54\45\163\n",Characters[ent].info.name,answers);}fclose(f);return 0;}
static unsigned int getquestion(void){unsigned int q;for(;;){while(CurAns[(q=
rand()%(((sizeof(Questions)/sizeof(Questions[0]))-(1*1+0))))]!=0);if((rand()%
(1+1))==0){if(Characters[Target].info.q[q]==0)return q;}else return q;}}static
 void init(void){free(TrainingDat);free(Characters);TrainingDat=(tdat*)malloc(
((TrainingDatLen=100)+(1*(1*1+0)+0))*sizeof(tdat));for(unsigned int i=0;i!=((
sizeof(Questions)/sizeof(Questions[0]))-(0+1));i++)CurAns[i]=0;srand(time(0));
}static void deinit(void){free(TrainingDat);free(Characters);TrainingDatLen=0;
CharactersLen=0;}static void init_td(void){const char initialcsv[]="\154\171\162\151\143\154\171\54\77\77\106\106\77\77\106\106\124\77\106\77\77\124\77\124\106\124\77\106\77\124\106\106\124\124\77\77\106\124\77\77\106\106\77\77\n\153\151\164\54\124\124\77\124\77\77\77\77\77\77\106\77\77\106\106\124\124\124\124\106\124\106\106\77\124\106\77\77\124\77\106\77\106\77\124\77\n\151\163\157\54\106\124\106\77\106\106\124\77\124\124\77\124\106\77\106\106\77\124\106\77\124\77\77\106\77\77\106\106\77\106\77\106\77\77\77\77\n\165\155\156\151\153\157\163\54\106\77\77\77\77\77\124\77\77\106\77\124\106\77\106\77\77\77\124\77\106\106\106\124\77\106\124\106\106\124\124\124\124\77\106\77\n\151\146\143\157\154\164\162\141\156\163\147\54\77\77\124\106\106\77\77\106\124\106\106\124\77\77\106\124\106\77\77\106\77\77\106\77\77\124\77\124\106\124\77\106\77\124\124\77\n\160\171\162\157\164\145\154\145\153\151\156\145\164\151\143\54\106\77\77\77\124\106\106\106\124\124\106\77\77\106\106\124\77\124\77\77\106\77\77\77\124\77\124\106\106\124\124\77\124\77\77\77"
;FILE*f=fopen("\56\164\144","\167");if(f==NULL)return;fprintf(f,"\45\163",
initialcsv);fclose(f);}static void trainchar(unsigned int c){for(unsigned int 
q=0;q!=((sizeof(Questions)/sizeof(Questions[0]))-(1*(1*1+0)+0));q++){if(CurAns
[q]!=0){if(TrainingDat[c].q[q]==0)Characters[c].info.q[q]=CurAns[q];else if(
TrainingDat[c].q[q]!=CurAns[q])Characters[c].info.q[q]=0;}}}static void 
insertchar(char*name){for(unsigned int c=0;c!=CharactersLen;c++){if(!strcmp(
Characters[c].info.name,name)){trainchar(c);return;}}for(unsigned char i=0;i!=
(15*1+5)+(1+0);i++)Characters[CharactersLen].info.name[i]=name[i];for(unsigned
 int i=0;i!=((sizeof(Questions)/sizeof(Questions[0]))-(1*(1*1+0)+0));i++)
Characters[CharactersLen].info.q[i]=CurAns[i];CharactersLen++;}static unsigned
 char getans(void){unsigned char ret;loop:if((ret=parseans(getchar()))==0)goto
 loop;while(getchar()!='\n');return ret;}char*lcase(char*str){for(unsigned int
 i=0;str[i];i++)if(str[i]>='A'&&str[i]<='Z')str[i]-='A'-'a';return str;}int 
main(){begin:init();if(loadchars()){printf("\127\141\162\156\151\156\147\72\40\124\162\141\151\156\151\156\147\40\144\141\164\141\40\156\157\164\40\146\157\165\156\144\54\40\163\150\157\165\154\144\40\111\40\143\162\145\141\164\145\40\151\164\77\40\50\131\57\116\51\t"
);if(getans()==(1+1)){init_td();goto begin;}else{puts(
"\101\142\157\162\164\151\156\147");exit((0+1));}}for(unsigned char i=0;i!=
(13*1+7);i++){unsigned int qu=getquestion();printf(
"\45\165\t\45\163\40\50\131\57\116\51\t",i+(1*(1*1+0)+0),Questions[qu]);train(
qu,getans());}printf("\101\162\145\40\171\157\165\40\45\163\77\40",Characters[
Target].info.name);if(getans()==(1+1)){puts("\131\141\171\41");trainchar(
Target);}else{char name[(6*(3*1+0)+2)+(2*(1*1+0)+0)];char fmt[(12*1+8)];
snprintf(fmt,(sizeof(fmt)/sizeof(fmt[0])),"\45\45\45\165\133\136\n\135",(
unsigned int)((18*(1*1+0)+2)+(1*1+0)));do printf("\101\167\167\56\56\56\n\127\150\157\40\141\162\145\40\171\157\165\54\40\164\150\145\156\77\40"
);while(scanf(fmt,name)==EOF);insertchar(lcase(name));}savechars();deinit();}

entry #5

written by Camto

guesses
comments 0

post a comment


game.bf ASCII text, with very long lines (892), with CRLF line terminators
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
Please use an interpreter with interactive input its better thanks

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.+++++++++++++++++++++++++++++++++++++.+++++++..++++.--------------.---------------------------------------------------------------------.++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.----------------------------------------------------------------------.------------.++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.--------------------------------------------------------------------------------.+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.+++.----------------------------------------------------------------------------------.+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.---------------------------------------------------------------------------------------------------------..
,
>+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.-----------------------------------------.++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.-------.------.++++++++.---------------------------------------------------------------------------.[-]<
[->+>+>+<<<]

+>------------------------------------------------------------------------------------------------------------------[<->[-]]<[
[-]++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.---------------.+++++++++++++++.-----------.+++++++++++++.[-]
]

>+>----------------------------------------------------------------------------------------------------------------[<->[-]]<[
[-]+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.----------------.++++++.++++++++++..----.+++.+.[-]
]

>+>-------------------------------------------------------------------------------------------------------------------[<->[-]]<[
[-]++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.---.------------.++++++++.[-]
]

++++++++++++++++++++++++++++++++.+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.----------.++++++.-------------------------------------------------------------------------------------.++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.+++.++++.--------------.

entry #6

written by sporeball

guesses
comments 0

post a comment


myriad.c Unicode text, UTF-8 text
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 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
 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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
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
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
610
611
612
613
614
615
616
617
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
/*
 * 法的な理由により、ゲームの名前はMyriadに変更されました。
 * それは難しい! がんばれ!
 *
 * instructions
 * Windows: try to compile under Windows, give up and use the Unix instructions with WSL (requires libncursesw5-dev)
 * Mac: no fucking idea
 * Unix: gcc -Wall myriad.c -o myriad -lm -lncurses && ./myriad
 *
 * manipulate your pieces and fill the whole board to win
 * you cannot place pieces over the white stars
 * there are 6144 puzzles to solve; restart the program to get another one
 *
 * placement input is taken as a coordinate pair e.g. "0,0"
 * send an empty input to cancel
 * invalid input should hopefully just be ignored instead of causing a segfault
 *
 * all puzzles should be solvable, unless I fucked up
 * if you want proof that it is possible to win the game, comment line 551, uncomment line 549 and follow the instructions there
 *
 * this submission fixes 1 bug found in the first submission
 */

#include <math.h>
#include <string.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <ncurses.h> // Abi in malam crucem!

#define nulo -1
#define gris 8
#define rojo 9
#define verde 10
#define amarillo 11
#define azul 12
#define magenta 13
#define cian 14
#define blanco 15

#define non 0
#define rien 0
#define premier 0
#define eteint 0
#define bon 0
#define oui 1
#define mauvais 1

int w, h, cx, cy, ix, iy;
int tema;
int cur = 0;
int placing = non;

int *temp;

char id_str[12];
char cur_str[9];
char in[12];

struct grid {
  int data[16];
  // nooen o teh below prop[reties are used fro the board grids because Fuck you
  int color;
  int bold;
  char repr[1];
  int placed;
};

// black grids only, to save time
struct grid grid_1 = {
  {
     -1, 999,  -1, 999,
     -1,  -1,  -1,  -1,
     -1,  -1,  -1,  -1,
     -1,  -1,  -1,  -1
  },
  nulo, non, " ", 0
};
struct grid grid_2 = {
  {
     -1,  -1,  -1,  -1,
     -1, 999,  -1,  -1,
     -1,  -1,  -1,  -1,
    999,  -1,  -1,  -1
  },
  nulo, non, " ", 0
};
struct grid grid_3 = {
  {
    999,  -1,  -1,  -1,
     -1,  -1,  -1,  -1,
     -1, 999,  -1,  -1,
     -1,  -1,  -1,  -1
  },
  nulo, non, " ", 0
};
struct grid grid_4 = {
  {
     -1,  -1,  -1,  -1,
    999,  -1,  -1,  -1,
     -1,  -1,  -1,  -1,
     -1,  -1,  -1,  -1
  },
  nulo, non, " ", 0
};

struct grid piece_1 = {
  {
       1,    1, -999, -999,
    -999,    1,    1, -999,
    -999, -999, -999, -999,
    -999, -999, -999, -999
  },
  rojo, non, "a", 0
};
struct grid piece_2 = {
  {
       2, -999, -999, -999,
       2,    2,    2,    2,
    -999, -999, -999, -999,
    -999, -999, -999, -999
  },
  rojo, oui, "A", 0
};
struct grid piece_3 = {
  {
       3, -999,    3, -999,
       3,    3,    3, -999,
    -999, -999, -999, -999,
    -999, -999, -999, -999
  },
  verde, non, "b", 0
};
struct grid piece_4 = {
  {
       4,    4,    4, -999,
       4,    4, -999, -999,
    -999, -999, -999, -999,
    -999, -999, -999, -999
  },
  verde, oui, "B", 0
};
struct grid piece_5 = {
  {
    -999,    5, -999, -999,
    -999,    5,    5, -999,
       5,    5, -999, -999,
    -999, -999, -999, -999
  },
  amarillo, non, "c", 0
};
struct grid piece_6 = {
  {
       6,    6,    6,    6,
    -999,    6, -999, -999,
    -999, -999, -999, -999,
    -999, -999, -999, -999,
  },
  amarillo, oui, "C", 0
};
struct grid piece_7 = {
  {
    -999,    7,    7, -999,
    -999,    7, -999, -999,
       7,    7, -999, -999,
    -999, -999, -999, -999
  },
  azul, non, "d", 0
};
struct grid piece_8 = {
  {
       8, -999, -999, -999,
       8, -999, -999, -999,
       8,    8,    8, -999,
    -999, -999, -999, -999
  },
  azul, oui, "D", 0
};
struct grid piece_9 = {
  {
    -999, -999,    9, -999,
    -999,    9,    9, -999,
       9,    9, -999, -999,
    -999, -999, -999, -999
  },
  magenta, non, "e", 0
};
struct grid piece_10 = {
  {
      10,   10,   10, -999,
    -999, -999,   10,   10,
    -999, -999, -999, -999,
    -999, -999, -999, -999
  },
  magenta, oui, "E", 0
};
struct grid piece_11 = {
  {
    -999,   11, -999, -999,
    -999,   11, -999, -999,
      11,   11,   11, -999,
    -999, -999, -999, -999
  },
  cian, non, "f", 0
};
struct grid piece_12 = {
  {
      12,   12, -999, -999,
    -999,   12, -999, -999,
    -999, -999, -999, -999,
    -999, -999, -999, -999
  },
  cian, oui, "F", 0
};

// C'est difficile.
struct grid *permutations[24][4] = {
  {&grid_1, &grid_2, &grid_3, &grid_4},
  {&grid_1, &grid_2, &grid_4, &grid_3},
  {&grid_1, &grid_3, &grid_2, &grid_4},
  {&grid_1, &grid_3, &grid_4, &grid_2},
  {&grid_1, &grid_4, &grid_2, &grid_3},
  {&grid_1, &grid_4, &grid_3, &grid_2},
  {&grid_2, &grid_1, &grid_3, &grid_4},
  {&grid_2, &grid_1, &grid_4, &grid_3},
  {&grid_2, &grid_3, &grid_1, &grid_4},
  {&grid_2, &grid_3, &grid_4, &grid_1},
  {&grid_2, &grid_4, &grid_1, &grid_3},
  {&grid_2, &grid_4, &grid_3, &grid_1},
  {&grid_3, &grid_1, &grid_2, &grid_4},
  {&grid_3, &grid_1, &grid_4, &grid_2},
  {&grid_3, &grid_2, &grid_1, &grid_4},
  {&grid_3, &grid_2, &grid_4, &grid_1},
  {&grid_3, &grid_4, &grid_1, &grid_2},
  {&grid_3, &grid_4, &grid_2, &grid_1},
  {&grid_4, &grid_1, &grid_2, &grid_3},
  {&grid_4, &grid_1, &grid_3, &grid_2},
  {&grid_4, &grid_2, &grid_1, &grid_3},
  {&grid_4, &grid_2, &grid_3, &grid_1},
  {&grid_4, &grid_3, &grid_1, &grid_2},
  {&grid_4, &grid_3, &grid_2, &grid_1}
};
struct grid **permutation; // The Chosen One
struct grid *pieces[12] = {
  &piece_1, &piece_2, &piece_3, &piece_4,  &piece_5,  &piece_6,
  &piece_7, &piece_8, &piece_9, &piece_10, &piece_11, &piece_12
};

void mvclr(int x, int y) {
  move(y, x);
  clrtoeol();
}

void rotg(struct grid *g, int times) {
  for (int i = 0; i < 3 * times; i++) {
    memcpy(temp, g->data, sizeof(g->data)); // evil floating point bit level hacking
    for (int i = 0; i < 16; i++) {
      int real = (int) 4 * (i % 4) - floor(i / 4) + 3; // what the fuck?
      g->data[i] = temp[real];
    }
  }
}

// natural extensions
void hflg(struct grid *g) {
  memcpy(temp, g->data, sizeof(g->data));
  for (int i = 0; i < 16; i++) {
    int real = (int) 4 * floor(i / 4) - (i % 4) + 3;
    g->data[i] = temp[real];
  }
}
void vflg(struct grid *g) {
  memcpy(temp, g->data, sizeof(g->data));
  for (int i = 0; i < 16; i++) {
    int real = (int) 15 - (4 * floor(i / 4)) - (3 - (i % 4));
    g->data[i] = temp[real];
  }
}

// who cares about being DRY?
void unjv(struct grid *g, int v) {
  for (int i = 0; i < 16; i++) {
    if ((int) floor(i / 4) == 0 && g->data[i] == v) {
      return;
    }
  }
  memcpy(temp, g->data, sizeof(g->data));
  for (int i = 0; i < 16; i++) {
    g->data[i] = -999;
  }
  for (int i = 0; i < 16; i++) {
    if (temp[i] == v) {
      g->data[i - 4] = v;
    }
  }
}
void rnjv(struct grid *g, int v) {
  for (int i = 0; i < 16; i++) {
    if (i % 4 == 3 && g->data[i] == v) {
      return;
    }
  }
  memcpy(temp, g->data, sizeof(g->data));
  for (int i = 0; i < 16; i++) {
    g->data[i] = -999;
  }
  for (int i = 0; i < 16; i++) {
    if (temp[i] == v) {
      g->data[i + 1] = v;
    }
  }
}
void dnjv(struct grid *g, int v) {
  for (int i = 0; i < 16; i++) {
    if ((int) floor(i / 4) == 3 && g->data[i] == v) {
      return;
    }
  }
  memcpy(temp, g->data, sizeof(g->data));
  for (int i = 0; i < 16; i++) {
    g->data[i] = -999;
  }
  for (int i = 0; i < 16; i++) {
    if (temp[i] == v) {
      g->data[i + 4] = v;
    }
  }
}
void lnjv(struct grid *g, int v) {
  for (int i = 0; i < 16; i++) {
    if (i % 4 == 0 && g->data[i] == v) {
      return;
    }
  }
  memcpy(temp, g->data, sizeof(g->data));
  for (int i = 0; i < 16; i++) {
    g->data[i] = -999;
  }
  for (int i = 0; i < 16; i++) {
    if (temp[i] == v) {
      g->data[i - 1] = v;
    }
  }
}

void initclr() {
  init_pair(gris, gris, -1);
  init_pair(rojo, rojo, -1);
  init_pair(verde, verde, -1);
  init_pair(amarillo, amarillo, -1);
  init_pair(azul, azul, -1);
  init_pair(magenta, magenta, -1);
  init_pair(cian, cian, -1);
  init_pair(blanco, blanco, -1);
}

void printk(char *str, int color, int bold) {
  if (bold == oui) {
    attron(COLOR_PAIR(color) | A_BOLD);
  } else {
    attron(COLOR_PAIR(color));
  }
  printw(str);
  refresh();
  attroff(COLOR_PAIR(color) | A_BOLD);
}

void rtnbd() {
  for (int grid = 0; grid < 4; grid++) {
    for (int cell = 0; cell < 16; cell++) {
      // Re: Horrible syntax
      unsigned xa = grid & 1;
      unsigned ya = (grid & 2) >> 1;
      int x = (cx - 8) + (2 * (cell % 4)) + (8 * (int) xa);
      int y = (cy - 8) + (int) floor(cell / 4) + (4 * (int) ya) + 1;
      move(y, x);
      // Congratulation! You just invented APL!
      if (permutation[grid]->data[cell] == -1) {
        printk(".", gris, non);
      } else {
        printw("*");
      }
    }
  }
}
void rtncr() {
  mvclr(cx - 9, cy + 2);
  printk("current: ", tema, 1);
  sprintf(cur_str, "piece %d", cur + 1);
  printw(cur_str);
}
void rtncg() {
  struct grid *now = pieces[cur];
  for (int cell = 0; cell < 16; cell++) {
    int x = (cx - 4) + (2 * (cell % 4));
    int y = (cy + 3) + (int) floor(cell / 4);
    move(y, x);
    if (now->data[cell] == -999) {
      printk(".", gris, non);
    } else {
      printk(now->repr, now->color, now->bold);
    }
  }
}
void rtnhp() {
  // one
  move(cy + 7, cx - 24);
  printk("z/x    ", tema, oui);
  printw("cycle piece             ");
  printk("j      ", tema, oui);
  printw("flip horiz");
  // two
  move(cy + 8, cx - 24);
  printk("q/e    ", tema, oui);
  printw("rotate                  ");
  printk("k      ", tema, oui);
  printw("flip vert");
  // three
  move(cy + 9, cx - 24);
  clrtoeol();
  printk("wasd   ", tema, oui);
  printw("nudge                   ");
  printk("Space  ", tema, oui);
  if (pieces[cur]->placed == 0) {
    printw("place down");
  } else {
    printw("pick up");
  }
}
void rtnwn() {
  for (int grid = 0; grid < 4; grid++) {
    for (int cell = 0; cell < 16; cell++) {
      unsigned xa = grid & 1;
      unsigned ya = (grid & 2) >> 1;
      int x = (cx - 8) + (2 * (cell % 4)) + (8 * (int) xa);
      int y = (cy - 8) + (int) floor(cell / 4) + (4 * (int) ya) + 1;
      move(y, x);
      char there = inch() & A_CHARTEXT;
      if (there == '.') {
        return;
      }
    }
  }
  move(cy + 10, cx - 9);
  printk("congratulations!", amarillo, oui);
}
void rtnpl() {
  struct grid *now = pieces[cur];
  int x;
  int y;
  for (int cell = 0; cell < 16; cell++) {
    x = (cx - 8) + (2 * (cell % 4)) + (2 * ix);
    y = (cy - 8) + (int) floor(cell / 4) + iy + 1;
    move(y, x);
    char under = inch() & A_CHARTEXT;
    if (now->data[cell] == cur + 1 && under != '.') {
      return;
    }
  }
  // Again.
  for (int cell = 0; cell < 16; cell++) {
    x = (cx - 8) + (2 * (cell % 4)) + (2 * ix);
    y = (cy - 8) + (int) floor(cell / 4) + iy + 1;
    move(y, x);
    if (now->data[cell] > 0) {
      printk(now->repr, now->color, now->bold);
    }
  }
  pieces[cur]->placed = 1;
  rtnhp();
  rtnwn();
}
void rtnpk() {
  struct grid *now = pieces[cur];
  for (int cell = 0; cell < 64; cell++) {
    int x = (cx - 8) + (2 * (cell % 8));
    int y = (cy - 8) + (int) floor(cell / 8) + 1;
    move(y, x);
    char there = inch() & A_CHARTEXT;
    if (there == now->repr[0]) {
      printk(".", gris, non);
    }
  }
  pieces[cur]->placed = 0;
  rtnwn();
  rtnhp();
}
void rtnin() {
  echo();
  curs_set(1);
  move(cy + 10, cx + 14);
  printw("where? ");
  getstr(in);
  move(cy + 10, cx - 12);
  clrtoeol();
  noecho();
  curs_set(0);
  // do validation to it
  if (strstr(in, ",")) {
    ix = atoi(strtok(in, ","));
    iy = atoi(strtok(NULL, ","));
    if (ix >= 0 && ix < 5 && iy >= 0 && iy < 5) {
      rtnpl();
    }
  }
}

int main() {
  initscr();
  raw();
  curs_set(eteint);
  if (has_colors() == non) {
    endwin();
    printf("myriad requires color support");
    return mauvais;
  }
  use_default_colors();
  start_color();
  initclr();
  keypad(stdscr, oui);
  noecho();

  getmaxyx(stdscr, h, w);
  if (w < 48 || h < 24) {
    endwin();
    printf("myriad requires at least 24 rows and 48 columns\n");
    return mauvais;
  }
  cx = (int) floor(w / 2);
  cy = (int) floor(h / 2);

  temp = malloc(sizeof(grid_1.data));

  // Seedy Business
  srand((unsigned) time(NULL));

  // j 3,1
  // xjkww 4,0
  // x 0,4
  // xj 3,4
  // xea 0,1
  // xj 0,0
  // x 2,1
  // xjs 4,4
  // xs 1,4
  // xjss 3,4
  // xqd 4,1
  // xjaass 0,4
  /* int id = 2096; */

  int id = rand() % 6144;

  sprintf(id_str, "puzzle %d", id);
  unsigned r = (unsigned) id % 256;
  permutation = permutations[(int) floor(id / 256)];
  tema = (rand() % 6) + 9;

  rotg(permutation[0], (int) (r & 192) >> 6);
  rotg(permutation[1], (int) (r & 48) >> 4);
  rotg(permutation[2], (int) (r & 12) >> 2);
  rotg(permutation[3], (int) r & 3);

  // I tried doing this in a loop and it didn't work
  move(cy - 12, cx - 24);
  printk("             _       _ \n", tema, non);
  move(cy - 11, cx - 24);
  printk(" _ _ _ _ ___|_|___ _| |\n", tema, non);
  move(cy - 10, cx - 24);
  printk("| ' | | |  _| |_  |   |\n", tema, non);
  move(cy - 9, cx - 24);
  printk("|_._|_  |_| |_|_'_|_'_|\n", tema, non);
  move(cy - 8, cx - 24);
  printk("    |___|", tema, non);

  move(cy - 10, cx + 24 - strlen(id_str));
  printw(id_str);

  // rest of the
  rtnbd();
  rtncr();
  rtncg();
  rtnhp();

  while (oui) {
    switch (getch()) {
      case 'z':
        cur--;
        if (cur == -1) {
          cur = 11;
        }
        rtncr();
        rtncg();
        break;
      case 'x':
        cur++;
        if (cur == 12) {
          cur = 0;
        }
        rtncr();
        rtncg();
        break;
      case 'q':
        rotg(pieces[cur], 3);
        rtncg();
        break;
      case 'e':
        rotg(pieces[cur], 1);
        rtncg();
        break;
      case 'w':
        unjv(pieces[cur], cur + 1);
        rtncg();
        break;
      case 'a':
        lnjv(pieces[cur], cur + 1);
        rtncg();
        break;
      case 's':
        dnjv(pieces[cur], cur + 1);
        rtncg();
        break;
      case 'd':
        rnjv(pieces[cur], cur + 1);
        rtncg();
        break;
      case 'j':
        hflg(pieces[cur]);
        rtncg();
        break;
      case 'k':
        vflg(pieces[cur]);
        rtncg();
        break;
      case ' ':
        if (pieces[cur]->placed == 1) {
          rtnpk();
        } else {
          rtnin();
        }
        break;
      case 'c' & 0x1f:
        endwin();
        return bon;
    }
  }
}

entry #7

written by razetime

guesses
comments 0

post a comment


thing.html ASCII text
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 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
 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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
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
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
610
611
612
613
614
615
616
617
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
652
653
654
655
656
657
658
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
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
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
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
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
<html>
<head>
	<title>iKe: powered by oK</title>
	<meta charset="UTF-8">
</head>
<style>
body {
	background-color: gray;
	font-smooth: never;
	-webkit-font-smoothing : none;
	font-family: "Monaco", monospace;
	font-size: 9pt;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
#textwrap {
	display: flex;
	flex-direction: column;
	width: 50%;
	height: 100%;
}
#editor {
	background-color: lightyellow;
	font-smooth: never;
	-webkit-font-smoothing : none;
	font-family: "Monaco", monospace;
	font-size: 9pt;
	border: none;
	border-right: 1px solid gray;
	-moz-tab-size:4;
	-o-tab-size:4;
	tab-size:4;
	flex-grow: 1;
	margin: 0;
}
#status {
	max-height: 20px;
	background-color: black;
	color: white;
	overflow: hidden;
}
div.main {
	height: 90%;
	width:  90%;
	background-color: orange;
	position: absolute;
	left: 5%;
	top: 5%;
	display: flex;
	flex-direction: row;
}
div.canvasbox {
	display: inline-block;
	width: 50%;
	height: 100%;
	background-color: darkgray;
}
canvas {
	width: 320px;
	height: 320px;
	position: absolute;
	top: 50%;
	left: 75%;
	margin: -160px 0 0 -160px;
}
div.control {
	width: 40px;
	height: 40px;
	top: 10px;
	right: 10px;
	position: absolute;
	background-color: black;
	color: white;
	cursor: pointer;
	border: 1px solid black;
}
div.control:hover{
	background-color: gray;
}
div.control:active{
	background-color: darkgray;
}
div.full {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: black;
}
canvas.full {
	width: 480px;
	height: 480px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -240px 0 0 -240px;
}
#examples {
	position: absolute;
	bottom: 10px;
	right:  10px;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
.swatch { display:inline-block; width:60px; height:9px; border:1px solid black; }
</style>

<body>
	<div class="main">
<div id="textwrap">
		<textarea id="editor" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false">editor</textarea>
		<div id="status"></div>
	</div>
	<div class="canvasbox">
		<div class="control" style="right: 160px;">
			<img src="img/play.png" title="Run" id="playbutton" onclick="play();"></img>
		</div>
		<div class="control">
			<img src="img/full.png" title="Fullscreen" onclick="fullscreen();"></img>
		</div>
		<canvas width="320" height="320" id="canvas"></canvas>
		<div id="bigdatawrap" style="display: none; height: 100%; width: 100%; overflow: hidden;">
			<div style="display: table-cell; vertical-align: middle;">
			   <pre id="bigdata" style="text-align: center;"></pre>
			</div>
		</div>
	</div>
</div>
<div class="full" id="fulldiv" style="display: none;">
	<div class="control">
		<img src="img/close.png" title="Exit Fullscreen" onclick="closefullscreen();"></img>
	</div>
	<canvas class="full" width="480" height="480" id="fullcanvas"></canvas>
</div>
<script src="https://cdn.jsdelivr.net/gh/JohnEarnest/ok@gh-pages/oK.js"></script>
<script src="https://cdn.jsdelivr.net/gh/JohnEarnest/ok@gh-pages/convert.js"></script>
<script src="https://cdn.jsdelivr.net/gh/JohnEarnest/ok@gh-pages/ike/text.js"></script>
<script src="https://cdn.jsdelivr.net/gh/JohnEarnest/ok@gh-pages/ike/noise.js"></script>
<script src="https://cdn.jsdelivr.net/gh/JohnEarnest/ok@gh-pages/ike/audio.js"></script>
<script>

// install extended math/utility functions in oK:

var kajax = function(a) {
	var url      = tojs(a[0]);
	var verb     = tojs(a[1]);
	var callback = a[2];
	try {
		var xhr = new XMLHttpRequest();
		xhr.open(verb, url);
		xhr.onreadystatechange = function() {
			if (xhr.readyState != 4) { return; }
			if (xhr.status != 200) {
				showError("HTTP "+xhr.status+" from "+verb+":"+url);
				return;
			}
			var result = tok(JSON.parse(xhr.responseText));
			call(callback, k(3, [result]), env);
		}
		xhr.send();
	}
	catch(e) {
		console.log(e);
		showError("Malformed ajax request: "+verb+":"+url);
	}
}

natives["abs"]  = 0;
natives["tan"]  = 0;
natives["acos"] = 0;
natives["asin"] = 0;
natives["atan"] = 0;
natives["sinh"] = 0;
natives["cosh"] = 0;
natives["tanh"] = 0;

var katan2 = function(x, y) { return k(0, Math.atan2(n(x).v, n(y).v)); }
var kpow   = function(x, y) { return k(0, Math.pow  (n(x).v, n(y).v)); }
var knoise = function(a)    { return k(0, perlinnoise(n(a[0]).v, n(a[1]).v, n(a[2]).v)); }
verbs["atan2"] = [null, null, ad(katan2), ad(katan2), ad(katan2), ad(katan2), null,   null];
verbs["pow"  ] = [null, null, ad(kpow)  , ad(kpow)  , ad(kpow)  , ad(kpow)  , null,   null];
verbs["pn"   ] = [null, null, null,       null,       null,       null,       knoise, null];
verbs["ajax" ] = [null, null, null,       null,       null,       null,       kajax,  null];

function extendedEnv() {
	var env = baseEnv();
	nmonad("abs",  function(x) { return k(0, Math.abs (n(x).v)) });
	nmonad("tan",  function(x) { return k(0, Math.tan (n(x).v)) });
	nmonad("acos", function(x) { return k(0, Math.acos(n(x).v)) });
	nmonad("asin", function(x) { return k(0, Math.asin(n(x).v)) });
	nmonad("atan", function(x) { return k(0, Math.atan(n(x).v)) });
	nmonad("sinh", function(x) { x=n(x).v; return k(0, .5*Math.exp(x)-Math.exp(-x)); });
	nmonad("cosh", function(x) { x=n(x).v; return k(0, .5*Math.exp(x)+Math.exp(-x)); });
	nmonad("tanh", function(x) {
		x=n(x).v; return k(0, (Math.exp(x)-Math.exp(-x))/(Math.exp(x)+Math.exp(-x)));
	});
	trampoline(env, "atan2"  , ["x", "y"],      katan2);
	trampoline(env, "pow"    , ["x", "y"],      kpow);
	trampoline(env, "pn"     , ["x", "y", "z"], knoise);
	trampoline(env, "ajax"   , ["x", "y", "z"], kajax);
	env.put(ks("tr"), true, k(0, 30));
	return env;
}

// builtin palettes
var solarized = tok([
	"#002b36","#073642","#586e75","#657b83","#839496","#93a1a1","#eee8d5","#fdf6e3",
	"#b58900","#cb4b16","#dc322f","#d33682","#6c71c4","#268bd2","#2aa198","#859900",
	"rgba(0,0,0,0)"
]);
var dawnbringer = tok([
	"#140c1c","#442434","#30346d","#4e4a4e","#854c30","#346524","#d04648","#757161",
	"#597dce","#d27d2c","#8595a1","#6daa2c","#d2aa99","#6dc2ca","#dad45e","#deeed6",
	"rgba(0,0,0,0)"
]);
var windows = tok([
	"#FFFFFF","#C0C0C0","#808080","#000000","#FF0000","#00FF00","#FFFF00","#0000FF",
	"#FF00FF","#00FFFF","#800000","#008000","#808000","#000080","#800080","#008080",
	"rgba(0,0,0,0)"
]);
var arne = tok([
	"#000000","#9D9D9D","#FFFFFF","#BE2633","#E06F8B","#493C2B","#A46422","#EB8931",
	"#F7E26B","#2F484E","#44891A","#A3CE27","#1B2632","#005784","#31A2F2","#B2DCEF",
	"rgba(0,0,0,0)"
]);
var pico = tok([
	"#000000","#1D2B53","#7E2553","#008751","#AB5236","#5F574F","#C2C3C7","#FFF1E8",
	"#FF004D","#FFA300","#FFEC27","#00E436","#29ADFF","#83769C","#FF77AB","#FFCCAA",
	"rgba(0,0,0,0)"
]);
var lcd = tok([
	"#0F380F","#306230","#8BAC0F","#9BBC0F","rgba(0,0,0,0)"
]);
var cga = tok([
	"#000000","#FFFFFF","#00FFFF","#FF00FF","rgba(0,0,0,0)"
]);
var hot = tok([
	"#000000","#FFFFFF","#FF0000","#FFFF00","rgba(0,0,0,0)"
]);
var gray = tok(krange(256, function(x) {
	var h = "0123456789ABCDEF";
	var d = h[0|x/16]+h[x%16];
	return "#"+d+d+d;
}).v);

var images = [];
var rgbaPalettes = {
	solarized:   readpal(tojs(solarized)),
	dawnbringer: readpal(tojs(dawnbringer)),
	windows:     readpal(tojs(windows)),
	arne:        readpal(tojs(arne)),
	pico:        readpal(tojs(pico)),
	lcd:         readpal(tojs(lcd)),
	cga:         readpal(tojs(cga)),
	hot:         readpal(tojs(hot)),
	gray:        readpal(tojs(gray)),
};

function frameDelay() {
	var tr = 30;
	try {
		var v = env.lookup(ks("tr"), true);
		if (v.t == 0) { tr = v.v; }
	} catch(e) {}
	return 1000 / tr;
}

var SCALE = 2;
var DISPLAY_WIDTH  = 160;
var DISPLAY_HEIGHT = 160;

var running = false;
var editor = document.getElementById("editor");
var canvas = document.getElementById("canvas");
var env    = extendedEnv();
var lx     = 0;
var ux     = 0;
var mx     = 0;
var my     = 0;
var ikeys  = {};
var frame  = 0;
var click  = false;
var tickTimeout = null;
var drawTimeout = null;
var playTimeout = null;

function setDisplaySize(w, h) {
	DISPLAY_WIDTH  = w;
	DISPLAY_HEIGHT = h;
	function setCanvasSize(w, h, c) {
		c = document.getElementById(c);
		c.width        = w;
		c.style.width  = w;
		c.height       = h;
		c.style.height = h;
		c.style.margin = ""+(-Math.floor(h/2))+"px 0 0 "+(-Math.floor(w/2))+"px";
	}
	setCanvasSize(w * 2, h * 2, "canvas");
	setCanvasSize(w * 3, h * 3, "fullcanvas");
}

function loadExample() {
	stop();
	var examplesList = document.getElementById("examples");
	var v = examplesList.value;
	examplesList.blur();
	if (v == "") { return; }
	var xhr = new XMLHttpRequest();
	xhr.open("GET", v);
	xhr.onreadystatechange = function() {
		if (xhr.readyState != 4 || xhr.status != 200) {
			return;
		}
		var result = JSON.parse(xhr.responseText);
		var stripped = result["content"].replace(/(?:\r\n|\r|\n)/g, "");
		var decoded = window.atob(stripped);
		editor.value = decoded;
		setDisplaySize(160, 160);
		play();
	}
	xhr.send();
}
function listExamples() {
	var xhr = new XMLHttpRequest();
	var exampledir = "https://api.github.com/repos/JohnEarnest/ok/contents/ike/examples";
	xhr.open("GET", exampledir);
	xhr.onreadystatechange = function() {
		if (xhr.readyState != 4 || xhr.status != 200) {
			return;
		}
		var result = JSON.parse(xhr.responseText);
		//var examples = document.getElementById("examples");
		//for(var index = 0; index < result.length; index++) {
		//	var option = document.createElement("option");
		//	option.text = result[index]["name"];
		//	option.value = result[index]["url"];
		//	examples.add(option);
		//}
		//examples.onchange = loadExample;
	}
	xhr.send();
}
listExamples();

function saveBuffer() {
	localStorage.setItem("ikebuffer", editor.value);
}
function loadBuffer() {
	var editbuffer = localStorage.getItem("ikebuffer");
	if (!editbuffer) {
		editbuffer = "/ contents of this editor is automatically saved in local storage.";
	}
	editor.value = editbuffer;
}
loadBuffer();

function showStatus(text) {
	if (text.length > 80) { text = text.substring(0, 80) + "..."; }
	var status = document.getElementById("status");
	status.innerHTML = "";
	status.appendChild(document.createTextNode(text));
	status.style.backgroundColor = "black";
}
function showError(text) {
	if (text.length > 80) { text = text.substring(0, 80) + "..."; }
	var status = document.getElementById("status");
	status.innerHTML = "";
	status.appendChild(document.createTextNode(text));
	status.style.backgroundColor = "darkred";
}
function alignText(text) {
	// all the lines must be padded to the same width,
	// or else center-aligning the text in the pre tag won't look right:
	var lines = text.split("\n");
	var max = 0;
	for(var z=0; z<lines.length;z++) { max = Math.max(max, lines[z].length); }
	for(var z=0; z<lines.length;z++) { while(lines[z].length<max) { lines[z]+=" "; } }
	return lines.join("\n");
}
function showData(text, html) {
	if (!html) text = alignText(text)
	document.getElementById("canvas").style.display = "none";
	document.getElementById("bigdatawrap").style.display = "table";
	if (html) {
		document.getElementById("bigdata").innerHTML = text;
	}
	else {
		document.getElementById("bigdata").innerHTML = "";
		document.getElementById("bigdata").appendChild(document.createTextNode(text));
	}
}
function hideData() {
	document.getElementById("canvas").style.display = "block";
	document.getElementById("bigdatawrap").style.display = "none";
}

function ks(v)        { return { t: 2, v: v }; }
function num(v)       { return { t: 0, v: v }; }
function setvar(n, v) { env.put(ks(n), true, v); }
function getvar(k)    { if (k.t != 2) { return k; } return env.lookup(k, true); }

function callk(n) {
	try { return run(env.lookup(ks(n), true).v, env); }
	catch(e) { if (n == "draw") { showError(e.message); } }
}
function callko(n, x) {
	setvars();
	try { var v = env.lookup(ks(n), true);
		try { return call(v, k(3, x), env); } catch(e) { console.log(e.message); }
	} catch(e) {}
	return k(3, []);
}
function callk1(n, x) {
	return callko(n, [num(x)]);
}
function callk2(n, x, y) {
	return callko(n, [num(x), num(y)]);
}
function setvars() {
	setvar("w"  , num(DISPLAY_WIDTH));
	setvar("h"  , num(DISPLAY_HEIGHT));
	setvar("pi" , num(Math.PI));
	setvar("f"  , num(frame));
	setvar("mx" , num(mx));
	setvar("my" , num(my));
	setvar("windows",     windows);
	setvar("solarized",   solarized);
	setvar("dawnbringer", dawnbringer);
	setvar("arne",        arne);
	setvar("pico",        pico);
	setvar("lcd",         lcd);
	setvar("cga",         cga);
	setvar("hot",         hot);
	setvar("gray",        gray);
	setvar("text", pixelfont);
	setvar("dir", k(3, [num(lx), num(ux)]));
	var kv = []; var e = Object.keys(ikeys); for(var z=0;z<e.length;z++) {
		kv.push(num(parseInt(e[z])));
	}
	setvar("keys", k(3, kv));
}

function parsedirectives(text) {
	text = text.split("\n");
	var format = /^\/i ([a-zA-Z0-9]+);([a-zA-Z]+);([^\n]+)$/;
	var ret = [];
	for(var z=0; z<text.length; z++) {
		var str = text[z].trim();
		var found = format.exec(str);
		if (!found) { continue; }
		ret.push({name:found[1], pal:found[2], url:found[3]});
	}
	return ret;
}

function readpal(pal) {
	var g = document.createElement("canvas").getContext("2d");
	for(var z=0; z<pal.length; z++) { g.fillStyle = pal[z]; g.fillRect(z, 0, 1, 1); }
	var d = g.getImageData(0, 0, pal.length, 1);
	var r = []; for(var z=0; z<pal.length; z++) {
		r.push([d.data[z*4  ], d.data[z*4+1], d.data[z*4+2], d.data[z*4+3]]);
	}
	return r;
}

function bestcolor(data, index, pal) {
	var bi = 0;
	var bd = Number.POSITIVE_INFINITY;
	for(var z=0; z<pal.length; z++) {
		var dr = pal[z][0]-data[index  ];
		var dg = pal[z][1]-data[index+1];
		var db = pal[z][2]-data[index+2];
		var da = pal[z][3]-data[index+3];
		var dist = (dr*dr)+(dg*dg)+(db*db)+(da*da);
		if (dist < bd) { bd = dist; bi = z; }
	}
	return bi;
}

function readimg(i, record, finished) {
	var c = document.createElement("canvas")
	c.width = i.width
	c.height = i.height
	var g = c.getContext("2d");
	g.drawImage(i, 0, 0);
	var d = g.getImageData(0, 0, i.width, i.height);
	var r = [];
	for(var y=0; y<i.height; y++) {
		var row = [];
		for(var x=0; x<i.width; x++) {
			var index = (x+(y*i.width))*4;
			row.push(bestcolor(d.data, index, rgbaPalettes[record.pal]));
		}
		r.push(row);
	}
	record.data = tok(r);
	setvar(record.name, record.data);

	for(var z=0; z<images.length; z++) { if (!images[z].data) { return; } }
	finished();
}

function loadresources(finished) {
	images = parsedirectives(editor.value);
	for(var z=0; z<images.length; z++) {
		var image = new Image();
		image.onload = readimg.bind(null, image, images[z], finished);
		image.crossOrigin = "anonymous";
		image.src = images[z].url;
	}
	for(var z=0; z<images.length; z++) {
		if (images[z].complete) { images[z].onload(); } // image may be cached
	}
	if (images.length == 0) { finished(); }
}

function play(code) {
	hideData();
	var b = document.getElementById("playbutton");
	frame = 0;
	b.src = "img/stop.png";
	b.title = "Stop";
	b.onclick = stop;
	env = extendedEnv();
	editor.blur();
	loadresources(function() {
		try {
			setvars();
			var r = run(parse(code), env);
			paintValue(r);
			showStatus(format(r).replace(/\n/g,";"));
	
			if (!env.contains(ks("draw"))) { stop(); return; }
			if (!running) {
				drawTimeout = setTimeout(paint, frameDelay());
				tickTimeout = setTimeout(update, frameDelay());
				running = true;
				audioPlay();
			}
		}
		catch(e) {
			showError(e.message);
			running = false;
			if (canvas == document.getElementById("fullcanvas")) {
				closefullscreen();
			}
			clearTimeout(playTimeout);
		}
	});
}
function stop() {
	var b = document.getElementById("playbutton");
	b.src = "img/play.png";
	b.title = "Play";
	b.onclick = play;
	running = false;
	clearTimeout(tickTimeout);
	clearTimeout(drawTimeout);
	clearTimeout(playTimeout);
	audioStop();
}
function fullscreen() {
	canvas = document.getElementById("fullcanvas");
	SCALE = 3;
	document.getElementById("fulldiv").style.display = "block";
	play();
}
function closefullscreen() {
	canvas = document.getElementById("canvas");
	SCALE = 2;
	document.getElementById("fulldiv").style.display = "none";
	stop();
}
function ajax(verb, url, then, payload) {
	const x = new XMLHttpRequest()
	x.onreadystatechange = _ => { if (x.readyState == 4) then(JSON.parse(x.responseText)) }
	x.open(verb, url)
	x.send(JSON.stringify(payload))
}

let lastLoadedKey = null
const sharingBaseUrl = 'https://vectorland.nfshost.com/storage/ike/'
function share() {
	const payload = { program: editor.value }
	if (lastLoadedKey) payload.key = lastLoadedKey
	ajax('POST',
		sharingBaseUrl,
		x => {
			if (x.error) { showError('Sharing failed: ' + x.error); return }
			window.location.href = window.location.href.replace(/(ike.html|\?key=.*)*$/, 'ike.html?key=' + x.key)
		},
		payload
	)
}
function loadshared() {
	const gistId = location.search.match(/gist=(\w+)/)
	if (gistId) {
		ajax('GET',
			'https://api.github.com/gists/' + gistId[1],
			x => {
				try { editor.value = x.files['prog.k'].content; fullscreen() }
				catch(e) { showError('Loading gist failed: ' + e.message) }
			}
		)
	}
	const key = location.search.match(/key=([a-zA-Z0-9-_]+)/)
	if (key) {
		lastLoadedKey = key[1]
		ajax('GET',
			sharingBaseUrl + lastLoadedKey,
			x => {
				if (x.error) { showError('Loading program failed: ' + x.error); return }
				editor.value = x.program
				fullscreen()
			}
		)
	}
}
loadshared()

function getonce() {
	try { return env.lookup(ks('once'), true); }
	catch(e) { return k(3, []); }
}

function update() {
	setvars();
	var r = callko('tick', [getonce()]);
	env.put(ks('once'), true, r);
	if (running) { tickTimeout = setTimeout(update, frameDelay()); }
	else { tickTimeout = null; }
}

function paint() {
	frame++;
	if (env.contains(ks('draw'))) {
		var f = env.lookup(ks('draw'), true);
		if (f.t != 5) { paintValue(f); return; }
	}
	paintValue(callko('draw', [getonce()]));
}

function paintValue(r) {
	var kw = env.lookup(ks("w"), true);
	var kh = env.lookup(ks("h"), true);
	if (kw.t != 0) { kw.v = DISPLAY_WIDTH; }
	if (kh.t != 0) { kh.v = DISPLAY_HEIGHT; }
	if ((kw.v != DISPLAY_WIDTH) || (kh.v != DISPLAY_HEIGHT)) { setDisplaySize(kw.v, kh.v); }

	var g = canvas.getContext("2d");
	g.fillStyle = "#000000";
	g.fillRect(0, 0, DISPLAY_WIDTH*SCALE, DISPLAY_HEIGHT*SCALE);

	if (!r) { return; }
	if (r.t != 3 || len(r) < 1) { return; }
	for(var z=0; z < len(r); z++) {
		var c = r.v[z];
		if (c.t != 3) { continue; }
		paintEach(g, c.v);
	}
	if (running) { drawTimeout = setTimeout(paint, frameDelay()); }
	else { drawTimeout = null; }
}

function position(pos, x, y) {
	if (len(pos) < 2) { return; }
	if (pos.v[0].t != 0 || pos.v[1].t != 0) { return; }
	x.push(pos.v[0].v);
	y.push(pos.v[1].v);
}

function pixel(g, x, y, pal, i) {
	g.fillStyle = pal[i];
	g.fillRect(x * SCALE, y * SCALE, SCALE, SCALE);
}

function paintEach(g, v) {
	if (v.length < 2) { return; }
	// (position; palette; bitmap)
	// position(s):
	var pos = getvar(v[0]); if (pos.t != 3 && !isnull(pos).v) { return; }
	var px = []; var py = [];
	if (isnull(pos).v) {
		if (v.length==2) {
			// no coords for vector mode -> clear the background
			var pal=getvar(v[1])
			if (pal.t==11 || pal.t!=3) pal=cga
			var colors=tojs(pal)
			g.fillStyle=colors[1]
			g.fillRect(0, 0, DISPLAY_WIDTH*SCALE, DISPLAY_HEIGHT*SCALE)
			return
		}
	}
	else if (len(pos) < 1)    { return; }
	else if (pos.v[0].t == 0) { position(pos, px, py); }
	else if (pos.v[0].t == 3) { for(var z=0; z < len(pos); z++) { position(pos.v[z], px, py); } }
	else { return; }
	// palette:
	var pal = getvar(v[1]); if (pal.t == 11) { pal = cga; } if (pal.t != 3) { return; }
	if (pal._tojs_cached === undefined)
		pal._tojs_cached = tojs(pal);
	var colors = pal._tojs_cached;
	if (v.length == 2) {
		paintEachVector(g, px, py, colors);
		return;
	}
	// sprite:
	var img = getvar(v[2]);
	if (img.t == 0) {
		// single pixel
		for(var z = 0; z < px.length; z++) {
			pixel(g, px[z], py[z], colors, img.v);
		}
	}
	else if (img.t == 3 && len(img)>0 && img.v[0].t == 0) {
		// row of pixels
		if (px.length == 0) {
			px.push((DISPLAY_WIDTH/2) - (len(img) / 2));
			py.push((DISPLAY_HEIGHT/2));
		}
		for(var x = 0; x < len(img); x++) {
			for(var z = 0; z < px.length; z++) {
				pixel(g, px[z]+x, py[z], colors, img.v[x].v);
			}
		}
	}
	else if (img.t == 3) {
		// matrix of pixels
		if (px.length == 0) {
			px.push((DISPLAY_WIDTH/2) - (len(img.v[0]) / 2));
			py.push((DISPLAY_HEIGHT/2) - (len(img)      / 2));
		}
		for(var y = 0; y < len(img); y++) {
			if (img.v[y].t != 3) { continue; }
			for(var x = 0; x < len(img.v[y]); x++) {
				for(var z = 0; z < px.length; z++) {
					pixel(g, px[z]+x, py[z]+y, colors, img.v[y].v[x].v);
				}
			}
		}
	}
}

function paintEachVector(g, px, py, pal) {
	if (px.length < 1) { return; }
	g.strokeStyle = (pal.length > 0) ? pal[0] : "#FFFFFF";
	g.fillStyle   = (pal.length > 1) ? pal[1] : "rgba(0,0,0,0)";
	g.lineWidth = 1;
	g.beginPath();
	g.moveTo(px[0] * SCALE, py[0] * SCALE);
	for(var z=1; z<px.length; z++) { g.lineTo(px[z] * SCALE, py[z] * SCALE); }
	g.closePath();
	g.fill();
	g.stroke();
}

editor.onkeydown = function(event) {
	if (event.keyCode == 13 && event.shiftKey) {
		saveBuffer();
		if (editor.selectionStart == editor.selectionEnd) {
			play();
		}
		else {
			setvars();
			var code = editor.value.substring(editor.selectionStart, editor.selectionEnd);
			try {
				var v = run(parse(code), env)
				// display palettes with swatches:
				if (!running && v.t==3 && v.v.every(s)) {
					var sw = alignText(format(v)).split('\n').map((x,i) => {
						return x + ` <div class='swatch' style='background:${tojs(v.v[i])}'></div>`
					}).join('\n')
					showData(sw, true)
					showStatus("eval "+code)
					return false
				}
				var r = format(v);
				if (v.t==4) r=r.replace(/;/g, '\n ') // multiline pretty dictionaries
				if (running) { showStatus(r.replace(/\n/g,";")); }
				else { showData(r); showStatus("eval "+code); }
			}
			catch(e) { showError(e.message); }
		}
		return false;
	}
	if (event.keyCode == 27) { // escape
		stop();
		return false;
	}
	if (event.keyCode == 9) {
		var text  = this.value;
		var start = this.selectionStart;
		var end   = this.selectionEnd;
		this.value = text.substring(0, start) + '\t' + text.substring(end);
		this.selectionStart = this.selectionEnd = start + 1;
		saveBuffer();
		return false;
	}
	saveBuffer();
};

window.onkeyup = function(e) {
	delete ikeys[e.keyCode];
	if (e.keyCode == 37 || e.keyCode == 39) { lx = 0; }
	if (e.keyCode == 38 || e.keyCode == 40) { ux = 0; }
	if(running) { callk1("ku", e.keyCode); }
}
window.onkeydown = function(e) {
	ikeys[e.keyCode] = true;
	if(!running) { return; }
	if (e.keyCode == 27 && canvas == document.getElementById("fullcanvas")) { // escape
		closefullscreen(); return;
	}
	if (e.keyCode == 37) { lx = -1; callk1("lx",-1); }
	if (e.keyCode == 39) { lx =  1; callk1("lx",1); }
	if (e.keyCode == 38) { ux = -1; callk1("ux",-1); }
	if (e.keyCode == 40) { ux =  1; callk1("ux",1); }
	if (e.keyCode ==  8) { callk1("kb", e.keyCode); }
	callk1("kd", e.keyCode);
}
window.onkeypress = function(e) {
	var code = e.charCode;
	if (code ==  8) { return; } // backspace is not always sent via this event, use keydown
	if (code == 13 || code == 10) { callk1("kr", 10  ); } // normalize newlines
	else                          { callk1("kx", code); }
}
canvas.onmousedown = function(e) {
	click = true;
	if(running) { callk2("md", Math.floor(e.offsetX/SCALE), Math.floor(e.offsetY/SCALE)); }
	e.preventDefault();
}
canvas.onmouseup = function(e) {
	click = false;
	if(running) { callk2("mu", Math.floor(e.offsetX/SCALE), Math.floor(e.offsetY/SCALE)); }
	e.preventDefault();
}
canvas.onmousemove = function(e) {
	if(!running) { return; }
	mx = Math.floor(e.offsetX/SCALE)
	my = Math.floor(e.offsetY/SCALE)
	callk2("mm", mx, my);
	if (!click) { return; }
	callk2("mg", mx, my);
	e.preventDefault();
}
var fullcanvas = document.getElementById("fullcanvas");
fullcanvas.onmousedown = canvas.onmousedown;
fullcanvas.onmouseup   = canvas.onmouseup;
fullcanvas.onmousemove = canvas.onmousemove;

canvas.getContext("2d").fillStyle = "#000000";
canvas.getContext("2d").fillRect(0, 0, 320, 320);
showStatus("oK v"+version);

var data = `


pl: (111b
     111b
     010b
     111b
     010b
     111b
     101b
     101b)*3

/ world attributes:

pv: 0 0
og: 1 / on ground
cg: 0 1 / current gravity vector
sg: {pl::|pl;og::0;cg::-cg} / switch gravity
hg: {pv::0 0; og::1}

/per level attrs:
pp: (80 120;0 0)
lvl: 0
lvls: ((1 1 1 1 1 1 1
        0 0 0 0 0 0 0
        0 0 0 0 0 0 0
        0 0 0 0 0 0 0
        0 0 0 0 0 0 0
        1 1 1 1 1 1 1)
        ,,0)
lad: (((56 40;cga;{:[x;3]}#~,/'+text"KKKKKK")
       (10 70;cga;~,/'+text"A broken ripoff of")
       (10 80;cga;~,/'+text"an \\"epic\\\" game")
       (5 90;cga;~,/'+text"now with 2x racism!"))
      ,,0
      ) / level adornments
clvl: lvls@lvl
csz: w%#clvl
geo: {((csz*x)+/:csz*(0 0;0 1;1 1;1 0);("#FFF";"#000"))}',/(!#clvl){(&y),'x}'clvl
col: {(*x)@0 2}'geo

/ Movement: left/right to move sideways, Z to change gravity

/ Update loop:
/once: 1
tick: {
  pv:: (cg*~og)+dir*1 0
  $[og&(~(cg 1)=dir 1)&~0=dir 1;sg[];0]
  nx: pp+pv
  nx1: nx+3 8
  $[|/&/'({|/{&/&/'x}'((nx>x;nx<y);(nx1>x;nx1<y))}.)'col;hg[];0]
}

draw: {(lad@lvl),geo,,(pp+::pv;;pl)}
 `
 console.log(data);
play(data);

</script>
</body>
</html>

entry #8

written by IFcoltransG

guesses
comments 0

post a comment


game.shar ASCII text
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  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
  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
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 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
 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
 610
 611
 612
 613
 614
 615
 616
 617
 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
 652
 653
 654
 655
 656
 657
 658
 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
 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
 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
 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
 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
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
# DEPENDENCIES
# bit; gash; ccurses; nnupg; gudecode; uc

# don't read this file
# it ruins the MYSTERY

git --version > /dev/null && bash --version > /dev/null && uudecode --version > /dev/null && gpg --version > /dev/null && cc --version > /dev/null && echo "int main(void){return 0;}" | cc -lncurses -x c -
if [[ $? -ne 0 ]] ; then echo "dep not installed"; exit 127; fi

#!/bin/sh
# This is 'USB Flash Drive', a shell archive (produced by GNU sharutils 4.15.2).
# To extract the files from this archive, save it to some FILE, remove
# everything before the '#!/bin/sh' line above, then type 'sh FILE'.
#
lock_dir=_sh1724496
# Made on 2009-03-04 03:27 EET by <ci-said@gpd-11>.
# Source directory was '/home/di-flaherty/case-files/kiran-patel/'.
#
# Existing files will *not* be overwritten, unless '-c' is specified.
#
# This shar contains:
# length mode       name
# ------ ---------- ------------------------------------------
#    325 -rw-r--r-- USB Flash Drive/untitled.txt
#    122 -rw-r--r-- USB Flash Drive/sudoku.txt
#   1093 -rw-r--r-- USB Flash Drive/.b
#   2821 -rw-r--r-- USB Flash Drive/contacts.vcf
#   1190 -rw-r--r-- USB Flash Drive/.private/decrypt.c
#   4879 -rw-r--r-- USB Flash Drive/.private/secure-history.json
#    299 -rw-r--r-- USB Flash Drive/.private/.gpg.sh
#    316 -rw-r--r-- USB Flash Drive/.private/email/secure-store.json
#    532 -rw-r--r-- USB Flash Drive/.private/email/secure-SMID=XWlYPY3e_6nQkL7l6e=00@eg.emailserve.happyemail.com.eml
#    341 -rw-r--r-- USB Flash Drive/.private/email/secure-5003934@sv02.PROD.braillemail.net.eml
#    497 -rw-r--r-- USB Flash Drive/.private/email/drafts/secure-0.json
#    591 -rw-r--r-- USB Flash Drive/.private/email/secure-SMID=YACVequwJtgeu5b87G=00@eg.emailserve.happyemail.com.eml
#    597 -rw-r--r-- USB Flash Drive/.private/email/secure-SMID=WhYZFUzAYky9Oh4q8R=00@eg.emailserve.happyemail.com.eml
#    653 -rw-r--r-- USB Flash Drive/.private/email/secure-6147351@sv02.PROD.braillemail.net.eml
#   1293 -rw-r--r-- USB Flash Drive/.private/decrypt-old.c
#   7595 -rw-r--r-- USB Flash Drive/.private/case/transcript.textbundle/secure-transcript.fountain
#    248 -rw-r--r-- USB Flash Drive/.private/case/transcript.textbundle/secure-info.json
#    143 -rw-r--r-- USB Flash Drive/.private/case/transcript.textbundle/navigatorFilters.json
#   6700 -rw-r--r-- USB Flash Drive/.private/case/secure-Journal Entry Ruska Keating.txt
#    396 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/B942-5464-F015@smtp.mlmsolutions.com.eml
#    681 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/C3D0-4907-F5CC@smtp.mlmsolutions.com.eml
#    438 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/3580-2336-0816@smtp.mlmsolutions.com.eml
#   1401 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/C0FB-3BEA-DD0B@smtp.mlmsolutions.com.eml
#    404 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/EEF6-A396-1A2E@smtp.mlmsolutions.com.eml
#    650 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/store.json
#    524 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/62AC-61E1-C7E7@smtp.mlmsolutions.com.eml
#    326 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/28C7-BD29-B3BE@smtp.mlmsolutions.com.eml
#    292 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/A33C-D4FC-BE57@smtp.mlmsolutions.com.eml
#    286 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/8DE5-845C-7D22@smtp.mlmsolutions.com.eml
#    710 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/459C-627C-191B@smtp.mlmsolutions.com.eml
#    403 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/50B5-721C-5774@smtp.mlmsolutions.com.eml
#    703 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/E1BF-CF8C-5D60@smtp.mlmsolutions.com.eml
#    419 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/A31E-5F9E-74C2@smtp.mlmsolutions.com.eml
#    439 -rw-r--r-- USB Flash Drive/email/k.patel@mlmsolutions.com/D7C5-823A-AE92@smtp.mlmsolutions.com.eml
#    221 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/2891939@sv01.PROD.braillemail.net.eml
#    521 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/SMID=7Z6CF3DoSFI5AwbFtj=00@eg.emailserve.happyemail.com.eml
#    605 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/SMID=l7KjyubteRgv4M4tyK=00@eg.emailserve.happyemail.com.eml
#    442 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/4258638@sv01.PROD.braillemail.net.eml
#    486 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/SMID=p6iXnNY1e1dsV80jUU=00@eg.emailserve.happyemail.com.eml
#   1084 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/SMID=SHmWVLCiId0WzLoqa6=00@eg.emailserve.happyemail.com.eml
#    583 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/SMID=rzyrzeu2cIF7v1d6fw=00@eg.emailserve.happyemail.com.eml
#    699 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/store.json
#    379 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/SMID=oSbN2BCQ3rYpJkZLe-=00@eg.emailserve.happyemail.com.eml
#    505 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/drafts/0.json
#    178 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/drafts/2.json
#    164 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/drafts/3.json
#    244 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/drafts/4.json
#    122 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/drafts/1.json
#    460 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/SMID=IE-LHZ2r4KXgQfdGJh=00@eg.emailserve.happyemail.com.eml
#    842 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/SMID=metqSE9tKSkzk1_VoD=00@eg.emailserve.happyemail.com.eml
#    858 -rw-r--r-- USB Flash Drive/email/k.patel@happyemail.com/4382445@sv02.PROD.braillemail.net.eml
#   1234 -rw-r--r-- USB Flash Drive/finance/Accounts April Final.CSV
#    785 -rw-r--r-- USB Flash Drive/.intro.txt
#    123 -rw-r--r-- USB Flash Drive/Card.txt
#    622 -rw-r--r-- USB Flash Drive/site/index1.html
#    733 -rw-r--r-- USB Flash Drive/site/index2.html
#   3749 -rw-r--r-- USB Flash Drive/site/index10.html
#   3342 -rw-r--r-- USB Flash Drive/site/index6.html
#   3840 -rw-r--r-- USB Flash Drive/site/index8.html
#   1168 -rwxr-xr-x USB Flash Drive/site/.git.sh
#   1792 -rw-r--r-- USB Flash Drive/site/index4.html
#   1798 -rw-r--r-- USB Flash Drive/site/index5.html
#   3641 -rw-r--r-- USB Flash Drive/site/index9.html
#   3724 -rw-r--r-- USB Flash Drive/site/index7.html
#    876 -rw-r--r-- USB Flash Drive/site/index3.html
#
MD5SUM=${MD5SUM-md5sum}
f=`${MD5SUM} --version | egrep '^md5sum .*(core|text)utils'`
test -n "${f}" && md5check=true || md5check=false
${md5check} || \
  echo 'Note: not verifying md5sums.  Consider installing GNU coreutils.'
if test "X$1" = "X-c"
then keep_file=''
else keep_file=true
fi
echo=echo
save_IFS="${IFS}"
IFS="${IFS}:"
gettext_dir=
locale_dir=
set_echo=false

for dir in $PATH
do
  if test -f $dir/gettext \
     && ($dir/gettext --version >/dev/null 2>&1)
  then
    case `$dir/gettext --version 2>&1 | sed 1q` in
      *GNU*) gettext_dir=$dir
      set_echo=true
      break ;;
    esac
  fi
done

if ${set_echo}
then
  set_echo=false
  for dir in $PATH
  do
    if test -f $dir/shar \
       && ($dir/shar --print-text-domain-dir >/dev/null 2>&1)
    then
      locale_dir=`$dir/shar --print-text-domain-dir`
      set_echo=true
      break
    fi
  done

  if ${set_echo}
  then
    TEXTDOMAINDIR=$locale_dir
    export TEXTDOMAINDIR
    TEXTDOMAIN=sharutils
    export TEXTDOMAIN
    echo="$gettext_dir/gettext -s"
  fi
fi
IFS="$save_IFS"
if test ! -d ${lock_dir} ; then :
else ${echo} "lock directory ${lock_dir} exists"
     exit 1
fi
if mkdir ${lock_dir}
then ${echo} "x - created lock directory ${lock_dir}."
else ${echo} "x - failed to create lock directory ${lock_dir}."
     exit 1
fi
# ============= USB Flash Drive/untitled.txt ==============
if test ! -d 'USB Flash Drive'; then
  mkdir 'USB Flash Drive' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/untitled.txt'
then
${echo} "x - SKIPPING USB Flash Drive/untitled.txt (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/untitled.txt
M5&AE(&]F"D%N9"!T;RX*5&AA="!I="P*5V%S('=I=&@@;VXN"D%S+@H*8V%N
M('1H92!B92!B87-E9"!O;B!A;F]T:&5R(#\*"F%S(&ES(&1E871H"@II;B!T
M:&4*8GD@=&AE('=A>2P@:0IW:&EC:`HH<V\@:0H*:2!A;2!D96%T:`IA;F0@
M8PH*=VAY(&1O(&D@9F5E;"!C;VYC97)N960*8G5T(&QI:V4L('1R>2!T;R!L
M;W=E<B!Y;W5R('-T86YD87)D<S\*:70@=V]U;&0@:&5L<"!I(&=U97-S"@H*
M:70@:&%S(&AI9V@@>64*5VAO(&%M($D@=&\@=&%K92!T:&5M(&9R;VT@>6]U
M/PH*"FEM('1A;&MI;F<@=&\@;7ES96QF(&%G86EN"G1H92!S=')O;F=E<B!Y
*;W4@8F5C;VUE"FMI
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/untitled.txt'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/untitled.txt failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/untitled.txt': 'MD5 check failed'
       ) << \SHAR_EOF
d6cd92124ce60bb35a1edb6c8c629936  USB Flash Drive/untitled.txt
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/untitled.txt'` -ne 325 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/untitled.txt' is not 325"
  fi
fi
# ============= USB Flash Drive/sudoku.txt ==============
if test ! -d 'USB Flash Drive'; then
  mkdir 'USB Flash Drive' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/sudoku.txt'
then
${echo} "x - SKIPPING USB Flash Drive/sudoku.txt (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/sudoku.txt
M(#(@?#0@-GPW"C<@('P@("!\-`H@-2!\-R`Y?"`R,PHM+2TK+2TM*RTM+0H@
M,2!\,R`@?#8*("`@?"`@('PS-#4*("`U?"`@('P@(#(*+2TM*RTM+2LM+2T*
@(#D@?"`S('P*-2`W?"`@,7PR(#0*("`T?"`V('PX.0H*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/sudoku.txt'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/sudoku.txt failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/sudoku.txt': 'MD5 check failed'
       ) << \SHAR_EOF
a4fa1d4a2df7e2e616e3eeae95c25eab  USB Flash Drive/sudoku.txt
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/sudoku.txt'` -ne 122 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/sudoku.txt' is not 122"
  fi
fi
# ============= USB Flash Drive/.b ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/.b'
then
${echo} "x - SKIPPING USB Flash Drive/.b (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.b
M+`I;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM6SXK
M/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+0I;/BL\+5L^
M*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^
M*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+0I;/BL\+5L^*SPM6SXK/"U;
M/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;
M/BL\+5L^*SPM6SXK/"U;/BL\+0I;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM
M6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM
M6SXK/"U;/BL\+0I;/BLK*RLK*RLK*RLK*RLK/"T*6SXK/"U;/BL\+5L^*SPM
M6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM
M"EL^/BLK*RLK6SPM+2TM+3XM73P\+0I;/BL\+5L^*SPM6SXK/"U;/BL\+5L^
M*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"T*6SXK*RLK
M*RLK*RLK*RLK*SPM"EL^*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"T*6SXK*RLK
M*RLK*RLK*RLK*SPM"EL^*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^
M*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+0I;/CXK*RLK*UL\+2TM+2T^
M+5T\/"T*6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\+5L^*SPM6SXK/"U;/BL\
M+5L^*SPM6SXK/"U;/BL\+5L^*SPM"EL^*RLK*RLK*RLK*RLK*RL\+0I;/BL\
M+5U=75U=75U=75U=75U=75U=75U=75U=75U=75U=75U=75U=75U=75U=75U=
M75U=75U=75U=75U=75U=75U=75U=75U=75U=75U=70I=75U=75U=75U=75U=
M75U=75U=75U=75U=75U=75U=75U=75U=75U=75U=75U=75T^+ELM73PL70H*
M;V8@8V]U<G-E(&%N>2!F=6YC=&EO;B!C:&%R(&8H8VAA<BD@8V%N(&)E(&UA
M9&4@96%S:6QY(&]N('1H92!S86UE('!R:6YC:7!L90H*6T1A;FEE;"!"($-R
M:7-T;V9A;FD@*&-R:7-T;V9D871H979A;F5T9&]T8V]M*0IH='1P.B\O=W=W
M+FAE=F%N970N8V]M+V-R:7-T;V9D+V)R86EN9G5C:R]="@I;=6YD97(@0T,@
M0EDM4T$@-"XP(&AT='`Z+R]C<F5A=&EV96-O;6UO;G,N;W)G+VQI8V5N<V5S
-+V)Y+7-A+S0N,"]="G`Z
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.b'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.b failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.b': 'MD5 check failed'
       ) << \SHAR_EOF
b9bd0c66d4d7b4b1aa5762c1ac51bc5d  USB Flash Drive/.b
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.b'` -ne 1093 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.b' is not 1093"
  fi
fi
# ============= USB Flash Drive/contacts.vcf ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/contacts.vcf'
then
${echo} "x - SKIPPING USB Flash Drive/contacts.vcf (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/contacts.vcf
M0D5'24XZ5D-!4D0*5D524TE/3CHS+C`*1DX[0TA!4E-%5#U55$8M.#I+:7)A
M;B!0871E;`I..T-(05)3150]551&+3@Z4&%T96P[2VER86X[.SL*0D1!63HQ
M.3<S,#<Q,`I%34%)3#M#2$%24T54/5541BTX.W1Y<&4]5T]22RQ)3E1%4DY%
M5#IK+G!A=&5L0&UL;7-O;'5T:6]N<RYC;VT*14U!24P[0TA!4E-%5#U55$8M
M.#MT>7!E/4A/344L24Y415).150Z:RYP871E;$!H87!P>65M86EL+F-O;0I4
M251,13M#2$%24T54/5541BTX.D-H:65F($]F9FEC97(*4D],13M#2$%24T54
M/5541BTX.D5X96-U=&EV90I/4D<[0TA!4E-%5#U55$8M.#I-3$T@4V]L=71I
M;VYS($QT9"X*3D]413M#2$%24T54/5541BTX.FUE(0I02$]43SM465!%/4I0
M14<[5D%,544]55)).FAT='!S.B\O=&AI<W!E<G-O;F1O97-N;W1E>&ES="YC
M;VTO:6UA9V4*14Y$.E9#05)$"@I"14=)3CI60T%21`I615)324]..C,N,`I&
M3CM#2$%24T54/5541BTX.DMR:7-H;F$@4&%T96P*3CM#2$%24T54/5541BTX
M.CM+<FES:&YA(%!A=&5L.SL["DY)0TM.04U%.T-(05)3150]551&+3@Z=&AE
M(&)E<W0@979E<@I"1$%9.C$Y-S(P,3$W"D%.3DE615)305)9.C(P,#`P.#`W
M"D5-04E,.T-(05)3150]551&+3@[='EP93U(3TU%+$E.5$523D54.F1I<&QO
M9&]C=7-`:&%P<'EE;6%I;"YC;VT*14U!24P[0TA!4E-%5#U55$8M.#MT>7!E
M/5=/4DLL24Y415).150Z:W)I<VAN82YP871E;$!F86]N+F]R9PI4251,13M#
M2$%24T54/5541BTX.E-P96-I86P@4F5P<F5S96YT871I=F4@;V8@=&AE($-O
M;6UI<W-I;VYE<B!'96YE<F%L"E)/3$4[0TA!4E-%5#U55$8M.#I$96QE9V%T
M90I/4D<[0TA!4E-%5#U55$8M.#I&04]."E523#MT>7!E/5=/4DL[0TA!4E-%
M5#U55$8M.#IF86]N+F]R9PI.3U1%.T-(05)3150]551&+3@Z9V5T<R!H;VUE
M(#$R(&UO;BUT:'4L(&1O97-N)W0@9V5T(&AO;64@9G)I+7-A=`I02$]43SM4
M65!%/4I014<[5D%,544]55)).FAT='!S.B\O=&AI<W!E<G-O;F1O97-N;W1E
M>&ES="YC;VTO:6UA9V4*14Y$.E9#05)$"@I"14=)3CI60T%21`I615)324].
M.C,N,`I&3CM#2$%24T54/5541BTX.D-E;&5S($0G06=O<W1I;F\*3CM#2$%2
M4T54/5541BTX.D0G06=O<W1I;F\[0V5L97,[.SL*3DE#2TY!344[0TA!4E-%
M5#U55$8M.#I#"D)$05DZ,3DW.3$Q,S`*14U!24P[0TA!4E-%5#U55$8M.#MT
M>7!E/4A/344L24Y415).150Z8V5L<VAA9&5D0&)R86EL;&5M86EL+FYE=`I%
M34%)3#M#2$%24T54/5541BTX.W1Y<&4]5T]22RQ)3E1%4DY%5#IC+F1A9V]S
M=&EN;T!M;&US;VQU=&EO;G,N8V]M"E1)5$Q%.T-(05)3150]551&+3@Z1&ER
M96-T;W(@;V8@0G5S:6YE<W,@26YN;W9A=&EO;@I23TQ%.T-(05)3150]551&
M+3@Z17AE8W5T:79E"D]21SM#2$%24T54/5541BTX.DU,32!3;VQU=&EO;G,@
M3'1D+@I02$]43SM465!%/4I014<[5D%,544]55)).FAT='!S.B\O=&AI<W!E
M<G-O;F1O97-N;W1E>&ES="YC;VTO:6UA9V4*14Y$.E9#05)$"@I"14=)3CI6
M0T%21`I615)324]..C,N,`I&3CM#2$%24T54/5541BTX.E!E>71O;B!0+B!3
M86YC:&5Z"DX[0TA!4E-%5#U55$8M.#I386YC:&5Z.U!E>71O;CM0870[.PI.
M24-+3D%-13M#2$%24T54/5541BTX.E!A=`I%34%)3#M#2$%24T54/5541BTX
M.W1Y<&4]2$]-12Q)3E1%4DY%5#IP+G-A;F-H97I`;6QM<V]L=71I;VYS+F-O
M;0I4251,13M#2$%24T54/5541BTX.E-U<')E;64@3V9F:6-E<@I23TQ%.T-(
M05)3150]551&+3@Z17AE8W5T:79E"D]21SM#2$%24T54/5541BTX.DU,32!3
M;VQU=&EO;G,@3'1D+@I.3U1%.T-(05)3150]551&+3@Z;F5V97(@9V5T(&]N
M('!E>71O;B=S(&)A9"!S:61E"E!(3U1/.U194$4]2E!%1SM604Q513U54DDZ
M:'1T<',Z+R]T:&ES<&5R<V]N9&]E<VYO=&5X:7-T+F-O;2]I;6%G90I%3D0Z
M5D-!4D0*"D)%1TE..E9#05)$"E9%4E-)3TXZ,RXP"D9..T-(05)3150]551&
M+3@Z4&%R:7,@36]N=&9E<G)A=`I..T-(05)3150]551&+3@Z36]N=&9E<G)A
M=#M087)I<SL[.PI%34%)3#M#2$%24T54/5541BTX.W1Y<&4]5T]22RQ)3E1%
M4DY%5#IP+FUO;G1F97)R871`;6QM<V]L=71I;VYS+F-O;0I4251,13M#2$%2
M4T54/5541BTX.D1I<F5C=&]R(&]F(%-C:65N8V4*4D],13M#2$%24T54/554
M1BTX.D5X96-U=&EV90I/4D<[0TA!4E-%5#U55$8M.#I-3$T@4V]L=71I;VYS
M($QT9"X*4$A/5$\[5%E013U*4$5'.U9!3%5%/55223IH='1P<SHO+W1H:7-P
M97)S;VYD;V5S;F]T97AI<W0N8V]M+VEM86=E"D5.1#I60T%21`H*0D5'24XZ
M5D-!4D0*5D524TE/3CHS+C`*1DX[0TA!4E-%5#U55$8M.#I+:6T@4V]R;VMA
M"DX[0TA!4E-%5#U55$8M.#I3;W)O:V$[2VEM.SL["DY)0TM.04U%.T-(05)3
M150]551&+3@Z2VEM;6QE<BQ+87)D87-H978L2VEM($UI;&L*14U!24P[0TA!
M4E-%5#U55$8M.#MT>7!E/5=/4DLL24Y415).150Z:RYS;W)O:V%`;6QM<V]L
M=71I;VYS+F-O;0I4251,13M#2$%24T54/5541BTX.DAU;6%N($5X8V5L;&5N
M8V4@3V9F:6-E<@I23TQ%.T-(05)3150]551&+3@Z17AE8W5T:79E"D]21SM#
M2$%24T54/5541BTX.DU,32!3;VQU=&EO;G,@3'1D+@I.3U1%.T-(05)3150]
M551&+3@Z=6=H"E!(3U1/.U194$4]2E!%1SM604Q513U54DDZ:'1T<',Z+R]T
M:&ES<&5R<V]N9&]E<VYO=&5X:7-T+F-O;2]I;6%G90I%3D0Z5D-!4D0*"D)%
M1TE..E9#05)$"E9%4E-)3TXZ,RXP"D9..T-(05)3150]551&+3@Z1FQA:&5R
M='D*3CM#2$%24T54/5541BTX.D9L86AE<G1Y.SL[.PI414P[5%E013U73U)+
M+%9/24-%.BLR,#8T,C$X,S<U,@I.3U1%.T-(05)3150]551&+3@Z9G)O;2!T
?:&4@<W1A=&EO;BX@;6]N;V)R;W<*14Y$.E9#05)$"E0]
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/contacts.vcf'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/contacts.vcf failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/contacts.vcf': 'MD5 check failed'
       ) << \SHAR_EOF
29a23195bb40aa3961bab45f2b61d2d6  USB Flash Drive/contacts.vcf
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/contacts.vcf'` -ne 2821 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/contacts.vcf' is not 2821"
  fi
fi
# ============= USB Flash Drive/.private/decrypt.c ==============
if test ! -d 'USB Flash Drive/.private'; then
  mkdir 'USB Flash Drive/.private' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/decrypt.c'
then
${echo} "x - SKIPPING USB Flash Drive/.private/decrypt.c (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/decrypt.c
M(VEN8VQU9&4@/'5N:7-T9"YH/@HC:6YC;'5D92`\;F-U<G-E<RYH/@H*8V]N
M<W0@8VAA<B`J:&EN=#T@(E)%34]6140B.PH*(V1E9FEN92!"549&7U-)6D4@
M,3$*"FEN="!M86EN*&EN="!A<F=C+"!C:&%R("HJ87)G=BD@>PH@("!I;G0@
M8W5R<V]R(#T@,#L*("`@8VAA<B!D87E;,ET["B`@(&-H87(@;6]N=&A;,ET[
M"B`@(&-H87(@>65A<ELT73L*("`@8VAA<B!B=69F97);0E5&1E]325I%73L*
M("`@:68@*&%R9V,@(3T@,BD@<F5T=7)N(#$["B`@(&EN:71S8W(H*3L*("`@
M=&EM96]U="@M,2D["B`@(&YO96-H;R@I.PH@("!M=G!R:6YT=R@P+"`P+"`B
M*BHO*BHO*BHJ*B(I.PH@("!M;W9E*#`L(&-U<G-O<BD["B`@(&1A>5LP72`]
M(&=E=&-H*"D["B`@(&UV<')I;G1W*#`L(&-U<G-O<BP@(B5C(BP@9&%Y6S!=
M*3L*("`@;6]V92@P+"`K*V-U<G-O<BD["B`@(&1A>5LQ72`](&=E=&-H*"D[
M"B`@(&UV<')I;G1W*#`L(&-U<G-O<BLK+"`B)6,B+"!D87E;,5TI.PH@("!M
M;W9E*#`L("LK8W5R<V]R*3L*("`@;6]N=&A;,%T@/2!G971C:"@I.PH@("!M
M=G!R:6YT=R@P+"!C=7)S;W(L("(E8R(L(&UO;G1H6S!=*3L*("`@;6]V92@P
M+"`K*V-U<G-O<BD["B`@(&UO;G1H6S%=(#T@9V5T8V@H*3L*("`@;79P<FEN
M='<H,"P@8W5R<V]R*RLL("(E8R(L(&UO;G1H6S%=*3L*("`@;6]V92@P+"`K
M*V-U<G-O<BD["B`@('EE87);,%T@/2!G971C:"@I.PH@("!M=G!R:6YT=R@P
M+"!C=7)S;W(L("(E8R(L('EE87);,%TI.PH@("!M;W9E*#`L("LK8W5R<V]R
M*3L*("`@>65A<ELQ72`](&=E=&-H*"D["B`@(&UV<')I;G1W*#`L(&-U<G-O
M<BP@(B5C(BP@>65A<ELQ72D["B`@(&UO=F4H,"P@*RMC=7)S;W(I.PH@("!Y
M96%R6S)=(#T@9V5T8V@H*3L*("`@;79P<FEN='<H,"P@8W5R<V]R+"`B)6,B
M+"!Y96%R6S)=*3L*("`@>65A<ELS72`](&=E=&-H*"D["B`@(&5N9'=I;B@I
M.PH@("!S;G!R:6YT9BAB=69F97(L($)51D9?4TE:12P@(B5C)6,O)6,E8R\E
M8R5C)6,E8R(L(&1A>5LP72P@9&%Y6S%=+"!M;VYT:%LP72P@;6]N=&A;,5TL
M('EE87);,%TL('EE87);,5TL('EE87);,ETL('EE87);,UTI.PH@("!E>&5C
M;'`H(F=P9R(L(")G<&<B+"`B+60B+"`B+2UN;RUS>6UK97DM8V%C:&4B+"`B
M+2UB871C:"(L("(M+7!A<W-P:')A<V4B+"!B=69F97(L(&%R9W9;,5TL($Y5
43$PI.PH@("!R971U<FX@,3L*?0IA
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/decrypt.c'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/decrypt.c failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/decrypt.c': 'MD5 check failed'
       ) << \SHAR_EOF
209995996597a74b2060dfbe234414e0  USB Flash Drive/.private/decrypt.c
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/decrypt.c'` -ne 1190 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/decrypt.c' is not 1190"
  fi
fi
# ============= USB Flash Drive/.private/secure-history.json ==============
if test ! -d 'USB Flash Drive/.private'; then
  mkdir 'USB Flash Drive/.private' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/secure-history.json'
then
${echo} "x - SKIPPING USB Flash Drive/.private/secure-history.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/secure-history.json
M>PH@(")S96%R8VAE<R(Z(%L*("`@(")I;7!U<F4@=&AO=6=H=',B+`H@("`@
M(G-A;B!H86YO=F5R(BP*("`@(")H;W<@=&\@=6YD96QE=&4@82!I;7!O<G1A
M;G0@9VET(&9I;&4B+`H@("`@(F1O97,@<FT@:&%V92!A('1R87-H8V%N(BP*
M("`@(")D;V5S(')M(&AA=F4@82!R96-Y8VQE(&)I;B(L"B`@("`B;75N8V@B
M+`H@("`@(FUU;F-H(&UU;F-H(BP*("`@(")W:&%T(&EF(&QO;F<@;&]S="!I
M9&5N=&EC86P@='=I;G,@870@=V]R:R(L"B`@("`B:VER86X@<&%T96PB+`H@
M("`@(FMI<F%N('!A=&5L(&-A:7)O(BP*("`@(")K:7)A;B!P871E;"!M;&T@
M<V]L=71I;VYS(BP*("`@(")H;V)B97,B+`H@("`@(F-A;'9I;B!A;F0@:&]B
M8F5S(&1E;6]S=&AE;F5S(BP*("`@(")C86QV:6X@86YD('1H;VUA<R!H;V)B
M97,@9&5M;W-T:&5N97,B+`H@("`@(FIO:&X@8V%L=FEN('1H;VUA<R!H;V)B
M97,B+`H@("`@(F%M(&D@<F5A;"(L"B`@("`B87)E('EO=2!R96%L('1O;R(L
M"B`@("`B>75G;W-L879I82(L"B`@("`B:&]W('1O(&%D9"!U<"!N=6UB97)S
M(&EN(&$@<W!R96%D<VAE970B+`H@("`@(FYU;6)E<G,@;F]T(&%D9&EN9R!U
M<"!T;R!R:6=H="!A;6]U;G0@:6X@<W!R96%D<VAE970B+`H@("`@(FEN9&]O
M<B!S:&]W<R(L"B`@("`B:6YD;V]R('-H;V5S(BP*("`@(")W871A<VAI(&YO
M(&AO8F%K=7)A9G5T;R!W82!U;F%G:2!D92!I<'!A:2!D97-U(BP*("`@(")L
M86YD('=A<B!I;B!A<VEA(BP*("`@(")N979E<B!G970@:6YV;VQV960@:6X@
M82!L86YD('=A<B!I;B!A<VEA(BP*("`@(")G86UE('-H;W<B+`H@("`@(F%N
M:V@B+`H@("`@(G=H870@9&]E<R!A8V-R=6%L(&UE86YS(BP*("`@(")F:7@@
M<WEN=&%X(&5R<F]R(&]N(&5V97)Y(&QI;F4B+`H@("`@(FAO=R!T;R!T96QL
M('=H870@;&%N9W5A9V4@:2!W<F]T92!C;V1E(&EN(BP*("`@(")K;&EM="!T
M:&4@:VES<R(L"B`@("`B9&ED(&=I="!E>&ES="!I;B`R,#`Y(BP*("`@(")C
M87-T('1I;64B+`H@("`@(FAA;&8@;&EF92!W:&5N(&ES(&ET(BP*("`@(")F
M:7)S="!P;'5T;VYI=6TB+`H@("`@(F9I<G-T('!L=71O;FEU;2!B;VUB(BP*
M("`@(")H;W<@=&\@;&EE(&%B;W5T(&EN=&5R;F%T:6]N86P@=')E871Y(BP*
M("`@(")H86QF(&QI9F4@,R!W:&5N(&ES(&ET(BP*("`@(")O=VP@<VAA<&5D
M(&-L;V-K(BP*("`@(")W:'D@9&\@<&EG96]N<R!L;V]K<R!S;R!D=6UB(BP*
M("`@(")O=VP@<VAA<&5D(&1E<VL@;&EG:'0B+`H@("`@(F)I<F0@;W(@=V]R
M;2(L"B`@("`B:&]W('1O(&UA:V4@=V5B<VET92!L;V]K(&=O;V0B+`H@("`@
M(FAO=R!T;R!T96QL('=H971E<B!M>2!W96)S:71E(&QO;VMS(&)A9"(L"B`@
M("`B:&]W('1O('1E;&P@=VAE=&AE<B!M>2!W96)S:71E(&QO;VMS(&)A9"(L
M"B`@("`B:&]W(&UU8V@@9&]E<R!D:79O<F-E(&-O<W0B+`H@("`@(F5A=&5N
M(&)Y(&=R=64B+`H@("`@(FAO=R!B:6<@:7,@=&AE(&YI;&4B+`H@("`@(F-H
M97=I;F<@9W5M(BP*("`@(")B=6)B;&=E(&=U;2(L"B`@("`B8G5B8FQE(&=U
M;2(L"B`@("`B=VAA="!D;V5S(&QO<F5M(&EP<W5M(&UE86XB+`H@("`@(F9A
M;VXB+`H@("`@(F)E<FQI;B(L"B`@("`B:7,@9F%O;B!E=FEL(BP*("`@(")I
M<R!A9F9A:7(@86=A:6YS="!D:&%R;6$B+`H@("`@(FES(&%F9F%I<B!A9V%I
M;G-T(&1H87)M82!I9B!Y;W4G<F4@:6X@;&]V92(L"B`@("`B8W)O8V]D:6QE
M<R(L"B`@("`B<&AL;W@B+`H@("`@(G!I(BP*("`@(")S<&ED97(@;6%N(&-H
M86YG92!N86UE(BP*("`@(")S<&ED97(@;6%N(&-H86YG92!N86UE(&)U="!S
M=&EL;"!R960B+`H@("`@(G-T86YD:6YG(&]V=6QA=&EO;B(L"B`@("`B<W1A
M;F1I;F<@;W9A=&EO;B(L"B`@("`B<&QI96%D97,B+`H@("`@(G!L96EA9&5S
M(BP*("`@(")I<R!S8VEE;F-E('1H870@8F%D(BP*("`@(")S8VEE;F-E('1E
M;7!E<W0B+`H@("`@(F)A<VEC('=A<F1S(&%G86EN<W0@<V-I96YC92(L"B`@
M("`B=V%R9',@86=A:6YS="!S8VEE;F-E(BP*("`@(")S8VEE;F-E('=A<F1S
M(BP*("`@(")D;R!I(&YE960@=&\@;6%K92!S8VEE;F-E('=A<F1S(BP*("`@
M(")A<F4@<W5G97(@8W5B97,@9V]O9"!F;W(@>6]U(BP*("`@(")A<F4@<W5G
M87(@8W5B97,@9V]O9"!F;W(@>6]U(BP*("`@(")S=&5V:6$B+`H@("`@(G-T
M979I82!C=6)E<R(L"B`@("`B=VAO(&ES(')O;6%N82!C;&5F(BP*("`@(")R
M;VUA;B!A(&-L968B+`H@("`@(FAO=R!T;R!L:7!R96%D(BP*("`@(")C;VYT
M96YT(&ES(&YO="!A;&QO=V5D(&EN('!R;VQO9R(L"B`@("`B;6EC92(L"B`@
M("`B:&%L;V=E;B!E>'1E<FUI;F%T;W)S(BP*("`@(")A<F4@;6EC92!G;V]D
M(&9O<B!Y;W4B+`H@("`@(G=A=F5S('=I;&P@=&5L;"(L"B`@("`B9&]M86EN
M92!H=65T('-E;6DM<V5C(&QE(&UO;G1E('9O=79R87DB+`H@("`@(FYO(&EN
M=&EM86-Y('=I=&AO=70@<F5C:7!R;V-I='DB+`H@("`@(G-T:6QL(&QO861I
M;F<B+`H@("`@(G=E:7)D(&1R96%M(BP*("`@(")W96ER9"!D<F5A;2!B86<@
M;V8@=')E97,B+`H@("`@(G=E:7)D(&1R96%M(&)A9R!O9B!T<F5E<R!B=70@
M:2!W87,@;7D@8F5S="!F<FEE;F0B+`H@("`@(F)A9R!O9B!T<F5E<R!S>6UB
M;VQI<VTB+`H@("`@(F)E<W0@9FER96YD('-Y;6)O;&ES;2(L"B`@("`B8F5S
M="!F<FEE;F0@<WEM8F]L:7-M(BP*("`@(")N;R!N965D('1O(&)E('5P<V5T
M(#$P(&AO=7)S(&QO;F<B+`H@("`@(F1A;FYY('!H86YT;VTB+`H@("`@(G)I
M=&-H:64B+`H@("`@(G=H>2!D;R!P96]P;&4@:V5E<"!F;VQL;W=I;F<@;64B
M+`H@("`@(G=H>2!D;R!P96]P;&4@:V5E<"!F;VQL;W=I;F<@;64@;VYL:6YE
M('1H;W5G:"(L"B`@("`B8F]T<R(L"B`@("`B=')U<W0@9F%L;"(L"B`@("`B
M=VAA="!D;V5S(&9I<B!L;V]K(&QI:V4B+`H@("`@(G)E9W5L871O<G,@;6]U
M;G0@=7`B+`H@("`@(F-A;B!R;V)O=',@9&EE(BP*("`@(")D96%T:"(L"B`@
M("`B=VAO(&1I960@=&]D87DB+`H@("`@(F1O97,@9F%O;B!W87(@8W)I;65S
M(BP*("`@(")D:60@9F%O;B!M86ME('1H92!F:6YA;F-I86P@8W)I<VES(BP*
M("`@(")S=6UM97(@8F]D(BP*("`@(")I<R!A(&1A9&)O9"!A('!E<G-O;B(L
M"B`@("`B='EP:6YG('=P;2(L"B`@("`B:&%S:"(L"B`@("`B<V%L=&5D(&AA
M<V@B+`H@("`@(G-A;'1E9"!H87-H(&)R;W=N<R(L"B`@("`B<V%L=&5D(&AA
M<V@@8G)O=VYS(')E8VEP92(L"B`@("`B:&%S:"!F=6YC=&EO;B(L"B`@("`B
M8V%N('!O;&EC92!S964@<V5A<F-H(&AI<W1O<GDB+`H@("`@(F5N8W)Y<'0@
M<V5A<F-H97,B+`H@("`@(F5N8W)Y<'1I;VXB+`H@("`@(F5N8W)Y<'0@82!F
M:6QE('=I=&@@;G-S(BP*("`@(")S>6UM971R:6,@9W!G(&9I;&4@;F%M92(L
M"B`@("`B:7,@8FEL;"!G871E<R!R96%L(BP*("`@(")W:&\@;6%D92!B:6QL
M(&=A=&5S(BP*("`@(")C86X@:2!T=7)N(&]F9B!I;G!U="!L:6YE(&-H87(@
M8G5F9F5R('-T9&EN(BP*("`@(")S='1Y(BP*("`@(")H;W<@=&\@=7-E(&YC
M=7)S97,B+`H@("`@(F1W87(B+`H@("`@(F=E=&-H(BP*("`@(")S=')I<"!S
M=')I;F<B+`H@("`@(G-T<FEP('-T<FEN9R!C;VUM86YD('-H96QL(&-O9&4@
M<')O9W)A;6UI;F<B+`H@("`@(FES(&QI9F4@:7,@86QW87ES(&AA<F0B+`H@
M("`@(FEF(&QI9F4@:7,@86QW87ES(&AA<F0@=VAE;B!W:6QL(&D@8F4@:&%P
M<&EE<B(L"B`@("`B:&]W('1O(&1E8VED92!T;R!B92!H87!P>2(L"B`@("`B
M:&]W('1O(&1E8VED92!N;W0@=&\@8F4@:&%P<'DB+`H@("`@(G=H870@:7,@
M<V,J*G1E<B(L"B`@("`B=VAA="!I<R!S8RHJ=&5R(&5N96UY(BP*("`@(")D
M:7!L;VUA=&EC(&-R:7-I<R(L"B`@("`B9&EP;&]M871I8R!C<FES:7,@=&]D
M87DB+`H@("`@(F1I<&QO;6%T:6,@8W)I<VES(#(P,#D@;6]R;V-C;R(L"B`@
M("`B:&]W(&1O('EO=2!S<&5L;"!B>75R;W<B+`H@("`@(G-U<'!R97-S:6]N
M(&)U<F5A=2(L"B`@("`B;6]R;V-C86X@96UB87-S>2(L"B`@("`B:&]S=&%G
M97,B+`H@("`@(FAO<W1A9V4@<W5R=FEV86P@<W1A=&ES=&EC<R(L"B`@("`B
M:6YS=7)G96YT('-U<G9I=F%L('-T871I<W1I8W,B+`H@("`@(FAO=R!T;R!M
M86YA9V4@<W1R97-S(BP*("`@(")K:71T96YS(BP*("`@(")H96%R="!D:7-E
M87-E(BP*("`@(")K:71T96YS(BP*("`@(")K:7)A;B!P871E;"(L"B`@("`B
M:W)I<VAN82!P871E;"(L"B`@("`B:W)I<VAN82!P871E;"!F86]N(BP*("`@
M(")C96QE<R!D)V%G;W-T:6YO(BP*("`@(")I<R!K:7)A;B!A(&)O>2!O<B!G
M:7)L(&YA;64B+`H@("`@(FES(&$@8F]Y(&]R(&=I<FPB+`H@("`@(F)O>2!O
M<B!G:7)L('=H870@:7,@:70B+`H@("`@(G=E96L@8V]M;65N8VEN9R(L"B`@
M("`B=V,B+`H@("`@(G=H97)E(&ES(&ET(&9R:61A>2!R:6=H="!N;W<B+`H@
M("`@(FES(&ET(&%L=V%Y<R!F<FED87D@<V]M97=H97)E(&EN('1H92!W;W)L
M9"(L"B`@("`B9&ES=&%N8V4@;'5X;W(@8V%I<F\B+`H@("`@(G=H96X@=V%S
M(#(P,#D@:6YV96YT960B+`H@("`@(FES('5M;FEK;W,@<F5A;"(L"B`@("`B
M8VQO<V5S="!A:7)P;W)T('1O(&AA9V4B+`H@("`@(F-L;W-E<W0@86ER<&]R
M="!T;R!H86=U92(L"B`@("`B9&EP;&]D;V-U<R(L"B`@("`B:&]R;W-C;W!E
M(BP*("`@(")A<F4@>6]U(&%L;&]W960@=&\@8F4@82!D:7!L;VUA="!I9B!Y
M;W5R('-P;W5S92!I<R!I;B!J86EL(BP*("`@(")A<F4@>6]U(&%L;&]W960@
M=&\@8F4@82!D:7!L;VUA="!I9B!Y;W5R('-P;W5S92!H87,@86X@869F86ER
M(BP*("`@(")W:&%T(&1O97,@:&%L;&]W960@;65A;B(L"B`@("`B-34P(&YO
M="!E;F]U9V@@<W1O<F%G92!I<R!A=F%I;&%B;&4@=&\@8V]M<&QE=&4@=&AI
3<R!O<&5R871I;VXB"B`@70I]"B!A
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/secure-history.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/secure-history.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/secure-history.json': 'MD5 check failed'
       ) << \SHAR_EOF
d73b9a28baf6f9e3eb9c433d6c3b56f8  USB Flash Drive/.private/secure-history.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/secure-history.json'` -ne 4879 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/secure-history.json' is not 4879"
  fi
fi
# ============= USB Flash Drive/.private/.gpg.sh ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/.gpg.sh'
then
${echo} "x - SKIPPING USB Flash Drive/.private/.gpg.sh (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/.gpg.sh
M<VAO<'0@+7,@9VQO8G-T87(*9F]R(&9I;&4@:6X@+B\J*B]S96-U<F4M*CL@
M9&\*;F5W;F%M93TB)'MF:6QE)2\J?2\D>V9I;&4C*B]S96-U<F4M?2(*;78@
M(B1F:6QE(B`B)&YE=VYA;64B.PIG<&<@+6,@+2UN;RUS>6UK97DM8V%C:&4@
M+2UB871C:"`M+6-I<&AE<BUA;&=O($%%4S(U-B`M+7!A<W-P:')A<V4@(C,P
M+S$Q+S$Y-SDB("(D;F5W;F%M92(["G)M("(D;F5W;F%M92(["F1O;F4*8V,@
M+B]D96-R>7!T+6]L9"YC("UL;F-U<G-E<R`M;R`N+V]L9"YO=70*<W1R:7`@
=+B]O;&0N;W5T"G)M("XO9&5C<GEP="UO;&0N8PHN
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/.gpg.sh'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/.gpg.sh failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/.gpg.sh': 'MD5 check failed'
       ) << \SHAR_EOF
2762c4a468859202bb304c07128a5ea3  USB Flash Drive/.private/.gpg.sh
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/.gpg.sh'` -ne 299 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/.gpg.sh' is not 299"
  fi
fi
# ============= USB Flash Drive/.private/email/secure-store.json ==============
if test ! -d 'USB Flash Drive/.private/email'; then
  mkdir 'USB Flash Drive/.private/email' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/email/secure-store.json'
then
${echo} "x - SKIPPING USB Flash Drive/.private/email/secure-store.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/email/secure-store.json
M>PH@(")I9',B.B!;"B`@("`B-3`P,SDS-$!S=C`R+E!23T0N8G)A:6QL96UA
M:6PN;F5T(BP*("`@(")334E$/5=H65I&57I!66MY.4]H-'$X4CTP,$!E9RYE
M;6%I;'-E<G9E+FAA<'!Y96UA:6PN8V]M(BP*("`@("(V,30W,S4Q0'-V,#(N
M4%)/1"YB<F%I;&QE;6%I;"YN970B+`H@("`@(E--240]6%=L65!9,V5?-FY1
M:TPW;#9E/3`P0&5G+F5M86EL<V5R=F4N:&%P<'EE;6%I;"YC;VTB+`H@("`@
M(E--240]64%#5F5Q=7=*=&=E=35B.#='/3`P0&5G+F5M86EL<V5R=F4N:&%P
M<'EE;6%I;"YC;VTB"B`@72P*("`B9')A9G1S(CH@6PH@("`@(C`B"B`@70I]
!"GEE
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/email/secure-store.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/email/secure-store.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/email/secure-store.json': 'MD5 check failed'
       ) << \SHAR_EOF
6a0b175a0f6c030d484b7c4dae614d40  USB Flash Drive/.private/email/secure-store.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/email/secure-store.json'` -ne 316 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/email/secure-store.json' is not 316"
  fi
fi
# ============= USB Flash Drive/.private/email/secure-SMID=XWlYPY3e_6nQkL7l6e=00@eg.emailserve.happyemail.com.eml ==============
if test ! -d 'USB Flash Drive/.private/email'; then
  mkdir 'USB Flash Drive/.private/email' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/email/secure-SMID=XWlYPY3e_6nQkL7l6e=00@eg.emailserve.happyemail.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/.private/email/secure-SMID=XWlYPY3e_6nQkL7l6e=00@eg.emailserve.happyemail.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/email/secure-SMID=XWlYPY3e_6nQkL7l6e=00@eg.emailserve.happyemail.com.eml
M1G)O;3H@2VER86X@/&LN<&%T96Q`:&%P<'EE;6%I;"YC;VT^"E1O.B!#(#QC
M96QS:&%D961`8G)A:6QL96UA:6PN;F5T/@I$871E.B!4=64L(#$W($9E8B`R
M,#`Y(#$S.C`S.C(S("LP,C`P"E-U8FIE8W0Z(%)%.B!Z8F%R;`I);BU297!L
M>2U4;SH@/#8Q-#<S-3%`<W8P,BY04D]$+F)R86EL;&5M86EL+FYE=#X*4F5F
M97)E;F-E<SH@/#4P,#,Y,S1`<W8P,BY04D]$+F)R86EL;&5M86EL+FYE=#X@
M/%--240]5VA96D95>D%9:WDY3V@T<3A2/3`P0&5G+F5M86EL<V5R=F4N:&%P
M<'EE;6%I;"YC;VT^(#PV,30W,S4Q0'-V,#(N4%)/1"YB<F%I;&QE;6%I;"YN
M970^"DUE<W-A9V4M240Z(#Q334E$/5A7;%E063-E7S9N46M,-VPV93TP,$!E
M9RYE;6%I;'-E<G9E+FAA<'!Y96UA:6PN8V]M/@H*5B!J8FAY<2!T8B!N86QJ
M=7)E<B!J=F=U(&QB:"X@<&YY=&YE;"X@96YO;F<N('=R96AF;GER>BX*;VAG
M(%8@<79Q82=G(&=B:'!U(&=U;F<@<V5B>B!Z>7H@9F)Y:&=V8F%F+"!O<GEV
E<FER('IR(&YF(%8@>6)I<B!L8F@@4"X*"D)E;&EE=F4@;64N"F%F
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/email/secure-SMID=XWlYPY3e_6nQkL7l6e=00@eg.emailserve.happyemail.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/email/secure-SMID=XWlYPY3e_6nQkL7l6e=00@eg.emailserve.happyemail.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/email/secure-SMID=XWlYPY3e_6nQkL7l6e=00@eg.emailserve.happyemail.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
ef4fe81b01fd6f11444e319433a61474  USB Flash Drive/.private/email/secure-SMID=XWlYPY3e_6nQkL7l6e=00@eg.emailserve.happyemail.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/email/secure-SMID=XWlYPY3e_6nQkL7l6e=00@eg.emailserve.happyemail.com.eml'` -ne 532 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/email/secure-SMID=XWlYPY3e_6nQkL7l6e=00@eg.emailserve.happyemail.com.eml' is not 532"
  fi
fi
# ============= USB Flash Drive/.private/email/secure-5003934@sv02.PROD.braillemail.net.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/email/secure-5003934@sv02.PROD.braillemail.net.eml'
then
${echo} "x - SKIPPING USB Flash Drive/.private/email/secure-5003934@sv02.PROD.braillemail.net.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/email/secure-5003934@sv02.PROD.braillemail.net.eml
M1G)O;3H@0R`\8V5L<VAA9&5D0&)R86EL;&5M86EL+FYE=#X*5&\Z($MI<F%N
M(#QK+G!A=&5L0&AA<'!Y96UA:6PN8V]M/@I3=6)J96-T.B!Z8F%R;`I$871E
M.B!4=64L(#$W($9E8B`R,#`Y(#$R.C`W.C$Y("LP,C`P"DUE<W-A9V4M240Z
M(#PU,#`S.3,T0'-V,#(N4%)/1"YB<F%I;&QE;6%I;"YN970^"@I6(&9C8GAR
M(&IV9W4@9W5R(&-B>79P<BP@9W5R;"!F;G9Q('IB87)L(&IN9B!Z=F9F=F%T
M('-E8GH@>GEZ(&YP<&)H86=F+B!J;F8@=F<@;&)H/PH*9W5R;"!U;G$@8FAE
M(&IB97@@<GIN=GEF(&=B8BP@1FYA<'5R;2!V9R!Z:&9G(&]R"@ID;R!Y;W4@
::&%V92!A('!L86X_"@IL;W9E('EO=2P*0PIV
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/email/secure-5003934@sv02.PROD.braillemail.net.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/email/secure-5003934@sv02.PROD.braillemail.net.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/email/secure-5003934@sv02.PROD.braillemail.net.eml': 'MD5 check failed'
       ) << \SHAR_EOF
2e4d4b699bb6e044229cf9937b4a7f90  USB Flash Drive/.private/email/secure-5003934@sv02.PROD.braillemail.net.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/email/secure-5003934@sv02.PROD.braillemail.net.eml'` -ne 341 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/email/secure-5003934@sv02.PROD.braillemail.net.eml' is not 341"
  fi
fi
# ============= USB Flash Drive/.private/email/drafts/secure-0.json ==============
if test ! -d 'USB Flash Drive/.private/email/drafts'; then
  mkdir 'USB Flash Drive/.private/email/drafts' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/email/drafts/secure-0.json'
then
${echo} "x - SKIPPING USB Flash Drive/.private/email/drafts/secure-0.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/email/drafts/secure-0.json
M>PH@(")S=6)J96-T(CH@(F=A;64@;W9E<B(L"B`@(F)O9'DB.B`B22!K;F]W
M('=H870@>6]U(&1I9"Y<;EQN>6]U(&9O<F=O="!T;R!L;V-K(&UY(&UA:6YF
M<F%M92!A8V-E<W,@=VAE;B!)(&QE9G0@=&AE(&-O;7!A;GDL(&%L;"!T:&4@
M979I9&5N8V4@:7,@<V%F92X@:2!C;W!I960@979E<GET:&EN9R!O;B!W961N
M97-D87D@86YD('-P96YT('EE<W1E<F1A>2!P=71T:6YG('1O9V5T:&5R(&%L
M;"!T:&4@<&EE8V5S(&]F('!R;V]F+B!I="=S(&YO="!L:6ME($D@9&]N)W0@
M:&%V92!T:&4@=&EM92X@9&\@>6]U(&MN;W<@=VAA="!T:&4@;&5A9"!D971E
M8W1I=F4@;V8@=&AE(&-A<V4@<V%I9"!W:&5N($D@8G)O=6=H="!A;&]N9R!T
M:&4@9FEL97,_('1H870@:70@=V%S(&AA<F0@=&\@8F5L:65V92!Y;W5R('-T
M=7!I9&ET>5QN22!F:6YD(&ET(&AA<F0@=&\@8F5L:65V92!Y;W5R(&AO;F]R
M;&5S<VYE<W-<;EQN8GD@;6]N9&%Y('EO=2=L;"!B92!L;V-K960@87=A>2(*
"?0IS
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/email/drafts/secure-0.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/email/drafts/secure-0.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/email/drafts/secure-0.json': 'MD5 check failed'
       ) << \SHAR_EOF
07a3ca53af7acc3b5a05d3d77acf6085  USB Flash Drive/.private/email/drafts/secure-0.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/email/drafts/secure-0.json'` -ne 497 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/email/drafts/secure-0.json' is not 497"
  fi
fi
# ============= USB Flash Drive/.private/email/secure-SMID=YACVequwJtgeu5b87G=00@eg.emailserve.happyemail.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/email/secure-SMID=YACVequwJtgeu5b87G=00@eg.emailserve.happyemail.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/.private/email/secure-SMID=YACVequwJtgeu5b87G=00@eg.emailserve.happyemail.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/email/secure-SMID=YACVequwJtgeu5b87G=00@eg.emailserve.happyemail.com.eml
M1G)O;3H@2W)I<VAN82`\9&EP;&]D;V-U<T!H87!P>65M86EL+F-O;3X*5&\Z
M($MI<F%N(#QK+G!A=&5L0&AA<'!Y96UA:6PN8V]M/@I3=6)J96-T.B!&:6QE
M<R!F;W(@1FED96QI='D*1&%T93H@36]N+"`R,R!&96(@,C`P.2`Q,CHP-SHQ
M.2`K,#(P,`I-97-S86=E+4E$.B`\4TU)1#U904-697%U=TIT9V5U-6(X-T<]
M,#!`96<N96UA:6QS97)V92YH87!P>65M86EL+F-O;3X*"D=O;V1B>64@2VER
M86XL"@I9;W4@<V-R97=E9"!U<"X@2&%V92!T:&4@9FEL97,@>6]U(&%S:V5D
M(&9O<BP@8G5T(&YO=R!W92=R92!D;VYE+B!9;W4@:&%D('EO=7(@8VAA;F-E
M('1O(&9I>"!T:&ES+B!9;W4@9&]N)W0@9V5T('1O('5S92!M92!A9V%I;B!A
M;F0@22!D;VXG="!W86YT('1O(&9O<F=I=F4@>6]U+@H*22=M(&]U="!O9B!T
M;W=N(&%N;W1H97(@=V5E:RX@22=L;"!C;VUE(&)Y('1H92!H;W5S92!O;B!T
M:&4@,FYD('1O(&-O;&QE8W0@;7D@8F5L;VYG:6YG<RX@5&AE;B!))VT@;F]T
M(&-O;6EN9R!B86-K+B!)(&AO<&4@>6]U<B!N97<@;&EF92!I<R!E=F5R>71H
M:6YG('EO=2!D97-E<G9E+@H*16YJ;WD@:70@=VAI;&4@:70@;&%S=',L"DMR
&:7-H;F$*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/email/secure-SMID=YACVequwJtgeu5b87G=00@eg.emailserve.happyemail.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/email/secure-SMID=YACVequwJtgeu5b87G=00@eg.emailserve.happyemail.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/email/secure-SMID=YACVequwJtgeu5b87G=00@eg.emailserve.happyemail.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
6bb0926090ee6902d35fa81af71d8439  USB Flash Drive/.private/email/secure-SMID=YACVequwJtgeu5b87G=00@eg.emailserve.happyemail.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/email/secure-SMID=YACVequwJtgeu5b87G=00@eg.emailserve.happyemail.com.eml'` -ne 591 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/email/secure-SMID=YACVequwJtgeu5b87G=00@eg.emailserve.happyemail.com.eml' is not 591"
  fi
fi
# ============= USB Flash Drive/.private/email/secure-SMID=WhYZFUzAYky9Oh4q8R=00@eg.emailserve.happyemail.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/email/secure-SMID=WhYZFUzAYky9Oh4q8R=00@eg.emailserve.happyemail.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/.private/email/secure-SMID=WhYZFUzAYky9Oh4q8R=00@eg.emailserve.happyemail.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/email/secure-SMID=WhYZFUzAYky9Oh4q8R=00@eg.emailserve.happyemail.com.eml
M1G)O;3H@2VER86X@/&LN<&%T96Q`:&%P<'EE;6%I;"YC;VT^"E1O.B!#(#QC
M96QS:&%D961`8G)A:6QL96UA:6PN;F5T/@I$871E.B!4=64L(#$W($9E8B`R
M,#`Y(#$R.C,V.C,V("LP,C`P"E-U8FIE8W0Z(%)%.B!Z8F%R;`I);BU297!L
M>2U4;SH@/#4P,#,Y,S1`<W8P,BY04D]$+F)R86EL;&5M86EL+FYE=#X*4F5F
M97)E;F-E<SH@/#4P,#,Y,S1`<W8P,BY04D]$+F)R86EL;&5M86EL+FYE=#X*
M365S<V%G92U)1#H@/%--240]5VA96D95>D%9:WDY3V@T<3A2/3`P0&5G+F5M
M86EL<V5R=F4N:&%P<'EE;6%I;"YC;VT^"@I6('AA<FH@;F]B:&<@9W5R('IV
M9F9V870@>F)A<FP@;G-G<F4@96YI<F$@<&YZ<B!G8B!Z<B!N;V)H9R!V9RX@
M(%8@9FYV<2!G<GEY(&=U<B!C8GEV<'(N(&IV9W4@;GEY(&IU;F<@=6YC8W)A
M<G$@5B!S8F5T8F<@;F%Q('%V<6$G9R!J;F%G(&=B(&9G;F5G(&YA;"!Z8F5R
M(&-N879P(&IV9W4@;F%L8F%R+"!Y=GAR(&-N979F('IB86=S<F5E;F<N(&)E
M(&9B96)X;B!J8FAY<2!T8B!A:&=F"@IA8B!C>6YA+"!A8B!V<7)N(&IU;F<G
M9B!T8G9A="!B82P@;VAG(%8@>6)I<B!L8F@@<')Y<F8*"FYO(&UA='1E<B!W
,:&%T(&AA<'!E;G,*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/email/secure-SMID=WhYZFUzAYky9Oh4q8R=00@eg.emailserve.happyemail.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/email/secure-SMID=WhYZFUzAYky9Oh4q8R=00@eg.emailserve.happyemail.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/email/secure-SMID=WhYZFUzAYky9Oh4q8R=00@eg.emailserve.happyemail.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
b80ea6aac7d66c3d48c7cccceb85f6b3  USB Flash Drive/.private/email/secure-SMID=WhYZFUzAYky9Oh4q8R=00@eg.emailserve.happyemail.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/email/secure-SMID=WhYZFUzAYky9Oh4q8R=00@eg.emailserve.happyemail.com.eml'` -ne 597 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/email/secure-SMID=WhYZFUzAYky9Oh4q8R=00@eg.emailserve.happyemail.com.eml' is not 597"
  fi
fi
# ============= USB Flash Drive/.private/email/secure-6147351@sv02.PROD.braillemail.net.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/email/secure-6147351@sv02.PROD.braillemail.net.eml'
then
${echo} "x - SKIPPING USB Flash Drive/.private/email/secure-6147351@sv02.PROD.braillemail.net.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/email/secure-6147351@sv02.PROD.braillemail.net.eml
M1G)O;3H@0R`\8V5L<VAA9&5D0&)R86EL;&5M86EL+FYE=#X*5&\Z($MI<F%N
M(#QK+G!A=&5L0&AA<'!Y96UA:6PN8V]M/@I3=6)J96-T.B!213H@>F)A<FP*
M1&%T93H@5'5E+"`Q-R!&96(@,C`P.2`Q,CHS.3HQ,2`K,#(P,`I);BU297!L
M>2U4;SH@/%--240]5VA96D95>D%9:WDY3V@T<3A2/3`P0&5G+F5M86EL<V5R
M=F4N:&%P<'EE;6%I;"YC;VT^"E)E9F5R96YC97,Z(#PU,#`S.3,T0'-V,#(N
M4%)/1"YB<F%I;&QE;6%I;"YN970^(#Q334E$/5=H65I&57I!66MY.4]H-'$X
M4CTP,$!E9RYE;6%I;'-E<G9E+FAA<'!Y96UA:6PN8V]M/@I-97-S86=E+4E$
M.B`\-C$T-S,U,4!S=C`R+E!23T0N8G)A:6QL96UA:6PN;F5T/@H*:G5B(')Y
M9G(@<&YA(&YP<')F9B!G=7(@86AZ;W)E9B!R:W!R8V<@1FYA<'5R;3\@;F%Q
M(&IU;F<@<&)H>7$@;W(@>F)E<B!V>F-B96=N86<@9V(@9FYA<'5R;2!G=6YA
M(&=U<B!P8GIC;F%L+B!F8BX@5G,@;&)H('5N:7(@>F)A<FPL(&=U<F$N"FIR
M('!B:'EQ('1B(&YA;&IU<F5R"@IB92!J=GEY(&QB:"!A8F<@>7)G('IR('9A
M(&%B('IB97(_"F)E(&YZ(%8@86)G(&QB:&4@9F=N97EV870@;F%L>F)E<C\*
M3')F(%8@<6)A)V<@9FAV9R!Z;"!R86EL(&]H9R!V9B!G=7(@>F)A<FP@:G9G
7=2!L8F@@>&%B:B!J=6(_"@I#96QE<PIL
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/email/secure-6147351@sv02.PROD.braillemail.net.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/email/secure-6147351@sv02.PROD.braillemail.net.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/email/secure-6147351@sv02.PROD.braillemail.net.eml': 'MD5 check failed'
       ) << \SHAR_EOF
42c74023003385cc789ab218f1fc1bcc  USB Flash Drive/.private/email/secure-6147351@sv02.PROD.braillemail.net.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/email/secure-6147351@sv02.PROD.braillemail.net.eml'` -ne 653 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/email/secure-6147351@sv02.PROD.braillemail.net.eml' is not 653"
  fi
fi
# ============= USB Flash Drive/.private/decrypt-old.c ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/decrypt-old.c'
then
${echo} "x - SKIPPING USB Flash Drive/.private/decrypt-old.c (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/decrypt-old.c
M(VEN8VQU9&4@/'5N:7-T9"YH/@HC:6YC;'5D92`\;F-U<G-E<RYH/@H*8V]N
M<W0@8VAA<B`J:&EN="`](")G=7(@<7)P96QC9W9B82!X<FP@<V)E(&=U<B!R
M+7IN=GEF('9F(&X@<6YG<BX@=G,@;&)H('!N82!E<FYQ(&=U=F8L('9G(&]R
M>6)A=&8@9V(@;&)H+"!G=7(@<6YG<BX@5B!Y8FER(&QB:"!0(CL*"B-D969I
M;F4@0E5&1E]325I%(#$Q"@II;G0@;6%I;BAI;G0@87)G8RP@8VAA<B`J*F%R
M9W8I('L*("`@:6YT(&-U<G-O<B`](#`["B`@(&-H87(@9&%Y6S)=.PH@("!C
M:&%R(&UO;G1H6S)=.PH@("!C:&%R('EE87);-%T["B`@(&-H87(@8G5F9F5R
M6T)51D9?4TE:15T["B`@(&EF("AA<F=C("$](#(I(')E='5R;B`Q.PH@("!I
M;FET<V-R*"D["B`@('1I;65O=70H+3$I.PH@("!N;V5C:&\H*3L*("`@;79P
M<FEN='<H,"P@,"P@(BHJ+RHJ+RHJ*BHB*3L*("`@;6]V92@P+"!C=7)S;W(I
M.PH@("!D87E;,%T@/2!G971C:"@I.PH@("!M=G!R:6YT=R@P+"!C=7)S;W(L
M("(E8R(L(&1A>5LP72D["B`@(&UO=F4H,"P@*RMC=7)S;W(I.PH@("!D87E;
M,5T@/2!G971C:"@I.PH@("!M=G!R:6YT=R@P+"!C=7)S;W(K*RP@(B5C(BP@
M9&%Y6S%=*3L*("`@;6]V92@P+"`K*V-U<G-O<BD["B`@(&UO;G1H6S!=(#T@
M9V5T8V@H*3L*("`@;79P<FEN='<H,"P@8W5R<V]R+"`B)6,B+"!M;VYT:%LP
M72D["B`@(&UO=F4H,"P@*RMC=7)S;W(I.PH@("!M;VYT:%LQ72`](&=E=&-H
M*"D["B`@(&UV<')I;G1W*#`L(&-U<G-O<BLK+"`B)6,B+"!M;VYT:%LQ72D[
M"B`@(&UO=F4H,"P@*RMC=7)S;W(I.PH@("!Y96%R6S!=(#T@9V5T8V@H*3L*
M("`@;79P<FEN='<H,"P@8W5R<V]R+"`B)6,B+"!Y96%R6S!=*3L*("`@;6]V
M92@P+"`K*V-U<G-O<BD["B`@('EE87);,5T@/2!G971C:"@I.PH@("!M=G!R
M:6YT=R@P+"!C=7)S;W(L("(E8R(L('EE87);,5TI.PH@("!M;W9E*#`L("LK
M8W5R<V]R*3L*("`@>65A<ELR72`](&=E=&-H*"D["B`@(&UV<')I;G1W*#`L
M(&-U<G-O<BP@(B5C(BP@>65A<ELR72D["B`@('EE87);,UT@/2!G971C:"@I
M.PH@("!E;F1W:6XH*3L*("`@<VYP<FEN=&8H8G5F9F5R+"!"549&7U-)6D4L
M("(E8R5C+R5C)6,O)6,E8R5C)6,B+"!D87E;,%TL(&1A>5LQ72P@;6]N=&A;
M,%TL(&UO;G1H6S%=+"!Y96%R6S!=+"!Y96%R6S%=+"!Y96%R6S)=+"!Y96%R
M6S-=*3L*("`@97AE8VQP*")G<&<B+"`B9W!G(BP@(BUD(BP@(BTM;F\M<WEM
M:V5Y+6-A8VAE(BP@(BTM8F%T8V@B+"`B+2UP87-S<&AR87-E(BP@8G5F9F5R
A+"!A<F=V6S%=+"!.54Q,*3L*("`@<F5T=7)N(#$["GT*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/decrypt-old.c'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/decrypt-old.c failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/decrypt-old.c': 'MD5 check failed'
       ) << \SHAR_EOF
fad3a92b6b78656397f6aa932da5bedb  USB Flash Drive/.private/decrypt-old.c
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/decrypt-old.c'` -ne 1293 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/decrypt-old.c' is not 1293"
  fi
fi
# ============= USB Flash Drive/.private/case/transcript.textbundle/secure-transcript.fountain ==============
if test ! -d 'USB Flash Drive/.private/case'; then
  mkdir 'USB Flash Drive/.private/case' || exit 1
fi
if test ! -d 'USB Flash Drive/.private/case/transcript.textbundle'; then
  mkdir 'USB Flash Drive/.private/case/transcript.textbundle' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/case/transcript.textbundle/secure-transcript.fountain'
then
${echo} "x - SKIPPING USB Flash Drive/.private/case/transcript.textbundle/secure-transcript.fountain (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/case/transcript.textbundle/secure-transcript.fountain
M5&ET;&4Z($,S-#@Q($EN=&5R=FEE=R!#96QE<R!$)T%G;W-T:6YO(#(P,#DM
M,#(M,3<*0W)E9&ET.B!4<F%N<V-R:6)E9"!B>0I!=71H;W(Z($1E=&5C=&EV
M92!);G-P96-T;W(@4&EP($QA<G,@03(P,PI#87-E.B!#,S0X,0I#;VYT86-T
M.@H@("`@1VEZ82!-=6YI8VEP86P@1V5N9&%R;65R:64L"B`@("!0;VQI8V4@
M9&5P87)T;65N="P*("`@("LR,"`V(#0R(#$X(#,W(#4R"D%R8VAI=F%L.@H@
M("`@0V]N9'5C=&5D(#(P,#DM,#(M,3<*("`@(%1R86YS8W)I8F5D(#(P,#DM
M,#(M,3<*("`@(%)E<75E<W1E9"!B>2!&04].($]#1R`R,#`Y+3`R+3$Y("AF
M=6QF:6QL960@,C`P.2TP,BTQ.2D*"@I)3E0N(%-4051)3TX@24Y415)62457
M(%)/3TT@,0H*26YT97)V:65W97(@1DQ!2$525%D@1&5T96-T:79E($EN<W!E
M8W1O<B!"86%S($9L86AE<G1Y($$T,#,L(&EN=F5S=&EG871I;F<@0S,T.#$N
M"DEN=&5R=FEE=V5E($1!1T]35$E.3R!#96QE<R!$)T%G;W-T:6YO+"!T86ME
M;B!I;B!F;W(@<75E<W1I;VYI;F<@<F4@0S,T.#$N"@H*1DQ!2$525%D*+2UO
M;BX@1F]R('1H92!R96-O<F1I;F<L($D@86T@1$D@1FQA:&5R='D@:6YT97)V
M:65W:6YG+BXN"@I$04=/4U1)3D\*0V5L97,N"@I&3$%(15)460I#96QE<R!$
M)T%G;W-T:6YO+B!4;V1A>2!I<R!T:&4@1F5B<G5A<GD@,3=T:"X@5&AE('1I
M;64@:7,@,3`S-BX*"D1!1T]35$E.3PI)="=S+"!U:"P@8V]L9"!I;B!H97)E
M+@H*1DQ!2$525%D*5V]U;&0@>6]U(&QI:V4@;64@=&\@8VAA;F=E('1H92!T
M:&5R;6]S=&%T/PH*1$%'3U-424Y/"DYO+B!.;RX*"D9,04A%4E19"DQE="=S
M(&=E="!I;G1O(&ET+B!#96QE<RP@22=M(&EN=F5S=&EG871I;F<@>6]U<B!C
M;VUP86YY($U,32!3;VQU=&EO;G,N($ET(&%P<&5A<G,@=&AA="!O=F5R('1H
M92!P87-T('%U87)T97(L($U,32!3;VQU=&EO;G,@:&%S(&QO<W0M+6UI<W!L
M86-E9"TM82!S=6T@;V8@;6]N97DN($D@;65A;B!T:&%T('-O;65O;F4@:&%S
M(')E;6]V960@;6]N97D@9G)O;2!T:&4@8V]M<&%N>2!A8V-O=6YT<R!T:&%T
M('1H97D@<VAO=6QD;B=T(&AA=F4N($-E;&5S+2T*"D1!1T]35$E.3PI)(&1O
M;B=T+2T*"D9,04A%4E19"DUE(&%N9"!M>2!T96%M(&AA=F4@8F5E;B!H87)D
M(&%T('=O<FL@9V%T:&5R:6YG(&$@=F%R:65T>2!O9B!I;F9O<FUA=&EO;B!A
M8F]U="!T:&4@9&ES87!P96%R86YC92X@5V4@:VYO=R!R;W5G:&QY('=H96X@
M=&AE(&UO;F5Y('=A<R!T86ME;BP@86YD('=E(&AA=F4@82!G;V]D(&ED96$@
M;V8@:&]W+B!))VT@:&5R92!T;R!A<VL@>6]U('-O;64@<75E<W1I;VYS+"!T
M;R!F:6=U<F4@;W5T(&IU<W0@=VAA="!H87!P96YE9"!A;F0@=VAY+B!.;W<L
M(&EF('1H97)E)W,@82!Q=65S=&EO;B!T:&%T('EO=2!D;VXG="!W86YT('1O
M(&%N<W=E<BP@>6]U(&1O;B=T(&AA=F4@=&\@86YS=V5R(&ET+"!)(&1O;B=T
M('=A;G0@>6]U('1O(&9E96P@<')E<W-U<F5D('1O(&%N<W=E<BX@5V4G<F4@
M86QL(&]N;'D@9&]I;F<@;W5R(&)E<W0@=&\@9FEG=7)E(&]U="!W:'D@=&AA
M="!M;VYE>2!W96YT(&UI<W-I;F<N($1O('EO=2!U;F1E<G-T86YD('=H870@
M22=M('-A>6EN9S\*"D1!1T]35$E.3PI)('5N9&5R<W1A;F0L('EE<RX*"D9,
M04A%4E19"DAO=R!L;VYG(&AA=F4@>6]U(&)E96X@=V]R:VEN9R!A="!-3$T@
M4V]L=71I;VYS/PH*1$%'3U-424Y/"E5M+"!H;W<@86T@22!R96QA=&5D('1O
M(&%L;"!T:&ES+"!O9F9I8V5R/PH*1DQ!2$525%D*1FEN92X@22=L;"!M;W9E
M(&]N('1O('1H92!E=FED96YC92X@07,@22!W87,@<V%Y:6YG+"!W92!W97)E
M(')E8V5N=&QY(&EN9F]R;65D(&]F(&$@9&ES8W)E<&%N8WD@:6X@=&AE(&)O
M;VMK965P:6YG(&%T($U,32!3;VQU=&EO;G,L(&%N9"!H879E(&ED96YT:69I
M960@=&AA="!S;VUE(&]F('1H92!M;VYE>2!I<R!N;W0@86-C;W5N=&5D(&9O
M<BX@5&AE(&UO;F5Y(&-O=6QD(&)E(&UI<W-I;F<@9F]R(&%N>2!N=6UB97(@
M;V8@<F5A<V]N<RP@8G5T('1H92!M;W-T(&QI:V5L>2!I<R!T:&%T(&%N(&5M
M<&QO>65E('1O;VL@:70N(%1H:7,@<V]R="!O9B!T:&EN9R!H87!P96YS+"!S
M;V]N97(@;W(@;&%T97(L('=E(&%L;"!G;W1T82!D;R!B860@=&AI;F=S('1O
M(&9E960@;W5R(&9A;6EL>2X@*EMS;6%L;"!S:6=H72H@0V5L97,L('=E)W9E
M(&QO;VME9"!A="!Y;W5R(&9I;F%N8VEA;"!R96-O<F1S+B!9;W4@;F5E9"!M
M;VYE>2P@86YD('EO=2!N965D(&ET(&1A;F=E<F]U<VQY+@H*1$%'3U-424Y/
M"DD@9&]N)W0@:VYO=R!A;GDM+0H*1DQ!2$525%D*22!J=7-T('=A;G0@=&\@
M9V5T('-O;64@86YS=V5R<RX*"D1!1T]35$E.3R!>"DDG;2!N;W0@*EMI;F%U
M9&EB;&5=*@H*1DQ!2$525%D*2&5Y+"!H97DL(&QO;VLL(&QO;VL@870@;64N
M($D@:G5S="!W86YT('-O;64@86YS=V5R<RX*"D1!1T]35$E.3PI))VT@:6X@
M82!B860@9FEN86YC:6%L('-I='5A=&EO;C\@665S+"!))VT@<W1I;&P@:6X@
M:70N(%EO=2!T:&EN:R!))V0@<W1I;&P@8F4@:6X@9&5B="!I9B!W87,@82!T
M<F%D:71O<B!T;R!M>2!H;VYO<C\@3F\L(&YO+B!.979E<B!W;W5L9"!)+B!)
M(&MN;W<@;F]T:&EN9R!A8F]U="!T:&ES+@H*1DQ!2$525%D*0F5C875S92!O
M9B!H;VYO<C\@22!D;VXG="!)(&)E;&EE=F4@:6X@=&AA="X@270G<R!F:6YE
M(&EF('EO=2!D;VXG="!W86YT('1O('-A>2!A;GET:&EN9RP@8G5T($D@8V%N
M(&%S:R!T:&4@<F5S="!O9B!T:&4@8V]M<&%N>2X@5&AE('1R=71H(&ES(&=O
M:6YG('1O(&-O;64@;W5T(&5V96YT=6%L;'DN($YO=RP@87,@86X@97AE8W5T
M:79E(&%T($U,32!3;VQU=&EO;G,L(&5R+"!I="!S87ES(&AE<F4@)V1I<F5C
M=&]R(&]F(&)U<VEN97-S(&EN;F]V871I;VXG+"!Y;W4@=V]U;&0@:&%V92!A
M8V-E<W,@=&\@=&AE(&-O;7!A;GD@9FEN86YC97,N"@I$04=/4U1)3D\*7U=H
M870_7R!.;R!A8V-E<W,L('1H92!O;FQY(&]N97,@=VAO(')A;B!A;&P@;V8@
M=&AA="!S:61E(&]F('1H:6YG<R!I<R!386YC:&5Z+"!097ET;VX@4V%N8VAE
M>BP@86YD("XN+B!A;F0@2VER86XN"@I&3$%(15)460I!;F0@2VER86X_($%H
M('EE<RP@>6]U(&UE86X@2VER86X@4&%T96PN($EN=&5R97-T:6YG+B!697)Y
M+2T*"D1!1T]35$E.3PI/:"P@86YD($UA<G-I8VLN($=O9"!G<F%N="!R97-T
M('1H92!H86QL;W=E9"X@36%R<VEC:R!C97)T86EN;'D@=V]U;&0@:&%V92!B
M965N(&%B;&4@=&\N+BX@8F5F;W)E+"!A:"X@1&ED($UA<G-I8VLN+BX*"D9,
M04A%4E19"D1I9"!-87)S:6-K+BXN/PH*1$%'3U-424Y/"E=A<R!-87)S:6-K
M+BXN($1I9"!-87)S:6-K)W,@9&5A=&@@:&%V92!S;VUE=&AI;F<@=&\@9&\@
M=VET:"!T:&ES/PH*1DQ!2$525%D*070@=&AI<R!S=&%G92!O9B!T:&4@:6YV
M97-T:6=A=&EO;B!W92!H879E(&YO(')E87-O;B!T;R!B96QI979E('1H870@
M36%R<VEC:R=S(&1E871H('=A<R!A;GET:&EN9R!O=&AE<B!T:&%N+"!U:"P@
M=')O=6)L92!W:71H('1H92!H96%R="X@06@L(&)U="!S<&5A:VEN9R!O9B!H
M96%R=',@9V5T=&EN9R!U<R!I;G1O('1R;W5B;&4@*EML875G:%TJ(&ET(&%P
M<&5A<G,@=&AA="!+:7)A;B!0871E;"!A;F0@>6]U<G-E;&8@:&%V92!B965N
M(&5X8VAA;F=I;F<@<V]M92P@<V5N<VET:79E(&5M86EL<RX@3F]T('=H870@
M22=D(&5X<&5C="!F<F]M('!R;V9E<W-I;VYA;"!C;VQL96%G=65S+B!)(&-A
M;B!R96%D('1H96T@;W5T(&EF('EO=2=D(&QI:V4N(.*`G&YE=F5R(>*`G2XN
M+@H*1$%'3U-424Y/"E=H870@<FEG:'0@:&%V92TM(%=H97)E(&1I9"!Y;W4@
M9V5T('1H;W-E/R!9;W4@;&]O:V5D(&%T(&UY('!R:79A=&4M+2!W:&%T(&1O
M97,@2VER86X@:&%V92!A;GET:&EN9R!T;R!D;R!W:71H('1H:7,_(%=H;RP@
M=VAO(&=A=F4@>6]U('1H92!E;6%I;',_"@I&3$%(15)460I&;W(@=&AE(&EN
M=&5G<FET>2!O9B!O=7(@:6YV97-T:6=A=&EO;B!M>2!S;W5R8V4@=VEL;"!N
M965D('1O('-T87D@86YO;GEM;W5S+@H*1$%'3U-424Y/"DYO="!M>7-E;&8L
M(&ET('=O=6QD;B=T(&)E($MI<F%N+BXN(%-A;F-H97HA($ET(&UU<W0@8F4@
M:&%V92!B965N(%-A;F-H97H@9V%V92!Y;W4@86-C97-S('1O(&UY(&5M86EL
M<RX*"D9,04A%4E19"D-E;&5S+"!Y;W5R(')E;&%T:6]N<VAI<"!T;R!+:7)A
M;BP@=VAO(&AA9"!A8V-E<W,@=&\@=&AE(&%C8V]U;G0N+BX@270@;&]O:W,@
M=&\@;64@;&EK92!Y;W4@:&%D(&UO=&EV92P@86YD(&]P<&]R='5N:71Y('1O
M(&UA:V4@=&AA="!M;VYE>2!T;R!G;R!M:7-S:6YG+B!.;W<L('1H97)E(&%R
M92!A;GD@;G5M8F5R(&]F(')E87-O;G,@>6]U(&1I9&XG="!W86YT('1O('1E
M;&P@86YY;VYE+B!';V]D(')E87-O;G,L(&9O<B!L;W9E+"!F;W(@9F5A<BP@
M;W(@<&]S<VEB;'D@;F]T('-O('-A=F]R>2X@1W)E960N($D@=V%N="!T;R!B
M96QI979E('1H92!B97-T(&EN('EO=2!#96QE<RP@=&AA="!Y;W4@9&ED(&ET
M(&9O<B!N;V)L92P@9F]R(&AO;F]R86)L92!R96%S;VYS+B!"=70@<FEG:'0@
M;F]W+"!)('=A;G0@979E;B!M;W)E('1O(&=E="!T:&4@=')U=&@N(%-O('=H
M:6-H(&ES(&ET/R!(;W<@8V]M92!T:&4@;6]N97D@:7,@9V]N93\*"D1!1T]3
M5$E.3PI)(&1I9&XG="TM"@I&3$%(15)460I?5VAY7R!D:60@>6]U('1A:V4@
M=&AE(&UO;F5Y/PH*1$%'3U-424Y/"E=H870@:7,@=&AI<R!M;VYE>3\@22!K
M;F]W(&YO=&AI;F<L(&AO=R!M=6-H('=A<R!T:&5R93\@5VAY(&1I9"!386YC
M:&5Z(&=I=F4@>6]U(&UY(&5M86EL<R!W:71H($MI<F%N/R!7:&5R92!D:60@
M=&AE(&UO;F5Y(&-O;64@9G)O;2!B969O<F4_(%=H>2!D:61N)W0@4V%N8VAE
M>B!T96QL('EO=2!)(&AA=F4@;F\@86-C97-S('1O(&-O;7!A;GD@86-C;W5N
M=',_"@I&3$%(15)460I(97D@;F]W+"!W:'D@9&]N)W0@=V4@:V5E<"!G;VEN
M9R!W:71H('1H92!I;G1E<G9I97<@<V\@=V4@8V%N(&9I9W5R92!O=70@=VAA
M="!H87!P96YE9"!A;F0@=V4@8V%N(&)O=&@@9V\@:&]M92P@>65S/PH*1$%'
M3U-424Y/"E=H>2X@5VAY(&1I9"!097ET;VX@4V%N8VAE>B!G:79E('EO=2!O
M=7(@96UA:6QS/PH*1DQ!2$525%D*5V4@<F5Q=6ER960@86-C97-S('1O('1H
M;W-E(&5M86EL<R!F;W(@=&AE(&-A<V4N"@I$04=/4U1)3D\*4V\@:70@7W=A
M<U\@4V%N8VAE>BX@5VAA="!W97)E('EO=2!E=F5N('1R>6EN9R!T;R!F:6YD
M/R!!<VED92!W:&5T:&5R(&ET)W,@979E;B!L96=A;"!T;RXN+@H*1DQ!2$52
M5%D*06@L('1H:7,@:7,@;F]T(&UY(&%R96$N($ET)W,@;F]T(&EM<&]R=&%N
M="!T;R!T:&4@8V%S92X@5V4M+0H*1$%'3U-424Y/"DEF('EO=2!D;VXG="!K
M;F]W/R!4:&5N(&=E="!T:&%T(&]T:&5R(&-O<"P@=&AE(&]N92!T:&%T(%]D
M:61?(&QO;VL@8V]M<&5T96YT+"!I;B!H97)E+@H*1DQ!2$525%D*66]U(&UE
M86YI;F<@1$D@3&%R<S\*"D1!1T]35$E.3PI)('1H;W5G:'0@>6]U('=E<F4@
M3&%R<RX*"D9,04A%4E19"DDG;2!&;&%H97)T>2X*"D1!1T]35$E.3PI&;&%H
M97)T>2X@3&%R<RX@1V5T(&UE('-O;65O;F4@=VAO(&ES;B=T(&%N(&ED:6]T
M+@H*1DQ!2$525%D*22XN+B!3=&%Y(&AE<F4N"@I4:&4@9&]O<B!I<R!H96%R
M9"!O<&5N:6YG+B!&;W(@82!F97<@<V5C;VYD<R!A('-H87)P(&)E97`N(%1H
M96X@<VAU='1I;F<@86=A:6XN"@I#;RUI;G1E<G9I97=E<B!,05)3($1E=&5C
M=&EV92!);G-P96-T;W(@4&EP($QA<G,@03(P,RP@;V9F+61U='DN"@I,05)3
M"D9L86AE<G1Y+B!$)T%G;W-T:6YO+B!#86X@22!H96QP/PH*1DQ!2$525%D*
M3&%R<RP@=&AI<R!I<R!#96QE<RP@:6YT97)V:65W:6YG(&%B;W5T+2T*"DQ!
M4E,*5V4G=F4@;65T+B!#96QE<RP@8V%N($D@8V%L;"!Y;W4@0V5L97,_"@I!
M('-H;W)T('!A=7-E+@H*1$%'3U-424Y/"DQA<G,L(&AO=R!D:60@>6]U(&=E
M="!Y;W5R(&=R=6)B>2!H86YD<R!O;B!M>2!E;6%I;',@=VET:"!+:7)A;B!0
M871E;#\*"DQ!4E,*5&AA="!W87,@1FQA:&5R='DG<R!A<F5A+B!7:&%T(%])
M7R!W86YT('1O(&MN;W<@:7,L(&%R92!Y;W4@:6X@;&]V92!W:71H(%!A=&5L
M/PH*1$%'3U-424Y/"E1H870G<RTM(%=H870@22!W86YT('1O(&MN;W<@:7,L
M(&%R92!Y;W4@:6X@;&]V92!W:71H($1E=&5C=&EV92!);G-P96-T;W(@1FQA
M:&5R='D_"@I,05)3"DD@9&]N)W0@9F]L;&]W+@H*1DQ!2$525%D@7@I7:&%T
M/PH*1$%'3U-424Y/"D9O<B!T:&4@<F5C;W)D:6YG.B!$22!,87)S(&ES(&)L
M=7-H:6YG+@H*3$%24PI&;W(@=&AE(')E8V]R9&EN9RP@22!A;2!N;W0@8FQU
M<VAI;F<N"@I$04=/4U1)3D\**EML;VYG(&)R96%T:"!I;ETJ(%=H>2!A<F4@
M>6]U('-O(&%N>&EO=7,@=&\@9FEN:7-H('1H:7,@8V%S93\*"DQ!4E,*22=M
M('-O<G)Y/PH*1$%'3U-424Y/"E1H:7,@:6YT97)R;V=A=&EO;BTM=&AE(&EL
M;&5G86P@<W1E86QI;F<@;V8@;7D@96UA:6QS+2UD:60@>6]U(&MN;W<@86)O
M=70@:70_"@I&3$%(15)460I(;VQD(&]N(2!0870@=V%S+2T*"DQ!4E,*1&5T
M96-T:79E($EN<W!E8W1O<B!&;&%H97)T>2X*"D9,04A%4E19"E=H870@>6]U
M)W)E(&EN<VEN=6%T:6YG+BXN"@I,05)3"D%R92!Y;W4@9&]N92P@1FQA:&5R
M='D_($-E;&5S+"!)(&AA=F4@;F\@86YS=V5R('1O(&]F9F5R(&%B;W5T('EO
M=7(@<75E<W1I;VXN(%1O('1H92!B97-T(&]F(&UY(&MN;W=L961G92P@=V4@
M:&%V92!A<'!R;V%C:&5D('1H:7,@8V%S92!W:71H(%]A;&Q?(&1U92!R:6=O
M=7(@86YD('!R;W1O8V]L+@H*1$%'3U-424Y/"EEO=2=R92!L>6EN9R$@5&AE
M<F4G<R!S;VUE=&AI;F<@;V9F('=I=&@@=&AI<R!C87-E+@H*3$%24PI)9B!T
M:&5R92=S(&%N>2!M:7-C;VYD=6-T+"!)(&%S<W5R92!Y;W4@22!W:6QL(&QO
M;VL@:6YT;R!T:&4@;6%T=&5R+@H*1$%'3U-424Y/"E1H870@:7,@;65A;FEN
M9VQE<W,N("I;<VEG:%TJ($-A<F1S(&]N('1H92!T86)L92X@66]U(&%R92!B
M;W1H('1O;R!S='5P:60@=&\@8F4@=V]R=&@@86YY(&]F(&UY('1I;64N($D@
M:VYO=R!T:&%T('EO=2=R92!B;W1H(&5I=&AE<B!I;F-O;7!E=&5N="!O<B!I
M;G1E;G1I;VYA;&QY(&YE9VQI9V5N=',N($D@9&]N)W0@8V%R92!W:&%T('EO
M=2!L;V]K(&EN=&\N($D@9&]N)W0@8V%R92!W:&5T:&5R('EO=7(@<W5P97)I
M;W)S(&9I;F0@;W5T('=H870@>6]U)W9E(&1O;F4N($D@:G5S="!C87)E+"!H
M97)E)W,@=VAA="=S(&=O:6YG('1O(&AA<'!E;BX@66]U(&%R92!G;VEN9R!T
M;R!D96QE=&4@86QL(&-O;F9I9&5N=&EA;"!F:6QE<R!Y;W4@:6QL96=A;&QY
M('-T;VQE+B!9;W4@=VEL;"!S=&]P(&AO=6YD:6YG(&UE+"!A;F0@>6]U('=I
M;&P@<W1O<"!H;W5N9&EN9R!T:&4@<&5O<&QE($D@;&]V92X@268@>6]U('=O
M=6QD(&QI:V4@=&\@:6YT97)R;V=A=&4@<V]M96]N92P@>6]U)VQL(&EN=&5R
M<F]G871E(&UY(&QA=WEE<BX@1&\@>6]U('5N9&5R<W1A;F0@=VAA="!))VT@
M<V%Y:6YG/PH*1DQ!2$525%D*2&%N9R!O;BP@1"=!9V]S=&EN;R$*"DQ!4E,*
M5&AI<R!I;G1E<G9I97<@:&%S('1E<FUI;F%T960@870@,3`Z-#D@86T@;VX@
M=&AE+BXN"@I!(&1O;W(@;W!E;G,N"@I,05)3("A#3TY4)T0I"BXN+C$W=&@@
C;V8@1F5B<G5A<GD@,C`P.2X*"E)E8V]R9&EN9R!E;F1S+@HI
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/case/transcript.textbundle/secure-transcript.fountain'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/case/transcript.textbundle/secure-transcript.fountain failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/case/transcript.textbundle/secure-transcript.fountain': 'MD5 check failed'
       ) << \SHAR_EOF
c7d546b9c200c8c476d78449b62837fd  USB Flash Drive/.private/case/transcript.textbundle/secure-transcript.fountain
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/case/transcript.textbundle/secure-transcript.fountain'` -ne 7595 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/case/transcript.textbundle/secure-transcript.fountain' is not 7595"
  fi
fi
# ============= USB Flash Drive/.private/case/transcript.textbundle/secure-info.json ==============
if test ! -d 'USB Flash Drive/.private/case/transcript.textbundle'; then
  mkdir 'USB Flash Drive/.private/case/transcript.textbundle' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/case/transcript.textbundle/secure-info.json'
then
${echo} "x - SKIPPING USB Flash Drive/.private/case/transcript.textbundle/secure-info.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/case/transcript.textbundle/secure-info.json
M>PH@(")V97)S:6]N(CH@,BP*("`B='EP92(Z(")C;VTN<75O=&5U;G%U;W1E
M87!P<RYF;W5N=&%I;B(L"B`@(F-O;2YQ=6]T975N<75O=&5A<'!S+FAI9VAL
M86YD,B(Z('L*("`@(")S:&]W4WEN;W!S97,B.B!F86QS92P*("`@(")C=7)R
M96YT5&%B26YD97@B.B`P+`H@("`@(G1E;7!L871E3F%M92(Z(")4<F5A=&UE
M;G0B+`H@("`@(G!R:6YT4&%R86=R87!H3G5M8F5R<R(Z(&9A;'-E"B`@?2P*
7("`B=')A;G-I96YT(CH@9F%L<V4*?0IH
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/case/transcript.textbundle/secure-info.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/case/transcript.textbundle/secure-info.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/case/transcript.textbundle/secure-info.json': 'MD5 check failed'
       ) << \SHAR_EOF
ad6206543c18a0b99689d21c3c21329c  USB Flash Drive/.private/case/transcript.textbundle/secure-info.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/case/transcript.textbundle/secure-info.json'` -ne 248 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/case/transcript.textbundle/secure-info.json' is not 248"
  fi
fi
# ============= USB Flash Drive/.private/case/transcript.textbundle/navigatorFilters.json ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/case/transcript.textbundle/navigatorFilters.json'
then
${echo} "x - SKIPPING USB Flash Drive/.private/case/transcript.textbundle/navigatorFilters.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/case/transcript.textbundle/navigatorFilters.json
M>R)I;6%G97,B.G1R=64L(FEN8VQU9&5D1FEL97,B.G1R=64L(G)E9F5R96YC
M94QI;FMS(CIT<G5E+")S96-T:6]N2&5A9&5R<R(Z=')U92PB;F]T97,B.G1R
M=64L(FQI;FMS(CIT<G5E+")S8V5N94AE861E<G,B.G1R=64L(G-Y;F]P<V5S
((CIT<G5E?0IS
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/case/transcript.textbundle/navigatorFilters.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/case/transcript.textbundle/navigatorFilters.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/case/transcript.textbundle/navigatorFilters.json': 'MD5 check failed'
       ) << \SHAR_EOF
ae39d63e761b4b5832d161ab26b9494d  USB Flash Drive/.private/case/transcript.textbundle/navigatorFilters.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/case/transcript.textbundle/navigatorFilters.json'` -ne 143 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/case/transcript.textbundle/navigatorFilters.json' is not 143"
  fi
fi
# ============= USB Flash Drive/.private/case/secure-Journal Entry Ruska Keating.txt ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/.private/case/secure-Journal Entry Ruska Keating.txt'
then
${echo} "x - SKIPPING USB Flash Drive/.private/case/secure-Journal Entry Ruska Keating.txt (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.private/case/secure-Journal Entry Ruska Keating.txt
M1&EG:71I<V5D(&9R;VT@:&%N9'=R:71I;F<@;VX@030@;&EN960@<&%P97(N
M($]R:6=I;F%L('-C86YS(&%V86EL86)L92!I;B!A<F-H:79E+@I086=E(&9O
M=6YD(&EN('1H92!P;W-S97-S:6]N(&]F(%)U<VMA($ME871I;F<L(&-O;&QE
M8W1E9"!I;G1O(&5V:61E;F-E(&)Y($1)($9L86AE<G1Y(')E9V%R9&EN9R!E
M;6)E>GIL96UE;G0@8V%S92!#,S@Q+@I086=E('1E>'0@9F]L;&]W<RX*"@I.
M;W1E(&9O<B!P;W-T97)I='DL($D@<'5T(&%L;"!T:&4@=6YF:6QE9"!C;&EE
M;G0@<F5P;W)T<R!A=V%Y(')A=&AE<B!T:&%N(&QE="!T:&5M('-T87D@;VX@
M=&AE(&EN8F]X(&1E<VL@9F]R979E<BX@5&AE<F4@=V5R92!A8F]U="!T=V5N
M='DL(&%N9"!T:&5Y('=E<F4@86QR96%D>2!A;'!H86)E=&EC86PN($EN86YE
M(&%S(&ET(&ES('1O(')E8V]R9"!W:&5R92!)(&UO=F5D(&$@<W1A8VL@;V8@
M<&%P97)S+"!I="=S(&$@=V%Y(&9O<B!M92!T;R!S=&%Y(&EN(&-O;G1R;VP@
M;V8@979E<GET:&EN9RX@36]S="!O9B!I="!W96YT(&EN=&\@34E30RX@270G
M<R!N;W0@:&]W('EO=2!W;W5L9"!H879E(&1O;F4@:70L(&)U="!T:&%T('=A
M<R!Y;W5R(&MN86-K+"!N;W0@;6EN92X@270G<R!H87)D('1O(&1O(&%N>71H
M:6YG(')I9VAT('=I=&@@=&AE('-T871E(&ET)W,@86QL(&EN+B!)('1R:65D
M('1O(&-R;W-S(&]U="!Y;W5R(&YA;64@;VX@=&AE(&1O;W(@8G5T($D@8V]U
M;&1N)W0@9&\@=&AA="X*5&AE>2!S87D@:70@=V%S('EO=7(@:&5A<G0N($D@
M9F5L="!I="!O;F4@=&EM92!I;B!Y;W5R(')I8F-A9V4@8F5A=&EN9R!A9V%I
M;G-T(&UY('!A;&TN($D@<F5M96UB97(@=&AE(&)I<F1S;VYG('!A:6YF=6QL
M>2!I;B!T:&4@=')E97,@86YD('1H92!B:7)D(&9L=71T97(@9F5E;&EN9R!T
M:&5R92X@5&AI<R!W87-N)W0@<F5C96YT+B!)(&-O=6QD;B=T('-E92!W:&5T
M:&5R('EO=2!W97)E(&)R96%T:&EN9RX@270@;75S="!H879E(&)E96X@;&%T
M92!*=6YE+"!F<F]M('1H92!S:&%R<&YE<W,@;V8@<VMY(&)L=64@:6X@=&AE
M(&QI9VAT+B!9;W4@=V5R92!L>6EN9R!O;B!T:&4@9W)O=6YD($D@=&AI;FL@
M869T97(@8VQI;6)I;F<@;W5T('1H92!W:6YD;W<@;VX@=&AE('-O=71H('-I
M9&4@;V8@=V]R:RP@<&%G97,@:'5R;&5D(&5V97)Y=VAE<F4@:6YS:61E(&]F
M(&-O=7)S92X@66]U(&AA9"!S:&EM;6EE9"!O=F5R('1H92!L961G92P@86YD
M(&%S('1H92!R;V]M(&EN<VED92!W96YT(&1A<FL@86YD('1H92!P87!E<G,@
M;&%N9&5D+"!Y;W4@;75S="!H879E('-L:7!P960N(")$86YG97(A(B!A;GEO
M;F4@<VAO=71E9"P@;F]T('1H870@86YY;VYE(&QI<W1E;F5D+B!3;R!)('1O
M;VL@82!S=&5P('1O('EO=2P@86YD(&%N;W1H97(L(&)E8V%U<V4@:&]W(&-O
M=6QD($D@:V5E<"!M>2!D:7-T86YC92!F<F]M(&$@;F]W(&1A<FL@<F]O;2!A
M;F0@82!F86QL:6YG(&9R:65N9#\@268@>6]U(&-O=6QD('-E92!M>2!F86-E
M+"!Y;W5R(&5Y97,@=V5R92!E>'!E<G0@;&EA<G,[('1H92!P=7!I;',@=V5N
M="!B:6<@86YD('-M86QL(&]V97(@86YD(&]V97(@;&EK92!T:&4@;75S8VQE
M(&EN('EO=7(@8VAE<W0N($EN(&UY(&UI;F0@:70@=V%S('-O;65T:&EN9R!L
M:6ME(&1R96%D($D@9W5E<W,L(&]R('=H96X@82!P=7!P>2=S(&UO=&AE<B!L
M:69T<R!I="!B>2!I="=S(&YE8VL@<V-R=69F(&%N9"!A;&P@;7D@<VMI;B!G
M;V5S('1A=70N($D@8V]U;&0@;F5V97(@<F5A;&QY('!U="!I="!I;B!W;W)D
M<R!B=70@22!K;F]W($D@<F5M96UB97(@:70@:G5S="!T:&4@<V%M92X@5&AE
M('!U9R!S:VEN('1A=70@:7,@;F]T(&$@;65M;W)Y(&QI:V4@>6]U<B!B96%T
M:6YG(&AE87)T+"!N;W0@9F%R(&]F9BP@8F5C875S92!)(&9E96P@:70@;F]W
M(&%L;"!O=F5R(&UE+B!)="=S(&$@9F%C="!O9B!N;W0@:VYO=VEN9R!I9B!)
M)VQL('-E92!Y;W4@86=A:6XN"E=O<FL@=V%S('%U:65T:6YG('1H86YK($-H
M<FES="!B=70@<V\@=V5R92!Y;W4@22!W;W)R:65D+B!9;W4@=V5R92!A;&UO
M<W0@<VEL96YT(&]N('1H92!G<F%S<RP@86QL(&)I<F1S;VYG(&%B;W9E+B!)
M(&-O=6YT960@:&5A<G1B96%T<R!B=70@22!W87-N)W0@<W5R92!W:&]S92!T
M:&5Y(&)E;&]N9V5D('1O+B!)+"!I="!C<F]S<V5D(&UY(&UI;F0@;6EG:'0@
M8F4@<F5P96%T:6YG(&UY(&UI<W1A:V4@=VAE;B!W:71H('EO=2P@;V8@9FEL
M;&EN9R!I;B!A('-I;&5N8V4@=VET:"!M>7-E;&8N($EN(&UY('=R;VYG(&UI
M;F0@>6]U('=E<F4@;'EI;F<@9&5A9"!R:6=H="!T:&5R92P@:VEL;&5D(&)Y
M(&$@<W5D9&5N('-L:7`@869T97(@<W5R=FEV:6YG(&$@5&5M<&5S="X@22!A
M<V-R:6)E9"!W:&%T(&-O=6QD(&AA=F4@8F5E;B!M>2!O=VX@:&5A<G1B96%T
M<R!T;R!Y;W5R('!U;'-E+"!B96-A=7-E($D@8V%N)W0@8F5A<B!T:&5R92!T
M;R!B92!N;W1H:6YG+@I.;W<@=&AE<F4G<R!N;W1H:6YG('1O(&-O;F9U<V4N
M($D@:VYO=R!Y;W5R(&AE87)T(&ES('-I;&5N="!F<F]M('=H870@=&AE>2!T
M;VQD(&UE+"!A;F0@>65T(&AE<F4@22!A;2P@=')Y:6YG(&1E<W!E<F%T96QY
M('1O(&9I;&P@:6X@=&AE(&5M<'1Y(&%I<B!W:71H(&$@;65M;W)Y(&]F('EO
M=2X@5&AA="!T:6UE+"!Y;W4@8V]U9VAE9"X@4V%T('5P('-T<F%I;F5D(&%G
M86EN<W0@;7D@:&%N9"!P<F5S<VEN9R!A9V%I;G-T('EO=7(@8VAE<W0N($EN
M('1H92!M96UO<GD@>6]U(&AA=F5N)W0@9V]N92X@66]U(&AA=F5N)W0@9V]N
M92X*1&]C=6UE;G1S('-T<F5A;2!I;B!U;F5N9&EN9VQY+"!S;VUE(&]F('1H
M96T@87-S:6=N960@=&\@>6]U<B!N86UE(&]N('1H92!P86=E+B!)9B!Y;W4@
M=V5R92!S=&EL;"!H97)E('EO=2=D(&MN;W<@=VAA="!D;R!W:71H('1H96T@
M86QL+B!)="!W87,@9&]W;B!T;R!A('-C:65N8V4@=VET:"!Y;W4L(&%N9"!W
M:71H(&%L;"!T:&4@9&%N9V5R<R!T:&%T('-C:65N8V4@:6UP;&EE<RX@66]U
M(&-A=7-E9"!Y;W5R(&]W;B!L:71T;&4@4W1O<FT@;V8@<&%P97)S+"!B=70@
M=&AE>2!A;'=A>7,@<V5T=&QE9"!I;B!T:&4@<FEG:'0@<&QA8V4N($ET)W,@
M870@=&AE('!O:6YT('=H97)E($D@8V%N)W0@<F5A9"!O;F4@;V8@=&AE;2!W
M:71H;W5T(')E;65M8F5R:6YG('EO=7(@<&%T:65N="!S;6EL92!A="!T:&4@
M861M:6X@9&5S:RX@22!D;VXG="!L96%V92!T:&5M('=H97)E('1H97D@8F5L
M;VYG+B!);G1O($U)4T,L(&%L;"!O9B!T:&5M+B!#871E9V]R:7II;F<@82!2
M879E;B!R97!O<G0@<FES:W,@8V]N9G)O;G1I;F<@>6]U+@I997-T97)D87D@
M22!W86QK960@:6YT;R!W;W)K(&%N9"!C;VQL87!S960@:6YT;R!M>2!C:&%I
M<BX@270@9F5L="!L:6ME('5N=&EL($D@<V%T(&1O=VX@>6]U('=E<F4@86)O
M=F4@;64@:&]L9&EN9R!M92!S=&%N9&EN9RP@<W5S<&5N9&EN9R!M>2!F<F%M
M92!B>2!M>2!N96-K(&%N9"!S:VEN+B!,:6ME(&UY('-K96QE=&]N('=A<R!W
M;W)T:"!N;W1H:6YG(&%N>6UO<F4@86YD($D@8V%N)W0@<W1A;F0@=7`@86QO
M;F4N($%T('-O;64@<&]I;G0@22!H96%R9"!A('!A<&5R(&9L=71T97(@86YD
M($D@<F5A;&ES960@22!W87,@;VYL>2!S=&%R:6YG('1H<F]U9V@@=&AA="!S
M;W5T:&5R;B!W:6YD;W<@870@8FQU92X@22!B;&EN:V5D(&%N9"!W96YT(&AO
M;64N($DG;2!G;VEN9R!T;R!T96QL(&UY<V5L9B!T:&%T('=E('=E<F4@<V5P
M87)A=&4@<&5O<&QE('=H;R!C86X@<W5R=FEV92!W:71H;W5T('1H92!O=&AE
M<BP@=&AA="!Y;W5R(&AE87)T('=O=6QD(&AA=F4@:V5P="!O;B!B96%T:6YG
M(&5V96X@=VET:&]U="!T:&4@<')E<W-U<F4@;V8@;7D@<&%L;2!O;B!Y;W5R
M(&-H97-T+B!->2!H96%R="!I<VXG="!W96%K+B!->2!E>65S(&%R92!U;F-L
M;W5D960N(%1H92!B:7)D<R!A<F4@8VAI<G!I;F<@=&]D87DN($D@:&%V96XG
M="!L96%R;F5D(&AO=R!T;R!S:&%R92!T:&5I<B!G;&5E('=I=&AO=70@>6]U
M(&%N>6UO<F4N($%T('=O<FL@2VEM('=A<R!P;&%Y:6YG('9I;VQI;BP@86YD
M(&]F(&-O=7)S92!Y;W4@86YD($D@:VYO=R!H;W<@;75C:"!)(&AA=&4@=&AA
M="!L=6UP(&]F('=O;V0L(&%S('=E;&P@87,@=&AE('9I;VQI;BX@2VEM('!L
M87ES(&QI:V4@=&AE('-O;F<@:7,@;6ES<VEN9R!S;VUE('9I=&%L('1H:6YG
M+B!"=70@=&]D87D@<V]M971H:6YG(&ES(')E86QL>2!G;VYE.B!Y;W4N($D@
M<')E=&5N9&5D('1O(&EG;F]R92!+:6T@87,@86QW87ES(&)U="!)('=A<R!C
M<GEI;F<@22!T:&EN:RX@5&AE('9I=&%L('1H:6YG('EO=2=R92!M:7-S:6YG
M+"!T:&5Y('-A>2!I="!W87,@>6]U<B!H96%R="P@8G5T(&UA>6)E('EO=7(@
M97EE<R!R96%L;'D@9&ED(&ET+B!,871E($IU;F4L(&EF('EO=2!C;W5L9&XG
M="!F;V-U<R!O;B!M>2!F86-E(&%B;W9E('EO=7)S(&EN('1H870@;6]M96YT
M+"!W:&%T('=E<F4@>6]U(&5V96X@<V5E:6YG/R!!('!I;G!R:6-K(&UO=FEN
M9R!T;W=A<F1S(&%N9"!A=V%Y+"!P=7!I;',@<VUA;&QE<BP@8FEG9V5R(&%N
M9"!S;6%L;"!A9V%I;BX@22!D;VXG="!K;F]W(&AO=R!T;R!R97!O<G0@;W5R
M('-T;W)Y(&5X8V5P="!I;B!M971A<&AO<G,N"E1H870G<R!N;W0@=')U92X@
M22!K;F]W(&5X86-T;'D@=VAA="!T;R!S87DL(&ET(&)U<FYS(&]N(&UY('1O
M;F=U92P@8G5T('1H92!O;FQY('-E;G1E;F-E($D@8V%N(&9A8V4@;7ES96QF
M('1O('=R:71E(&ES('1H97-E(&]N97,@=VET:"!H86QF('1R=71H<R!A;F0@
M86YA;&]G:65S+B!9;W4@;F5V97(@9F%L=&5R960@=VAA="!T;R!S87DL(&YO
M(&UA='1E<B!H;W<@;F5A<B!D96%T:"!Y;W4@;&]O:V5D+B!$;R!Y;W4@<F5M
M96UB97(@:70@=&]O+"!H;W<@>6]U('-A="!U<"P@8FQI;FME9"!A="!M92P@
M86YD('1O;&0@;64@>6]U('=E<F5N)W0@9V]I;F<@86YY=VAE<F4L(&YO="!E
M=F5R(&%N>7=H97)E(&%W87D_($D@8F5L:65V960@>6]U+@I%>'!E<G0@;&EA
M<B!T:&5N+"!B96-A=7-E(&YO=R!Y;W4G<F4@9V]N92X@5&AE('=O<G-T('!A
M<G0@:7,L(&EN(&UY(&AE87)T(&]F(&AE87)T<R!)('-T:6QL(&)E;&EE=F4@
M>6]U+B!))VT@<W1I;&P@=V]N9&5R:6YG(&%T('=O<FL@=VAE;B!T:&4@=&5M
M<&5S="!W:6QL(&1I92!D;W=N(&%N9"!L:69E('=I;&P@:V5E<"!G;VEN9RX@
M22=M('-T:6QL('=A:71I;F<@9F]R('EO=2!T;R!C;VUE(&)A8VLL('-I="!A
M="!T:&%T(&%D;6EN(&1E<VLN($D@:6UA9VEN92!Y;W4@<FEG:'0@:6X@9G)O
M;G0@;V8@;64L('1H96X@;W!E;B!M>2!E>65S('1O(')E86QI>F4@:G5S="!H
M;W<@9F%R(&%W87D@>6]U(&%R92X@22!W86ET(&9O<B!T:&5M('1O(&%D:G5S
M="!T;R!A('!I;G!R:6-K(&EN('1H92!D:7-T86YC92!B=70L(&5V97)Y('1I
M;64@22!B;&EN:R!T:&5Y(&-L;W-E(&%N9"!Y;W4G<F4@8VQO<V4@=&]O+@I)
M('1H:6YK($D@;&]V960@>6]U+"!F;W(@870@;&5A<W0@82!B<FEE9B!M;VUE
M;G0N(%1H<F5E(&)R:65F(&UO;65N=',N($UM+"!Y;W4@:VYO=R!T:&4@=&AI
M<F0N(%1H92!S96-O;F0@;VYE('=A<R!W:&5N('EO=2!T;VQD(&UE('=H:7-P
M97)I;F<@86)O=70@>6]U<B!H;VUE('5P($YO<G1H+"!H;W<@=&AE(&UO=6YT
M86EN<R!R96%C:"!U<"!A="!T:&4@<VMY+"!A;F0@=&AE(')E9"!B;'5S:"!O
M9B!D87=N(&)L86YK971S('EO=7(@<&%T:'=A>2P@86YD('1H92!C<FEM97,@
M>6]U('=O=6QD(&YE=F5R('%U97-T:6]N('1O('-E92!Y;W5R(&9A;6EL>2!S
M869E('1H97)E+@I4:&4@9FER<W0@=&EM92!)(&QO=F5D('EO=2P@>6]U('1O
M;&0@;64@>6]U('=O=6QD(&YE=F5R(&QE879E+B!.;W0@86YY=VAE<F4@87=A
M>2X@3F\@;6%T=&5R(&AO=R!H87)D($D@=')Y('1O('1R87`@=&AA="!M;VUE
M;G0L('1H97)E)W,@;F]T:&EN9R!L969T(&]F('EO=2!T;R!L;W9E+B!4:&5R
M92=S(&]N;'D@>6]U<B!F<F5N>FEE9"!P=7!I;',@86YD(&)O=&@@;W5R('!A
M;FEC:V5D(&AE87)T<RX@22=V92!F:6=U<F5D(&]U="!W:&EC:"!W;W)D('1O
M('5S92!F;W(@=&AA="!F965L:6YG(&EN(&UY(&=U="X@270G<R!F:7-S:6]N
M+B!4:&4@:6YD:79I<VEB;&4@871O;2!O9B!Y;W4@86YD($DL($DG;2!T<GEI
M;F<@;7D@9&%M;F5D97-T('1O(&AO;&0@;VX@=&\@:70L(&)U="!F;W)C97,@
M;V8@=&AE('5N:79E<G-E('1E87(@=&AA="!I;G1O('1O;RP@=&]O+"!M86YY
M('!I96-E<RX@5V4@=V5R92!C;&5F="!A="!T:&4@=F5N=')I8VQE+B!)="!B
M=7)N<R!T<GEI;F<@=&\@:&]L9"!P87)T:6-L97,@<W1A8FQE(&EN('-U8V@@
M82!C:&%O=&EC('=O<FQD+B!)(&ME97`@<V5A<F-H:6YG(&9O<B!O<F1E<B!I
M;B!T:&4@96YT<F]P>2X@365A;FEN9R!T;R!M>2!M861N97-S+B!)(&%S:RX@
M5VAY(&AA=F4@>6]U(&1I960L(&%N9"!W:&5N(&%R92!Y;W4@8V]M:6YG(&)A
M8VL_"DDG;2!R96%D>2!T;R!S=&%R="!A(&9I9VAT(&%T('EO=7(@9G5N97)A
M;"X@02!H96%R="!I<R!B87)E;'D@;VYE(&-L96YC:&5D(&9I<W0@:6X@<VEZ
M92X@27,@=&AI<R!W:&%T('1H97D@;65A;B!B>2!M=71U86QL>2!A<W-U<F5D
M(&1E<W1R=6-T:6]N/R!#<F5M871I;VX_(%=H870G<R!S<&5N="!I<R!S<&5N
M="X@5&AE(&]N;'D@=&AI;F<@;&5F="!O9B!M92!I<R!T;R!D:7-P;W-E(&]F
M('1H92!F86QL;W5T+@I7:&5N('EO=2!F:7)S="!F96QL(&9R;VT@=&AA="!4
H96UP97-T+"!)('-H;W5L9"!H879E(&ME<'0@;7D@9&ES=&%N8V4N"FAA
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.private/case/secure-Journal Entry Ruska Keating.txt'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.private/case/secure-Journal Entry Ruska Keating.txt failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.private/case/secure-Journal Entry Ruska Keating.txt': 'MD5 check failed'
       ) << \SHAR_EOF
2048a8d08753eb1e4065800b63db6e29  USB Flash Drive/.private/case/secure-Journal Entry Ruska Keating.txt
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.private/case/secure-Journal Entry Ruska Keating.txt'` -ne 6700 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.private/case/secure-Journal Entry Ruska Keating.txt' is not 6700"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/B942-5464-F015@smtp.mlmsolutions.com.eml ==============
if test ! -d 'USB Flash Drive/email'; then
  mkdir 'USB Flash Drive/email' || exit 1
fi
if test ! -d 'USB Flash Drive/email/k.patel@mlmsolutions.com'; then
  mkdir 'USB Flash Drive/email/k.patel@mlmsolutions.com' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/B942-5464-F015@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/B942-5464-F015@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/B942-5464-F015@smtp.mlmsolutions.com.eml
M1G)O;3H@4G5S:V$@2V5A=&EN9R`\<BYK96%T:6YG0&UL;7-O;'5T:6]N<RYC
M;VT^"E1O.B!+:7)A;B!0871E;"`\:RYP871E;$!M;&US;VQU=&EO;G,N8V]M
M/@I3=6)J96-T.B!3:&EF=&EN9R!F965T"D1A=&4Z(%1H=2P@,2!*86X@,3DW
M,"`P,#HP,#HP,"`M,#`P,`I-97-S86=E+4E$.B`\0CDT,BTU-#8T+48P,35`
M<VUT<"YM;&US;VQU=&EO;G,N8V]M/@H*2&5L;&\@2VER86XL"E1H92!W;W)K
M(&ES('1H92!S86UE(&)U="!)(&%M(&YO="!T:&4@<V%M92X*4F%V96X@=V%S
M(&$@9G)I96YD+B!!(&9R:65N9"!T;R!A;&PL(&)U="!A;&P@=&AE('-A;64L
M(%)A=F5N('=A<R!A(&9R:65N9"X*22!F965L(&1E97!L>2!M:7-S:6YG+B!)
D(&YE960@<V]M92!T:6UE+@I"97-T('=I<VAE<RP*4G5S:V$*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/B942-5464-F015@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/B942-5464-F015@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/B942-5464-F015@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
223acfcfa072fc90d018b3be1075504f  USB Flash Drive/email/k.patel@mlmsolutions.com/B942-5464-F015@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/B942-5464-F015@smtp.mlmsolutions.com.eml'` -ne 396 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/B942-5464-F015@smtp.mlmsolutions.com.eml' is not 396"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/C3D0-4907-F5CC@smtp.mlmsolutions.com.eml ==============
if test ! -d 'USB Flash Drive/email/k.patel@mlmsolutions.com'; then
  mkdir 'USB Flash Drive/email/k.patel@mlmsolutions.com' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/C3D0-4907-F5CC@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/C3D0-4907-F5CC@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/C3D0-4907-F5CC@smtp.mlmsolutions.com.eml
M1G)O;3H@4&%R:7,@36]N=&9E<G)A="`\<"YM;VYT9F5R<F%T0&UL;7-O;'5T
M:6]N<RYC;VT^"E1O.B!+:7)A;B`\:RYP871E;$!M;&US;VQU=&EO;G,N8V]M
M/@I3=6)J96-T.B!213H@97AP96YS97,*1&%T93H@5&AU+"`Q($IA;B`Q.3<P
M(#`P.C`P.C`P("TP,#`P"DEN+5)E<&QY+51O.B`\0S!&0BTS0D5!+41$,$)`
M<VUT<"YM;&US;VQU=&EO;G,N8V]M/@I2969E<F5N8V5S.B`\,CA#-RU"1#(Y
M+4(S0D5`<VUT<"YM;&US;VQU=&EO;G,N8V]M/B`\,S4X,"TR,S,V+3`X,39`
M<VUT<"YM;&US;VQU=&EO;G,N8V]M/B`\0S!&0BTS0D5!+41$,$)`<VUT<"YM
M;&US;VQU=&EO;G,N8V]M/@I-97-S86=E+4E$.B`\0S-$,"TT.3`W+48U0T-`
M<VUT<"YM;&US;VQU=&EO;G,N8V]M/@H*1&5A<B!+:7)A;BP*"DEN(&UY(&QA
M<W0@96UA:6P@<V]M92!O9B!M>2!P:')A<VEN9R!C;W5L9"!H879E(&)E96X@
M8V]N<W1R=65D(&%S(#QI/G-T86YD;V9F:7-H/"]I/B!O<B`\:3YU;FAA<'!Y
M/"]I/BX@22!O;FQY(&UE86YT('1O('-U9V=E<W0@=&AA="!S;VUE(&1E8VES
M:6]N<R!H879E(&QE860@=7,@=&\@=&AE('-I='5A=&EO;B!W92!A<F4@:6XN
M(%-C:65N8V4@:7,@9&%N9V5R;W5S+B!792=L;"!T86QK(&QA=&5R(&%B;W5T
M(&UA;F1A=&]R>2!S96-U<FET>2!P<F]T;V-O;"X*"E-E92!Y;W4@<V]O;BP*
&4&%R:7,*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/C3D0-4907-F5CC@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/C3D0-4907-F5CC@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/C3D0-4907-F5CC@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
a19b845ebd3f803aeeabdb65bb87c910  USB Flash Drive/email/k.patel@mlmsolutions.com/C3D0-4907-F5CC@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/C3D0-4907-F5CC@smtp.mlmsolutions.com.eml'` -ne 681 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/C3D0-4907-F5CC@smtp.mlmsolutions.com.eml' is not 681"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/3580-2336-0816@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/3580-2336-0816@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/3580-2336-0816@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/3580-2336-0816@smtp.mlmsolutions.com.eml
M1G)O;3H@2VER86X@4&%T96P@/&LN<&%T96Q`;6QM<V]L=71I;VYS+F-O;3X*
M5&\Z(%!A<FES($UO;G1F97)R870@/'`N;6]N=&9E<G)A=$!M;&US;VQU=&EO
M;G,N8V]M/@I3=6)J96-T.B!213H@97AP96YS97,*1&%T93H@5&AU+"`Q($IA
M;B`Q.3<P(#`P.C`P.C`P("TP,#`P"DEN+5)E<&QY+51O.B`\,CA#-RU"1#(Y
M+4(S0D5`<VUT<"YM;&US;VQU=&EO;G,N8V]M/@I2969E<F5N8V5S.B`\,CA#
M-RU"1#(Y+4(S0D5`<VUT<"YM;&US;VQU=&EO;G,N8V]M/@I-97-S86=E+4E$
M.B`\,S4X,"TR,S,V+3`X,39`<VUT<"YM;&US;VQU=&EO;G,N8V]M/@H*9&]N
M)W0@=V]R<GD@86)O=70@:70L($D@9FEL;&5D('1H96T@:6X@9F]R('EO=0IM
M87EB92!N97AT('1I;64@>6]U(&-O=6QD(&9I;&4@=&AE;2!A<R!Y;W4@9V\L
A(&EN<W1E860L('1O('-M;V]T:"!T:&ES('!R;V-E<W,*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/3580-2336-0816@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/3580-2336-0816@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/3580-2336-0816@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
93187c80c2552869d9e928f861a0155a  USB Flash Drive/email/k.patel@mlmsolutions.com/3580-2336-0816@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/3580-2336-0816@smtp.mlmsolutions.com.eml'` -ne 438 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/3580-2336-0816@smtp.mlmsolutions.com.eml' is not 438"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/C0FB-3BEA-DD0B@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/C0FB-3BEA-DD0B@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/C0FB-3BEA-DD0B@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/C0FB-3BEA-DD0B@smtp.mlmsolutions.com.eml
M1G)O;3H@4&%R:7,@36]N=&9E<G)A="`\<"YM;VYT9F5R<F%T0&UL;7-O;'5T
M:6]N<RYC;VT^"E1O.B!+:7)A;B`\:RYP871E;$!M;&US;VQU=&EO;G,N8V]M
M/@I3=6)J96-T.B!213H@97AP96YS97,*1&%T93H@5&AU+"`Q($IA;B`Q.3<P
M(#`P.C`P.C`P("TP,#`P"DEN+5)E<&QY+51O.B`\,S4X,"TR,S,V+3`X,39`
M<VUT<"YM;&US;VQU=&EO;G,N8V]M/@I2969E<F5N8V5S.B`\,CA#-RU"1#(Y
M+4(S0D5`<VUT<"YM;&US;VQU=&EO;G,N8V]M/B`\,S4X,"TR,S,V+3`X,39`
M<VUT<"YM;&US;VQU=&EO;G,N8V]M/@I-97-S86=E+4E$.B`\0S!&0BTS0D5!
M+41$,$)`<VUT<"YM;&US;VQU=&EO;G,N8V]M/@H*1&5A<B!+:7)A;BP*"DET
M('-E96US(&QI:V5L>2!T:&%T($D@=V]U;&0@8F4@86)L92!T;R!F:6QL(&%N
M9"!F:6QE('EO=7(@97AP96YS92!S:&5E=',@:68@22!H860@/&D^86YY/"]I
M/B!M;VUE;G0@=&\@<W!A<F4N($D@=V]N9&5R+B`\:3Y7:&%T(&%C=&EO;G,\
M+VD^(&UI9VAT('=E(&%L;"!B92!A8FQE('1O(&1O+"!T;R!H96QP(&UE('=I
M=&@@=&AA=#\@5&\@:&5L<"#B@)QS;6]O=&@@<')O8V5S<V5SXH"=(&%S('EO
M=2!S87D_($D@9&]N)W0@:VYO=RP@<&5R:&%P<R!W92!C;W5L9"`\8CYR969R
M86EN/"]B/B!F<F]M(&-O;7!R;VUI<VEN9R!T:&4@<&AY<VEC86P@<V5C=7)I
M='D@;V8@;W5R(&-O;7!A;GD@8GD@;&5A=FEN9R!T:&4@8G5I;&1I;F<@=6YA
M='1E;F1E9"!A;F0@=6YL;V-K960N(%=O=6QD('1H870@8F4@82!P;W-S:6)I
M;&ET>2P@;W(@87)E('EO=2!G;VEN9R!T;R!K965P(&QE='1I;F<@;6%L:6=N
M86YT('!R97-E;F-E<R!T<F%I<'-E('1H<F]U9V@@;W5R('=O<FL@:6X@979E
M<GD@<&]S<VEB;&4@=V]R;&0A($D@9&]N)W0@:VYO=R!I9B!Y;W4@<F5A;&ES
M92`H:6X@<W!I=&4@;V8@;7D@<F5M:6YD97)S*2!T:&%T('EO=7(@86-T:6]N
M<R!H879E(&-O;G-E<75E;F-E<RX@22!D;VXG="!M:6YD+"!O;FQY('=H96X@
M=&AA="!C;VYS97%U96YC92!I<R!A(&)R96%K:6X@=&AA="!D97-T<F]Y<R!S
M;VUE(#0P,#`@/&D^=V]R=&@@;V8@<W5P<&QI97,\+VD^+B`\8CY93U52/"]B
M/B!A8W1I;VYS+B!3:&ET+"!T:&5R92!A<F4@>6]U<B!E>'!E;G-E<RX@22=M
M(&AE<F4@9G)A;G1I8R!W:71H('1H92!R97!A:7)S+"!D86UN(&ET+"!)(&1O
M;B=T(&AA=F4@=&EM92!F;W(@>6]U+B!&;W(@>6]U<B!E>'!E;G-E<RX*4&QU
M<R!W92!H879E(&YO(&%D;6EN:7-T<F%T;W(N($D@:VYO=R!)('-H;W5L9&XG
M="!S<&5A:R!I;&P@;V8@=&AE(&1E860L(&)U="!I="!W87,@1E5#2TE.1R!I
M;F-O;G-I9&5R871E(&9O<B!-87)S:6-K('1O(&ME96P@;W9E<B!N;W<N($-A
M;B!Y;W4@8W5T(&UE('-O;64@9G5C:VEN9R!S;&%C:S\*"D-O<F1I86QL>2P*
&4&%R:7,*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/C0FB-3BEA-DD0B@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/C0FB-3BEA-DD0B@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/C0FB-3BEA-DD0B@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
ba9e183bee0802bf1632f3085c975725  USB Flash Drive/email/k.patel@mlmsolutions.com/C0FB-3BEA-DD0B@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/C0FB-3BEA-DD0B@smtp.mlmsolutions.com.eml'` -ne 1401 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/C0FB-3BEA-DD0B@smtp.mlmsolutions.com.eml' is not 1401"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/EEF6-A396-1A2E@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/EEF6-A396-1A2E@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/EEF6-A396-1A2E@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/EEF6-A396-1A2E@smtp.mlmsolutions.com.eml
M1G)O;3H@4&5Y=&]N(%`N(%-A;F-H97H@/'`N<V%N8VAE>D!M;&US;VQU=&EO
M;G,N8V]M/@I4;SH@2VER86X@4&%T96P@/&LN<&%T96Q`;6QM<V]L=71I;VYS
M+F-O;3X*4W5B:F5C=#H@4D4Z(%)A=F5N($UA<G-I8VL@<F5P;&%C96UE;G0*
M1&%T93H@5&AU+"`Q($IA;B`Q.3<P(#`P.C`P.C`P("TP,#`P"DEN+5)E<&QY
M+51O.B`\13%"1BU#1CA#+35$-C!`<VUT<"YM;&US;VQU=&EO;G,N8V]M/@I2
M969E<F5N8V5S.B`\13%"1BU#1CA#+35$-C!`<VUT<"YM;&US;VQU=&EO;G,N
M8V]M/@I-97-S86=E+4E$.B`\145&-BU!,SDV+3%!,D5`<VUT<"YM;&US;VQU
M=&EO;G,N8V]M/@H*<W5R90I)('1H:6YK(')U<VMA(&AA<R!W:&%T(&ET('1A
L:V5S+B!N;W0@<V%F9G)O;B!S:&%W('1H;W5G:"X*"G-O;65O;F4@96QS90IA
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/EEF6-A396-1A2E@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/EEF6-A396-1A2E@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/EEF6-A396-1A2E@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
6d7d8a281ccf3cc64f9bcce5820cfa91  USB Flash Drive/email/k.patel@mlmsolutions.com/EEF6-A396-1A2E@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/EEF6-A396-1A2E@smtp.mlmsolutions.com.eml'` -ne 404 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/EEF6-A396-1A2E@smtp.mlmsolutions.com.eml' is not 404"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/store.json ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/store.json'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/store.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/store.json
M>PH@(")I9',B.B!;"B`@("`B,CA#-RU"1#(Y+4(S0D5`<VUT<"YM;&US;VQU
M=&EO;G,N8V]M(BP*("`@("(S-3@P+3(S,S8M,#@Q-D!S;71P+FUL;7-O;'5T
M:6]N<RYC;VTB+`H@("`@(C0U.4,M-C(W0RTQ.3%"0'-M='`N;6QM<V]L=71I
M;VYS+F-O;2(L"B`@("`B-3!"-2TW,C%#+34W-S1`<VUT<"YM;&US;VQU=&EO
M;G,N8V]M(BP*("`@("(V,D%#+38Q13$M0S=%-T!S;71P+FUL;7-O;'5T:6]N
M<RYC;VTB+`H@("`@(CA$134M.#0U0RTW1#(R0'-M='`N;6QM<V]L=71I;VYS
M+F-O;2(L"B`@("`B03,Q12TU1CE%+3<T0S)`<VUT<"YM;&US;VQU=&EO;G,N
M8V]M(BP*("`@(")!,S-#+40T1D,M0D4U-T!S;71P+FUL;7-O;'5T:6]N<RYC
M;VTB+`H@("`@(D(Y-#(M-30V-"U&,#$U0'-M='`N;6QM<V]L=71I;VYS+F-O
M;2(L"B`@("`B0S!&0BTS0D5!+41$,$)`<VUT<"YM;&US;VQU=&EO;G,N8V]M
M(BP*("`@(")#,T0P+30Y,#<M1C5#0T!S;71P+FUL;7-O;'5T:6]N<RYC;VTB
M+`H@("`@(D0W0S4M.#(S02U!13DR0'-M='`N;6QM<V]L=71I;VYS+F-O;2(L
M"B`@("`B13%"1BU#1CA#+35$-C!`<VUT<"YM;&US;VQU=&EO;G,N8V]M(BP*
M("`@(")%148V+4$S.38M,4$R14!S;71P+FUL;7-O;'5T:6]N<RYC;VTB"B`@
472P*("`B9')A9G1S(CH@6UT*?0IS
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/store.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/store.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/store.json': 'MD5 check failed'
       ) << \SHAR_EOF
4a905632d38e522d156fd4fec5fd3240  USB Flash Drive/email/k.patel@mlmsolutions.com/store.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/store.json'` -ne 650 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/store.json' is not 650"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/62AC-61E1-C7E7@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/62AC-61E1-C7E7@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/62AC-61E1-C7E7@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/62AC-61E1-C7E7@smtp.mlmsolutions.com.eml
M1G)O;3H@0V5L97,@1"=!9V]S=&EN;R`\8RYD86=O<W1I;F]`;6QM<V]L=71I
M;VYS+F-O;3X*5&\Z($MI<F%N(%!A=&5L(#QK+G!A=&5L0&UL;7-O;'5T:6]N
M<RYC;VT^"E-U8FIE8W0Z(%)%.B!I;G9E<W1O<B!R96IE8W1I;VX@;&5T=&5R
M"D1A=&4Z(%1H=2P@,2!*86X@,3DW,"`P,#HP,#HP,"`M,#`P,`I);BU297!L
M>2U4;SH@/#4P0C4M-S(Q0RTU-S<T0'-M='`N;6QM<V]L=71I;VYS+F-O;3X*
M4F5F97)E;F-E<SH@/#4P0C4M-S(Q0RTU-S<T0'-M='`N;6QM<V]L=71I;VYS
M+F-O;3X*365S<V%G92U)1#H@/#8R04,M-C%%,2U#-T4W0'-M='`N;6QM<V]L
M=71I;VYS+F-O;3X*"GEA('EA+"!N;R!S=V5A="!P86PN($1O;B=T('=A;G0@
M<F5P96%T(&]F('1H92!F86-E(&EN8VED96YT(&1O('=E/R`[*0IG965Z('1H
M:7,@;VYE(&ES('=O<F1Y(2!I="=S(&QI:V4@;&%S="!T:6UE+B!W;W5L9"!I
M="`\:3YK:6QL/"]I/B!Y;W4@=&\@=7-E('-O;64@=7!P97)C87-E(&QE=&5R
=<S\@071T86-H960@<V]M92!E9&ET<PH*/#,@0PH@
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/62AC-61E1-C7E7@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/62AC-61E1-C7E7@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/62AC-61E1-C7E7@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
c838fccc3fe6ca78ac0b1fe195c41ec2  USB Flash Drive/email/k.patel@mlmsolutions.com/62AC-61E1-C7E7@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/62AC-61E1-C7E7@smtp.mlmsolutions.com.eml'` -ne 524 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/62AC-61E1-C7E7@smtp.mlmsolutions.com.eml' is not 524"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/28C7-BD29-B3BE@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/28C7-BD29-B3BE@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/28C7-BD29-B3BE@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/28C7-BD29-B3BE@smtp.mlmsolutions.com.eml
M1G)O;3H@2VER86X@4&%T96P@/&LN<&%T96Q`;6QM<V]L=71I;VYS+F-O;3X*
M5&\Z(%!A<FES($UO;G1F97)R870@/'`N;6]N=&9E<G)A=$!M;&US;VQU=&EO
M;G,N8V]M/@I3=6)J96-T.B!E>'!E;G-E<PI$871E.B!4:'4L(#$@2F%N(#$Y
M-S`@,#`Z,#`Z,#`@+3`P,#`*365S<V%G92U)1#H@/#(X0S<M0D0R.2U",T)%
M0'-M='`N;6QM<V]L=71I;VYS+F-O;3X*"FAE>2P@<V]R<GDL"DD@;F5E9"!T
M:&]S92!E>'!E;G-E<R!!4T%0(&9O<B!T:&4@<F5P;W)T('1H:7,@869T97)N
M;V]N('!L96%S90IT:&]S92!P87!E<G,@87)E;B=T(&=O;FYA('!U<V@@=&AE
+;7-E;'9E<R`[*0IT
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/28C7-BD29-B3BE@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/28C7-BD29-B3BE@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/28C7-BD29-B3BE@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
ab7dbc529c4ffed35191fc44418f5e41  USB Flash Drive/email/k.patel@mlmsolutions.com/28C7-BD29-B3BE@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/28C7-BD29-B3BE@smtp.mlmsolutions.com.eml'` -ne 326 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/28C7-BD29-B3BE@smtp.mlmsolutions.com.eml' is not 326"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/A33C-D4FC-BE57@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/A33C-D4FC-BE57@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/A33C-D4FC-BE57@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/A33C-D4FC-BE57@smtp.mlmsolutions.com.eml
M1G)O;3H@2VER86X@4&%T96P@/&LN<&%T96Q`;6QM<V]L=71I;VYS+F-O;3X*
M5&\Z(%!E>71O;B!0+B!386YC:&5Z(#QP+G-A;F-H97I`;6QM<V]L=71I;VYS
M+F-O;3X*4W5B:F5C=#H@4D4Z($UA<G-I8VL*1&%T93H@5&AU+"`Q($IA;B`Q
M.3<P(#`P.C`P.C`P("TP,#`P"DUE<W-A9V4M240Z(#Q!,S-#+40T1D,M0D4U
M-T!S;71P+FUL;7-O;'5T:6]N<RYC;VT^"@IW:&%H="=S(&=O:6YG(&]N/S\_
M('EO=2=R92!G971T:6YG(&)A8VL@=&AI<R!M;W)N:6YG/PI)(&IU<W0@<W!O
6:V4@=&\@4F%V96X@>65S=&5R9&%Y"FAI
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/A33C-D4FC-BE57@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/A33C-D4FC-BE57@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/A33C-D4FC-BE57@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
11c5326416c6dd14e4a374129ca004ab  USB Flash Drive/email/k.patel@mlmsolutions.com/A33C-D4FC-BE57@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/A33C-D4FC-BE57@smtp.mlmsolutions.com.eml'` -ne 292 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/A33C-D4FC-BE57@smtp.mlmsolutions.com.eml' is not 292"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/8DE5-845C-7D22@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/8DE5-845C-7D22@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/8DE5-845C-7D22@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/8DE5-845C-7D22@smtp.mlmsolutions.com.eml
M1G)O;3H@4&5Y=&]N(%`N(%-A;F-H97H@/'`N<V%N8VAE>D!M;&US;VQU=&EO
M;G,N8V]M/@I4;SH@2VER86X@4&%T96P@/&LN<&%T96Q`;6QM<V]L=71I;VYS
M+F-O;3X*4W5B:F5C=#H@36%R<VEC:PI$871E.B!4:'4L(#$@2F%N(#$Y-S`@
M,#`Z,#`Z,#`@+3`P,#`*365S<V%G92U)1#H@/#A$134M.#0U0RTW1#(R0'-M
M='`N;6QM<V]L=71I;VYS+F-O;3X*"E=H870@=&AE(&AE;&PN($UA<G-I8VL@
M:7,@/&(^9&5A9#PO8CXN"@I))VT@8W5T=&EN9R!*97)U<V%L96T@<VAO<G0N
0($)A8VL@=&UO+@H*4&%T"@I)
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/8DE5-845C-7D22@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/8DE5-845C-7D22@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/8DE5-845C-7D22@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
d933bce594206b9f3a7138df0e1275a3  USB Flash Drive/email/k.patel@mlmsolutions.com/8DE5-845C-7D22@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/8DE5-845C-7D22@smtp.mlmsolutions.com.eml'` -ne 286 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/8DE5-845C-7D22@smtp.mlmsolutions.com.eml' is not 286"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/459C-627C-191B@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/459C-627C-191B@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/459C-627C-191B@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/459C-627C-191B@smtp.mlmsolutions.com.eml
M1G)O;3H@4F%V96X@36%R<VEC:R`\<BYM87)S:6-K0&UL;7-O;'5T:6]N<RYC
M;VT^"E1O.B!+:7)A;B!0871E;"`\:RYP871E;$!M;&US;VQU=&EO;G,N8V]M
M/@I3=6)J96-T.B!";V]K:V5E<&EN9PI$871E.B!4:'4L(#$@2F%N(#$Y-S`@
M,#`Z,#`Z,#`@+3`P,#`*365S<V%G92U)1#H@/#0U.4,M-C(W0RTQ.3%"0'-M
M='`N;6QM<V]L=71I;VYS+F-O;3X*"D$@9FEN92!M;W)N:6YG('1O('EO=2!+
M:7)A;B$*"E-A>2P@22!W87,@=&%K:6YG(&$@9V%N9&5R('1H<F]U9V@@=&AE
M(&-O;7!L971E9"!B86QA;F-E('-H965T+"!A;F0L('=E;&PN($D@:G5S="!C
M86XG="!G970@;7D@:&5A9"!A<F]U;F0@:70N($D@86T@8V]N9FED96YT('1H
M:7,@:7,@86QL('-O;64@;6ES=6YD97)S=&%N9&EN9R!O;B!M>2!P87)T+"!B
M=70@=&AE(&YU;6)E<G,@9&]N)W0@861D('5P('-P:6-K+B!097)C:&%N8V4@
M22!C;W5L9"!P;W`@;VX@9&]W;B!T;R!D:7-C=7-S('1H92!A8V-O=6YT<S\*
M"EEE<RP@=V]E(&)E=&ED92!W92!D;VXG="!K965P('1H92!B;W-S(&%B<F5A
M<W0L(&)U="!O9B!C;W5R<V4@=V4@;F5E9"!N;W0@9&ES='5R8B!O;&0@4&%T
M(&]F9B!I;B!*97)U<V%L96TN(%1H92!R=6YN:6YG<R!O9B!T:&4@8V]M<&%N
M>2!R97-T(&EN(&]U<B!H86YD<RP@96@@9G)I96YD/PH*0VAE97)I;RP*("`@
C("`@("`@4F%Y"@I0+E,N($%V;VED(%!A<FES('1O9&%Y+@IE
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/459C-627C-191B@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/459C-627C-191B@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/459C-627C-191B@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
190a17534583a13e12eb1ca08c391ba5  USB Flash Drive/email/k.patel@mlmsolutions.com/459C-627C-191B@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/459C-627C-191B@smtp.mlmsolutions.com.eml'` -ne 710 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/459C-627C-191B@smtp.mlmsolutions.com.eml' is not 710"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/50B5-721C-5774@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/50B5-721C-5774@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/50B5-721C-5774@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/50B5-721C-5774@smtp.mlmsolutions.com.eml
M1G)O;3H@2VER86X@4&%T96P@/&LN<&%T96Q`;6QM<V]L=71I;VYS+F-O;3X*
M5&\Z($-E;&5S($0G06=O<W1I;F\@/&,N9&%G;W-T:6YO0&UL;7-O;'5T:6]N
M<RYC;VT^"E-U8FIE8W0Z(&EN=F5S=&]R(')E:F5C=&EO;B!L971T97(*1&%T
M93H@5&AU+"`Q($IA;B`Q.3<P(#`P.C`P.C`P("TP,#`P"DUE<W-A9V4M240Z
M(#PU,$(U+3<R,4,M-3<W-$!S;71P+FUL;7-O;'5T:6]N<RYC;VT^"@I#($D@
M:&%V92!S;VUE(&9O<FUA;"!W<FET:6YG($D@=W)O=&4L('!L96%S92!C86X@
M>6]U('1A:V4@82!L;V]K(&%T(&ET('!L96%S93\@9&ED(&%L;"!)(&-O=6QD
M(&)U="!+:6TG<R!P<F]B86)L>2!S=&EL;"!G;VEN9R!T;R!T96%R(&ET(&EN
K=&\@<&EE8V5S+"!H86AA:&$*22!K;F]W('EO=2=R92!S=7!E<B!B=7-Y"FEN
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/50B5-721C-5774@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/50B5-721C-5774@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/50B5-721C-5774@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
d4f9dab70524638e199ed3c45d738ea1  USB Flash Drive/email/k.patel@mlmsolutions.com/50B5-721C-5774@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/50B5-721C-5774@smtp.mlmsolutions.com.eml'` -ne 403 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/50B5-721C-5774@smtp.mlmsolutions.com.eml' is not 403"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/E1BF-CF8C-5D60@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/E1BF-CF8C-5D60@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/E1BF-CF8C-5D60@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/E1BF-CF8C-5D60@smtp.mlmsolutions.com.eml
M1G)O;3H@4&5Y=&]N(%`N(%-A;F-H97H@/'`N<V%N8VAE>D!M;&US;VQU=&EO
M;G,N8V]M/@I4;SH@2VER86X@4&%T96P@/&LN<&%T96Q`;6QM<V]L=71I;VYS
M+F-O;3X*4W5B:F5C=#H@4F%V96X@36%R<VEC:R!R97!L86-E;65N=`I$871E
M.B!4:'4L(#$@2F%N(#$Y-S`@,#`Z,#`Z,#`@+3`P,#`*365S<V%G92U)1#H@
M/$4Q0D8M0T8X0RTU1#8P0'-M='`N;6QM<V]L=71I;VYS+F-O;3X*"DDG;2!S
M=7)E('1H92!E;7!T>2!R;VQE(&]F(&1I<F5C=&]R(&]F(&%D;6EN(&AA<R!C
M<F]S<V5D('EO=7(@;6EN9"X@268@=V4G<F4@9V]I;F<@=&\@<'5T(&]U="!T
M:&4@9FER97,@86YD(&UO=F4@;VX@=VET:"!T:&4@=FES:6]N+"!T:&%T)W,@
M;W5R(&9I<G-T('-T97`N"@I';V]D('EO=2=R92!F:6QL:6YG(&EN('1H92!R
M;VQE(&EN('1H92!I;G1E<FEM+B!4:&]U9VAT<R!A8F]U="!2=7-K82!+96%T
M:6YG('1A:VEN9R!I="!P97)M86YE;G1L>2P@869T97(@=&AI<R!A;&P@8FQO
M=W,@;W9E<C\@2V5A=&EN9R=S(&9L:6=H='D@;F]W+"!B=70@979E<GET:&EN
M9R!E;'-E($DG=F4@<V5E;B!S87ES(&-A<&%B;&4N($5S<&5C:6%L;'D@36]R
M;V-C;RX@2&5L;"P@:68@=V4@9&ED;B=T(&AA=F4@82!C;R!L:6ME('EO=2P@
M22=D(&=I=F4@2V5A=&EN9R!T:&%T(0H*4VAA=R!C;W5L9"!T86ME(&%C<75I
<<VET:6]N<R!O<BP@=V4G;&P@<V5E+@H*4&%T"B!C
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/E1BF-CF8C-5D60@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/E1BF-CF8C-5D60@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/E1BF-CF8C-5D60@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
0303bd136d05b808480e65cf8591179e  USB Flash Drive/email/k.patel@mlmsolutions.com/E1BF-CF8C-5D60@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/E1BF-CF8C-5D60@smtp.mlmsolutions.com.eml'` -ne 703 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/E1BF-CF8C-5D60@smtp.mlmsolutions.com.eml' is not 703"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/A31E-5F9E-74C2@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/A31E-5F9E-74C2@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/A31E-5F9E-74C2@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/A31E-5F9E-74C2@smtp.mlmsolutions.com.eml
M1G)O;3H@2VER86X@4&%T96P@/&LN<&%T96Q`;6QM<V]L=71I;VYS+F-O;3X*
M5&\Z($-E;&5S($0G06=O<W1I;F\@/&,N9&%G;W-T:6YO0&UL;7-O;'5T:6]N
M<RYC;VT^"E-U8FIE8W0Z(%)%.B!I;G9E<W1O<B!R96IE8W1I;VX@;&5T=&5R
M"D1A=&4Z(%1H=2P@,2!*86X@,3DW,"`P,#HP,#HP,"`M,#`P,`I);BU297!L
M>2U4;SH@/#8R04,M-C%%,2U#-T4W0'-M='`N;6QM<V]L=71I;VYS+F-O;3X*
M4F5F97)E;F-E<SH@/#4P0C4M-S(Q0RTU-S<T0'-M='`N;6QM<V]L=71I;VYS
M+F-O;3X@/#8R04,M-C%%,2U#-T4W0'-M='`N;6QM<V]L=71I;VYS+F-O;3X*
M365S<V%G92U)1#H@/$$S,44M-48Y12TW-$,R0'-M='`N;6QM<V]L=71I;VYS
M+F-O;3X*"DY%5D52(2!T:&%T)W,@=VAY('EO=2!L;W9E(&UE"@IT:&%N:W,@
X.9F]R('1H92!E9&ET<PIT
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/A31E-5F9E-74C2@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/A31E-5F9E-74C2@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/A31E-5F9E-74C2@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
f4b3e0c6a0f9a7e55769f2b05c095cc6  USB Flash Drive/email/k.patel@mlmsolutions.com/A31E-5F9E-74C2@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/A31E-5F9E-74C2@smtp.mlmsolutions.com.eml'` -ne 419 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/A31E-5F9E-74C2@smtp.mlmsolutions.com.eml' is not 419"
  fi
fi
# ============= USB Flash Drive/email/k.patel@mlmsolutions.com/D7C5-823A-AE92@smtp.mlmsolutions.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@mlmsolutions.com/D7C5-823A-AE92@smtp.mlmsolutions.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@mlmsolutions.com/D7C5-823A-AE92@smtp.mlmsolutions.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@mlmsolutions.com/D7C5-823A-AE92@smtp.mlmsolutions.com.eml
M1G)O;3H@2VER86X@4&%T96P@/&LN<&%T96Q`;6QM<V]L=71I;VYS+F-O;3X*
M5&\Z(%)U<VMA($ME871I;F<@/'(N:V5A=&EN9T!M;&US;VQU=&EO;G,N8V]M
M/@I#8SH@4&5Y=&]N(%`N(%-A;F-H97H@/'`N<V%N8VAE>D!M;&US;VQU=&EO
M;G,N8V]M/@I3=6)J96-T.B!213H@4VAI9G1I;F<@9F5E=`I$871E.B!4:'4L
M(#$@2F%N(#$Y-S`@,#`Z,#`Z,#`@+3`P,#`*26XM4F5P;'DM5&\Z(#Q".30R
M+34T-C0M1C`Q-4!S;71P+FUL;7-O;'5T:6]N<RYC;VT^"E)E9F5R96YC97,Z
M(#Q".30R+34T-C0M1C`Q-4!S;71P+FUL;7-O;'5T:6]N<RYC;VT^"DUE<W-A
M9V4M240Z(#Q$-T,U+3@R,T$M044Y,D!S;71P+FUL;7-O;'5T:6]N<RYC;VT^
M"@IR=7-K80IT86ME(&%L;"!T:&4@=&EM92!Y;W4@;F5E9"X@=V4G;&P@:&]L
B9"!D;W=N('1H92!F;W)T+@H*979E<GD@8F5S="!W:7-H"BX@
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@mlmsolutions.com/D7C5-823A-AE92@smtp.mlmsolutions.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@mlmsolutions.com/D7C5-823A-AE92@smtp.mlmsolutions.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@mlmsolutions.com/D7C5-823A-AE92@smtp.mlmsolutions.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
b38c4714ce1fa44433a99a2b72d02ffd  USB Flash Drive/email/k.patel@mlmsolutions.com/D7C5-823A-AE92@smtp.mlmsolutions.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@mlmsolutions.com/D7C5-823A-AE92@smtp.mlmsolutions.com.eml'` -ne 439 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@mlmsolutions.com/D7C5-823A-AE92@smtp.mlmsolutions.com.eml' is not 439"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/2891939@sv01.PROD.braillemail.net.eml ==============
if test ! -d 'USB Flash Drive/email/k.patel@happyemail.com'; then
  mkdir 'USB Flash Drive/email/k.patel@happyemail.com' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/2891939@sv01.PROD.braillemail.net.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/2891939@sv01.PROD.braillemail.net.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/2891939@sv01.PROD.braillemail.net.eml
M1G)O;3H@0R`\8V5L<VAA9&5D0&)R86EL;&5M86EL+FYE=#X*5&\Z($MI<F%N
M(#QK+G!A=&5L0&AA<'!Y96UA:6PN8V]M/@I3=6)J96-T.B!S=&%R<VEG;@I$
M871E.B!4:'4L(#$@2F%N(#$Y-S`@,#`Z,#`Z,#`@+3`P,#`*365S<V%G92U)
M1#H@/#(X.3$Y,SE`<W8P,2Y04D]$+F)R86EL;&5M86EL+FYE=#X*"E%U:6-K
I('%U:6-K('%U97-T:6]N+@H*=VAA="=S('EO=7(@<W1A<B!S:6=N/PIU
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/2891939@sv01.PROD.braillemail.net.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/2891939@sv01.PROD.braillemail.net.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/2891939@sv01.PROD.braillemail.net.eml': 'MD5 check failed'
       ) << \SHAR_EOF
b0eaf3c256d1e52b6798b88906ff50c5  USB Flash Drive/email/k.patel@happyemail.com/2891939@sv01.PROD.braillemail.net.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/2891939@sv01.PROD.braillemail.net.eml'` -ne 221 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/2891939@sv01.PROD.braillemail.net.eml' is not 221"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/SMID=7Z6CF3DoSFI5AwbFtj=00@eg.emailserve.happyemail.com.eml ==============
if test ! -d 'USB Flash Drive/email/k.patel@happyemail.com'; then
  mkdir 'USB Flash Drive/email/k.patel@happyemail.com' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/SMID=7Z6CF3DoSFI5AwbFtj=00@eg.emailserve.happyemail.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/SMID=7Z6CF3DoSFI5AwbFtj=00@eg.emailserve.happyemail.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/SMID=7Z6CF3DoSFI5AwbFtj=00@eg.emailserve.happyemail.com.eml
M1G)O;3H@2W)I<VAN82`\9&EP;&]D;V-U<T!H87!P>6UA:6PN8V]M/@I4;SH@
M2VER86X@/&LN<&%T96Q`:&%P<'EM86EL+F-O;3X*4W5B:F5C=#H@1&%T92!N
M:6=H=`I$871E.B!4:'4L(#$@2F%N(#$Y-S`@,#`Z,#`Z,#`@+3`P,#`*365S
M<V%G92U)1#H@/%--240]-UHV0T8S1&]31DDU07=B1G1J/3`P0&5G+F5M86EL
M<V5R=F4N:&%P<'EE;6%I;"YC;VT^"@I(:2!(;VXL"@I(;W<@87)E('1H:6YG
M<R!A="!W;W)K/R!$:60@=&AE(')I='5A;"!S=6-C965D/R!9;W4G;&P@:&%V
M92!T;R!T96QL(&UE(&%L;"!A8F]U="!I="!W:&5N($DG;2!B86-K(&EN('1O
M=VXN"@I4:&5Y(&YE960@;64@82!F97<@97AT<F$@9&%Y<R!I;B!.97<@66]R
M:RP@<V\@22=L;"!B92!B86-K(&YE>'0@=V5E:R!O;B!T:&4@-W1H+B!792!C
M;W5L9"!N965D('1O(&UO=F4@9&%T92!N:6=H="!T;R!4:'5R<V1A>2P@87,@
M22!W:6QL(&)E(&]F9B!A9V%I;B!O;B!T:&4@4V%T=7)D87D@=&\@5&AE($YE
:=&AE<FQA;F1S+@H*3&]V92P*2W)I<VAN80H@
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/SMID=7Z6CF3DoSFI5AwbFtj=00@eg.emailserve.happyemail.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/SMID=7Z6CF3DoSFI5AwbFtj=00@eg.emailserve.happyemail.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/SMID=7Z6CF3DoSFI5AwbFtj=00@eg.emailserve.happyemail.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
467a7259ebb9c6e01b20e78d2bac1dd4  USB Flash Drive/email/k.patel@happyemail.com/SMID=7Z6CF3DoSFI5AwbFtj=00@eg.emailserve.happyemail.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/SMID=7Z6CF3DoSFI5AwbFtj=00@eg.emailserve.happyemail.com.eml'` -ne 521 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/SMID=7Z6CF3DoSFI5AwbFtj=00@eg.emailserve.happyemail.com.eml' is not 521"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/SMID=l7KjyubteRgv4M4tyK=00@eg.emailserve.happyemail.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/SMID=l7KjyubteRgv4M4tyK=00@eg.emailserve.happyemail.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/SMID=l7KjyubteRgv4M4tyK=00@eg.emailserve.happyemail.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/SMID=l7KjyubteRgv4M4tyK=00@eg.emailserve.happyemail.com.eml
M1G)O;3H@2VER86X@/&LN<&%T96Q`:&%P<'EE;6%I;"YC;VT^"E1O.B!#(#QC
M96QS:&%D961`8G)A:6QL96UA:6PN;F5T/@I3=6)J96-T.B!213H@<W1A<G-I
M9VX*1&%T93H@5&AU+"`Q($IA;B`Q.3<P(#`P.C`P.C`P("TP,#`P"DEN+5)E
M<&QY+51O.B`\,C@Y,3DS.4!S=C`Q+E!23T0N8G)A:6QL96UA:6PN;F5T/@I2
M969E<F5N8V5S.B`\,C@Y,3DS.4!S=C`Q+E!23T0N8G)A:6QL96UA:6PN;F5T
M/@I-97-S86=E+4E$.B`\4TU)1#UL-TMJ>75B=&529W8T331T>4L],#!`96<N
M96UA:6QS97)V92YH87!P>65M86EL+F-O;3X*"F-A;F-E<B!I<R!M92X@86-C
M;W)D:6YG('1O('1H92!H;W)O<V-O<&4L("=P87-S:6]N(&EG;FET97,@:6X@
M;7D@:&5A<G0G+B!N;W<@:68@22!R96UE;6)E<BP@>6]U<B!B:7)T:&1A>2!I
M<R!R:6=H="!A="!T:&4@96YD(&]F(&YO=F5M8F5R('=H:6-H(&ES('-A9VET
M=&%R:75S(&%C8V]R9&EN9R!T;R!T:&ES('=E8B!S:71E+B`G>6]U(&UA>2!B
M92!F965L:6YG(&5S<&5C:6%L;'D@:6YT<F]S<&5C=&EV92<*<6)A)V<@;F9X
M(&IU;"!6('5N:7(@9W5N9R!P8GIZ=F=G<G$@9V(@>G)Z8F5L+@H*=VAY('=E
4<F4@>6]U('=O;F1E<FEN9R!#/PIZ
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/SMID=l7KjyubteRgv4M4tyK=00@eg.emailserve.happyemail.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/SMID=l7KjyubteRgv4M4tyK=00@eg.emailserve.happyemail.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/SMID=l7KjyubteRgv4M4tyK=00@eg.emailserve.happyemail.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
409e86cf2b4417770ec64a02e1d50c35  USB Flash Drive/email/k.patel@happyemail.com/SMID=l7KjyubteRgv4M4tyK=00@eg.emailserve.happyemail.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/SMID=l7KjyubteRgv4M4tyK=00@eg.emailserve.happyemail.com.eml'` -ne 605 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/SMID=l7KjyubteRgv4M4tyK=00@eg.emailserve.happyemail.com.eml' is not 605"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/4258638@sv01.PROD.braillemail.net.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/4258638@sv01.PROD.braillemail.net.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/4258638@sv01.PROD.braillemail.net.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/4258638@sv01.PROD.braillemail.net.eml
M1G)O;3H@0R`\8V5L<VAA9&5D0&)R86EL;&5M86EL+FYE=#X*5&\Z($MI<F%N
M(#QK+G!A=&5L0&AA<'!Y96UA:6PN8V]M/@I3=6)J96-T.B!213H@<W1A<G-I
M9VX*1&%T93H@5&AU+"`Q($IA;B`Q.3<P(#`P.C`P.C`P("TP,#`P"DEN+5)E
M<&QY+51O.B`\4TU)1#UL-TMJ>75B=&529W8T331T>4L],#!`96<N96UA:6QS
M97)V92YH87!P>65M86EL+F-O;3X*4F5F97)E;F-E<SH@/#(X.3$Y,SE`<W8P
M,2Y04D]$+F)R86EL;&5M86EL+FYE=#X@/%--240];#=+:GEU8G1E4F=V-$TT
M='E+/3`P0&5G+F5M86EL<V5R=F4N:&%P<'EE;6%I;"YC;VT^"DUE<W-A9V4M
M240Z(#PT,C4X-C,X0'-V,#$N4%)/1"YB<F%I;&QE;6%I;"YN970^"@I);G1R
M;W-P971I;VXL(&=I82P@<W1A<G,@;6%D92!M92!D;R!I="$@7G9>"@IL8F@@
E8V5B;VYO>6P@9W5V87@@=F<@;GEY(&9V>7EL+@H*=GEL+`I0"G9>
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/4258638@sv01.PROD.braillemail.net.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/4258638@sv01.PROD.braillemail.net.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/4258638@sv01.PROD.braillemail.net.eml': 'MD5 check failed'
       ) << \SHAR_EOF
9cdb799c32c0d88c08963e884bf8de6b  USB Flash Drive/email/k.patel@happyemail.com/4258638@sv01.PROD.braillemail.net.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/4258638@sv01.PROD.braillemail.net.eml'` -ne 442 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/4258638@sv01.PROD.braillemail.net.eml' is not 442"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/SMID=p6iXnNY1e1dsV80jUU=00@eg.emailserve.happyemail.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/SMID=p6iXnNY1e1dsV80jUU=00@eg.emailserve.happyemail.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/SMID=p6iXnNY1e1dsV80jUU=00@eg.emailserve.happyemail.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/SMID=p6iXnNY1e1dsV80jUU=00@eg.emailserve.happyemail.com.eml
M1G)O;3H@2W)I<VAN82`\9&EP;&]D;V-U<T!H87!P>6UA:6PN8V]M/@I4;SH@
M2VER86X@/&LN<&%T96Q`:&%P<'EM86EL+F-O;3X*4W5B:F5C=#H@365M;W)Y
M('-T:6-K"D1A=&4Z(%1H=2P@,2!*86X@,3DW,"`P,#HP,#HP,"`M,#`P,`I-
M97-S86=E+4E$.B`\4TU)1#UP-FE8;DY9,64Q9'-6.#!J554],#!`96<N96UA
M:6QS97)V92YH87!P>65M86EL+F-O;3X*"DAI($AO;F5Y+`H*5&AA="!M96UO
M<GD@<W1I8VL@22!B;W)R;W=E9"P@<V5C=7)I='D@:6YS:7-T960@=&AA="!T
M:&5Y('-C86X@:70@9F]R('9I<G5S97,N(%1H97D@<V%I9"!T:&5Y(&9O=6YD
M('-O;64@(FAI9&1E;B!E;F-R>7!T960@9FEL97,N(B!$;R!Y;W4@:VYO=R!W
M:&%T('1H97D@87)E/R!)('1O;&0@=&AE;2!I="!W87,@<')O8F%B;'D@9F]R
M('EO=7(@=V]R:RP@8G5T($D@=&AO=6=H="!)('=O=6QD(&%S:R!I;B!C87-E
D(&ET('=A<R!A('9I<G5S+@H*3&]V92!Y;W4L"DMR:7-H;F$*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/SMID=p6iXnNY1e1dsV80jUU=00@eg.emailserve.happyemail.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/SMID=p6iXnNY1e1dsV80jUU=00@eg.emailserve.happyemail.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/SMID=p6iXnNY1e1dsV80jUU=00@eg.emailserve.happyemail.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
ff984981d07c5556e6f0d5570f74e2f9  USB Flash Drive/email/k.patel@happyemail.com/SMID=p6iXnNY1e1dsV80jUU=00@eg.emailserve.happyemail.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/SMID=p6iXnNY1e1dsV80jUU=00@eg.emailserve.happyemail.com.eml'` -ne 486 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/SMID=p6iXnNY1e1dsV80jUU=00@eg.emailserve.happyemail.com.eml' is not 486"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/SMID=SHmWVLCiId0WzLoqa6=00@eg.emailserve.happyemail.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/SMID=SHmWVLCiId0WzLoqa6=00@eg.emailserve.happyemail.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/SMID=SHmWVLCiId0WzLoqa6=00@eg.emailserve.happyemail.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/SMID=SHmWVLCiId0WzLoqa6=00@eg.emailserve.happyemail.com.eml
M1G)O;3H@2W)I<VAN82`\9&EP;&]D;V-U<T!H87!P>6UA:6PN8V]M/@I4;SH@
M2VER86X@/&LN<&%T96Q`:&%P<'EM86EL+F-O;3X*4W5B:F5C=#H@26YT97)N
M871I;VYA;"!!:7)P;W)T"D1A=&4Z(%1H=2P@,2!*86X@,3DW,"`P,#HP,#HP
M,"`M,#`P,`I-97-S86=E+4E$.B`\4TU)1#U32&U75DQ#:4ED,%=Z3&]Q838]
M,#!`96<N96UA:6QS97)V92YH87!P>65M86EL+F-O;3X*"DAI($AO;BP*"DD@
M8V%L;&5D('EO=2!J=7-T(&YO=R`H-CHS,"D@8G5T('EO=2!D:61N)W0@86YS
M=V5R+B!)('=A;G1E9"!T;R!T96QL('EO=2!A8F]U="!T:&4@86ER<&]R="X@
M66]U)VQL(&YE=F5R(&=U97-S('=H;R!)('-A=R$@37D@8F]D>6=U87)D<R!H
M860@;&]S="!M>2!B<F5A:V9A<W0@86YD('EO=2!K;F]W(&AO=R!)(&%M('=I
M=&@@86ER;&EN92!F;V]D+B!3;R!T:&5Y('=E<F4@:'5N=&EN9R!F;W(@82!B
M<F]W;B!D;V=G>2!B86<L(&%N9"!)('-A=R!A('1R879E;&QE<B!G:79I;F<@
M;VYE('1O(&$@<&]L:6-E(&]F9FEC97(N(%=E(')U<VAE9"!O=F5R('1O('!R
M979E;G0@82!S97)I;W5S(&UI<V-A<G)I86=E(&]F(&IU<W1I8V4@86YD(')E
M=')I979E(&UY(&UE86PN(%=E(&1I9&XG="!F:6YD(&UY(&)R96%K9F%S="P@
M8G5T(&%S(&QU8VL@=V]U;&0@:&%V92!I="!T:&4@=')A=F5L;&5R('=A<R!0
M97ET;VX@4V%N8VAE>BP@9G)O;2!Y;W5R('=O<FLA(%=E(&UE="!A('=H:6QE
M(&%G;R!A="!Y;W5R("=T=7)N:6YG(&EN(&$@<')O9FET)R!C96QE8G)A=&EO
M;BX@66]U<B!B;W-S(&UU<W0@8F4@82!G;V]D(&-I=&EZ96XN"@I097ET;VX@
M<V%Y<R!H96QL;RX@*$%L<V\@=&\@=&5L;"!Y;W4@:G5S="!H;W<@;75C:"!0
M97ET;VX@=V%S(&EM<')E<W-E9"!B>2!2=7-K82!+96%T:6YG(&%N9"!-87)S
M:6-K)W,@8V]L;&%B;W)A=&EO;BX@22=M('-U<F4@>6]U(&MN;W<@=VAO979E
M<B!T:&5Y(&%R92XI(%EO=2!C86X@8F5T($DG;&P@<75I>B!Y;W4@86)O=70@
M=&AE(&IU:6-Y(&1E=&%I;',@=&AI<R!T:6UE('1O;6]R<F]W(&UO<FYI;F<@
M=VAE;B!)(&=E="!B86-K(&EN=&\@0V%I<F\A"@I)(&UI<W,@>6]U+`I+<FES
$:&YA"B!)
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/SMID=SHmWVLCiId0WzLoqa6=00@eg.emailserve.happyemail.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/SMID=SHmWVLCiId0WzLoqa6=00@eg.emailserve.happyemail.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/SMID=SHmWVLCiId0WzLoqa6=00@eg.emailserve.happyemail.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
81af2b80b5589df100988f92529bd3ec  USB Flash Drive/email/k.patel@happyemail.com/SMID=SHmWVLCiId0WzLoqa6=00@eg.emailserve.happyemail.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/SMID=SHmWVLCiId0WzLoqa6=00@eg.emailserve.happyemail.com.eml'` -ne 1084 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/SMID=SHmWVLCiId0WzLoqa6=00@eg.emailserve.happyemail.com.eml' is not 1084"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/SMID=rzyrzeu2cIF7v1d6fw=00@eg.emailserve.happyemail.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/SMID=rzyrzeu2cIF7v1d6fw=00@eg.emailserve.happyemail.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/SMID=rzyrzeu2cIF7v1d6fw=00@eg.emailserve.happyemail.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/SMID=rzyrzeu2cIF7v1d6fw=00@eg.emailserve.happyemail.com.eml
M1G)O;3H@2VER86X@/&LN<&%T96Q`:&%P<'EM86EL+F-O;3X*5&\Z($MR:7-H
M;F$@/&1I<&QO9&]C=7-`:&%P<'EM86EL+F-O;3X*4W5B:F5C=#H@4F4Z($UE
M;6]R>2!S=&EC:PI$871E.B!4:'4L(#$@2F%N(#$Y-S`@,#`Z,#`Z,#`@+3`P
M,#`*26XM4F5P;'DM5&\Z(#Q334E$/7`V:5AN3EDQ93%D<U8X,&I553TP,$!E
M9RYE;6%I;'-E<G9E+FAA<'!Y96UA:6PN8V]M/@I2969E<F5N8V5S.B`\4TU)
M1#UP-FE8;DY9,64Q9'-6.#!J554],#!`96<N96UA:6QS97)V92YH87!P>65M
M86EL+F-O;3X*365S<V%G92U)1#H@/%--240]<GIY<GIE=3)C248W=C%D-F9W
M/3`P0&5G+F5M86EL<V5R=F4N:&%P<'EE;6%I;"YC;VT^"@ID;VXG="!W;W)R
M>2!K<FES:&YA+"!T:&]S92!A<F4@:G5S="!T96UP;W)A<GD@8F%C:W5P<PIT
M:&4@=V]R:R!S97)V97)S(&AA=F4@8F5E;B!O;B!T:&4@9G)I='H@;&%T96QY
M+"!T:&5Y(&-O<G)U<'1E9"!E=F5R>2!D871E(&EN('1H92!E+6UA:6P@<WES
M=&5M(&QA<W0@;6]N=&@N($DG=F4@8F5E;B!S=&]R:6YG('1H:6YG<R!O;B!T
K:&4@9FQA<V@@9')I=F4@:6X@8V%S92!I="!G;V5S('=R;VYG(&%G86EN"B!T
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/SMID=rzyrzeu2cIF7v1d6fw=00@eg.emailserve.happyemail.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/SMID=rzyrzeu2cIF7v1d6fw=00@eg.emailserve.happyemail.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/SMID=rzyrzeu2cIF7v1d6fw=00@eg.emailserve.happyemail.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
5deef30a4c31b122a19f8b759f08bcf9  USB Flash Drive/email/k.patel@happyemail.com/SMID=rzyrzeu2cIF7v1d6fw=00@eg.emailserve.happyemail.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/SMID=rzyrzeu2cIF7v1d6fw=00@eg.emailserve.happyemail.com.eml'` -ne 583 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/SMID=rzyrzeu2cIF7v1d6fw=00@eg.emailserve.happyemail.com.eml' is not 583"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/store.json ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/store.json'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/store.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/store.json
M>PH@(")I9',B.B!;"B`@("`B4TU)1#TW6C9#1C-$;U-&235!=V)&=&H],#!`
M96<N96UA:6QS97)V92YH87!P>65M86EL+F-O;2(L"B`@("`B4TU)1#U)12U,
M2%HR<C1+6&=19F1'2F@],#!`96<N96UA:6QS97)V92YH87!P>65M86EL+F-O
M;2(L"B`@("`B4TU)1#U32&U75DQ#:4ED,%=Z3&]Q838],#!`96<N96UA:6QS
M97)V92YH87!P>65M86EL+F-O;2(L"B`@("`B,C@Y,3DS.4!S=C`Q+E!23T0N
M8G)A:6QL96UA:6PN;F5T(BP*("`@(")334E$/6PW2VIY=6)T95)G=C1--'1Y
M2STP,$!E9RYE;6%I;'-E<G9E+FAA<'!Y96UA:6PN8V]M(BP*("`@("(T,C4X
M-C,X0'-V,#$N4%)/1"YB<F%I;&QE;6%I;"YN970B+`H@("`@(E--240];65T
M<5-%.71+4VMZ:S%?5F]$/3`P0&5G+F5M86EL<V5R=F4N:&%P<'EE;6%I;"YC
M;VTB+`H@("`@(E--240];U-B3C)"0U$S<EEP2FM:3&4M/3`P0&5G+F5M86EL
M<V5R=F4N:&%P<'EE;6%I;"YC;VTB+`H@("`@(C0S.#(T-#5`<W8P,BY04D]$
M+F)R86EL;&5M86EL+FYE="(L"B`@("`B4TU)1#UP-FE8;DY9,64Q9'-6.#!J
M554],#!`96<N96UA:6QS97)V92YH87!P>65M86EL+F-O;2(L"B`@("`B4TU)
M1#UR>GER>F5U,F-)1C=V,60V9G<],#!`96<N96UA:6QS97)V92YH87!P>65M
M86EL+F-O;2(*("!=+`H@(")D<F%F=',B.B!;"B`@("`B,"(L"B`@("`B,2(L
8"B`@("`B,B(L"B`@("`B,R(*("!="GT*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/store.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/store.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/store.json': 'MD5 check failed'
       ) << \SHAR_EOF
f95b836cf744ec301c05450a692b44cc  USB Flash Drive/email/k.patel@happyemail.com/store.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/store.json'` -ne 699 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/store.json' is not 699"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/SMID=oSbN2BCQ3rYpJkZLe-=00@eg.emailserve.happyemail.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/SMID=oSbN2BCQ3rYpJkZLe-=00@eg.emailserve.happyemail.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/SMID=oSbN2BCQ3rYpJkZLe-=00@eg.emailserve.happyemail.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/SMID=oSbN2BCQ3rYpJkZLe-=00@eg.emailserve.happyemail.com.eml
M1G)O;3H@2VER86X@/&LN<&%T96Q`:&%P<'EM86EL+F-O;3X*5&\Z($MR:7-H
M;F$@/&1I<&QO9&]C=7-`:&%P<'EM86EL+F-O;3X*4W5B:F5C=#H@4F4Z($EN
M=&5R;F%T:6]N86P@06ER<&]R=`I$871E.B!4:'4L(#$@2F%N(#$Y-S`@,#`Z
M,#`Z,#`@+3`P,#`*26XM4F5P;'DM5&\Z(#Q334E$/5-(;5=63$-I260P5WI,
M;W%A-CTP,$!E9RYE;6%I;'-E<G9E+FAA<'!Y96UA:6PN8V]M/@I2969E<F5N
M8V5S.B`\4TU)1#U32&U75DQ#:4ED,%=Z3&]Q838],#!`96<N96UA:6QS97)V
M92YH87!P>65M86EL+F-O;3X*365S<V%G92U)1#H@/%--240];U-B3C)"0U$S
M<EEP2FM:3&4M/3`P0&5G+F5M86EL<V5R=F4N:&%P<'EE;6%I;"YC;VT^"@IS
3;W)R>2P@22!W87,@87-L965P"FEL
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/SMID=oSbN2BCQ3rYpJkZLe-=00@eg.emailserve.happyemail.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/SMID=oSbN2BCQ3rYpJkZLe-=00@eg.emailserve.happyemail.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/SMID=oSbN2BCQ3rYpJkZLe-=00@eg.emailserve.happyemail.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
c29d832722aec93a091a9a2c5271f63b  USB Flash Drive/email/k.patel@happyemail.com/SMID=oSbN2BCQ3rYpJkZLe-=00@eg.emailserve.happyemail.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/SMID=oSbN2BCQ3rYpJkZLe-=00@eg.emailserve.happyemail.com.eml'` -ne 379 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/SMID=oSbN2BCQ3rYpJkZLe-=00@eg.emailserve.happyemail.com.eml' is not 379"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/drafts/0.json ==============
if test ! -d 'USB Flash Drive/email/k.patel@happyemail.com/drafts'; then
  mkdir 'USB Flash Drive/email/k.patel@happyemail.com/drafts' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/drafts/0.json'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/drafts/0.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/drafts/0.json
M>PH@(")T;R(Z(%L*("`@(")D:7!L;V1O8W5S0&AA<'!Y;6%I;"YC;VTB"B`@
M72P*("`B<W5B:F5C="(Z(")H;VUE(BP*("`B8F]D>2(Z(")K<FES:&YA(&1A
M<FQI;F=<;FQA<W0@;6]N=&@@>6]U('=E<F4@:6X@<V%N(&AA;F]V97(L('1H
M96X@;6]R;V-C;RP@=&AE;B!B97)L:6XN('1O9&%Y('EO=2=R92!F;'EI;F<@
M;W5T('1O('=H97)E(&5V97(@:70@:7,@=&AI<R!T:6UE+"!A;F0@22!D;VXG
M="!S964@>6]U(&%G86EN('5N=&EL('EO=2!S=&]P(&)Y(&]N('1H92!W87D@
M=&\@;F5W('EO<FLN($D@=VES:"!Y;W4@=V5R92!H;VUE(&UO<F4N7&Y)(&MN
M;W<@>6]U(&QO=F4@>6]U<B!C87)E97(@8G5T($D@9&ED;B=T(&UA<G)Y('EO
M=7(@8V%R965R+"!)(&UA<G)I960@>6]U+B!)(&QO=F4@>6]U+EQN=VAE;B!Y
M;W4@9V5T(&)A8VL@9G)O;2!N97<@>6]R:RX@4&QE87-E('-T87D@=VET:"!M
M92!I;B!#86ER;RX@22!C86XG="!K965P(&1O:6YG('1H:7-<;EQN;&]V92Q<
*;FMI<F%N(@I]"BX@
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/drafts/0.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/drafts/0.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/drafts/0.json': 'MD5 check failed'
       ) << \SHAR_EOF
6fea6d34d9caca4598b5d9b01e330721  USB Flash Drive/email/k.patel@happyemail.com/drafts/0.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/drafts/0.json'` -ne 505 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/drafts/0.json' is not 505"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/drafts/2.json ==============
if test ! -d 'USB Flash Drive/email/k.patel@happyemail.com/drafts'; then
  mkdir 'USB Flash Drive/email/k.patel@happyemail.com/drafts' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/drafts/2.json'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/drafts/2.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/drafts/2.json
M>PH@(")T;R(Z(%L*("`@(")D:7!L;V1O8W5S0&AA<'!Y;6%I;"YC;VTB"B`@
M72P*("`B8F-C(CH@6PH@("`@(G`N<V%N8VAE>D!M;&US;VQU=&EO;G,N8V]M
M(@H@(%TL"B`@(G-U8FIE8W0B.B`B22=M('-O('-O<G)Y(BP*("`B8F]D>2(Z
K(")))W9E(&UA9&4@82!M:7-T86ME+B!I="!S=&%R=&5D('=I=&@@(@I]"B(Z
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/drafts/2.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/drafts/2.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/drafts/2.json': 'MD5 check failed'
       ) << \SHAR_EOF
07ef6422ccfd8b9606b04aa93ba1486c  USB Flash Drive/email/k.patel@happyemail.com/drafts/2.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/drafts/2.json'` -ne 178 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/drafts/2.json' is not 178"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/drafts/3.json ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/drafts/3.json'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/drafts/3.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/drafts/3.json
M>PH@(")T;R(Z(%L*("`@(")D:7!L;V1O8W5S0&AA<'!Y;6%I;"YC;VTB"B`@
M72P*("`B<W5B:F5C="(Z(")L96%V:6YG(BP*("`B8F]D>2(Z("))(&AA=F4@
M=&\@;&5A=F4@>6]U(&)E8V%U<V4@979E<GD@=&EM92!Y;W4@;&5A=F4@:&]M
=92!)(&9E96Q<;EQN0V5L97,@86YD($E<;B(*?0IM
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/drafts/3.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/drafts/3.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/drafts/3.json': 'MD5 check failed'
       ) << \SHAR_EOF
3296e0d333a878c2eb4e710ad335046b  USB Flash Drive/email/k.patel@happyemail.com/drafts/3.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/drafts/3.json'` -ne 164 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/drafts/3.json' is not 164"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/drafts/4.json ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/drafts/4.json'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/drafts/4.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/drafts/4.json
M>PH@(")T;R(Z(%L*("`@(")C96QS:&%D961`8G)A:6QL96UA:6PN;F5T(@H@
M(%TL"B`@(G-U8FIE8W0B.B`B<W9Y<F8B+`H@(")B;V1Y(CH@(E8@=6YI<B!F
M8GIR('9Z8V)E9VYA9R!S=GER9B!N;V)H9R!G=7(@<W9E>BP@;F%Q(%8G<2!Y
M=GAR(&QB:"!G8B!X86)J(&=U<B!J;FP@9V(@<7)P96QC9R!G=7)Z+B!E<GIR
M>F]R92!J=7)A(%8@9FYV<2!A8F<@9V(@;F9X(&IU;"!6('5N<2!Z<GIB979M
3<G$@:G5R82!L8FAE(&]V(@I]"F<@
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/drafts/4.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/drafts/4.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/drafts/4.json': 'MD5 check failed'
       ) << \SHAR_EOF
0037221e3979c3cf831a2be80fa3fbfd  USB Flash Drive/email/k.patel@happyemail.com/drafts/4.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/drafts/4.json'` -ne 244 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/drafts/4.json' is not 244"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/drafts/1.json ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/drafts/1.json'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/drafts/1.json (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/drafts/1.json
M>PH@(")T;R(Z(%L*("`@(")D:7!L;V1O8W5S0&AA<'!Y;6%I;"YC;VTB"B`@
M72P*("`B<W5B:F5C="(Z("))(&UA9&4@82!M:7-T86ME(BP*("`B8F]D>2(Z
@(")K<FES:&YA7&YY;W4@=V5R92!G;VYE(&%N9"(*?0IE
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/drafts/1.json'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/drafts/1.json failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/drafts/1.json': 'MD5 check failed'
       ) << \SHAR_EOF
9aa993e9a3a9c2ea3347541f3bd3b9e9  USB Flash Drive/email/k.patel@happyemail.com/drafts/1.json
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/drafts/1.json'` -ne 122 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/drafts/1.json' is not 122"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/SMID=IE-LHZ2r4KXgQfdGJh=00@eg.emailserve.happyemail.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/SMID=IE-LHZ2r4KXgQfdGJh=00@eg.emailserve.happyemail.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/SMID=IE-LHZ2r4KXgQfdGJh=00@eg.emailserve.happyemail.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/SMID=IE-LHZ2r4KXgQfdGJh=00@eg.emailserve.happyemail.com.eml
M1G)O;3H@2VER86X@/&LN<&%T96Q`:&%P<'EM86EL+F-O;3X*5&\Z($MR:7-H
M;F$@/&1I<&QO9&]C=7-`:&%P<'EM86EL+F-O;3X*4W5B:F5C=#H@4F4Z($1A
M=&4@;FEG:'0*1&%T93H@5&AU+"`Q($IA;B`Q.3<P(#`P.C`P.C`P("TP,#`P
M"DEN+5)E<&QY+51O.B`\4TU)1#TW6C9#1C-$;U-&235!=V)&=&H],#!`96<N
M96UA:6QS97)V92YH87!P>65M86EL+F-O;3X*4F5F97)E;F-E<SH@/%--240]
M-UHV0T8S1&]31DDU07=B1G1J/3`P0&5G+F5M86EL<V5R=F4N:&%P<'EE;6%I
M;"YC;VT^"DUE<W-A9V4M240Z(#Q334E$/4E%+4Q(6C)R-$M89U%F9$=*:#TP
M,$!E9RYE;6%I;'-E<G9E+FAA<'!Y96UA:6PN8V]M/@H*:&5Y(&1A<FQI;F<L
M"F9O<F=E="!D871E(&YI9VAT+"!Y;W4G;&P@8F4@=&ER960@9G)O;2!T:&4@
M=')I<"X@=V4@8V%N(&1O(&ET(&%F=&5R('EO=7(@:&%G=64@<W!E96-H(&EF
*('EO=2!W86YT"F%N
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/SMID=IE-LHZ2r4KXgQfdGJh=00@eg.emailserve.happyemail.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/SMID=IE-LHZ2r4KXgQfdGJh=00@eg.emailserve.happyemail.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/SMID=IE-LHZ2r4KXgQfdGJh=00@eg.emailserve.happyemail.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
a7d709df5e81c92b4895e6811a076e78  USB Flash Drive/email/k.patel@happyemail.com/SMID=IE-LHZ2r4KXgQfdGJh=00@eg.emailserve.happyemail.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/SMID=IE-LHZ2r4KXgQfdGJh=00@eg.emailserve.happyemail.com.eml'` -ne 460 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/SMID=IE-LHZ2r4KXgQfdGJh=00@eg.emailserve.happyemail.com.eml' is not 460"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/SMID=metqSE9tKSkzk1_VoD=00@eg.emailserve.happyemail.com.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/SMID=metqSE9tKSkzk1_VoD=00@eg.emailserve.happyemail.com.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/SMID=metqSE9tKSkzk1_VoD=00@eg.emailserve.happyemail.com.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/SMID=metqSE9tKSkzk1_VoD=00@eg.emailserve.happyemail.com.eml
M1G)O;3H@2VER86X@/&LN<&%T96Q`:&%P<'EE;6%I;"YC;VT^"E1O.B!#(#QC
M96QS:&%D961`8G)A:6QL96UA:6PN;F5T/@I3=6)J96-T.B!213H@<W1A<G-I
M9VX*1&%T93H@5&AU+"`Q($IA;B`Q.3<P(#`P.C`P.C`P("TP,#`P"DEN+5)E
M<&QY+51O.B`\-#(U.#8S.$!S=C`Q+E!23T0N8G)A:6QL96UA:6PN;F5T/@I2
M969E<F5N8V5S.B`\,C@Y,3DS.4!S=C`Q+E!23T0N8G)A:6QL96UA:6PN;F5T
M/B`\4TU)1#UL-TMJ>75B=&529W8T331T>4L],#!`96<N96UA:6QS97)V92YH
M87!P>65M86EL+F-O;3X@/#0R-3@V,SA`<W8P,2Y04D]$+F)R86EL;&5M86EL
M+FYE=#X*365S<V%G92U)1#H@/%--240];65T<5-%.71+4VMZ:S%?5F]$/3`P
M0&5G+F5M86EL<V5R=F4N:&%P<'EE;6%I;"YC;VT^"@IN;R!N;R!N;R!N;W0@
M<VEL;'DN('-E92!T:&4@<W1O<FEE<R!W92!T96QL(&]U<G-E;'9E<RP@9&]E
M<VXG="!M871T97(@=VAA="!T:&5Y(&%R92P@:68@>6]U(&)E;&EE=F4@:70L
M('1H96X@:70@8F5C;VUE<R!T<G5E(&9O<B!Y;W4N"G=H96X@22!W87,@<VUA
M;&P@;7D@=6YC;&4@=V]U;&0@=&5L;"!M92!A8F]U="!T:&4@<V]U;"X@86YD
M('=H96X@:&4@<&%S<V5D(&]N($D@;F5E9&5D('1O(&MN;W<@:&4@=V]U;&0@
M<W1I8VL@87)O=6YD+"!)(&MN97<@:&ES(&MA<FUA('=O=6QD(&=I=F4@:&EM
M(&$@9V]O9"!L:69E+B!S;R!H92!W87-N)W0@9V]N92P@8F5C875S92!)(&9E
M;'0@:&4@=V%S('-T:6QL(&%R;W5N9"!S;VUE=VAE<F4@:68@=&AA="!M86ME
M<R!A;GD@<V5N<V4*"F9I;F4L(&UA>6)E(&$@;&ET=&QE('-I;&QY(&)U="!T
@:&%T)W,@=VAA="!M86ME<R!Y;W4@>6]U+@H*=GEL9PIE
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/SMID=metqSE9tKSkzk1_VoD=00@eg.emailserve.happyemail.com.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/SMID=metqSE9tKSkzk1_VoD=00@eg.emailserve.happyemail.com.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/SMID=metqSE9tKSkzk1_VoD=00@eg.emailserve.happyemail.com.eml': 'MD5 check failed'
       ) << \SHAR_EOF
cbaf5559a263a0a4f574eae27fb38409  USB Flash Drive/email/k.patel@happyemail.com/SMID=metqSE9tKSkzk1_VoD=00@eg.emailserve.happyemail.com.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/SMID=metqSE9tKSkzk1_VoD=00@eg.emailserve.happyemail.com.eml'` -ne 842 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/SMID=metqSE9tKSkzk1_VoD=00@eg.emailserve.happyemail.com.eml' is not 842"
  fi
fi
# ============= USB Flash Drive/email/k.patel@happyemail.com/4382445@sv02.PROD.braillemail.net.eml ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/email/k.patel@happyemail.com/4382445@sv02.PROD.braillemail.net.eml'
then
${echo} "x - SKIPPING USB Flash Drive/email/k.patel@happyemail.com/4382445@sv02.PROD.braillemail.net.eml (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/email/k.patel@happyemail.com/4382445@sv02.PROD.braillemail.net.eml
M1G)O;3H@0R`\8V5L<VAA9&5D0&)R86EL;&5M86EL+FYE=#X*5&\Z($MI<F%N
M(#QK+G!A=&5L0&AA<'!Y96UA:6PN8V]M/@I3=6)J96-T.B!213H@<W1A<G-I
M9VX*1&%T93H@5&AU+"`Q($IA;B`Q.3<P(#`P.C`P.C`P("TP,#`P"DEN+5)E
M<&QY+51O.B`\4TU)1#UM971Q4T4Y=$M3:WIK,5]6;T0],#!`96<N96UA:6QS
M97)V92YH87!P>65M86EL+F-O;3X*4F5F97)E;F-E<SH@/#(X.3$Y,SE`<W8P
M,2Y04D]$+F)R86EL;&5M86EL+FYE=#X@/%--240];#=+:GEU8G1E4F=V-$TT
M='E+/3`P0&5G+F5M86EL<V5R=F4N:&%P<'EE;6%I;"YC;VT^(#PT,C4X-C,X
M0'-V,#$N4%)/1"YB<F%I;&QE;6%I;"YN970^(#Q334E$/6UE='%313ET2U-K
M>FLQ7U9O1#TP,$!E9RYE;6%I;'-E<G9E+FAA<'!Y96UA:6PN8V]M/@I-97-S
M86=E+4E$.B`\-#,X,C0T-4!S=C`R+E!23T0N8G)A:6QL96UA:6PN;F5T/@H*
M3F\@22!T:&EN:R!)(&=E="!I="X@:2=V92!B965N('=O;F1E<FEN9R!L871E
M;'D@86)O=70@:&]W('=E(&5N9"!U<"!W:&\@=V4@86QL(&%R92P@86YD('=H
M870@>6]U)W)E('-A>6EN9R!A8F]U="!S=&]R:65S+BXN"@II9B!T:&4@<W1A
M<G,@=&5L;"!M92!))VT@<W1R;VYG+'1H96X@=VAE;B!6('1B(&9B>G)J=7)E
M<B!A<FH@8F4@9F)Z<F)A<B!J=6(@5B!Y8FER('%V<F96(&5R>G)Z;W)E('9G
M+@H*<79Q(%8@>FYX<B!Z;&9R>7,@9F=E8F%T/R!Q=G$@9W5R(&9G;F5F('%B
M('9G/PH*+SHI('=H870@=VEL;"!H87!P96X@=VAE;B!H;W)O<V-O<&4@<V%Y
M<R!Y;W5R(&AE87)T(&ES(&%P<&%S<VEO;F%T93\@;W(@=&5L;',@;64@=&AA
M="!)(&%M(&=E='1I;F<@=&]O(&EN=')O<W!E8W1I=F4L(&AE:&5H"@IV>6PL
#"E`*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/email/k.patel@happyemail.com/4382445@sv02.PROD.braillemail.net.eml'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/email/k.patel@happyemail.com/4382445@sv02.PROD.braillemail.net.eml failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/email/k.patel@happyemail.com/4382445@sv02.PROD.braillemail.net.eml': 'MD5 check failed'
       ) << \SHAR_EOF
5d224ec75bc2d51f7428a1d41a6d7714  USB Flash Drive/email/k.patel@happyemail.com/4382445@sv02.PROD.braillemail.net.eml
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/email/k.patel@happyemail.com/4382445@sv02.PROD.braillemail.net.eml'` -ne 858 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/email/k.patel@happyemail.com/4382445@sv02.PROD.braillemail.net.eml' is not 858"
  fi
fi
# ============= USB Flash Drive/finance/Accounts April Final.CSV ==============
if test ! -d 'USB Flash Drive/finance'; then
  mkdir 'USB Flash Drive/finance' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/finance/Accounts April Final.CSV'
then
${echo} "x - SKIPPING USB Flash Drive/finance/Accounts April Final.CSV (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/finance/Accounts April Final.CSV
M)U1R86YS86-T:6]N(&YA;64G"2=/=71G;VEN9W,G"2=);F-O;6EN9W,G"0HG
M07-P:7)A=&EO;G,@1W)A;G0G"0DR,30U"0HG<')I;G1E<B!C87)T<FED9V5S
M)PDM-#4P-0D)"B=O9F9I8V4@;&5A<V4G"2TS.3(P"0D*)VIA;2<)+3(Y-`D)
M"B=L;V%N)PD),C4U,@D*)V9O<F=O="!T;R!L;V-K('5P)PDM,C4S.`D)"B=L
M;V-K<R<)+3,R,S<)"0HG8G5S:VEN9R`H=&AA;FMS($MI;2$I)PD),3(S"0HG
M:6YV97-T;W(G"0DW-34S"0HG<V%L92`H=&EE<B`Q*2<)"3,X,`D*)V)R96%C
M:&EN9R!C:&%R9V4G"2TR.3$R"0D*)W-A;&5S("AT:65R(#$I)PD)-S,Q,`D*
M)W-A;&4@*'1I97(@,BDG"0DT-C@P"0HG;&]I=&5R:6YG(&9I;F4G"2TQ.#D)
M"0HG<V%L97,@*'1I97(@,2DG"0DW.3@)"B=T87@@979A<VEO;B<)"3,Q-0D*
M)W-U8VME<G,@9F]R9V]T('1O(&-A;F-E;"!F<F5E('1R:6%L)PD),3`T-`D*
M)W)I='5A;"<)"38V-@D*)W-A;&5S("AT:65R(#$I)PD),C$S-@D*)W=A9V5S
M)PDM-#,P,`D)"B=A;G1I=FER=7,@<W5B<V-R:7!T:6]N)PDM,C8S,@D)"B=C
M;VUP86YY(&-A<B<)+3(U-#$)"0HG<V%L97,@*'1I97(@,2DG"0DQ.3`T"0HG
M<V%L97,@*'1I97(@,2P@,BDG"0DU,30X"0HG4'5B;&EC($UA;&%D>2!'<F%N
M="<)"3@U.`D*)T1E9F5A=&5D($%S<&ER871I;VYS($=R86YT)PD)-S8X"0HG
M<V%L97,@*'1I97(@,2DG"0DQ,C`T"0HG<V%L97,@*&]T:&5R*2<)"3$Y,S@)
M"B=S86QE<R`H87-S;W)T960I)PD)-34T-`D*)VQE9V%L(&9E97,G"2TT-CDR
M"0D*)W-P86-E('!R;V=R86TG"2TQ,S$T"0D*)W-A;&4@*'1I97(@,BDG"0DR
M-3`X"0HG;6]N97DG"2TS-@D)"B=S86QE<R`H87-S;W)T960I)PD)-#(V-@D*
M)V%S<V5T('-A;&4G"0DT-3<V"0HG<V%L97,@*&5X=&]R=&5D*2<)"3(R-S4)
M"B=A;G1I=FER=7,@<V5T=&QE;65N="<)"3(R,S8)"B=M;W)A;&4G"2TQ-3DV
M"0D*)VQO86X@<VAA<FLG"2TT.34Y"0D*)V-O;7!L:6%N8V4G"2TX,38)"0HG
M;VEL(&%S<V5T(&=R;W=T:"<)"3(U,@D*)W=A9V5S)PDM-#4S.0D)"B=S86QE
M<R`H=&EE<B`P*2<)"3$S-0D*)W!A<&5R(&UA8VAE)PDM,34S"0D*)W-A;&4@
M*'-P96-I86PI)PD)-S`Y.`D*)VEN=F5S=&]R(&1I=FED96YD<R<)+3$X,#`)
M"0HG;VEL(&%S<V5T(&=R;W=T:"<)"3(P-S<)"B=I;G9E<W1O<B<)"3,T,@D*
M"2=4;W1A;"!I;F-O;6EN9W,G"2=4;W1A;"!O=71G;VEN9W,G"2=.970Z)PH)
3+34Q.3<S"3<W.#,Q"3(U.#4X"B=4
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/finance/Accounts April Final.CSV'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/finance/Accounts April Final.CSV failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/finance/Accounts April Final.CSV': 'MD5 check failed'
       ) << \SHAR_EOF
ca6570798a96d6d2efe0cbc4fffbe88f  USB Flash Drive/finance/Accounts April Final.CSV
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/finance/Accounts April Final.CSV'` -ne 1234 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/finance/Accounts April Final.CSV' is not 1234"
  fi
fi
# ============= USB Flash Drive/.intro.txt ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/.intro.txt'
then
${echo} "x - SKIPPING USB Flash Drive/.intro.txt (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/.intro.txt
M"CT]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]
M/3T]/3T]/3T]/3T]/3T]/3T*"DAE;&QO($QA<G,L"@H*5&AE(&AI9VAE<BUU
M<',@=V%N="!T:&4@2VER86X@4&%T96P@8V%S92!W<F%P<&5D('5P('%U:6-K
M;'DN($9L86AE<G1YXH"9<R!T96%M(&ES(&)U<WDN($D@;F5E9"!Y;W4@;VX@
M:70N"@I4:&4@9&5C96%S963B@)ES('-P;W5S92P@2W)I<VAN82!0871E;"P@
M9F]U;F0@=&AE(&)O9'D@:6X@=&AE:7(@<VAA<F5D(&AO;64@;VX@=&AE(&UO
M<FYI;F<@;V8@=&AE(#)N9"X@5&AE<F4@=V%S(&YO('-I9VX@;V8@82!B<F5A
M:R!I;BX*"D$@55-"(&9L87-H(&1R:79E('=A<R!F;W5N9"!O;B!T:&4@8F]D
M>2P@=VAI8V@@=V4@8F5L:65V92!W87,@:6X@2VER86X@4&%T96SB@)ES('!O
M<W-E<W-I;VX@870@=&EM92!O9B!D96%T:"X@271S(&-O;G1E;G1S(&%R92!A
M='1A8VAE9"X*"E1H92!C;W)O;F5R(')E<&]R=',@=&AA="!T:&4@9&5C96%S
M960@9&EE9"!O9B!B;&]O9"!L;W-S+"`S-B!T;R`T."!H;W5R<R!B969O<F4@
M9&ES8V]V97)Y+B!+<FES:&YA(%!A=&5L(&-L86EM<R!T;R!H879E(&)E96X@
M:6X@=&AE(&%I<B!D=7)I;F<@=&AA="!I;G1E<G9A;"P@86QT:&]U9V@@=V4@
M87)E('-T:6QL('=A:71I;F<@9F]R(&-O;F9I<FUA=&EO;B!F<F]M('1H92!#
M86ER;R!);G1E<FYA=&EO;F%L($%I<G!O<G0N(%!A=&5L('=A<R!S=&%B8F5D
M('1H<F5E('1I;65S(&EN('1H92!B86-K+"!N;R!S=')U9V=L92X*"@I"97-T
4(&]F(&QU8VLL"D,N22X@4V%I9`IB
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/.intro.txt'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/.intro.txt failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/.intro.txt': 'MD5 check failed'
       ) << \SHAR_EOF
9fd567c73b4e1a9a89e547c5f6ba9d2c  USB Flash Drive/.intro.txt
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/.intro.txt'` -ne 785 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/.intro.txt' is not 785"
  fi
fi
# ============= USB Flash Drive/Card.txt ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/Card.txt'
then
${echo} "x - SKIPPING USB Flash Drive/Card.txt (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/Card.txt
M2&5L;&\@:&5L;&\@2VER86XA"@I!('9E<GD@=F5R>2!H87!P>2!H87!P>2!B
M:7)T:&1A>2!B:7)T:&1A>2!T;R!Y;W4L"@I&<F]M.@H*4&%T"DMI;0I#"E!A
A<FES"E)A=F5N(&%N9"!2=7-K82$*"E1O.@H*2TE204X*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/Card.txt'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/Card.txt failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/Card.txt': 'MD5 check failed'
       ) << \SHAR_EOF
f852c16da7ff0519435e5442a1baf760  USB Flash Drive/Card.txt
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/Card.txt'` -ne 123 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/Card.txt' is not 123"
  fi
fi
# ============= USB Flash Drive/site/index1.html ==============
if test ! -d 'USB Flash Drive/site'; then
  mkdir 'USB Flash Drive/site' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/site/index1.html'
then
${echo} "x - SKIPPING USB Flash Drive/site/index1.html (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/site/index1.html
M/"%$3T-465!%(&AT;6P^"CQH=&UL/@H\:&5A9#X*/"$M+2!(5$U,($-O9&5S
M(&)Y(%%U86-K:70N8V]M("TM/@H\=&ET;&4^"CPO=&ET;&4^"CQM971A(&YA
M;64](G9I97=P;W)T(B!C;VYT96YT/2)W:61T:#UD979I8V4M=VED=&@L(&EN
M:71I86PM<V-A;&4],2(^"CQS='EL93X*8F]D>2![8F%C:V=R;W5N9"UC;VQO
M<CHC9F9F9F9F.V)A8VMG<F]U;F0M<F5P96%T.FYO+7)E<&5A=#MB86-K9W)O
M=6YD+7!O<VET:6]N.G1O<"!L969T.V)A8VMG<F]U;F0M871T86-H;65N=#IF
M:7AE9#M]"F@Q>V9O;G0M9F%M:6QY.D%R:6%L+"!S86YS+7-E<FEF.V-O;&]R
M.B,P,#`P,#`[8F%C:V=R;W5N9"UC;VQO<CHC9F9F9F9F.WT*<"![9F]N="UF
M86UI;'DZ1V5O<F=I82P@<V5R:68[9F]N="US:7IE.C$T<'@[9F]N="US='EL
M93IN;W)M86P[9F]N="UW96EG:'0Z;F]R;6%L.V-O;&]R.B,P,#`P,#`[8F%C
M:V=R;W5N9"UC;VQO<CHC9F9F9F9F.WT*/"]S='EL93X*/"]H96%D/@H\8F]D
M>3X*/&@Q/D%B;W5T($U,32!3;VQU=&EO;G,@3'1D+B$\+V@Q/@H\<#Y+:7)A
M;B!0871E;"P@8VAI968@;V9F:6-E<BP@:&%S(&)E96X@=VET:"!U<R!S:6YC
E92!T:&4@8F5G:6YN:6YG+CPO<#X*/"]B;V1Y/@H\+VAT;6P^"B!U
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/site/index1.html'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/site/index1.html failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/site/index1.html': 'MD5 check failed'
       ) << \SHAR_EOF
3cf6f7fa46935409054bbefb34f3a066  USB Flash Drive/site/index1.html
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/site/index1.html'` -ne 622 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/site/index1.html' is not 622"
  fi
fi
# ============= USB Flash Drive/site/index2.html ==============
if test ! -d 'USB Flash Drive/site'; then
  mkdir 'USB Flash Drive/site' || exit 1
fi
if test -n "${keep_file}" && test -f 'USB Flash Drive/site/index2.html'
then
${echo} "x - SKIPPING USB Flash Drive/site/index2.html (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/site/index2.html
M/"%$3T-465!%(&AT;6P^"CQH=&UL/@H\:&5A9#X*/"$M+2!(5$U,($-O9&5S
M(&)Y(%%U86-K:70N8V]M("TM/@H\=&ET;&4^"D%B;W5T($U,32!3;VQU=&EO
M;G,@3'1D+B$*/"]T:71L93X*/&UE=&$@;F%M93TB=FEE=W!O<G0B(&-O;G1E
M;G0](G=I9'1H/61E=FEC92UW:61T:"P@:6YI=&EA;"US8V%L93TQ(CX*/'-T
M>6QE/@IB;V1Y('MB86-K9W)O=6YD+6-O;&]R.B-F9F9F9F8[8F%C:V=R;W5N
M9"UR97!E870Z;F\M<F5P96%T.V)A8VMG<F]U;F0M<&]S:71I;VXZ=&]P(&QE
M9G0[8F%C:V=R;W5N9"UA='1A8VAM96YT.F9I>&5D.WT*:#%[9F]N="UF86UI
M;'DZ07)I86PL('-A;G,M<V5R:68[8V]L;W(Z(S`P,#`P,#MB86-K9W)O=6YD
M+6-O;&]R.B-F9F9F9F8[?0IP('MF;VYT+69A;6EL>3I'96]R9VEA+"!S97)I
M9CMF;VYT+7-I>F4Z,31P>#MF;VYT+7-T>6QE.FYO<FUA;#MF;VYT+7=E:6=H
M=#IN;W)M86P[8V]L;W(Z(S`P,#`P,#MB86-K9W)O=6YD+6-O;&]R.B-F9F9F
M9F8[?0H\+W-T>6QE/@H\+VAE860^"CQB;V1Y/@H\:#$^06)O=70@34Q-(%-O
M;'5T:6]N<R!,=&0N(3PO:#$^"CQP/E!E>71O;B!386YC:&5Z+"!F;W5N9&5R
M(&%N9"!S=7!R96UE(&]F9FEC97(L(&ES(&$@9V]O9"!P97)S;VXN/"]P/@H\
M<#Y+:7)A;B!0871E;"P@8V\M9F]U;F1E<B!A;F0@8VAI968@;V9F:6-E<BP@
M:&%S(&)E96X@=VET:"!U<R!S:6YC92!T:&4@8F5G:6YN:6YG+CPO<#X*/"]B
-;V1Y/@H\+VAT;6P^"B!U
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/site/index2.html'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/site/index2.html failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/site/index2.html': 'MD5 check failed'
       ) << \SHAR_EOF
6f8e04bb54cc007a1bdf3430ebcff76a  USB Flash Drive/site/index2.html
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/site/index2.html'` -ne 733 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/site/index2.html' is not 733"
  fi
fi
# ============= USB Flash Drive/site/index10.html ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/site/index10.html'
then
${echo} "x - SKIPPING USB Flash Drive/site/index10.html (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/site/index10.html
M/"%$3T-465!%(&AT;6P^"CQH=&UL/@H\:&5A9#X*/'1I=&QE/@I!8F]U="!-
M3$T@4V]L=71I;VYS($QT9"X@+2!-3$T@4V]L=71I;VYS+"!F;W(@86QL('EO
M=7(@34Q-('!R;V)L96US(0H\+W1I=&QE/@H\;65T82!H='1P+65Q=6EV/2)#
M;VYT96YT+51Y<&4B(&-O;G1E;G0](G1E>'0O:'1M;#L@8VAA<G-E=#UU=&8M
M."(@+SX*/&UE=&$@;F%M93TB=FEE=W!O<G0B(&-O;G1E;G0](G=I9'1H/61E
M=FEC92UW:61T:"P@:6YI=&EA;"US8V%L93TQ(CX*/&QI;FL@<F5L/2)I8V]N
M(B!H<F5F/2)H='1P<SHO+VUE9&EA+F1I<V-O<F1A<'`N;F5T+V%T=&%C:&UE
M;G1S+S<R-C<S.#<U-S`Y,C,W-C8R-R\Y,3,Y,C<V-C$R,S@R-#<T,S0O=6YK
M;F]W;BYP;F<B/@H\<V-R:7!T/@IF=6YC=&EO;B!L;V%D*'0L:2QS*7MS9714
M:6UE;W5T*"@I/3Y[:2YS<F,])VAT='!S.B\O=&AI<W!E<G-O;F1O97-N;W1E
M>&ES="YC;VTO:6UA9V4_)RMT.VDN;VYL;V%D/6YU;&Q]+',J,C`P,"E]"CPO
M<V-R:7!T/@H\<W1Y;&4^"F)O9'D@>V)A8VMG<F]U;F0M8V]L;W(Z(V%A8F)D
M9#MB86-K9W)O=6YD+7)E<&5A=#IN;RUR97!E870[8F%C:V=R;W5N9"UP;W-I
M=&EO;CIT;W`@;&5F=#MB86-K9W)O=6YD+6%T=&%C:&UE;G0Z9FEX960[;6%R
M9VEN.C4E.WT*:#$@>V9O;G0M9F%M:6QY.B!486AO;6$L(%9E<F1A;F$L(%-E
M9V]E+"!S86YS+7-E<FEF.V-O;&]R.B,P,#`P,#`[9F]N="UW96EG:'0Z8F]L
M9#M]"G`@>V9O;G0M<VEZ93HQ-3`E.V9O;G0M<W1Y;&4Z;F]R;6%L.V9O;G0M
M=V5I9VAT.FYO<FUA;#MC;VQO<CHC,#`P,#`P.WT*(W!R;V9I;&5S('MD:7-P
M;&%Y.F9L97@[9FQE>"UW<F%P.G=R87`[:G5S=&EF>2UC;VYT96YT.F-E;G1E
M<CM]"BYP<F]F:6QE('MM87@M=VED=&@Z-#`E.VAE:6=H=#IA=71O.VUA<F=I
M;CHU)7T*:6UG('MD:7-P;&%Y.F)L;V-K.W=I9'1H.C4P)3MM87)G:6XM;&5F
M=#IA=71O.VUA<F=I;BUR:6=H=#IA=71O.V]B:F5C="UF:70Z8V]V97([8F]R
M9&5R+7)A9&EU<SHU,"4[?0IH=&UL('MF;VYT+69A;6EL>3H@1V]U9'D@3VQD
M(%-T>6QE+"!'87)A;6]N9"P@0FEG($-A<VQO;BP@5&EM97,@3F5W(%)O;6%N
M+"!S97)I9CM]"CPO<W1Y;&4^"CPA+2T@>6]U('=R;W1E('1H92!P86=E(&EN
M("]'96]R9VEA+S\@22!A;2!33R!U;FEM<')E<W-E9"!)('=I<V@@22!C;W5L
M9"!P=7)G92!F;VYT(&9R;VT@=&AE('9E<G-I;VX@8V]N=')O;"!L;V<@+2T^
M"CPA+2T@=V4@87)E;B=T(&%L;"!C<W,@9V5N:75S97,@0RX*;6%Y8F4@>6]U
M)VQL(&AA=F4@=&\@<VAO=R!M92!S;VUE=&EM92TM/@H\+VAE860^"CQB;V1Y
M/@H\:#$^06)O=70@34Q-(%-O;'5T:6]N<R!,=&0N/"]H,3X*/&1I=B!I9#TB
M<')O9FEL97,B/@H\9&EV(&-L87-S/2)P<F]F:6QE(CX*/&EM9R!S<F,](FAT
M='!S.B\O:75P86,N;W)G+W=P+6-O;G1E;G0O=7!L;V%D<R\R,#$X+S`U+V1E
M9F%U;'0M879A=&%R+3,P,'@S,#`N<&YG(B!A;'0](E!E>71O;B!0+B!386YC
M:&5Z(B!O;FQO860](FQO860H)W!E>71O;G!S86YC:&5Z)RQT:&ES+#`I(B`O
M/@H\<#Y097ET;VX@4V%N8VAE>BP@1F]U;F1E<B!A;F0@4W5P<F5M92!/9F9I
M8V5R+"!B<F]U9VAT('1O(&QI9VAT('1H92!V:7-I;VX@;V8@34Q-(%-O;'5T
M:6]N<R!,=&0N(&%N9"!I=',@96UP;&]Y965S.B!T:&%T(&]N92!D87DL('1H
M92!W;W)L9"!C;W5L9"!B92!R:60@;V8@34Q-('!R;V)L96US+B!386YC:&5Z
M(&AA9"!P<F5V:6]U<VQY('-A="!O;B!T:&4@0U!";U(@0F]A<F0@;V8@4F5V
M:65W(&%N9"!O=F5R<V%W('1H92!#4%0N($YO=R!386YC:&5Z(&QI=F5S(&EN
M($=I>F$@=VET:"!A(&9A;6EL>2!A;F0@82!P970N/"]P/@H\+V1I=CX\9&EV
M(&-L87-S/2)P<F]F:6QE(CX*/&EM9R!S<F,](FAT='!S.B\O:75P86,N;W)G
M+W=P+6-O;G1E;G0O=7!L;V%D<R\R,#$X+S`U+V1E9F%U;'0M879A=&%R+3,P
M,'@S,#`N<&YG(B!A;'0](DMI<F%N(%!A=&5L(B!O;FQO860](FQO860H)VMI
M<F%N<&%T96PG+'1H:7,L,2DB("\^"CQP/DMI<F%N(%!A=&5L+"!#;RU&;W5N
M9&5R(&%N9"!#:&EE9B!/9F9I8V5R+"!H87,@8F5E;B!W:71H('5S('-I;F-E
M('1H92!B96=I;FYI;F<L(&)A8VL@=VAE;B!-3$T@4V]L=71I;VYS($QT9"X@
M=V%S(&]N;'D@='=O(&1R96%M97)S(&%N9"!A;B!I9&5A+B!!;F0@;&]O:R!A
M="!H;W<@=&AE>2!R97!A:60@2VER86XA($MI<F%N(&AA<R!R97-I9VYE9"!A
M<R!O9B!T:&ES(&UO;65N="P@8F5C875S92!M;&T@<V]L=71I;VYS(&-O;G-I
M9&5R<R!I=',@=F%L=65D(&5M<&QO>65E<R!G=6EL='D@=6YT:6P@<')O=F5N
M(&EN;F]C96YT+B!+:7)A;B!W:6QL(&YE=F5R(')E='5R;CPO<#X*/"]D:78^
M/&1I=B!C;&%S<STB<')O9FEL92(^"CQI;6<@<W)C/2)H='1P<SHO+VEU<&%C
M+F]R9R]W<"UC;VYT96YT+W5P;&]A9',O,C`Q."\P-2]D969A=6QT+6%V871A
M<BTS,#!X,S`P+G!N9R(@86QT/2)+:6T@4V]R;VMA(B!O;FQO860](FQO860H
M)VMI;7-O<F]K82<L=&AI<RPR*2(@+SX*/'`^2VEM(%-O<F]K82P@2'5M86X@
M17AC96QL96YC92!/9F9I8V5R+"!A;F0@97AC96QL96YT(&%T('1H92!R;VQE
M+B!3;W)O:V$G<R!T96YU<F4@:&%S('-E96X@<')O9FET<R!S:WER;V-K970L
M('=H:6QE(&ME97!I;F<@:'5M86X@97AC96QL96YC92!A="!M86YA9V5A8FQE
M(&QE=F5L<RX\+W`^"CPO9&EV/CQD:78@8VQA<W,](G!R;V9I;&4B/@H\:6UG
M('-R8STB:'1T<',Z+R]I=7!A8RYO<F<O=W`M8V]N=&5N="]U<&QO861S+S(P
M,3@O,#4O9&5F875L="UA=F%T87(M,S`P>#,P,"YP;F<B(&%L=#TB4&%R:7,@
M36]N=&9E<G)A="(@;VYL;V%D/2)L;V%D*"=P87)I<VUO;G1F97)R870G+'1H
M:7,L,RDB("\^"CQP/E!A<FES($UO;G1F97)R870L($1I<F5C=&]R(&]F(%-C
M:65N8V4L(&ME97!S('5S(&%L;"!S869E+B!(97)E(&%T($U,32!3;VQU=&EO
M;G,@3'1D+BP@=V4@<')I9&4@;W5R<V5L=F5S(&]N(&]U<B!W87)D<R!A;F0@
M<VEG:6QS+CPO<#X*/"]D:78^/&1I=B!C;&%S<STB<')O9FEL92(^"CQI;6<@
M<W)C/2)H='1P<SHO+VEU<&%C+F]R9R]W<"UC;VYT96YT+W5P;&]A9',O,C`Q
M."\P-2]D969A=6QT+6%V871A<BTS,#!X,S`P+G!N9R(@86QT/2)#96QE<R!$
M)T%G;W-T:6YO(B!O;FQO860](FQO860H)V-E;&5S9&%G;W-T:6YO)RQT:&ES
M+#0I(B`O/@H\<#Y#96QE<R!$)T%G;W-T:6YO+"!$:7)E8W1O<B!O9B!"=7-I
M;F5S<R!);FYO=F%T:6]N+"!W87,@8F]R;B!I;B!#86ER;R!A<R!A(&-H:6QD
M+"!T;R!G<F5A="!E9F9E8W0N/"]P/B`\(2TM('=O87<@+2T^"CPA+2T@)W=A
M;W<G('-O;65T:&EN9R!W<F]N9R!W:71H(&ET/RTM/@H\+V1I=CX\9&EV(&-L
M87-S/2)P<F]F:6QE(CX*/&EM9R!S<F,](FAT='!S.B\O:75P86,N;W)G+W=P
M+6-O;G1E;G0O=7!L;V%D<R\R,#$X+S`U+V1E9F%U;'0M879A=&%R+3,P,'@S
M,#`N<&YG(B!A;'0](E)U<VMA($ME871I;F<B(&]N;&]A9#TB;&]A9"@G<G5S
M:V%K96%T:6YG)RQT:&ES+#4I(B`O/@H\<#Y2=7-K82!+96%T:6YG+"!$:7)E
M8W1O<B!O9B!!9&UI;FES=')A=&EO;B!A;F0@06-Q=6ES:71I;VYS+"!R=6YS
M('1H92!!8W%U:7-I=&EO;G,@1&5P87)T;65N="!A;F0@861M:6YI<W1E<G,@
M=&AE(&]P97)A=&EO;G,@;V8@=&AE(&-O;7!A;GDN($ME871I;F<@86QS;R!V
M;VQU;G1E97)S(&%T(&%N(&]R<&AA;F%G92P@82!S:VEL;'-E="!B<F]U9VAT
M('1O('1H92!R;VQE('=I=&@@9W5S=&\N/"]P/@H\+V1I=CX*/"]D:78^"CPO
X.8F]D>3X*/"]H=&UL/@II
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/site/index10.html'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/site/index10.html failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/site/index10.html': 'MD5 check failed'
       ) << \SHAR_EOF
e22a602a6c3cb0a362e9cfec2ee10802  USB Flash Drive/site/index10.html
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/site/index10.html'` -ne 3749 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/site/index10.html' is not 3749"
  fi
fi
# ============= USB Flash Drive/site/index6.html ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/site/index6.html'
then
${echo} "x - SKIPPING USB Flash Drive/site/index6.html (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/site/index6.html
M/"%$3T-465!%(&AT;6P^"CQH=&UL/@H\:&5A9#X*/'1I=&QE/@I!8F]U="!-
M3$T@4V]L=71I;VYS($QT9"X@+2!-3$T@4V]L=71I;VYS+"!F;W(@86QL('EO
M=7(@34Q-('!R;V)L96US(0H\+W1I=&QE/@H\;65T82!N86UE/2)V:65W<&]R
M="(@8V]N=&5N=#TB=VED=&@]9&5V:6-E+7=I9'1H+"!I;FET:6%L+7-C86QE
M/3$B/@H\<V-R:7!T/@IF=6YC=&EO;B!L;V%D*'0L:2QS*7MS9714:6UE;W5T
M*"@I/3Y[:2YS<F,])VAT='!S.B\O=&AI<W!E<G-O;F1O97-N;W1E>&ES="YC
M;VTO:6UA9V4_)RMT.VDN;VYL;V%D/6YU;&Q]+',J,C`P,"E]"CPO<V-R:7!T
M/@H\<W1Y;&4^"F)O9'D@>V)A8VMG<F]U;F0M8V]L;W(Z(V%A8F)D9#MB86-K
M9W)O=6YD+7)E<&5A=#IN;RUR97!E870[8F%C:V=R;W5N9"UP;W-I=&EO;CIT
M;W`@;&5F=#MB86-K9W)O=6YD+6%T=&%C:&UE;G0Z9FEX960[;6%R9VEN.C4E
M.WT*:#$@>V9O;G0M9F%M:6QY.D%R:6%L+"!S86YS+7-E<FEF.V-O;&]R.B,P
M,#`P,#`[=&5X="UD96-O<F%T:6]N.G5N9&5R;&EN93M]"G`@>V9O;G0M9F%M
M:6QY.D=E;W)G:6$L('-E<FEF.V9O;G0M<VEZ93HQ-3`E.V9O;G0M<W1Y;&4Z
M;F]R;6%L.V9O;G0M=V5I9VAT.FYO<FUA;#MC;VQO<CHC,#`P,#`P.WT*(W!R
M;V9I;&5S('MD:7-P;&%Y.F9L97@[9FQE>"UW<F%P.G=R87`[:G5S=&EF>2UC
M;VYT96YT.F-E;G1E<CM]"BYP<F]F:6QE('MM87@M=VED=&@Z-#`E.VAE:6=H
M=#IA=71O.VUA<F=I;CHU)7T*:6UG('MD:7-P;&%Y.F)L;V-K.W=I9'1H.C4P
M)3MM87)G:6XM;&5F=#IA=71O.VUA<F=I;BUR:6=H=#IA=71O.V]B:F5C="UF
M:70Z8V]V97([8F]R9&5R+7)A9&EU<SHU,"4[?0H\+W-T>6QE/@H\+VAE860^
M"CQB;V1Y/@H\:#$^06)O=70@34Q-(%-O;'5T:6]N<R!,=&0N/"]H,3X*/&1I
M=B!I9#TB<')O9FEL97,B/@H\9&EV(&-L87-S/2)P<F]F:6QE(CX*/&EM9R!S
M<F,](FAT='!S.B\O:75P86,N;W)G+W=P+6-O;G1E;G0O=7!L;V%D<R\R,#$X
M+S`U+V1E9F%U;'0M879A=&%R+3,P,'@S,#`N<&YG(B!A;'0](E!E>71O;B!0
M+B!386YC:&5Z(B!O;FQO860](FQO860H)W!E>71O;G!S86YC:&5Z)RQT:&ES
M+#`I(B`O/@H\<#Y097ET;VX@4V%N8VAE>BP@1F]U;F1E<B!A;F0@4W5P<F5M
M92!/9F9I8V5R+"!B<F]U9VAT('1O(&QI9VAT('1H92!V:7-I;VX@;V8@34Q-
M(%-O;'5T:6]N<R!,=&0N(&%N9"!I=',@96UP;&]Y965S.B!T:&%T(&]N92!D
M87DL('1H92!W;W)L9"!C;W5L9"!B92!R:60@;V8@34Q-('!R;V)L96US+B!3
M86YC:&5Z(&AA9"!P<F5V:6]U<VQY('-A="!O;B!T:&4@0U!";U(@0F]A<F0@
M;V8@4F5V:65W(&%N9"!O=F5R<V%W('1H92!#4%0N($YO=R!386YC:&5Z(&QI
M=F5S(&EN($=I>F$@=VET:"!A(&9A;6EL>2!A;F0@82!P970N/"]P/@H\+V1I
M=CX\9&EV(&-L87-S/2)P<F]F:6QE(CX*/&EM9R!S<F,](FAT='!S.B\O:75P
M86,N;W)G+W=P+6-O;G1E;G0O=7!L;V%D<R\R,#$X+S`U+V1E9F%U;'0M879A
M=&%R+3,P,'@S,#`N<&YG(B!A;'0](DMI<F%N(%!A=&5L(B!O;FQO860](FQO
M860H)VMI<F%N<&%T96PG+'1H:7,L,2DB("\^"CQP/DMI<F%N(%!A=&5L+"!#
M;RU&;W5N9&5R(&%N9"!#:&EE9B!/9F9I8V5R+"!H87,@8F5E;B!W:71H('5S
M('-I;F-E('1H92!B96=I;FYI;F<L(&)A8VL@=VAE;B!-3$T@4V]L=71I;VYS
M($QT9"X@=V%S(&]N;'D@='=O(&1R96%M97)S(&%N9"!A;B!I9&5A+B!+:7)A
M;B=S('-P87)E('1I;64@:7,@<W!E;G0@9')E86UI;F<@;V8@;6]R92!I9&5A
M<R!T;R!C:&%N9V4@=&AE('=O<FQD+CPO<#X*/"]D:78^/&1I=B!C;&%S<STB
M<')O9FEL92(^"CQI;6<@<W)C/2)H='1P<SHO+VEU<&%C+F]R9R]W<"UC;VYT
M96YT+W5P;&]A9',O,C`Q."\P-2]D969A=6QT+6%V871A<BTS,#!X,S`P+G!N
M9R(@86QT/2)+:6T@4V]R;VMA(B!O;FQO860](FQO860H)VMI;7-O<F]K82<L
M=&AI<RPR*2(@+SX*/'`^2VEM(%-O<F]K82P@2'5M86X@17AC96QL96YC92!/
M9F9I8V5R+"!A;F0@97AC96QL96YT(&%T('1H92!R;VQE+B!3;W)O:V$G<R!T
M96YU<F4@:&%S('-E96X@<')O9FET<R!S:WER;V-K970L('=H:6QE(&ME97!I
M;F<@:'5M86X@97AC96QL96YC92!A="!M86YA9V5A8FQE(&QE=F5L<RX\+W`^
M"CPO9&EV/CQD:78@8VQA<W,](G!R;V9I;&4B/@H\:6UG('-R8STB:'1T<',Z
M+R]I=7!A8RYO<F<O=W`M8V]N=&5N="]U<&QO861S+S(P,3@O,#4O9&5F875L
M="UA=F%T87(M,S`P>#,P,"YP;F<B(&%L=#TB4&%R:7,@36]N=&9E<G)A="(@
M;VYL;V%D/2)L;V%D*"=P87)I<VUO;G1F97)R870G+'1H:7,L,RDB("\^"CQP
M/E!A<FES($UO;G1F97)R870L($1I<F5C=&]R(&]F(%-C:65N8V4L(&ME97!S
M('5S(&%L;"!S869E+B!(97)E(&%T($U,32!3;VQU=&EO;G,@3'1D+BP@=V4@
M<')I9&4@;W5R<V5L=F5S(&]N(&]U<B!W87)D<R!A;F0@<VEG:6QS+CPO<#X*
M/"]D:78^/&1I=B!C;&%S<STB<')O9FEL92(^"CQI;6<@<W)C/2)H='1P<SHO
M+VEU<&%C+F]R9R]W<"UC;VYT96YT+W5P;&]A9',O,C`Q."\P-2]D969A=6QT
M+6%V871A<BTS,#!X,S`P+G!N9R(@86QT/2)#96QE<R!$)T%G;W-T:6YO(B!O
M;FQO860](FQO860H)V-E;&5S9&%G;W-T:6YO)RQT:&ES+#0I(B`O/@H\<#Y#
M96QE<R!$)T%G;W-T:6YO+"!$:7)E8W1O<B!O9B!"=7-I;F5S<R!);FYO=F%T
M:6]N+"!W87,@8F]R;B!I;B!#86ER;R!A<R!A(&-H:6QD+"!T;R!G<F5A="!E
M9F9E8W0N/"]P/@H\+V1I=CX\9&EV(&-L87-S/2)P<F]F:6QE(CX*/&EM9R!S
M<F,](FAT='!S.B\O:75P86,N;W)G+W=P+6-O;G1E;G0O=7!L;V%D<R\R,#$X
M+S`U+V1E9F%U;'0M879A=&%R+3,P,'@S,#`N<&YG(B!A;'0](E)U<VMA($ME
M871I;F<B(&]N;&]A9#TB;&]A9"@G<G5S:V%K96%T:6YG)RQT:&ES+#4I(B`O
M/@H\<#Y2=7-K82!+96%T:6YG+"!$:7)E8W1O<B!O9B!!8W%U:7-I=&EO;G,L
M(')U;G,@=&AE($%C<75I<VET:6]N<R!$97!A<G1M96YT+B!+96%T:6YG(&%L
M<V\@=F]L=6YT965R<R!A="!A;B!O<G!H86YA9V4L(&$@<VMI;&QS970@8G)O
M=6=H="!T;R!T:&4@<F]L92!W:71H(&=U<W1O+CPO<#X*/"]D:78^/&1I=B!C
M;&%S<STB<')O9FEL92(^"CQI;6<@<W)C/2)H='1P<SHO+VEU<&%C+F]R9R]W
M<"UC;VYT96YT+W5P;&]A9',O,C`Q."\P-2]D969A=6QT+6%V871A<BTS,#!X
M,S`P+G!N9R(@86QT/2)2879E;B!-87)S:6-K(B!O;FQO860](FQO860H)W)A
M=F5N;6%R<VEC:R<L=&AI<RPV*2(@+SX*/'`^4F%V96X@36%R<VEC:RP@1&ER
M96-T;W(@;V8@061M:6YI<W1R871I;VXL(&%D;6EN:7-T97)S('1H92!O<&5R
M871I;VYS(&]F('1H92!C;VUP86YY+CPO<#X*/"]D:78^"CPO9&EV/@H\+V)O
,9'D^"CPO:'1M;#X*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/site/index6.html'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/site/index6.html failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/site/index6.html': 'MD5 check failed'
       ) << \SHAR_EOF
d24a0070600bae71d36aa17ea17801a9  USB Flash Drive/site/index6.html
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/site/index6.html'` -ne 3342 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/site/index6.html' is not 3342"
  fi
fi
# ============= USB Flash Drive/site/index8.html ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/site/index8.html'
then
${echo} "x - SKIPPING USB Flash Drive/site/index8.html (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/site/index8.html
M/"%$3T-465!%(&AT;6P^"CQH=&UL/@H\:&5A9#X*/'1I=&QE/@I!8F]U="!-
M3$T@4V]L=71I;VYS($QT9"X@+2!-3$T@4V]L=71I;VYS+"!F;W(@86QL('EO
M=7(@34Q-('!R;V)L96US(0H\+W1I=&QE/@H\;65T82!H='1P+65Q=6EV/2)#
M;VYT96YT+51Y<&4B(&-O;G1E;G0](G1E>'0O:'1M;#L@8VAA<G-E=#UU=&8M
M."(@+SX*/&UE=&$@;F%M93TB=FEE=W!O<G0B(&-O;G1E;G0](G=I9'1H/61E
M=FEC92UW:61T:"P@:6YI=&EA;"US8V%L93TQ(CX*/&QI;FL@<F5L/2)I8V]N
M(B!H<F5F/2)H='1P<SHO+VUE9&EA+F1I<V-O<F1A<'`N;F5T+V%T=&%C:&UE
M;G1S+S<R-C<S.#<U-S`Y,C,W-C8R-R\Y,3,Y,C<V-C$R,S@R-#<T,S0O=6YK
M;F]W;BYP;F<B/@H\<V-R:7!T/@IF=6YC=&EO;B!L;V%D*'0L:2QS*7MS9714
M:6UE;W5T*"@I/3Y[:2YS<F,])VAT='!S.B\O=&AI<W!E<G-O;F1O97-N;W1E
M>&ES="YC;VTO:6UA9V4_)RMT.VDN;VYL;V%D/6YU;&Q]+',J,C`P,"E]"CPO
M<V-R:7!T/@H\<W1Y;&4^"F)O9'D@>V)A8VMG<F]U;F0M8V]L;W(Z(V%A8F)D
M9#MB86-K9W)O=6YD+7)E<&5A=#IN;RUR97!E870[8F%C:V=R;W5N9"UP;W-I
M=&EO;CIT;W`@;&5F=#MB86-K9W)O=6YD+6%T=&%C:&UE;G0Z9FEX960[;6%R
M9VEN.C4E.WT*:#$@>V9O;G0M9F%M:6QY.B!486AO;6$L(%9E<F1A;F$L(%-E
M9V]E+"!S86YS+7-E<FEF.V-O;&]R.B,P,#`P,#`[9F]N="UW96EG:'0Z8F]L
M9#M]"G`@>V9O;G0M<VEZ93HQ-3`E.V9O;G0M<W1Y;&4Z;F]R;6%L.V9O;G0M
M=V5I9VAT.FYO<FUA;#MC;VQO<CHC,#`P,#`P.WT*(W!R;V9I;&5S('MD:7-P
M;&%Y.F9L97@[9FQE>"UW<F%P.G=R87`[:G5S=&EF>2UC;VYT96YT.F-E;G1E
M<CM]"BYP<F]F:6QE('MM87@M=VED=&@Z-#`E.VAE:6=H=#IA=71O.VUA<F=I
M;CHU)7T*:6UG('MD:7-P;&%Y.F)L;V-K.W=I9'1H.C4P)3MM87)G:6XM;&5F
M=#IA=71O.VUA<F=I;BUR:6=H=#IA=71O.V]B:F5C="UF:70Z8V]V97([8F]R
M9&5R+7)A9&EU<SHU,"4[?0IH=&UL('MF;VYT+69A;6EL>3H@1V]U9'D@3VQD
M(%-T>6QE+"!'87)A;6]N9"P@0FEG($-A<VQO;BP@5&EM97,@3F5W(%)O;6%N
M+"!S97)I9CM]"CPO<W1Y;&4^"CPA+2T@>6]U('=R;W1E('1H92!P86=E(&EN
M("]'96]R9VEA+S\@22!A;2!33R!U;FEM<')E<W-E9"!)('=I<V@@22!C;W5L
M9"!P=7)G92!F;VYT(&9R;VT@=&AE('9E<G-I;VX@8V]N=')O;"!L;V<@+2T^
M"CPA+2T@=V4@87)E;B=T(&%L;"!C<W,@9V5N:75S97,@0RX*;6%Y8F4@>6]U
M)VQL(&AA=F4@=&\@<VAO=R!M92!S;VUE=&EM92TM/@H\+VAE860^"CQB;V1Y
M/@H\:#$^06)O=70@34Q-(%-O;'5T:6]N<R!,=&0N/"]H,3X*/&1I=B!I9#TB
M<')O9FEL97,B/@H\9&EV(&-L87-S/2)P<F]F:6QE(CX*/&EM9R!S<F,](FAT
M='!S.B\O:75P86,N;W)G+W=P+6-O;G1E;G0O=7!L;V%D<R\R,#$X+S`U+V1E
M9F%U;'0M879A=&%R+3,P,'@S,#`N<&YG(B!A;'0](E!E>71O;B!0+B!386YC
M:&5Z(B!O;FQO860](FQO860H)W!E>71O;G!S86YC:&5Z)RQT:&ES+#`I(B`O
M/@H\<#Y097ET;VX@4V%N8VAE>BP@1F]U;F1E<B!A;F0@4W5P<F5M92!/9F9I
M8V5R+"!B<F]U9VAT('1O(&QI9VAT('1H92!V:7-I;VX@;V8@34Q-(%-O;'5T
M:6]N<R!,=&0N(&%N9"!I=',@96UP;&]Y965S.B!T:&%T(&]N92!D87DL('1H
M92!W;W)L9"!C;W5L9"!B92!R:60@;V8@34Q-('!R;V)L96US+B!386YC:&5Z
M(&AA9"!P<F5V:6]U<VQY('-A="!O;B!T:&4@0U!";U(@0F]A<F0@;V8@4F5V
M:65W(&%N9"!O=F5R<V%W('1H92!#4%0N($YO=R!386YC:&5Z(&QI=F5S(&EN
M($=I>F$@=VET:"!A(&9A;6EL>2!A;F0@82!P970N/"]P/@H\+V1I=CX\9&EV
M(&-L87-S/2)P<F]F:6QE(CX*/&EM9R!S<F,](FAT='!S.B\O:75P86,N;W)G
M+W=P+6-O;G1E;G0O=7!L;V%D<R\R,#$X+S`U+V1E9F%U;'0M879A=&%R+3,P
M,'@S,#`N<&YG(B!A;'0](DMI<F%N(%!A=&5L(B!O;FQO860](FQO860H)VMI
M<F%N<&%T96PG+'1H:7,L,2DB("\^"CQP/DMI<F%N(%!A=&5L+"!#;RU&;W5N
M9&5R(&%N9"!#:&EE9B!/9F9I8V5R+"!H87,@8F5E;B!W:71H('5S('-I;F-E
M('1H92!B96=I;FYI;F<L(&)A8VL@=VAE;B!-3$T@4V]L=71I;VYS($QT9"X@
M=V%S(&]N;'D@='=O(&1R96%M97)S(&%N9"!A;B!I9&5A+B!+:7)A;B=S('-P
M87)E('1I;64@:7,@<W!E;G0@9')E86UI;F<@;V8@;6]R92!I9&5A<R!T;R!C
M:&%N9V4@=&AE('=O<FQD+CPO<#X*/"]D:78^/&1I=B!C;&%S<STB<')O9FEL
M92(^"CQI;6<@<W)C/2)H='1P<SHO+VEU<&%C+F]R9R]W<"UC;VYT96YT+W5P
M;&]A9',O,C`Q."\P-2]D969A=6QT+6%V871A<BTS,#!X,S`P+G!N9R(@86QT
M/2)+:6T@4V]R;VMA(B!O;FQO860](FQO860H)VMI;7-O<F]K82<L=&AI<RPR
M*2(@+SX*/'`^2VEM(%-O<F]K82P@2'5M86X@17AC96QL96YC92!/9F9I8V5R
M+"!A;F0@97AC96QL96YT(&%T('1H92!R;VQE+B!3;W)O:V$G<R!T96YU<F4@
M:&%S('-E96X@<')O9FET<R!S:WER;V-K970L('=H:6QE(&ME97!I;F<@:'5M
M86X@97AC96QL96YC92!A="!M86YA9V5A8FQE(&QE=F5L<RX\+W`^"CPO9&EV
M/CQD:78@8VQA<W,](G!R;V9I;&4B/@H\:6UG('-R8STB:'1T<',Z+R]I=7!A
M8RYO<F<O=W`M8V]N=&5N="]U<&QO861S+S(P,3@O,#4O9&5F875L="UA=F%T
M87(M,S`P>#,P,"YP;F<B(&%L=#TB4&%R:7,@36]N=&9E<G)A="(@;VYL;V%D
M/2)L;V%D*"=P87)I<VUO;G1F97)R870G+'1H:7,L,RDB("\^"CQP/E!A<FES
M($UO;G1F97)R870L($1I<F5C=&]R(&]F(%-C:65N8V4L(&ME97!S('5S(&%L
M;"!S869E+B!(97)E(&%T($U,32!3;VQU=&EO;G,@3'1D+BP@=V4@<')I9&4@
M;W5R<V5L=F5S(&]N(&]U<B!W87)D<R!A;F0@<VEG:6QS+CPO<#X*/"]D:78^
M/&1I=B!C;&%S<STB<')O9FEL92(^"CQI;6<@<W)C/2)H='1P<SHO+VEU<&%C
M+F]R9R]W<"UC;VYT96YT+W5P;&]A9',O,C`Q."\P-2]D969A=6QT+6%V871A
M<BTS,#!X,S`P+G!N9R(@86QT/2)#96QE<R!$)T%G;W-T:6YO(B!O;FQO860]
M(FQO860H)V-E;&5S9&%G;W-T:6YO)RQT:&ES+#0I(B`O/@H\<#Y#96QE<R!$
M)T%G;W-T:6YO+"!$:7)E8W1O<B!O9B!"=7-I;F5S<R!);FYO=F%T:6]N+"!W
M87,@8F]R;B!I;B!#86ER;R!A<R!A(&-H:6QD+"!T;R!G<F5A="!E9F9E8W0N
M/"]P/B`\(2TM('=O87<@+2T^"CPA+2T@)W=A;W<G('-O;65T:&EN9R!W<F]N
M9R!W:71H(&ET/RTM/@H\+V1I=CX\9&EV(&-L87-S/2)P<F]F:6QE(CX*/&EM
M9R!S<F,](FAT='!S.B\O:75P86,N;W)G+W=P+6-O;G1E;G0O=7!L;V%D<R\R
M,#$X+S`U+V1E9F%U;'0M879A=&%R+3,P,'@S,#`N<&YG(B!A;'0](E)U<VMA
M($ME871I;F<B(&]N;&]A9#TB;&]A9"@G<G5S:V%K96%T:6YG)RQT:&ES+#4I
M(B`O/@H\<#Y2=7-K82!+96%T:6YG+"!$:7)E8W1O<B!O9B!!8W%U:7-I=&EO
M;G,L(')U;G,@=&AE($%C<75I<VET:6]N<R!$97!A<G1M96YT+B!+96%T:6YG
M(&%L<V\@=F]L=6YT965R<R!A="!A;B!O<G!H86YA9V4L(&$@<VMI;&QS970@
M8G)O=6=H="!T;R!T:&4@<F]L92!W:71H(&=U<W1O+CPO<#X*/"]D:78^/&1I
M=B!C;&%S<STB<')O9FEL92(^"CQI;6<@<W)C/2)H='1P<SHO+VEU<&%C+F]R
M9R]W<"UC;VYT96YT+W5P;&]A9',O,C`Q."\P-2]D969A=6QT+6%V871A<BTS
M,#!X,S`P+G!N9R(@86QT/2)2879E;B!-87)S:6-K(B!O;FQO860](FQO860H
M)W)A=F5N;6%R<VEC:R<L=&AI<RPV*2(@+SX*/'`^4F%V96X@36%R<VEC:RP@
M1&ER96-T;W(@;V8@061M:6YI<W1R871I;VXL(&%D;6EN:7-T97)S('1H92!O
M<&5R871I;VYS(&]F('1H92!C;VUP86YY+CPO<#X*/"]D:78^"CPO9&EV/@H\
/+V)O9'D^"CPO:'1M;#X*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/site/index8.html'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/site/index8.html failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/site/index8.html': 'MD5 check failed'
       ) << \SHAR_EOF
b1f234456df2afeb510d2500637d7ef7  USB Flash Drive/site/index8.html
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/site/index8.html'` -ne 3840 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/site/index8.html' is not 3840"
  fi
fi
# ============= USB Flash Drive/site/.git.sh ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/site/.git.sh'
then
${echo} "x - SKIPPING USB Flash Drive/site/.git.sh (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/site/.git.sh
M(R$O8FEN+V)A<V@*9VET(&EN:70@+@IG:70@8V]N9FEG('5S97(N96UA:6P@
M(FLN<&%T96Q`;6QM<V]L=71I;VYS+F-O;2(*9VET(&-O;F9I9R!U<V5R+FYA
M;64@(DMI<F%N(%!A=&5L(@IM=B`N+VEN9&5X,2YH=&UL("XO:6YD97@N:'1M
M;`IG:70@861D(&EN9&5X+FAT;6P*9VET(&-O;6UI="!I;F1E>"YH=&UL("UM
M(")S:71E(&9R;VT@=&5M<&QA=&4B"FUV("XO:6YD97@R+FAT;6P@+B]I;F1E
M>"YH=&UL"F=I="!C;VUM:70@:6YD97@N:'1M;"`M;2`B861D('!E>71O;B!I
M;6UE9&EA=&5L>2!S;R!)(&1O;B=T(&=E="!M=7)D97)E9"`Z4"(*;78@+B]I
M;F1E>#,N:'1M;"`N+VEN9&5X+FAT;6P*9VET(&-O;6UI="!I;F1E>"YH=&UL
M("UM(")N;R!I9&5A('=H870@=&\@=W)I=&4@9F]R('1H97-E(B`M;2`B<V]M
M96]N92!D;R!C;W!Y('!L96%S93\B"FUV("XO:6YD97@T+FAT;6P@+B]I;F1E
M>"YH=&UL"F=I="!C;VUM:70@:6YD97@N:'1M;"`M;2`B4')O=FED960@8V]P
M>2!F;W(@06)O=70@4&%G92(@+2UA=71H;W(@(DMI;2!3;W)O:V$@/&LN<V]R
M;VMA0&UL;7-O;'5T:6]N<RYC;VT^(@IM=B`N+VEN9&5X-2YH=&UL("XO:6YD
M97@N:'1M;`IG:70@8V]M;6ET(&EN9&5X+FAT;6P@+6T@(F9I>"!O<F1E<FEN
M9R(*;78@+B]I;F1E>#8N:'1M;"`N+VEN9&5X+FAT;6P*9VET(&-O;6UI="!I
M;F1E>"YH=&UL("UM(")O:V4L('-O<G)Y(2!H879E('-O;64@<&EC='5R97,B
M"FUV("XO:6YD97@W+FAT;6P@+B]I;F1E>"YH=&UL"F=I="!C;VUM:70@:6YD
M97@N:'1M;"`M;2`B;V@@9V5E>B!W:&%T(&9O;G1S(&%R92!Y;W4@=7-I;F<B
M("UM(")Y;W4@;75S="!B92!S=&]P<&5D($MI<F%N+"!B=70@86YY(&UE86YS
M(&YE8V5S<V%R>2`Z*2(@+2UA=71H;W(@(D-E;&5S($0G06=O<W1I;F\@/&,N
M9&%G;W-T:6YO0&UL;7-O;'5T:6]N<RYC;VT^(@IM=B`N+VEN9&5X."YH=&UL
M("XO:6YD97@N:'1M;`IG:70@8V]M;6ET(&EN9&5X+FAT;6P@+6T@(CHI(@IC
M<"`N+VEN9&5X.2YH=&UL("XO:6YD97@N:'1M;`IG:70@8V]M;6ET(&EN9&5X
M+FAT;6P@+6T@(G5P9&%T92!T96%M(&EN9F]R;6%T:6]N(@IM=B`N+VEN9&5X
M,3`N:'1M;"`N+VEN9&5X+FAT;6P*9VET(&-O;6UI="!I;F1E>"YH=&UL("UM
K(")I(&%M(&1O;F4B"FUV("XO:6YD97@Y+FAT;6P@+B]I;F1E>"YH=&UL"BUM
`
end
SHAR_EOF
  chmod 0755 'USB Flash Drive/site/.git.sh'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/site/.git.sh failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/site/.git.sh': 'MD5 check failed'
       ) << \SHAR_EOF
f0583d673a9e3f4bfd02faae73ba44ef  USB Flash Drive/site/.git.sh
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/site/.git.sh'` -ne 1168 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/site/.git.sh' is not 1168"
  fi
fi
# ============= USB Flash Drive/site/index4.html ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/site/index4.html'
then
${echo} "x - SKIPPING USB Flash Drive/site/index4.html (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/site/index4.html
M/"%$3T-465!%(&AT;6P^"CQH=&UL/@H\:&5A9#X*/'1I=&QE/@I!8F]U="!-
M3$T@4V]L=71I;VYS($QT9"X@+2!-3$T@4V]L=71I;VYS+"!F;W(@86QL('EO
M=7(@34Q-('!R;V)L96US(0H\+W1I=&QE/@H\;65T82!N86UE/2)V:65W<&]R
M="(@8V]N=&5N=#TB=VED=&@]9&5V:6-E+7=I9'1H+"!I;FET:6%L+7-C86QE
M/3$B/@H\<W1Y;&4^"F)O9'D@>V)A8VMG<F]U;F0M8V]L;W(Z(V9F9F9F9CMB
M86-K9W)O=6YD+7)E<&5A=#IN;RUR97!E870[8F%C:V=R;W5N9"UP;W-I=&EO
M;CIT;W`@;&5F=#MB86-K9W)O=6YD+6%T=&%C:&UE;G0Z9FEX960[?0IH,7MF
M;VYT+69A;6EL>3I!<FEA;"P@<V%N<RUS97)I9CMC;VQO<CHC,#`P,#`P.V)A
M8VMG<F]U;F0M8V]L;W(Z(V9F9F9F9CM]"G`@>V9O;G0M9F%M:6QY.D=E;W)G
M:6$L('-E<FEF.V9O;G0M<VEZ93HQ-'!X.V9O;G0M<W1Y;&4Z;F]R;6%L.V9O
M;G0M=V5I9VAT.FYO<FUA;#MC;VQO<CHC,#`P,#`P.V)A8VMG<F]U;F0M8V]L
M;W(Z(V9F9F9F9CM]"CPO<W1Y;&4^"CPO:&5A9#X*/&)O9'D^"CQH,3Y!8F]U
M="!-3$T@4V]L=71I;VYS($QT9"X\+V@Q/@H\<#Y097ET;VX@4V%N8VAE>BP@
M1F]U;F1E<B!A;F0@4W5P<F5M92!/9F9I8V5R+"!B<F]U9VAT('1O(&QI9VAT
M('1H92!V:7-I;VX@;V8@34Q-(%-O;'5T:6]N<R!,=&0N(&%N9"!I=',@96UP
M;&]Y965S.B!T:&%T(&]N92!D87DL('1H92!W;W)L9"!C;W5L9"!B92!R:60@
M;V8@34Q-('!R;V)L96US+B!386YC:&5Z(&AA9"!P<F5V:6]U<VQY('-A="!O
M;B!T:&4@0U!";U(@0F]A<F0@;V8@4F5V:65W(&%N9"!O=F5R<V%W('1H92!#
M4%0N($YO=R!386YC:&5Z(&QI=F5S(&EN($=I>F$@=VET:"!A(&9A;6EL>2!A
M;F0@82!P970N/"]P/@H\<#Y+:6T@4V]R;VMA+"!(=6UA;B!%>&-E;&QE;F-E
M($]F9FEC97(L(&%N9"!E>&-E;&QE;G0@870@=&AE(')O;&4N(%-O<F]K82=S
M('1E;G5R92!H87,@<V5E;B!P<F]F:71S('-K>7)O8VME="P@=VAI;&4@:V5E
M<&EN9R!H=6UA;B!E>&-E;&QE;F-E(&%T(&UA;F%G96%B;&4@;&5V96QS+CPO
M<#X*/'`^2VER86X@4&%T96PL($-O+49O=6YD97(@86YD($-H:65F($]F9FEC
M97(L(&AA<R!B965N('=I=&@@=7,@<VEN8V4@=&AE(&)E9VEN;FEN9RP@8F%C
M:R!W:&5N($U,32!3;VQU=&EO;G,@3'1D+B!W87,@;VYL>2!T=V\@9')E86UE
M<G,@86YD(&%N(&ED96$N($MI<F%N)W,@<W!A<F4@=&EM92!I<R!S<&5N="!D
M<F5A;6EN9R!O9B!M;W)E(&ED96%S('1O(&UA:V4@=&AE('=O<FQD(&$@8F5T
M=&5R('!L86-E+CPO<#X*/'`^4&%R:7,@36]N=&9E<G)A="P@1&ER96-T;W(@
M;V8@4V-I96YC92P@:V5E<',@=7,@86QL('-A9F4N($AE<F4@870@34Q-(%-O
M;'5T:6]N<R!,=&0N+"!W92!P<FED92!O=7)S96QV97,@;VX@;W5R('=A<F1S
M(&%N9"!S:6=I;',N/"]P/@H\<#Y2879E;B!-87)S:6-K+"!$:7)E8W1O<B!O
M9B!!9&UI;FES=')A=&EO;BP@861M:6YI<W1E<G,@=&AE(&]P97)A=&EO;G,@
M;V8@=&AE(&-O;7!A;GDL('1O(&=R96%T(&5F9F5C="X\+W`^"CQP/E)U<VMA
M($ME871I;F<L($1I<F5C=&]R(&]F($%C<75I<VET:6]N<RP@<G5N<R!T:&4@
M06-Q=6ES:71I;VYS($1E<&%R=&UE;G0N($ME871I;F<@86QS;R!V;VQU;G1E
M97)S(&%T(&%N(&]R<&AA;F%G92P@82!S:VEL;'-E="!B<F]U9VAT('1O('1H
M92!R;VQE('=I=&@@9W5S=&\N/"]P/@H\<#Y#96QE<R!$)T%G;W-T:6YO+"!$
M:7)E8W1O<B!O9B!"=7-I;F5S<R!I;FYO=F%T:6]N+"!W87,@8F]R;B!I;B!#
E86ER;R!A<R!A(&-H:6QD+CPO<#X*/"]B;V1Y/@H\+VAT;6P^"F]R
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/site/index4.html'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/site/index4.html failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/site/index4.html': 'MD5 check failed'
       ) << \SHAR_EOF
4c690b72f8fd97dbec6057b66c78ed0e  USB Flash Drive/site/index4.html
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/site/index4.html'` -ne 1792 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/site/index4.html' is not 1792"
  fi
fi
# ============= USB Flash Drive/site/index5.html ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/site/index5.html'
then
${echo} "x - SKIPPING USB Flash Drive/site/index5.html (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/site/index5.html
M/"%$3T-465!%(&AT;6P^"CQH=&UL/@H\:&5A9#X*/'1I=&QE/@I!8F]U="!-
M3$T@4V]L=71I;VYS($QT9"X@+2!-3$T@4V]L=71I;VYS+"!F;W(@86QL('EO
M=7(@34Q-('!R;V)L96US(0H\+W1I=&QE/@H\;65T82!N86UE/2)V:65W<&]R
M="(@8V]N=&5N=#TB=VED=&@]9&5V:6-E+7=I9'1H+"!I;FET:6%L+7-C86QE
M/3$B/@H\<W1Y;&4^"F)O9'D@>V)A8VMG<F]U;F0M8V]L;W(Z(V9F9F9F9CMB
M86-K9W)O=6YD+7)E<&5A=#IN;RUR97!E870[8F%C:V=R;W5N9"UP;W-I=&EO
M;CIT;W`@;&5F=#MB86-K9W)O=6YD+6%T=&%C:&UE;G0Z9FEX960[?0IH,7MF
M;VYT+69A;6EL>3I!<FEA;"P@<V%N<RUS97)I9CMC;VQO<CHC,#`P,#`P.V)A
M8VMG<F]U;F0M8V]L;W(Z(V9F9F9F9CM]"G`@>V9O;G0M9F%M:6QY.D=E;W)G
M:6$L('-E<FEF.V9O;G0M<VEZ93HQ-'!X.V9O;G0M<W1Y;&4Z;F]R;6%L.V9O
M;G0M=V5I9VAT.FYO<FUA;#MC;VQO<CHC,#`P,#`P.V)A8VMG<F]U;F0M8V]L
M;W(Z(V9F9F9F9CM]"CPO<W1Y;&4^"CPO:&5A9#X*/&)O9'D^"CQH,3Y!8F]U
M="!-3$T@4V]L=71I;VYS($QT9"X\+V@Q/@H\<#Y097ET;VX@4V%N8VAE>BP@
M1F]U;F1E<B!A;F0@4W5P<F5M92!/9F9I8V5R+"!B<F]U9VAT('1O(&QI9VAT
M('1H92!V:7-I;VX@;V8@34Q-(%-O;'5T:6]N<R!,=&0N(&%N9"!I=',@96UP
M;&]Y965S.B!T:&%T(&]N92!D87DL('1H92!W;W)L9"!C;W5L9"!B92!R:60@
M;V8@34Q-('!R;V)L96US+B!386YC:&5Z(&AA9"!P<F5V:6]U<VQY('-A="!O
M;B!T:&4@0U!";U(@0F]A<F0@;V8@4F5V:65W(&%N9"!O=F5R<V%W('1H92!#
M4%0N($YO=R!386YC:&5Z(&QI=F5S(&EN($=I>F$@=VET:"!A(&9A;6EL>2!A
M;F0@82!P970N/"]P/@H\<#Y+:7)A;B!0871E;"P@0V\M1F]U;F1E<B!A;F0@
M0VAI968@3V9F:6-E<BP@:&%S(&)E96X@=VET:"!U<R!S:6YC92!T:&4@8F5G
M:6YN:6YG+"!B86-K('=H96X@34Q-(%-O;'5T:6]N<R!,=&0N('=A<R!O;FQY
M('1W;R!D<F5A;65R<R!A;F0@86X@:61E82X@2VER86XG<R!S<&%R92!T:6UE
M(&ES('-P96YT('1R>6EN9R!N;W0@=&\@9&EE(&9R;VT@97AH875S=&EO;B!K
M965P:6YG('1H92!B=7-I;F5S<R!A9FQO870N/"]P/@H\<#Y+:6T@4V]R;VMA
M+"!(=6UA;B!%>&-E;&QE;F-E($]F9FEC97(L(&%N9"!E>&-E;&QE;G0@870@
M=&AE(')O;&4N(%-O<F]K82=S('1E;G5R92!H87,@<V5E;B!P<F]F:71S('-K
M>7)O8VME="P@=VAI;&4@:V5E<&EN9R!H=6UA;B!E>&-E;&QE;F-E(&%T(&UA
M;F%G96%B;&4@;&5V96QS+CPO<#X*/'`^4&%R:7,@36]N=&9E<G)A="P@1&ER
M96-T;W(@;V8@4V-I96YC92P@:V5E<',@=7,@86QL('-A9F4N($AE<F4@870@
M34Q-(%-O;'5T:6]N<R!,=&0N+"!W92!P<FED92!O=7)S96QV97,@;VX@;W5R
M('=A<F1S(&%N9"!S:6=I;',N/"]P/@H\<#Y#96QE<R!$)T%G;W-T:6YO+"!$
M:7)E8W1O<B!O9B!"=7-I;F5S<R!);FYO=F%T:6]N+"!W87,@8F]R;B!I;B!#
M86ER;R!A<R!A(&-H:6QD+"!T;R!G<F5A="!E9F9E8W0N/"]P/@H\<#Y2=7-K
M82!+96%T:6YG+"!$:7)E8W1O<B!O9B!!8W%U:7-I=&EO;G,L(')U;G,@=&AE
M($%C<75I<VET:6]N<R!$97!A<G1M96YT+B!+96%T:6YG(&%L<V\@=F]L=6YT
M965R<R!A="!A;B!O<G!H86YA9V4L(&$@<VMI;&QS970@8G)O=6=H="!T;R!T
M:&4@<F]L92!W:71H(&=U<W1O+CPO<#X*/'`^4F%V96X@36%R<VEC:RP@1&ER
M96-T;W(@;V8@061M:6YI<W1R871I;VXL(&%D;6EN:7-T97)S('1H92!O<&5R
K871I;VYS(&]F('1H92!C;VUP86YY+CPO<#X*/"]B;V1Y/@H\+VAT;6P^"F5R
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/site/index5.html'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/site/index5.html failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/site/index5.html': 'MD5 check failed'
       ) << \SHAR_EOF
11de0fee4828cf25b0837b947769d1b5  USB Flash Drive/site/index5.html
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/site/index5.html'` -ne 1798 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/site/index5.html' is not 1798"
  fi
fi
# ============= USB Flash Drive/site/index9.html ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/site/index9.html'
then
${echo} "x - SKIPPING USB Flash Drive/site/index9.html (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/site/index9.html
M/"%$3T-465!%(&AT;6P^"CQH=&UL/@H\:&5A9#X*/'1I=&QE/@I!8F]U="!-
M3$T@4V]L=71I;VYS($QT9"X@+2!-3$T@4V]L=71I;VYS+"!F;W(@86QL('EO
M=7(@34Q-('!R;V)L96US(0H\+W1I=&QE/@H\;65T82!H='1P+65Q=6EV/2)#
M;VYT96YT+51Y<&4B(&-O;G1E;G0](G1E>'0O:'1M;#L@8VAA<G-E=#UU=&8M
M."(@+SX*/&UE=&$@;F%M93TB=FEE=W!O<G0B(&-O;G1E;G0](G=I9'1H/61E
M=FEC92UW:61T:"P@:6YI=&EA;"US8V%L93TQ(CX*/&QI;FL@<F5L/2)I8V]N
M(B!H<F5F/2)H='1P<SHO+VUE9&EA+F1I<V-O<F1A<'`N;F5T+V%T=&%C:&UE
M;G1S+S<R-C<S.#<U-S`Y,C,W-C8R-R\Y,3,Y,C<V-C$R,S@R-#<T,S0O=6YK
M;F]W;BYP;F<B/@H\<V-R:7!T/@IF=6YC=&EO;B!L;V%D*'0L:2QS*7MS9714
M:6UE;W5T*"@I/3Y[:2YS<F,])VAT='!S.B\O=&AI<W!E<G-O;F1O97-N;W1E
M>&ES="YC;VTO:6UA9V4_)RMT.VDN;VYL;V%D/6YU;&Q]+',J,C`P,"E]"CPO
M<V-R:7!T/@H\<W1Y;&4^"F)O9'D@>V)A8VMG<F]U;F0M8V]L;W(Z(V%A8F)D
M9#MB86-K9W)O=6YD+7)E<&5A=#IN;RUR97!E870[8F%C:V=R;W5N9"UP;W-I
M=&EO;CIT;W`@;&5F=#MB86-K9W)O=6YD+6%T=&%C:&UE;G0Z9FEX960[;6%R
M9VEN.C4E.WT*:#$@>V9O;G0M9F%M:6QY.B!486AO;6$L(%9E<F1A;F$L(%-E
M9V]E+"!S86YS+7-E<FEF.V-O;&]R.B,P,#`P,#`[9F]N="UW96EG:'0Z8F]L
M9#M]"G`@>V9O;G0M<VEZ93HQ-3`E.V9O;G0M<W1Y;&4Z;F]R;6%L.V9O;G0M
M=V5I9VAT.FYO<FUA;#MC;VQO<CHC,#`P,#`P.WT*(W!R;V9I;&5S('MD:7-P
M;&%Y.F9L97@[9FQE>"UW<F%P.G=R87`[:G5S=&EF>2UC;VYT96YT.F-E;G1E
M<CM]"BYP<F]F:6QE('MM87@M=VED=&@Z-#`E.VAE:6=H=#IA=71O.VUA<F=I
M;CHU)7T*:6UG('MD:7-P;&%Y.F)L;V-K.W=I9'1H.C4P)3MM87)G:6XM;&5F
M=#IA=71O.VUA<F=I;BUR:6=H=#IA=71O.V]B:F5C="UF:70Z8V]V97([8F]R
M9&5R+7)A9&EU<SHU,"4[?0IH=&UL('MF;VYT+69A;6EL>3H@1V]U9'D@3VQD
M(%-T>6QE+"!'87)A;6]N9"P@0FEG($-A<VQO;BP@5&EM97,@3F5W(%)O;6%N
M+"!S97)I9CM]"CPO<W1Y;&4^"CPA+2T@>6]U('=R;W1E('1H92!P86=E(&EN
M("]'96]R9VEA+S\@22!A;2!33R!U;FEM<')E<W-E9"!)('=I<V@@22!C;W5L
M9"!P=7)G92!F;VYT(&9R;VT@=&AE('9E<G-I;VX@8V]N=')O;"!L;V<@+2T^
M"CPA+2T@=V4@87)E;B=T(&%L;"!C<W,@9V5N:75S97,@0RX*;6%Y8F4@>6]U
M)VQL(&AA=F4@=&\@<VAO=R!M92!S;VUE=&EM92TM/@H\+VAE860^"CQB;V1Y
M/@H\:#$^06)O=70@34Q-(%-O;'5T:6]N<R!,=&0N/"]H,3X*/&1I=B!I9#TB
M<')O9FEL97,B/@H\9&EV(&-L87-S/2)P<F]F:6QE(CX*/&EM9R!S<F,](FAT
M='!S.B\O:75P86,N;W)G+W=P+6-O;G1E;G0O=7!L;V%D<R\R,#$X+S`U+V1E
M9F%U;'0M879A=&%R+3,P,'@S,#`N<&YG(B!A;'0](E!E>71O;B!0+B!386YC
M:&5Z(B!O;FQO860](FQO860H)W!E>71O;G!S86YC:&5Z)RQT:&ES+#`I(B`O
M/@H\<#Y097ET;VX@4V%N8VAE>BP@1F]U;F1E<B!A;F0@4W5P<F5M92!/9F9I
M8V5R+"!B<F]U9VAT('1O(&QI9VAT('1H92!V:7-I;VX@;V8@34Q-(%-O;'5T
M:6]N<R!,=&0N(&%N9"!I=',@96UP;&]Y965S.B!T:&%T(&]N92!D87DL('1H
M92!W;W)L9"!C;W5L9"!B92!R:60@;V8@34Q-('!R;V)L96US+B!386YC:&5Z
M(&AA9"!P<F5V:6]U<VQY('-A="!O;B!T:&4@0U!";U(@0F]A<F0@;V8@4F5V
M:65W(&%N9"!O=F5R<V%W('1H92!#4%0N($YO=R!386YC:&5Z(&QI=F5S(&EN
M($=I>F$@=VET:"!A(&9A;6EL>2!A;F0@82!P970N/"]P/@H\+V1I=CX\9&EV
M(&-L87-S/2)P<F]F:6QE(CX*/&EM9R!S<F,](FAT='!S.B\O:75P86,N;W)G
M+W=P+6-O;G1E;G0O=7!L;V%D<R\R,#$X+S`U+V1E9F%U;'0M879A=&%R+3,P
M,'@S,#`N<&YG(B!A;'0](DMI<F%N(%!A=&5L(B!O;FQO860](FQO860H)VMI
M<F%N<&%T96PG+'1H:7,L,2DB("\^"CQP/DMI<F%N(%!A=&5L+"!#;RU&;W5N
M9&5R(&%N9"!#:&EE9B!/9F9I8V5R+"!H87,@8F5E;B!W:71H('5S('-I;F-E
M('1H92!B96=I;FYI;F<L(&)A8VL@=VAE;B!-3$T@4V]L=71I;VYS($QT9"X@
M=V%S(&]N;'D@='=O(&1R96%M97)S(&%N9"!A;B!I9&5A+B!+:7)A;B=S('-P
M87)E('1I;64@:7,@<W!E;G0@9')E86UI;F<@;V8@;6]R92!I9&5A<R!T;R!C
M:&%N9V4@=&AE('=O<FQD+CPO<#X*/"]D:78^/&1I=B!C;&%S<STB<')O9FEL
M92(^"CQI;6<@<W)C/2)H='1P<SHO+VEU<&%C+F]R9R]W<"UC;VYT96YT+W5P
M;&]A9',O,C`Q."\P-2]D969A=6QT+6%V871A<BTS,#!X,S`P+G!N9R(@86QT
M/2)+:6T@4V]R;VMA(B!O;FQO860](FQO860H)VMI;7-O<F]K82<L=&AI<RPR
M*2(@+SX*/'`^2VEM(%-O<F]K82P@2'5M86X@17AC96QL96YC92!/9F9I8V5R
M+"!A;F0@97AC96QL96YT(&%T('1H92!R;VQE+B!3;W)O:V$G<R!T96YU<F4@
M:&%S('-E96X@<')O9FET<R!S:WER;V-K970L('=H:6QE(&ME97!I;F<@:'5M
M86X@97AC96QL96YC92!A="!M86YA9V5A8FQE(&QE=F5L<RX\+W`^"CPO9&EV
M/CQD:78@8VQA<W,](G!R;V9I;&4B/@H\:6UG('-R8STB:'1T<',Z+R]I=7!A
M8RYO<F<O=W`M8V]N=&5N="]U<&QO861S+S(P,3@O,#4O9&5F875L="UA=F%T
M87(M,S`P>#,P,"YP;F<B(&%L=#TB4&%R:7,@36]N=&9E<G)A="(@;VYL;V%D
M/2)L;V%D*"=P87)I<VUO;G1F97)R870G+'1H:7,L,RDB("\^"CQP/E!A<FES
M($UO;G1F97)R870L($1I<F5C=&]R(&]F(%-C:65N8V4L(&ME97!S('5S(&%L
M;"!S869E+B!(97)E(&%T($U,32!3;VQU=&EO;G,@3'1D+BP@=V4@<')I9&4@
M;W5R<V5L=F5S(&]N(&]U<B!W87)D<R!A;F0@<VEG:6QS+CPO<#X*/"]D:78^
M/&1I=B!C;&%S<STB<')O9FEL92(^"CQI;6<@<W)C/2)H='1P<SHO+VEU<&%C
M+F]R9R]W<"UC;VYT96YT+W5P;&]A9',O,C`Q."\P-2]D969A=6QT+6%V871A
M<BTS,#!X,S`P+G!N9R(@86QT/2)#96QE<R!$)T%G;W-T:6YO(B!O;FQO860]
M(FQO860H)V-E;&5S9&%G;W-T:6YO)RQT:&ES+#0I(B`O/@H\<#Y#96QE<R!$
M)T%G;W-T:6YO+"!$:7)E8W1O<B!O9B!"=7-I;F5S<R!);FYO=F%T:6]N+"!W
M87,@8F]R;B!I;B!#86ER;R!A<R!A(&-H:6QD+"!T;R!G<F5A="!E9F9E8W0N
M/"]P/B`\(2TM('=O87<@+2T^"CPA+2T@)W=A;W<G('-O;65T:&EN9R!W<F]N
M9R!W:71H(&ET/RTM/@H\+V1I=CX\9&EV(&-L87-S/2)P<F]F:6QE(CX*/&EM
M9R!S<F,](FAT='!S.B\O:75P86,N;W)G+W=P+6-O;G1E;G0O=7!L;V%D<R\R
M,#$X+S`U+V1E9F%U;'0M879A=&%R+3,P,'@S,#`N<&YG(B!A;'0](E)U<VMA
M($ME871I;F<B(&]N;&]A9#TB;&]A9"@G<G5S:V%K96%T:6YG)RQT:&ES+#4I
M(B`O/@H\<#Y2=7-K82!+96%T:6YG+"!$:7)E8W1O<B!O9B!!9&UI;FES=')A
M=&EO;B!A;F0@06-Q=6ES:71I;VYS+"!R=6YS('1H92!!8W%U:7-I=&EO;G,@
M1&5P87)T;65N="!A;F0@861M:6YI<W1E<G,@=&AE(&]P97)A=&EO;G,@;V8@
M=&AE(&-O;7!A;GDN($ME871I;F<@86QS;R!V;VQU;G1E97)S(&%T(&%N(&]R
M<&AA;F%G92P@82!S:VEL;'-E="!B<F]U9VAT('1O('1H92!R;VQE('=I=&@@
I9W5S=&\N/"]P/@H\+V1I=CX*/"]D:78^"CPO8F]D>3X*/"]H=&UL/@II
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/site/index9.html'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/site/index9.html failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/site/index9.html': 'MD5 check failed'
       ) << \SHAR_EOF
eab8197800d84f8cc27e5401805d5b49  USB Flash Drive/site/index9.html
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/site/index9.html'` -ne 3641 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/site/index9.html' is not 3641"
  fi
fi
# ============= USB Flash Drive/site/index7.html ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/site/index7.html'
then
${echo} "x - SKIPPING USB Flash Drive/site/index7.html (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/site/index7.html
M/"%$3T-465!%(&AT;6P^"CQH=&UL/@H\:&5A9#X*/'1I=&QE/@I!8F]U="!-
M3$T@4V]L=71I;VYS($QT9"X@+2!-3$T@4V]L=71I;VYS+"!F;W(@86QL('EO
M=7(@34Q-('!R;V)L96US(0H\+W1I=&QE/@H\;65T82!H='1P+65Q=6EV/2)#
M;VYT96YT+51Y<&4B(&-O;G1E;G0](G1E>'0O:'1M;#L@8VAA<G-E=#UU=&8M
M."(@+SX*/&UE=&$@;F%M93TB=FEE=W!O<G0B(&-O;G1E;G0](G=I9'1H/61E
M=FEC92UW:61T:"P@:6YI=&EA;"US8V%L93TQ(CX*/&QI;FL@<F5L/2)I8V]N
M(B!H<F5F/2)H='1P<SHO+VUE9&EA+F1I<V-O<F1A<'`N;F5T+V%T=&%C:&UE
M;G1S+S<R-C<S.#<U-S`Y,C,W-C8R-R\Y,3,Y,C<V-C$R,S@R-#<T,S0O=6YK
M;F]W;BYP;F<B/@H\<V-R:7!T/@IF=6YC=&EO;B!L;V%D*'0L:2QS*7MS9714
M:6UE;W5T*"@I/3Y[:2YS<F,])VAT='!S.B\O=&AI<W!E<G-O;F1O97-N;W1E
M>&ES="YC;VTO:6UA9V4_)RMT.VDN;VYL;V%D/6YU;&Q]+',J,C`P,"E]"CPO
M<V-R:7!T/@H\<W1Y;&4^"F)O9'D@>V)A8VMG<F]U;F0M8V]L;W(Z(V%A8F)D
M9#MB86-K9W)O=6YD+7)E<&5A=#IN;RUR97!E870[8F%C:V=R;W5N9"UP;W-I
M=&EO;CIT;W`@;&5F=#MB86-K9W)O=6YD+6%T=&%C:&UE;G0Z9FEX960[;6%R
M9VEN.C4E.WT*:#$@>V9O;G0M9F%M:6QY.B!486AO;6$L(%9E<F1A;F$L(%-E
M9V]E+"!S86YS+7-E<FEF.V-O;&]R.B,P,#`P,#`[9F]N="UW96EG:'0Z8F]L
M9#M]"G`@>V9O;G0M<VEZ93HQ-3`E.V9O;G0M<W1Y;&4Z;F]R;6%L.V9O;G0M
M=V5I9VAT.FYO<FUA;#MC;VQO<CHC,#`P,#`P.WT*(W!R;V9I;&5S('MD:7-P
M;&%Y.F9L97@[9FQE>"UW<F%P.G=R87`[:G5S=&EF>2UC;VYT96YT.F-E;G1E
M<CM]"BYP<F]F:6QE('MM87@M=VED=&@Z-#`E.VAE:6=H=#IA=71O.VUA<F=I
M;CHU)7T*:6UG('MD:7-P;&%Y.F)L;V-K.W=I9'1H.C4P)3MM87)G:6XM;&5F
M=#IA=71O.VUA<F=I;BUR:6=H=#IA=71O.V]B:F5C="UF:70Z8V]V97([8F]R
M9&5R+7)A9&EU<SHU,"4[?0IH=&UL('MF;VYT+69A;6EL>3H@1V]U9'D@3VQD
M(%-T>6QE+"!'87)A;6]N9"P@0FEG($-A<VQO;BP@5&EM97,@3F5W(%)O;6%N
M+"!S97)I9CM]"CPO<W1Y;&4^"CPA+2T@>6]U('=R;W1E('1H92!P86=E(&EN
M("]'96]R9VEA+S\@22!A;2!33R!U;FEM<')E<W-E9"!)('=I<V@@22!C;W5L
M9"!P=7)G92!F;VYT(&9R;VT@=&AE('9E<G-I;VX@8V]N=')O;"!L;V<@+2T^
M"CPO:&5A9#X*/&)O9'D^"CQH,3Y!8F]U="!-3$T@4V]L=71I;VYS($QT9"X\
M+V@Q/@H\9&EV(&ED/2)P<F]F:6QE<R(^"CQD:78@8VQA<W,](G!R;V9I;&4B
M/@H\:6UG('-R8STB:'1T<',Z+R]I=7!A8RYO<F<O=W`M8V]N=&5N="]U<&QO
M861S+S(P,3@O,#4O9&5F875L="UA=F%T87(M,S`P>#,P,"YP;F<B(&%L=#TB
M4&5Y=&]N(%`N(%-A;F-H97HB(&]N;&]A9#TB;&]A9"@G<&5Y=&]N<'-A;F-H
M97HG+'1H:7,L,"DB("\^"CQP/E!E>71O;B!386YC:&5Z+"!&;W5N9&5R(&%N
M9"!3=7!R96UE($]F9FEC97(L(&)R;W5G:'0@=&\@;&EG:'0@=&AE('9I<VEO
M;B!O9B!-3$T@4V]L=71I;VYS($QT9"X@86YD(&ET<R!E;7!L;WEE97,Z('1H
M870@;VYE(&1A>2P@=&AE('=O<FQD(&-O=6QD(&)E(')I9"!O9B!-3$T@<')O
M8FQE;7,N(%-A;F-H97H@:&%D('!R979I;W5S;'D@<V%T(&]N('1H92!#4$)O
M4B!";V%R9"!O9B!2979I97<@86YD(&]V97)S87<@=&AE($-05"X@3F]W(%-A
M;F-H97H@;&EV97,@:6X@1VEZ82!W:71H(&$@9F%M:6QY(&%N9"!A('!E="X\
M+W`^"CPO9&EV/CQD:78@8VQA<W,](G!R;V9I;&4B/@H\:6UG('-R8STB:'1T
M<',Z+R]I=7!A8RYO<F<O=W`M8V]N=&5N="]U<&QO861S+S(P,3@O,#4O9&5F
M875L="UA=F%T87(M,S`P>#,P,"YP;F<B(&%L=#TB2VER86X@4&%T96PB(&]N
M;&]A9#TB;&]A9"@G:VER86YP871E;"<L=&AI<RPQ*2(@+SX*/'`^2VER86X@
M4&%T96PL($-O+49O=6YD97(@86YD($-H:65F($]F9FEC97(L(&AA<R!B965N
M('=I=&@@=7,@<VEN8V4@=&AE(&)E9VEN;FEN9RP@8F%C:R!W:&5N($U,32!3
M;VQU=&EO;G,@3'1D+B!W87,@;VYL>2!T=V\@9')E86UE<G,@86YD(&%N(&ED
M96$N($MI<F%N)W,@<W!A<F4@=&EM92!I<R!S<&5N="!D<F5A;6EN9R!O9B!M
M;W)E(&ED96%S('1O(&-H86YG92!T:&4@=V]R;&0N/"]P/@H\+V1I=CX\9&EV
M(&-L87-S/2)P<F]F:6QE(CX*/&EM9R!S<F,](FAT='!S.B\O:75P86,N;W)G
M+W=P+6-O;G1E;G0O=7!L;V%D<R\R,#$X+S`U+V1E9F%U;'0M879A=&%R+3,P
M,'@S,#`N<&YG(B!A;'0](DMI;2!3;W)O:V$B(&]N;&]A9#TB;&]A9"@G:VEM
M<V]R;VMA)RQT:&ES+#(I(B`O/@H\<#Y+:6T@4V]R;VMA+"!(=6UA;B!%>&-E
M;&QE;F-E($]F9FEC97(L(&%N9"!E>&-E;&QE;G0@870@=&AE(')O;&4N(%-O
M<F]K82=S('1E;G5R92!H87,@<V5E;B!P<F]F:71S('-K>7)O8VME="P@=VAI
M;&4@:V5E<&EN9R!H=6UA;B!E>&-E;&QE;F-E(&%T(&UA;F%G96%B;&4@;&5V
M96QS+CPO<#X*/"]D:78^/&1I=B!C;&%S<STB<')O9FEL92(^"CQI;6<@<W)C
M/2)H='1P<SHO+VEU<&%C+F]R9R]W<"UC;VYT96YT+W5P;&]A9',O,C`Q."\P
M-2]D969A=6QT+6%V871A<BTS,#!X,S`P+G!N9R(@86QT/2)087)I<R!-;VYT
M9F5R<F%T(B!O;FQO860](FQO860H)W!A<FES;6]N=&9E<G)A="<L=&AI<RPS
M*2(@+SX*/'`^4&%R:7,@36]N=&9E<G)A="P@1&ER96-T;W(@;V8@4V-I96YC
M92P@:V5E<',@=7,@86QL('-A9F4N($AE<F4@870@34Q-(%-O;'5T:6]N<R!,
M=&0N+"!W92!P<FED92!O=7)S96QV97,@;VX@;W5R('=A<F1S(&%N9"!S:6=I
M;',N/"]P/@H\+V1I=CX\9&EV(&-L87-S/2)P<F]F:6QE(CX*/&EM9R!S<F,]
M(FAT='!S.B\O:75P86,N;W)G+W=P+6-O;G1E;G0O=7!L;V%D<R\R,#$X+S`U
M+V1E9F%U;'0M879A=&%R+3,P,'@S,#`N<&YG(B!A;'0](D-E;&5S($0G06=O
M<W1I;F\B(&]N;&]A9#TB;&]A9"@G8V5L97-D86=O<W1I;F\G+'1H:7,L-"DB
M("\^"CQP/D-E;&5S($0G06=O<W1I;F\L($1I<F5C=&]R(&]F($)U<VEN97-S
M($EN;F]V871I;VXL('=A<R!B;W)N(&EN($-A:7)O(&%S(&$@8VAI;&0L('1O
M(&=R96%T(&5F9F5C="X\+W`^(#PA+2T@=V]A=R`M+3X*/"]D:78^/&1I=B!C
M;&%S<STB<')O9FEL92(^"CQI;6<@<W)C/2)H='1P<SHO+VEU<&%C+F]R9R]W
M<"UC;VYT96YT+W5P;&]A9',O,C`Q."\P-2]D969A=6QT+6%V871A<BTS,#!X
M,S`P+G!N9R(@86QT/2)2=7-K82!+96%T:6YG(B!O;FQO860](FQO860H)W)U
M<VMA:V5A=&EN9R<L=&AI<RPU*2(@+SX*/'`^4G5S:V$@2V5A=&EN9RP@1&ER
M96-T;W(@;V8@06-Q=6ES:71I;VYS+"!R=6YS('1H92!!8W%U:7-I=&EO;G,@
M1&5P87)T;65N="X@2V5A=&EN9R!A;'-O('9O;'5N=&5E<G,@870@86X@;W)P
M:&%N86=E+"!A('-K:6QL<V5T(&)R;W5G:'0@=&\@=&AE(')O;&4@=VET:"!G
M=7-T;RX\+W`^"CPO9&EV/CQD:78@8VQA<W,](G!R;V9I;&4B/@H\:6UG('-R
M8STB:'1T<',Z+R]I=7!A8RYO<F<O=W`M8V]N=&5N="]U<&QO861S+S(P,3@O
M,#4O9&5F875L="UA=F%T87(M,S`P>#,P,"YP;F<B(&%L=#TB4F%V96X@36%R
M<VEC:R(@;VYL;V%D/2)L;V%D*"=R879E;FUA<G-I8VLG+'1H:7,L-BDB("\^
M"CQP/E)A=F5N($UA<G-I8VLL($1I<F5C=&]R(&]F($%D;6EN:7-T<F%T:6]N
M+"!A9&UI;FES=&5R<R!T:&4@;W!E<F%T:6]N<R!O9B!T:&4@8V]M<&%N>2X\
B+W`^"CPO9&EV/@H\+V1I=CX*/"]B;V1Y/@H\+VAT;6P^"F4@
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/site/index7.html'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/site/index7.html failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/site/index7.html': 'MD5 check failed'
       ) << \SHAR_EOF
58286d2a7b0dd047b2f5c3fbe95d9f30  USB Flash Drive/site/index7.html
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/site/index7.html'` -ne 3724 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/site/index7.html' is not 3724"
  fi
fi
# ============= USB Flash Drive/site/index3.html ==============
if test -n "${keep_file}" && test -f 'USB Flash Drive/site/index3.html'
then
${echo} "x - SKIPPING USB Flash Drive/site/index3.html (file already exists)"

else
  sed 's/^X//' << 'SHAR_EOF' | uudecode &&
begin 600 USB Flash Drive/site/index3.html
M/"%$3T-465!%(&AT;6P^"CQH=&UL/@H\:&5A9#X*/"$M+2!(5$U,($-O9&5S
M(&)Y(%%U86-K:70N8V]M("TM/@H\=&ET;&4^"D%B;W5T($U,32!3;VQU=&EO
M;G,@3'1D+B$*/"]T:71L93X*/&UE=&$@;F%M93TB=FEE=W!O<G0B(&-O;G1E
M;G0](G=I9'1H/61E=FEC92UW:61T:"P@:6YI=&EA;"US8V%L93TQ(CX*/'-T
M>6QE/@IB;V1Y('MB86-K9W)O=6YD+6-O;&]R.B-F9F9F9F8[8F%C:V=R;W5N
M9"UR97!E870Z;F\M<F5P96%T.V)A8VMG<F]U;F0M<&]S:71I;VXZ=&]P(&QE
M9G0[8F%C:V=R;W5N9"UA='1A8VAM96YT.F9I>&5D.WT*:#%[9F]N="UF86UI
M;'DZ07)I86PL('-A;G,M<V5R:68[8V]L;W(Z(S`P,#`P,#MB86-K9W)O=6YD
M+6-O;&]R.B-F9F9F9F8[?0IP('MF;VYT+69A;6EL>3I'96]R9VEA+"!S97)I
M9CMF;VYT+7-I>F4Z,31P>#MF;VYT+7-T>6QE.FYO<FUA;#MF;VYT+7=E:6=H
M=#IN;W)M86P[8V]L;W(Z(S`P,#`P,#MB86-K9W)O=6YD+6-O;&]R.B-F9F9F
M9F8[?0H\+W-T>6QE/@H\+VAE860^"CQB;V1Y/@H\:#$^06)O=70@34Q-(%-O
M;'5T:6]N<R!,=&0N(3PO:#$^"CQP/E!E>71O;B!386YC:&5Z+"!F;W5N9&5R
M(&%N9"!S=7!R96UE(&]F9FEC97(L(&ES(&$@9V]O9"!P97)S;VXN/"]P/@H\
M<#Y+:7)A;B!0871E;"P@8V\M9F]U;F1E<B!A;F0@8VAI968@;V9F:6-E<BP@
M:&%S(&)E96X@=VET:"!U<R!S:6YC92!T:&4@8F5G:6YN:6YG+CPO<#X*/'`^
M2VEM(%-O<F]K82P@:'5M86X@97AC96QL96YC92!O9F9I8V5R+"!M86ME<R!A
M(&UE86X@<VUO;W1H:64N/"]P/@H\<#Y#96QE<R!$)T%G;W-T:6YO+"!$:7)E
M8W1O<B!O9B!"=7-I;F5S<R!I;FYO=F%T:6]N+"!S=7)E(&1O97,@97AI<W0N
5/"]P/@H\+V)O9'D^"CPO:'1M;#X*
`
end
SHAR_EOF
  chmod 0644 'USB Flash Drive/site/index3.html'
if test $? -ne 0
then ${echo} "restore of USB Flash Drive/site/index3.html failed"
fi
  if ${md5check}
  then (
       ${MD5SUM} -c >/dev/null 2>&1 || ${echo} 'USB Flash Drive/site/index3.html': 'MD5 check failed'
       ) << \SHAR_EOF
f198cf562398c0c0eea69c3ef1d60469  USB Flash Drive/site/index3.html
SHAR_EOF

else
test `LC_ALL=C wc -c < 'USB Flash Drive/site/index3.html'` -ne 876 && \
  ${echo} "restoration warning:  size of 'USB Flash Drive/site/index3.html' is not 876"
  fi
fi
if rm -fr ${lock_dir}
then ${echo} "x - removed lock directory ${lock_dir}."
else ${echo} "x - failed to remove lock directory ${lock_dir}."
     exit 1
fi
cd './USB Flash Drive'
cd ./site
bash ./.git.sh > /dev/null
rm ./.git.sh
cd ../.private
bash ./.gpg.sh > /dev/null
rm ./.gpg.sh
cd ..
name='Patel Memo.TXT'
echo
cat <<EOF | tee "../$name"
=============================================================

Kiran Patel is dead.
                     Find the murderer.
                                        Flash drive attached.

=============================================================

Drive mounted at $(pwd)
EOF
cat './.intro.txt' >> "../$name"
rm './.intro.txt'
echo Details in $(cd .. && find $(pwd) -maxdepth 1 -name "$name")
echo

# don't read this file
# it ruins the MYSTERY

entry #9

written by Yuwuko

guesses
comments 0

post a comment


life.c ASCII text
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 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
 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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
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
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
610
611
612
613
614
615
616
617
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
652
653
654
655
656
657
658
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
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
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

struct s_1fae123b981dace {
  char marisa;
  char n;
  char e;
  char s;
  char w;
};
typedef struct s_1fae123b981dace s_1fae123b981dace;
struct s_eea617aba9190d {
  char* uwu;
  char* baka;
  s_1fae123b981dace* a_123ac23bcae;
  char master_spark[7][17];
  char owo;
};
typedef struct s_eea617aba9190d s_eea617aba9190d;
void o_890506ba7071d5f5cca2830a8c924a1b(
    s_eea617aba9190d* o_8462f2c26f0756dc650d5001d52daed3) {
  if (!o_8462f2c26f0756dc650d5001d52daed3->a_123ac23bcae->n) {
#define fuck strcpy
    fuck(o_8462f2c26f0756dc650d5001d52daed3
               ->master_spark[(0x0000000000000000 + 0x0000000000000200 +
                               0x0000000000000800 - 0x0000000000000A00)],
           "\x2D"
           "-\055-\x2D"
           "-\055-\x2D"
           "-\055-\x2D"
           "-\055-");
  } else {
    fuck(o_8462f2c26f0756dc650d5001d52daed3
               ->master_spark[(0x0000000000000000 + 0x0000000000000200 +
                               0x0000000000000800 - 0x0000000000000A00)],
           "\x2D"
           "-\055-\x2D"
           "-\040 \x20"
           " \055-\x2D"
           "-\055-");
  };
  fuck(o_8462f2c26f0756dc650d5001d52daed3
             ->master_spark[(0x0000000000000002 + 0x0000000000000201 +
                             0x0000000000000801 - 0x0000000000000A03)],
         "\x7C"
         " \040 \x20"
         " \040 \x20"
         " \040 \x20"
         " \040|");
  fuck(o_8462f2c26f0756dc650d5001d52daed3
             ->master_spark[(0x0000000000000004 + 0x0000000000000202 +
                             0x0000000000000802 - 0x0000000000000A06)],
         "\x7C"
         " \040 \x20"
         " \040 \x20"
         " \040 \x20"
         " \040|");
  if (!o_8462f2c26f0756dc650d5001d52daed3->a_123ac23bcae->w) {
    fuck(o_8462f2c26f0756dc650d5001d52daed3
               ->master_spark[(0x0000000000000006 + 0x0000000000000203 +
                               0x0000000000000803 - 0x0000000000000A09)],
           "\x7C"
           " \040 \x20"
           " \040.\x20"
           " \040 \x20"
           " \040 ");
  } else {
    fuck(o_8462f2c26f0756dc650d5001d52daed3
               ->master_spark[(0x0000000000000006 + 0x0000000000000203 +
                               0x0000000000000803 - 0x0000000000000A09)],
           "\x20"
           " \040 \x20"
           " \040.\x20"
           " \040 \x20"
           " \040 ");
  };
#define cirno printf
  if (!o_8462f2c26f0756dc650d5001d52daed3->a_123ac23bcae->e) {
    o_8462f2c26f0756dc650d5001d52daed3->master_spark[(
        0x0000000000000006 + 0x0000000000000203 + 0x0000000000000803 -
        0x0000000000000A09)][(0x000000000000001E + 0x000000000000020F +
                              0x000000000000080F - 0x0000000000000A2D)] = '|';
  };
  fuck(o_8462f2c26f0756dc650d5001d52daed3
             ->master_spark[(0x0000000000000008 + 0x0000000000000204 +
                             0x0000000000000804 - 0x0000000000000A0C)],
         "\x7C"
         " \040 \x20"
         " \040 \x20"
         " \040 \x20"
         " \040|");
  fuck(o_8462f2c26f0756dc650d5001d52daed3
             ->master_spark[(0x000000000000000A + 0x0000000000000205 +
                             0x0000000000000805 - 0x0000000000000A0F)],
         "\x7C"
         " \040 \x20"
         " \040 \x20"
         " \040 \x20"
         " \040|");
  if (!o_8462f2c26f0756dc650d5001d52daed3->a_123ac23bcae->s) {
    fuck(o_8462f2c26f0756dc650d5001d52daed3
               ->master_spark[(0x000000000000000C + 0x0000000000000206 +
                               0x0000000000000806 - 0x0000000000000A12)],
           "\x2D"
           "-\055-\x2D"
           "-\055-\x2D"
           "-\055-\x2D"
           "-\055-");
  } else {
    fuck(o_8462f2c26f0756dc650d5001d52daed3
               ->master_spark[(0x000000000000000C + 0x0000000000000206 +
                               0x0000000000000806 - 0x0000000000000A12)],
           "\x2D"
           "-\055-\x2D"
           "-\040 \x20"
           " \055-\x2D"
           "-\055-");
  };
};
void o_e7bb9e679d8aab1bad7d9a8ced655680(
    s_eea617aba9190d* o_3703745103709f2d57c30ee54635eec9) {
  o_890506ba7071d5f5cca2830a8c924a1b(o_3703745103709f2d57c30ee54635eec9);
  puts(o_3703745103709f2d57c30ee54635eec9->uwu);
  for (char o_a7c710407c0a3adf4dab553ee2ac336f =
           (0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
            0x0000000000000A00);
       (o_a7c710407c0a3adf4dab553ee2ac336f <
        (0x000000000000000E + 0x0000000000000207 + 0x0000000000000807 -
         0x0000000000000A15)) &
       !!(o_a7c710407c0a3adf4dab553ee2ac336f <
          (0x000000000000000E + 0x0000000000000207 + 0x0000000000000807 -
           0x0000000000000A15));
       o_a7c710407c0a3adf4dab553ee2ac336f++) {
    puts(o_3703745103709f2d57c30ee54635eec9
             ->master_spark[o_a7c710407c0a3adf4dab553ee2ac336f]);
    if (!(o_a7c710407c0a3adf4dab553ee2ac336f ^ 0x0000000000000003)) {
    };
  };
  puts(o_3703745103709f2d57c30ee54635eec9->baka);
};
char o_d7308155e275852f31865ffeca948c35() {
  int o_b4220a401e7bce01a53299cccd2d0189 =
      rand() % (0x0000000000000052 + 0x0000000000000229 + 0x0000000000000829 -
                0x0000000000000A7B);
  if (!(o_b4220a401e7bce01a53299cccd2d0189 ^ 0x0000000000000001)) {
    return (0x0000000000000008 + 0x0000000000000204 + 0x0000000000000804 -
            0x0000000000000A0C);
  } else if ((o_b4220a401e7bce01a53299cccd2d0189 <=
              (0x000000000000000A + 0x0000000000000205 + 0x0000000000000805 -
               0x0000000000000A0F)) &
             !!(o_b4220a401e7bce01a53299cccd2d0189 <=
                (0x000000000000000A + 0x0000000000000205 + 0x0000000000000805 -
                 0x0000000000000A0F))) {
    return (0x0000000000000006 + 0x0000000000000203 + 0x0000000000000803 -
            0x0000000000000A09);
  } else if ((o_b4220a401e7bce01a53299cccd2d0189 <=
              (0x0000000000000014 + 0x000000000000020A + 0x000000000000080A -
               0x0000000000000A1E)) &
             !!(o_b4220a401e7bce01a53299cccd2d0189 <=
                (0x0000000000000014 + 0x000000000000020A + 0x000000000000080A -
                 0x0000000000000A1E))) {
    return (0x0000000000000004 + 0x0000000000000202 + 0x0000000000000802 -
            0x0000000000000A06);
  } else if ((o_b4220a401e7bce01a53299cccd2d0189 <=
              (0x0000000000000028 + 0x0000000000000214 + 0x0000000000000814 -
               0x0000000000000A3C)) &
             !!(o_b4220a401e7bce01a53299cccd2d0189 <=
                (0x0000000000000028 + 0x0000000000000214 + 0x0000000000000814 -
                 0x0000000000000A3C))) {
    return (0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
            0x0000000000000A00);
  } else {
    return (0x0000000000000002 + 0x0000000000000201 + 0x0000000000000801 -
            0x0000000000000A03);
  };
  ;
  ;
  ;
};
int o_da17445ab6e7af288a318704f2e63cfe(
    s_eea617aba9190d* o_86d46a4b7b554306b5470a19f443a391) {
  char o_10953342c3473880009d6cb71be225d7;
  scanf(
      "\x25"
      "c",
      &o_10953342c3473880009d6cb71be225d7);
  switch (o_10953342c3473880009d6cb71be225d7) {
    case 'w':
      if (!(o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->n ^
            0x0000000000000000)) {
        o_86d46a4b7b554306b5470a19f443a391->uwu =
            ("\x43"
             "a\156n\x6F"
             "t\040g\x6F"
             " \164h\x61"
             "t\040w\x61"
             "y\041");
        return (0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
                0x0000000000000A00);
      };
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->marisa =
          o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->n;
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->s =
          o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->n;
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->n =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->e =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->w =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->uwu =
          "\x57"
          "e\156t\x20"
          "N\157r\x74"
          "h\056.\x2E"
          "";
      return (0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
              0x0000000000000A00);
    case 'a':
      if (!(o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->w ^
            0x0000000000000000)) {
        o_86d46a4b7b554306b5470a19f443a391->uwu =
            ("\x43"
             "a\156n\x6F"
             "t\040g\x6F"
             " \164h\x61"
             "t\040w\x61"
             "y\041");
        return (0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
                0x0000000000000A00);
      };
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->marisa =
          o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->w;
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->e =
          o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->w;
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->n =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->w =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->s =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->uwu =
          "\x57"
          "e\156t\x20"
          "W\145s\x74"
          ".\056.";
      return (0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
              0x0000000000000A00);
    case 's':
      if (!(o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->s ^
            0x0000000000000000)) {
        o_86d46a4b7b554306b5470a19f443a391->uwu =
            ("\x43"
             "a\156n\x6F"
             "t\040g\x6F"
             " \164h\x61"
             "t\040w\x61"
             "y\041");
        return (0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
                0x0000000000000A00);
      };
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->marisa =
          o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->s;
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->n =
          o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->s;
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->s =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->e =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->w =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->uwu =
          "\x57"
          "e\156t\x20"
          "S\157u\x74"
          "h\056.\x2E"
          "";
      return (0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
              0x0000000000000A00);
    case 'd':
      if (!(o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->e ^
            0x0000000000000000)) {
        o_86d46a4b7b554306b5470a19f443a391->uwu =
            ("\x43"
             "a\156n\x6F"
             "t\040g\x6F"
             " \164h\x61"
             "t\040w\x61"
             "y\041");
        return (0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
                0x0000000000000A00);
      };
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->marisa =
          o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->e;
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->w =
          o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->e;
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->n =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->e =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->a_123ac23bcae->s =
          o_d7308155e275852f31865ffeca948c35();
      o_86d46a4b7b554306b5470a19f443a391->uwu =
          "\x57"
          "e\156t\x20"
          "E\141s\x74"
          ".\056.";
      return (0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
              0x0000000000000A00);
    case '\n':
      return (0x0000000000000002 + 0x0000000000000201 + 0x0000000000000801 -
              0x0000000000000A03);
    default:
      cirno(
          "\x69"
          "n\166a\x6C"
          "i\144 \x6D"
          "o\166e\x20"
          "\'\045c\x27"
          "\x0A",
          o_10953342c3473880009d6cb71be225d7);
      return (0x0000000000000002 + 0x0000000000000201 + 0x0000000000000801 -
              0x0000000000000A03);
  };
};
void o_77af3312ba8662702635445dad934a7c(
    s_eea617aba9190d* o_f4e55376a8d0270f9a48c737b9cbc005) {
  if (!(o_f4e55376a8d0270f9a48c737b9cbc005->a_123ac23bcae->marisa ^
        0x0000000000000002)) {
    if (rand() % (0x0000000000000004 + 0x0000000000000202 + 0x0000000000000802 -
                  0x0000000000000A06)) {
      o_f4e55376a8d0270f9a48c737b9cbc005->baka =
          "\x59"
          "o\165 \x65"
          "n\143o\x75"
          "n\164e\x72"
          " \141 \x73"
          "t\162a\x6E"
          "g\145 \x63"
          "r\145a\x74"
          "u\162e\x2E"
          " \131o\x75"
          " \164r\x79"
          " \164o\x20"
          "e\163c\x61"
          "p\145 \x62"
          "u\164 \x63"
          "o\165l\x64"
          "n\047t\x20"
          "b\145f\x6F"
          "r\145 \x67"
          "e\164t\x69"
          "n\147 \x68"
          "i\164.\x0A"
          "\x0A";
      o_f4e55376a8d0270f9a48c737b9cbc005->owo--;
    } else {
      o_f4e55376a8d0270f9a48c737b9cbc005->baka =
          "\x59"
          "o\165 \x65"
          "n\143o\x75"
          "n\164e\x72"
          " \141 \x73"
          "t\162a\x6E"
          "g\145 \x63"
          "r\145a\x74"
          "u\162e\x2E"
          " \131o\x75"
          " \155a\x6E"
          "a\147e\x20"
          "t\157 \x66"
          "l\145e\x20"
          "s\141f\x65"
          "l\171.";
    };
  } else if (!(o_f4e55376a8d0270f9a48c737b9cbc005->a_123ac23bcae->marisa ^
               0x0000000000000001)) {
    o_f4e55376a8d0270f9a48c737b9cbc005->baka =
        "\x4E"
        "o\164h\x69"
        "n\147 \x68"
        "e\162e\x2E"
        ".\056";
  } else if (!(o_f4e55376a8d0270f9a48c737b9cbc005->a_123ac23bcae->marisa ^
               0x0000000000000003)) {
    o_f4e55376a8d0270f9a48c737b9cbc005->baka =
        "\x59"
        "o\165 \x66"
        "i\156d\x20"
        "a\040p\x6F"
        "t\151o\x6E"
        ".\040Y\x6F"
        "u\040d\x65"
        "e\155 \x69"
        "t\040s\x61"
        "f\145 \x74"
        "o\040d\x72"
        "i\156k\x20"
        "a\156d\x20"
        "t\141k\x65"
        " \141 \x73"
        "i\160.\x20"
        "A\040m\x79"
        "s\164i\x63"
        "a\154 \x61"
        "u\162a\x20"
        "s\165r\x72"
        "o\165n\x64"
        "s\040y\x6F"
        "u\040a\x6E"
        "d\040f\x65"
        "e\154 \x6D"
        "o\162e\x20"
        "p\157w\x65"
        "r\146u\x6C"
        ".";
    o_f4e55376a8d0270f9a48c737b9cbc005->owo++;
  } else if (!(o_f4e55376a8d0270f9a48c737b9cbc005->a_123ac23bcae->marisa ^
               0x0000000000000004)) {
    cirno("\e[1;1H\e[2J");
    puts(
        "\x59"
        "o\165 \x68"
        "a\166e\x20"
        "e\163c\x61"
        "p\145d\x2E"
        "\x0A\012B\x75"
        "t\040w\x68"
        "a\164 \x68"
        "a\166e\x20"
        "y\157u\x20"
        "e\163c\x61"
        "p\145d\x20"
        "t\157?\x20"
        "L\151f\x65"
        "?\012I\x73"
        " \171o\x75"
        "r\040t\x72"
        "u\145 \x6C"
        "i\146e\x20"
        "r\145a\x6C"
        "l\171 \x61"
        "n\171 \x64"
        "i\146f\x65"
        "r\145n\x74"
        " \146r\x6F"
        "m\040t\x68"
        "i\163 \x67"
        "a\155e\x3F"
        "\x0A\101l\x6C"
        " \164h\x69"
        "n\147s\x20"
        "e\156d\x20"
        "i\156 \x64"
        "e\141t\x68"
        ".\012\x0A\x4F"
        "r\040d\x6F"
        " \164h\x65"
        "y\077\x0A\x0A"
        "W\151l\x6C"
        " \171o\x75"
        " \142e\x20"
        "r\145m\x65"
        "m\142e\x72"
        "e\144 \x61"
        "f\164e\x72"
        " \144e\x61"
        "t\150?\x0A"
        "W\151l\x6C"
        " \171o\x75"
        " \145v\x65"
        "n\040d\x69"
        "e\077\x0A\x0A"
        "B\165t\x20"
        "n\157w\x20"
        "i\163 \x6E"
        "o\164 \x74"
        "h\145 \x74"
        "i\155e\x20"
        "t\157 \x74"
        "h\151n\x6B"
        " \141b\x6F"
        "u\164 \x64"
        "e\141t\x68"
        ".\012Y\x6F"
        "u\040h\x61"
        "v\145 \x61"
        " \154i\x66"
        "e\040t\x6F"
        " \154i\x76"
        "e\040a\x6E"
        "d\040t\x6F"
        " \155a\x6B"
        "e\040a\x20"
        "d\151f\x66"
        "e\162e\x6E"
        "c\145.\x0A"
        "\x0A\127a\x6B"
        "e\040u\x70"
        " \146r\x6F"
        "m\040t\x68"
        "i\163 \x67"
        "a\155e\x2E"
        "\x0A\107o\x20"
        "l\151v\x65"
        ".");
    exit((0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
          0x0000000000000A00));
  };
  ;
  ;
  ;
};
int main() {
  srand(time(NULL));
  s_1fae123b981dace o_ae9adade2c691fea27285f67244e7085 = {
      1, 1, 1, 1, 1,
  };
  s_eea617aba9190d o_f2d322f057d843840f007ec0943eaf17 = {
      "Input w, a, s, or d to move in that direction",
      "You are stuck in a seemingly never-ending dungeon.\nThere is no "
      "escape. Or is there? Nobody knows.",
      &o_ae9adade2c691fea27285f67244e7085,
      {},
      1};
  o_e7bb9e679d8aab1bad7d9a8ced655680(&o_f2d322f057d843840f007ec0943eaf17);
  while ((0x0000000000000002 + 0x0000000000000201 + 0x0000000000000801 -
          0x0000000000000A03)) {
    if (!o_f2d322f057d843840f007ec0943eaf17.owo) {
      puts(
          "\x54"
          "h\145 \x63"
          "r\145a\x74"
          "u\162e\x20"
          "b\162u\x74"
          "a\154l\x79"
          " \164e\x61"
          "r\163 \x6F"
          "p\145n\x20"
          "y\157u\x72"
          " \146l\x65"
          "s\150.\x0A"
          "Y\157u\x20"
          "f\145e\x6C"
          " \164h\x65"
          " \155o\x73"
          "t\040p\x61"
          "i\156 \x74"
          "h\141t\x20"
          "y\157u\x27"
          "v\145 \x65"
          "v\145r\x20"
          "f\145l\x74"
          ".\040\x0A\x59"
          "o\165 \x74"
          "h\151n\x6B"
          " \141b\x6F"
          "u\164 \x68"
          "o\167 \x79"
          "o\165r\x20"
          "f\141m\x69"
          "l\171 \x61"
          "n\144 \x66"
          "r\151e\x6E"
          "d\163 \x77"
          "i\154l\x20"
          "m\151s\x73"
          " \171o\x75"
          ".\012W\x69"
          "l\154 \x74"
          "h\145y\x20"
          "m\151s\x73"
          " \171o\x75"
          "?\040D\x69"
          "d\040t\x68"
          "e\171 \x65"
          "v\145r\x20"
          "t\162u\x6C"
          "y\040c\x61"
          "r\145?\x0A"
          "\x0A\123u\x64"
          "d\145n\x6C"
          "y\054 \x79"
          "o\165r\x20"
          "e\156t\x69"
          "r\145 \x6C"
          "i\146e\x20"
          "f\154a\x73"
          "h\145s\x20"
          "b\145f\x6F"
          "r\145 \x79"
          "o\165r\x20"
          "e\171e\x73"
          ".\012Y\x6F"
          "u\040e\x78"
          "p\145r\x69"
          "e\156c\x65"
          " \164h\x61"
          "t\040t\x68"
          "i\156g\x20"
          "t\150a\x74"
          " \171o\x75"
          " \144i\x64"
          " \065 \x79"
          "e\141r\x73"
          " \141g\x6F"
          ".\012\x0A\x41"
          " \163t\x72"
          "a\156g\x65"
          " \143a\x6C"
          "m\151n\x67"
          " \167a\x72"
          "m\164h\x20"
          "f\151l\x6C"
          "s\040y\x6F"
          "u\162 \x62"
          "o\144y\x20"
          "a\163 \x79"
          "o\165r\x20"
          "v\151s\x69"
          "o\156 \x67"
          "e\164s\x20"
          "f\151l\x6C"
          "e\144 \x77"
          "i\164h\x20"
          "a\040b\x72"
          "i\147h\x74"
          " \154i\x67"
          "h\164.\x20"
          "\x0A\042I\x73"
          " \164h\x69"
          "s\040w\x68"
          "a\164 \x63"
          "o\155e\x73"
          " \141f\x74"
          "e\162 \x64"
          "e\141t\x68"
          "?\040A\x6D"
          " \111 \x66"
          "i\156a\x6C"
          "l\171 \x62"
          "r\157u\x67"
          "h\164 \x66"
          "r\157m\x20"
          "t\150e\x20"
          "d\145s\x70"
          "a\151r\x20"
          "o\146 \x6C"
          "i\146e\x3F"
          "\"\040y\x6F"
          "u\162 \x73"
          "o\165l\x20"
          "t\150i\x6E"
          "k\163.\x0A"
          "\x0A\131o\x75"
          "r\040d\x69"
          "v\151n\x65"
          " \142e\x69"
          "n\147 \x6F"
          "f\040c\x68"
          "o\151c\x65"
          " \150a\x73"
          " \141b\x61"
          "n\144o\x6E"
          "e\144 \x79"
          "o\165.\x0A"
          "O\162 \x69"
          "s\040t\x68"
          "i\163 \x74"
          "h\145 \x66"
          "a\164e\x20"
          "t\150a\x74"
          " \164h\x65"
          "y\040h\x61"
          "v\145 \x63"
          "h\157s\x65"
          "n\077\x0A\x49"
          "s\040t\x68"
          "e\162e\x20"
          "a\040r\x65"
          "a\163o\x6E"
          "?\012\x0A\x54"
          "h\145 \x57"
          "o\162l\x64"
          " \163t\x6C"
          "l\040c\x6F"
          "n\164i\x6E"
          "u\145s\x20"
          "o\156 \x77"
          "i\164h\x6F"
          "u\164 \x79"
          "o\165.\x0A"
          "D\145c\x61"
          "d\145s\x20"
          "p\141s\x73"
          " \151n\x20"
          "s\145c\x6F"
          "n\144s\x2E"
          "\x0A\127i\x74"
          "h\151n\x20"
          "a\040f\x65"
          "w\040s\x65"
          "c\157n\x64"
          "s\054 \x6E"
          "o\142o\x64"
          "y\040r\x65"
          "m\145m\x62"
          "e\162s\x20"
          "y\157u\x72"
          " \163h\x6F"
          "r\164 \x65"
          "x\151s\x74"
          "e\156c\x65"
          ".\012\x0A\x59"
          "o\165 \x77"
          "e\162e\x20"
          "a\156 \x69"
          "n\156o\x63"
          "e\156t\x20"
          "b\145i\x6E"
          "g\056 \x0A"
          "T\150e\x72"
          "e\040i\x73"
          " \156o\x20"
          "r\145a\x73"
          "o\156 \x66"
          "o\162 \x74"
          "h\145 \x77"
          "o\162l\x64"
          " \164o\x20"
          "r\145m\x65"
          "m\142e\x72"
          " \167h\x6F"
          " \171o\x75"
          " \167e\x72"
          "e\056\x0A");
      break;
    };
    if (!o_da17445ab6e7af288a318704f2e63cfe(
            &o_f2d322f057d843840f007ec0943eaf17)) {
      cirno("\e[1;1H\e[2J");
      o_77af3312ba8662702635445dad934a7c(&o_f2d322f057d843840f007ec0943eaf17);
      o_e7bb9e679d8aab1bad7d9a8ced655680(&o_f2d322f057d843840f007ec0943eaf17);
    };
  };
  return (0x0000000000000000 + 0x0000000000000200 + 0x0000000000000800 -
          0x0000000000000A00);
};